blob: 6e2acfd687a1ec5a41b978edacc646b77b149209 [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ä1a10ae62017-03-02 19:15:03 +02001031static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1032{
1033 return (active_planes & (BIT(PLANE_SPRITE0) |
1034 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1035}
1036
Ville Syrjälä5012e602017-03-02 19:14:56 +02001037static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001038{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001039 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001040 const struct vlv_pipe_wm *raw =
1041 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001042 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001043 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1044 int num_active_planes = hweight32(active_planes);
1045 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001046 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001047 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001048 unsigned int total_rate;
1049 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001050
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001051 /*
1052 * When enabling sprite0 after sprite1 has already been enabled
1053 * we tend to get an underrun unless sprite0 already has some
1054 * FIFO space allcoated. Hence we always allocate at least one
1055 * cacheline for sprite0 whenever sprite1 is enabled.
1056 *
1057 * All other plane enable sequences appear immune to this problem.
1058 */
1059 if (vlv_need_sprite0_fifo_workaround(active_planes))
1060 sprite0_fifo_extra = 1;
1061
Ville Syrjälä5012e602017-03-02 19:14:56 +02001062 total_rate = raw->plane[PLANE_PRIMARY] +
1063 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001064 raw->plane[PLANE_SPRITE1] +
1065 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001066
Ville Syrjälä5012e602017-03-02 19:14:56 +02001067 if (total_rate > fifo_size)
1068 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001069
Ville Syrjälä5012e602017-03-02 19:14:56 +02001070 if (total_rate == 0)
1071 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001072
Ville Syrjälä5012e602017-03-02 19:14:56 +02001073 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001074 unsigned int rate;
1075
Ville Syrjälä5012e602017-03-02 19:14:56 +02001076 if ((active_planes & BIT(plane_id)) == 0) {
1077 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001078 continue;
1079 }
1080
Ville Syrjälä5012e602017-03-02 19:14:56 +02001081 rate = raw->plane[plane_id];
1082 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1083 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001084 }
1085
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001086 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1087 fifo_left -= sprite0_fifo_extra;
1088
Ville Syrjälä5012e602017-03-02 19:14:56 +02001089 fifo_state->plane[PLANE_CURSOR] = 63;
1090
1091 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001092
1093 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001094 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001095 int plane_extra;
1096
1097 if (fifo_left == 0)
1098 break;
1099
Ville Syrjälä5012e602017-03-02 19:14:56 +02001100 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001101 continue;
1102
1103 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001104 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001105 fifo_left -= plane_extra;
1106 }
1107
Ville Syrjälä5012e602017-03-02 19:14:56 +02001108 WARN_ON(active_planes != 0 && fifo_left != 0);
1109
1110 /* give it all to the first plane if none are active */
1111 if (active_planes == 0) {
1112 WARN_ON(fifo_left != fifo_size);
1113 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1114 }
1115
1116 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001117}
1118
Ville Syrjäläff32c542017-03-02 19:14:57 +02001119static int vlv_num_wm_levels(struct drm_i915_private *dev_priv)
1120{
1121 return dev_priv->wm.max_level + 1;
1122}
1123
1124/* mark all levels starting from 'level' as invalid */
1125static void vlv_invalidate_wms(struct intel_crtc *crtc,
1126 struct vlv_wm_state *wm_state, int level)
1127{
1128 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1129
1130 for (; level < vlv_num_wm_levels(dev_priv); level++) {
1131 enum plane_id plane_id;
1132
1133 for_each_plane_id_on_crtc(crtc, plane_id)
1134 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1135
1136 wm_state->sr[level].cursor = USHRT_MAX;
1137 wm_state->sr[level].plane = USHRT_MAX;
1138 }
1139}
1140
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001141static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1142{
1143 if (wm > fifo_size)
1144 return USHRT_MAX;
1145 else
1146 return fifo_size - wm;
1147}
1148
Ville Syrjäläff32c542017-03-02 19:14:57 +02001149/*
1150 * Starting from 'level' set all higher
1151 * levels to 'value' in the "raw" watermarks.
1152 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001153static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001154 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001155{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001156 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1157 int num_levels = vlv_num_wm_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001158 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001159
Ville Syrjäläff32c542017-03-02 19:14:57 +02001160 for (; level < num_levels; level++) {
1161 struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001162
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001163 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001164 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001165 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001166
1167 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001168}
1169
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001170static bool vlv_plane_wm_compute(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001171 const struct intel_plane_state *plane_state)
1172{
1173 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1174 enum plane_id plane_id = plane->id;
1175 int num_levels = vlv_num_wm_levels(to_i915(plane->base.dev));
1176 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001177 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001178
1179 if (!plane_state->base.visible) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001180 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1181 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001182 }
1183
1184 for (level = 0; level < num_levels; level++) {
1185 struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1186 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1187 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1188
1189 /* FIXME just bail */
1190 if (WARN_ON(level == 0 && wm > max_wm))
1191 wm = max_wm;
1192
1193 if (wm > max_wm)
1194 break;
1195
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001196 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001197 raw->plane[plane_id] = wm;
1198 }
1199
1200 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001201 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001202
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001203out:
1204 if (dirty)
1205 DRM_DEBUG_KMS("%s wms: [0]=%d,[1]=%d,[2]=%d\n",
1206 plane->base.name,
1207 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1208 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1209 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1210
1211 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001212}
1213
1214static bool vlv_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1215 enum plane_id plane_id, int level)
1216{
1217 const struct vlv_pipe_wm *raw =
1218 &crtc_state->wm.vlv.raw[level];
1219 const struct vlv_fifo_state *fifo_state =
1220 &crtc_state->wm.vlv.fifo_state;
1221
1222 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1223}
1224
1225static bool vlv_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, int level)
1226{
1227 return vlv_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1228 vlv_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1229 vlv_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1230 vlv_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1231}
1232
1233static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001234{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001235 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001236 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001237 struct intel_atomic_state *state =
1238 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001239 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001240 const struct vlv_fifo_state *fifo_state =
1241 &crtc_state->wm.vlv.fifo_state;
1242 int num_active_planes = hweight32(crtc_state->active_planes &
1243 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001244 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001245 struct intel_plane_state *plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001246 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001247 enum plane_id plane_id;
1248 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001249 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001250
Ville Syrjäläff32c542017-03-02 19:14:57 +02001251 for_each_intel_plane_in_state(state, plane, plane_state, i) {
1252 const struct intel_plane_state *old_plane_state =
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001253 to_intel_plane_state(plane->base.state);
1254
Ville Syrjäläff32c542017-03-02 19:14:57 +02001255 if (plane_state->base.crtc != &crtc->base &&
1256 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001257 continue;
1258
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001259 if (vlv_plane_wm_compute(crtc_state, plane_state))
1260 dirty |= BIT(plane->id);
1261 }
1262
1263 /*
1264 * DSPARB registers may have been reset due to the
1265 * power well being turned off. Make sure we restore
1266 * them to a consistent state even if no primary/sprite
1267 * planes are initially active.
1268 */
1269 if (needs_modeset)
1270 crtc_state->fifo_changed = true;
1271
1272 if (!dirty)
1273 return 0;
1274
1275 /* cursor changes don't warrant a FIFO recompute */
1276 if (dirty & ~BIT(PLANE_CURSOR)) {
1277 const struct intel_crtc_state *old_crtc_state =
1278 to_intel_crtc_state(crtc->base.state);
1279 const struct vlv_fifo_state *old_fifo_state =
1280 &old_crtc_state->wm.vlv.fifo_state;
1281
1282 ret = vlv_compute_fifo(crtc_state);
1283 if (ret)
1284 return ret;
1285
1286 if (needs_modeset ||
1287 memcmp(old_fifo_state, fifo_state,
1288 sizeof(*fifo_state)) != 0)
1289 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001290 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001291
Ville Syrjäläff32c542017-03-02 19:14:57 +02001292 /* initially allow all levels */
1293 wm_state->num_levels = vlv_num_wm_levels(dev_priv);
1294 /*
1295 * Note that enabling cxsr with no primary/sprite planes
1296 * enabled can wedge the pipe. Hence we only allow cxsr
1297 * with exactly one enabled primary/sprite plane.
1298 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001299 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001300
Ville Syrjälä5012e602017-03-02 19:14:56 +02001301 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001302 const struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1303 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001304
Ville Syrjäläff32c542017-03-02 19:14:57 +02001305 if (!vlv_crtc_wm_is_valid(crtc_state, level))
1306 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001307
Ville Syrjäläff32c542017-03-02 19:14:57 +02001308 for_each_plane_id_on_crtc(crtc, plane_id) {
1309 wm_state->wm[level].plane[plane_id] =
1310 vlv_invert_wm_value(raw->plane[plane_id],
1311 fifo_state->plane[plane_id]);
1312 }
1313
1314 wm_state->sr[level].plane =
1315 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001316 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001317 raw->plane[PLANE_SPRITE1]),
1318 sr_fifo_size);
1319
1320 wm_state->sr[level].cursor =
1321 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1322 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001323 }
1324
Ville Syrjäläff32c542017-03-02 19:14:57 +02001325 if (level == 0)
1326 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001327
Ville Syrjäläff32c542017-03-02 19:14:57 +02001328 /* limit to only levels we can actually handle */
1329 wm_state->num_levels = level;
1330
1331 /* invalidate the higher levels */
1332 vlv_invalidate_wms(crtc, wm_state, level);
1333
1334 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001335}
1336
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001337#define VLV_FIFO(plane, value) \
1338 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1339
Ville Syrjäläff32c542017-03-02 19:14:57 +02001340static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1341 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001342{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001343 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001344 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001345 const struct vlv_fifo_state *fifo_state =
1346 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001347 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001348
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001349 if (!crtc_state->fifo_changed)
1350 return;
1351
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001352 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1353 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1354 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001355
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001356 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1357 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001358
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001359 spin_lock(&dev_priv->wm.dsparb_lock);
1360
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001361 switch (crtc->pipe) {
1362 uint32_t dsparb, dsparb2, dsparb3;
1363 case PIPE_A:
1364 dsparb = I915_READ(DSPARB);
1365 dsparb2 = I915_READ(DSPARB2);
1366
1367 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1368 VLV_FIFO(SPRITEB, 0xff));
1369 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1370 VLV_FIFO(SPRITEB, sprite1_start));
1371
1372 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1373 VLV_FIFO(SPRITEB_HI, 0x1));
1374 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1375 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1376
1377 I915_WRITE(DSPARB, dsparb);
1378 I915_WRITE(DSPARB2, dsparb2);
1379 break;
1380 case PIPE_B:
1381 dsparb = I915_READ(DSPARB);
1382 dsparb2 = I915_READ(DSPARB2);
1383
1384 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1385 VLV_FIFO(SPRITED, 0xff));
1386 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1387 VLV_FIFO(SPRITED, sprite1_start));
1388
1389 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1390 VLV_FIFO(SPRITED_HI, 0xff));
1391 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1392 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1393
1394 I915_WRITE(DSPARB, dsparb);
1395 I915_WRITE(DSPARB2, dsparb2);
1396 break;
1397 case PIPE_C:
1398 dsparb3 = I915_READ(DSPARB3);
1399 dsparb2 = I915_READ(DSPARB2);
1400
1401 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1402 VLV_FIFO(SPRITEF, 0xff));
1403 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1404 VLV_FIFO(SPRITEF, sprite1_start));
1405
1406 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1407 VLV_FIFO(SPRITEF_HI, 0xff));
1408 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1409 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1410
1411 I915_WRITE(DSPARB3, dsparb3);
1412 I915_WRITE(DSPARB2, dsparb2);
1413 break;
1414 default:
1415 break;
1416 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001417
1418 POSTING_READ(DSPARB);
1419
1420 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001421}
1422
1423#undef VLV_FIFO
1424
Ville Syrjälä4841da52017-03-02 19:14:59 +02001425static int vlv_compute_intermediate_wm(struct drm_device *dev,
1426 struct intel_crtc *crtc,
1427 struct intel_crtc_state *crtc_state)
1428{
1429 struct vlv_wm_state *intermediate = &crtc_state->wm.vlv.intermediate;
1430 const struct vlv_wm_state *optimal = &crtc_state->wm.vlv.optimal;
1431 const struct vlv_wm_state *active = &crtc->wm.active.vlv;
1432 int level;
1433
1434 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001435 intermediate->cxsr = optimal->cxsr && active->cxsr &&
1436 !crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02001437
1438 for (level = 0; level < intermediate->num_levels; level++) {
1439 enum plane_id plane_id;
1440
1441 for_each_plane_id_on_crtc(crtc, plane_id) {
1442 intermediate->wm[level].plane[plane_id] =
1443 min(optimal->wm[level].plane[plane_id],
1444 active->wm[level].plane[plane_id]);
1445 }
1446
1447 intermediate->sr[level].plane = min(optimal->sr[level].plane,
1448 active->sr[level].plane);
1449 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
1450 active->sr[level].cursor);
1451 }
1452
1453 vlv_invalidate_wms(crtc, intermediate, level);
1454
1455 /*
1456 * If our intermediate WM are identical to the final WM, then we can
1457 * omit the post-vblank programming; only update if it's different.
1458 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001459 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
1460 crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02001461
1462 return 0;
1463}
1464
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001465static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001466 struct vlv_wm_values *wm)
1467{
1468 struct intel_crtc *crtc;
1469 int num_active_crtcs = 0;
1470
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001471 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001472 wm->cxsr = true;
1473
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001474 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001475 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001476
1477 if (!crtc->active)
1478 continue;
1479
1480 if (!wm_state->cxsr)
1481 wm->cxsr = false;
1482
1483 num_active_crtcs++;
1484 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1485 }
1486
1487 if (num_active_crtcs != 1)
1488 wm->cxsr = false;
1489
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001490 if (num_active_crtcs > 1)
1491 wm->level = VLV_WM_LEVEL_PM2;
1492
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001493 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001494 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001495 enum pipe pipe = crtc->pipe;
1496
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001497 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001498 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001499 wm->sr = wm_state->sr[wm->level];
1500
Ville Syrjälä1b313892016-11-28 19:37:08 +02001501 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1502 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1503 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1504 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001505 }
1506}
1507
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001508static bool is_disabling(int old, int new, int threshold)
1509{
1510 return old >= threshold && new < threshold;
1511}
1512
1513static bool is_enabling(int old, int new, int threshold)
1514{
1515 return old < threshold && new >= threshold;
1516}
1517
Ville Syrjäläff32c542017-03-02 19:14:57 +02001518static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001519{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001520 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1521 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001522
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001523 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001524
Ville Syrjäläff32c542017-03-02 19:14:57 +02001525 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001526 return;
1527
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001528 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001529 chv_set_memory_dvfs(dev_priv, false);
1530
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001531 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001532 chv_set_memory_pm5(dev_priv, false);
1533
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001534 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001535 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001536
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001537 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001538
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001539 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001540 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001541
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001542 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001543 chv_set_memory_pm5(dev_priv, true);
1544
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001545 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001546 chv_set_memory_dvfs(dev_priv, true);
1547
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001548 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001549}
1550
Ville Syrjäläff32c542017-03-02 19:14:57 +02001551static void vlv_initial_watermarks(struct intel_atomic_state *state,
1552 struct intel_crtc_state *crtc_state)
1553{
1554 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1555 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1556
1557 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02001558 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
1559 vlv_program_watermarks(dev_priv);
1560 mutex_unlock(&dev_priv->wm.wm_mutex);
1561}
1562
1563static void vlv_optimize_watermarks(struct intel_atomic_state *state,
1564 struct intel_crtc_state *crtc_state)
1565{
1566 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1567 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1568
1569 if (!crtc_state->wm.need_postvbl_update)
1570 return;
1571
1572 mutex_lock(&dev_priv->wm.wm_mutex);
1573 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001574 vlv_program_watermarks(dev_priv);
1575 mutex_unlock(&dev_priv->wm.wm_mutex);
1576}
1577
Ville Syrjäläae801522015-03-05 21:19:49 +02001578#define single_plane_enabled(mask) is_power_of_2(mask)
1579
Ville Syrjälä432081b2016-10-31 22:37:03 +02001580static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001581{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001582 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001583 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001584 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1585 int plane_sr, cursor_sr;
1586 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001587 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001588
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001589 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001590 &g4x_wm_info, pessimal_latency_ns,
1591 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001592 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001593 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001594
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001595 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001596 &g4x_wm_info, pessimal_latency_ns,
1597 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001598 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001599 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001600
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001601 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001602 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001603 sr_latency_ns,
1604 &g4x_wm_info,
1605 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001606 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001607 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001608 } else {
Imre Deak98584252014-06-13 14:54:20 +03001609 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001610 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001611 plane_sr = cursor_sr = 0;
1612 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001613
Ville Syrjäläa5043452014-06-28 02:04:18 +03001614 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1615 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616 planea_wm, cursora_wm,
1617 planeb_wm, cursorb_wm,
1618 plane_sr, cursor_sr);
1619
1620 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001621 FW_WM(plane_sr, SR) |
1622 FW_WM(cursorb_wm, CURSORB) |
1623 FW_WM(planeb_wm, PLANEB) |
1624 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001625 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001626 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001627 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001628 /* HPLL off in SR has some issues on G4x... disable it */
1629 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001630 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001631 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001632
1633 if (cxsr_enabled)
1634 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001635}
1636
Ville Syrjälä432081b2016-10-31 22:37:03 +02001637static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001638{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001639 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001640 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001641 int srwm = 1;
1642 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001643 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001644
1645 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001646 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001647 if (crtc) {
1648 /* self-refresh has much higher latency */
1649 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001650 const struct drm_display_mode *adjusted_mode =
1651 &crtc->config->base.adjusted_mode;
1652 const struct drm_framebuffer *fb =
1653 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001654 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001655 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001656 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001657 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001658 unsigned long line_time_us;
1659 int entries;
1660
Ville Syrjälä922044c2014-02-14 14:18:57 +02001661 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001662
1663 /* Use ns/us then divide to preserve precision */
1664 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001665 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001666 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1667 srwm = I965_FIFO_SIZE - entries;
1668 if (srwm < 0)
1669 srwm = 1;
1670 srwm &= 0x1ff;
1671 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1672 entries, srwm);
1673
1674 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001675 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001676 entries = DIV_ROUND_UP(entries,
1677 i965_cursor_wm_info.cacheline_size);
1678 cursor_sr = i965_cursor_wm_info.fifo_size -
1679 (entries + i965_cursor_wm_info.guard_size);
1680
1681 if (cursor_sr > i965_cursor_wm_info.max_wm)
1682 cursor_sr = i965_cursor_wm_info.max_wm;
1683
1684 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1685 "cursor %d\n", srwm, cursor_sr);
1686
Imre Deak98584252014-06-13 14:54:20 +03001687 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001688 } else {
Imre Deak98584252014-06-13 14:54:20 +03001689 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001690 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001691 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001692 }
1693
1694 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1695 srwm);
1696
1697 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001698 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1699 FW_WM(8, CURSORB) |
1700 FW_WM(8, PLANEB) |
1701 FW_WM(8, PLANEA));
1702 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1703 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001704 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001705 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001706
1707 if (cxsr_enabled)
1708 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001709}
1710
Ville Syrjäläf4998962015-03-10 17:02:21 +02001711#undef FW_WM
1712
Ville Syrjälä432081b2016-10-31 22:37:03 +02001713static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001714{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001715 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001716 const struct intel_watermark_params *wm_info;
1717 uint32_t fwater_lo;
1718 uint32_t fwater_hi;
1719 int cwm, srwm = 1;
1720 int fifo_size;
1721 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001722 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001723
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001724 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001725 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001726 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001727 wm_info = &i915_wm_info;
1728 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001729 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001730
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001731 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001732 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001733 if (intel_crtc_active(crtc)) {
1734 const struct drm_display_mode *adjusted_mode =
1735 &crtc->config->base.adjusted_mode;
1736 const struct drm_framebuffer *fb =
1737 crtc->base.primary->state->fb;
1738 int cpp;
1739
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001740 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001741 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001742 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001743 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001744
Damien Lespiau241bfc32013-09-25 16:45:37 +01001745 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001746 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001747 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001748 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001749 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001750 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001751 if (planea_wm > (long)wm_info->max_wm)
1752 planea_wm = wm_info->max_wm;
1753 }
1754
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001755 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001756 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001757
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001758 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001759 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001760 if (intel_crtc_active(crtc)) {
1761 const struct drm_display_mode *adjusted_mode =
1762 &crtc->config->base.adjusted_mode;
1763 const struct drm_framebuffer *fb =
1764 crtc->base.primary->state->fb;
1765 int cpp;
1766
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001767 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001768 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001769 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001770 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001771
Damien Lespiau241bfc32013-09-25 16:45:37 +01001772 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001773 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001774 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001775 if (enabled == NULL)
1776 enabled = crtc;
1777 else
1778 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001779 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001780 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001781 if (planeb_wm > (long)wm_info->max_wm)
1782 planeb_wm = wm_info->max_wm;
1783 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001784
1785 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1786
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001787 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001788 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001789
Ville Syrjäläefc26112016-10-31 22:37:04 +02001790 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001791
1792 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001793 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001794 enabled = NULL;
1795 }
1796
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001797 /*
1798 * Overlay gets an aggressive default since video jitter is bad.
1799 */
1800 cwm = 2;
1801
1802 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001803 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001804
1805 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001806 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001807 /* self-refresh has much higher latency */
1808 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001809 const struct drm_display_mode *adjusted_mode =
1810 &enabled->config->base.adjusted_mode;
1811 const struct drm_framebuffer *fb =
1812 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001813 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001814 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001815 int hdisplay = enabled->config->pipe_src_w;
1816 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001817 unsigned long line_time_us;
1818 int entries;
1819
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001820 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001821 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001822 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001823 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001824
Ville Syrjälä922044c2014-02-14 14:18:57 +02001825 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001826
1827 /* Use ns/us then divide to preserve precision */
1828 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001829 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001830 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1831 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1832 srwm = wm_info->fifo_size - entries;
1833 if (srwm < 0)
1834 srwm = 1;
1835
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001836 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001837 I915_WRITE(FW_BLC_SELF,
1838 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001839 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001840 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1841 }
1842
1843 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1844 planea_wm, planeb_wm, cwm, srwm);
1845
1846 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1847 fwater_hi = (cwm & 0x1f);
1848
1849 /* Set request length to 8 cachelines per fetch */
1850 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1851 fwater_hi = fwater_hi | (1 << 8);
1852
1853 I915_WRITE(FW_BLC, fwater_lo);
1854 I915_WRITE(FW_BLC2, fwater_hi);
1855
Imre Deak5209b1f2014-07-01 12:36:17 +03001856 if (enabled)
1857 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001858}
1859
Ville Syrjälä432081b2016-10-31 22:37:03 +02001860static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001861{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001862 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001863 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001864 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001865 uint32_t fwater_lo;
1866 int planea_wm;
1867
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001868 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001869 if (crtc == NULL)
1870 return;
1871
Ville Syrjäläefc26112016-10-31 22:37:04 +02001872 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001873 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001874 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001875 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001876 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001877 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1878 fwater_lo |= (3<<8) | planea_wm;
1879
1880 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1881
1882 I915_WRITE(FW_BLC, fwater_lo);
1883}
1884
Ville Syrjälä37126462013-08-01 16:18:55 +03001885/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001886static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001887{
1888 uint64_t ret;
1889
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001890 if (WARN(latency == 0, "Latency value missing\n"))
1891 return UINT_MAX;
1892
Ville Syrjäläac484962016-01-20 21:05:26 +02001893 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001894 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1895
1896 return ret;
1897}
1898
Ville Syrjälä37126462013-08-01 16:18:55 +03001899/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001900static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001901 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001902 uint32_t latency)
1903{
1904 uint32_t ret;
1905
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001906 if (WARN(latency == 0, "Latency value missing\n"))
1907 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001908 if (WARN_ON(!pipe_htotal))
1909 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001910
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001911 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001912 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001913 ret = DIV_ROUND_UP(ret, 64) + 2;
1914 return ret;
1915}
1916
Ville Syrjälä23297042013-07-05 11:57:17 +03001917static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001918 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001919{
Matt Roper15126882015-12-03 11:37:40 -08001920 /*
1921 * Neither of these should be possible since this function shouldn't be
1922 * called if the CRTC is off or the plane is invisible. But let's be
1923 * extra paranoid to avoid a potential divide-by-zero if we screw up
1924 * elsewhere in the driver.
1925 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001926 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001927 return 0;
1928 if (WARN_ON(!horiz_pixels))
1929 return 0;
1930
Ville Syrjäläac484962016-01-20 21:05:26 +02001931 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001932}
1933
Imre Deak820c1982013-12-17 14:46:36 +02001934struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001935 uint16_t pri;
1936 uint16_t spr;
1937 uint16_t cur;
1938 uint16_t fbc;
1939};
1940
Ville Syrjälä37126462013-08-01 16:18:55 +03001941/*
1942 * For both WM_PIPE and WM_LP.
1943 * mem_value must be in 0.1us units.
1944 */
Matt Roper7221fc32015-09-24 15:53:08 -07001945static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001946 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001947 uint32_t mem_value,
1948 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001949{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001950 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001951 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001952
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001953 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001954 return 0;
1955
Ville Syrjälä353c8592016-12-14 23:30:57 +02001956 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001957
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001958 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001959
1960 if (!is_lp)
1961 return method1;
1962
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001963 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001964 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001965 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001966 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001967
1968 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001969}
1970
Ville Syrjälä37126462013-08-01 16:18:55 +03001971/*
1972 * For both WM_PIPE and WM_LP.
1973 * mem_value must be in 0.1us units.
1974 */
Matt Roper7221fc32015-09-24 15:53:08 -07001975static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001976 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001977 uint32_t mem_value)
1978{
1979 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001980 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001981
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001982 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001983 return 0;
1984
Ville Syrjälä353c8592016-12-14 23:30:57 +02001985 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001986
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001987 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
1988 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001989 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001990 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001991 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001992 return min(method1, method2);
1993}
1994
Ville Syrjälä37126462013-08-01 16:18:55 +03001995/*
1996 * For both WM_PIPE and WM_LP.
1997 * mem_value must be in 0.1us units.
1998 */
Matt Roper7221fc32015-09-24 15:53:08 -07001999static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002000 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002001 uint32_t mem_value)
2002{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002003 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002004
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002005 /*
2006 * Treat cursor with fb as always visible since cursor updates
2007 * can happen faster than the vrefresh rate, and the current
2008 * watermark code doesn't handle that correctly. Cursor updates
2009 * which set/clear the fb or change the cursor size are going
2010 * to get throttled by intel_legacy_cursor_update() to work
2011 * around this problem with the watermark code.
2012 */
2013 if (!cstate->base.active || !pstate->base.fb)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002014 return 0;
2015
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002016 cpp = pstate->base.fb->format->cpp[0];
2017
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002018 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002019 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002020 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002021}
2022
Paulo Zanonicca32e92013-05-31 11:45:06 -03002023/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002024static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002025 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002026 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002027{
Ville Syrjälä83054942016-11-18 21:53:00 +02002028 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002029
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002030 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002031 return 0;
2032
Ville Syrjälä353c8592016-12-14 23:30:57 +02002033 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002034
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002035 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002036}
2037
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002038static unsigned int
2039ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002040{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002041 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002042 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002043 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002044 return 768;
2045 else
2046 return 512;
2047}
2048
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002049static unsigned int
2050ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2051 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002052{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002053 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002054 /* BDW primary/sprite plane watermarks */
2055 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002056 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002057 /* IVB/HSW primary/sprite plane watermarks */
2058 return level == 0 ? 127 : 1023;
2059 else if (!is_sprite)
2060 /* ILK/SNB primary plane watermarks */
2061 return level == 0 ? 127 : 511;
2062 else
2063 /* ILK/SNB sprite plane watermarks */
2064 return level == 0 ? 63 : 255;
2065}
2066
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002067static unsigned int
2068ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002069{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002070 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002071 return level == 0 ? 63 : 255;
2072 else
2073 return level == 0 ? 31 : 63;
2074}
2075
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002076static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002077{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002078 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002079 return 31;
2080 else
2081 return 15;
2082}
2083
Ville Syrjälä158ae642013-08-07 13:28:19 +03002084/* Calculate the maximum primary/sprite plane watermark */
2085static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2086 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002087 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002088 enum intel_ddb_partitioning ddb_partitioning,
2089 bool is_sprite)
2090{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002091 struct drm_i915_private *dev_priv = to_i915(dev);
2092 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002093
2094 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002095 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002096 return 0;
2097
2098 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002099 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002100 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002101
2102 /*
2103 * For some reason the non self refresh
2104 * FIFO size is only half of the self
2105 * refresh FIFO size on ILK/SNB.
2106 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002107 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002108 fifo_size /= 2;
2109 }
2110
Ville Syrjälä240264f2013-08-07 13:29:12 +03002111 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002112 /* level 0 is always calculated with 1:1 split */
2113 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2114 if (is_sprite)
2115 fifo_size *= 5;
2116 fifo_size /= 6;
2117 } else {
2118 fifo_size /= 2;
2119 }
2120 }
2121
2122 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002123 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002124}
2125
2126/* Calculate the maximum cursor plane watermark */
2127static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002128 int level,
2129 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002130{
2131 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002132 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002133 return 64;
2134
2135 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002136 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002137}
2138
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002139static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002140 int level,
2141 const struct intel_wm_config *config,
2142 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002143 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002144{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002145 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2146 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2147 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002148 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002149}
2150
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002151static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002152 int level,
2153 struct ilk_wm_maximums *max)
2154{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002155 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2156 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2157 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2158 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002159}
2160
Ville Syrjäläd9395652013-10-09 19:18:10 +03002161static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002162 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002163 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002164{
2165 bool ret;
2166
2167 /* already determined to be invalid? */
2168 if (!result->enable)
2169 return false;
2170
2171 result->enable = result->pri_val <= max->pri &&
2172 result->spr_val <= max->spr &&
2173 result->cur_val <= max->cur;
2174
2175 ret = result->enable;
2176
2177 /*
2178 * HACK until we can pre-compute everything,
2179 * and thus fail gracefully if LP0 watermarks
2180 * are exceeded...
2181 */
2182 if (level == 0 && !result->enable) {
2183 if (result->pri_val > max->pri)
2184 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2185 level, result->pri_val, max->pri);
2186 if (result->spr_val > max->spr)
2187 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2188 level, result->spr_val, max->spr);
2189 if (result->cur_val > max->cur)
2190 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2191 level, result->cur_val, max->cur);
2192
2193 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2194 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2195 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2196 result->enable = true;
2197 }
2198
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002199 return ret;
2200}
2201
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002202static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002203 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002204 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002205 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002206 struct intel_plane_state *pristate,
2207 struct intel_plane_state *sprstate,
2208 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002209 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002210{
2211 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2212 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2213 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2214
2215 /* WM1+ latency values stored in 0.5us units */
2216 if (level > 0) {
2217 pri_latency *= 5;
2218 spr_latency *= 5;
2219 cur_latency *= 5;
2220 }
2221
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002222 if (pristate) {
2223 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2224 pri_latency, level);
2225 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2226 }
2227
2228 if (sprstate)
2229 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2230
2231 if (curstate)
2232 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2233
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002234 result->enable = true;
2235}
2236
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002237static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002238hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002239{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002240 const struct intel_atomic_state *intel_state =
2241 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002242 const struct drm_display_mode *adjusted_mode =
2243 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002244 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002245
Matt Roperee91a152015-12-03 11:37:39 -08002246 if (!cstate->base.active)
2247 return 0;
2248 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2249 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002250 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002251 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002252
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002253 /* The WM are computed with base on how long it takes to fill a single
2254 * row at the given clock rate, multiplied by 8.
2255 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002256 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2257 adjusted_mode->crtc_clock);
2258 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002259 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002260
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002261 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2262 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002263}
2264
Ville Syrjäläbb726512016-10-31 22:37:24 +02002265static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2266 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002267{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002268 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002269 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002270 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002271 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002272
2273 /* read the first set of memory latencies[0:3] */
2274 val = 0; /* data0 to be programmed to 0 for first set */
2275 mutex_lock(&dev_priv->rps.hw_lock);
2276 ret = sandybridge_pcode_read(dev_priv,
2277 GEN9_PCODE_READ_MEM_LATENCY,
2278 &val);
2279 mutex_unlock(&dev_priv->rps.hw_lock);
2280
2281 if (ret) {
2282 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2283 return;
2284 }
2285
2286 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2287 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2288 GEN9_MEM_LATENCY_LEVEL_MASK;
2289 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2290 GEN9_MEM_LATENCY_LEVEL_MASK;
2291 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2292 GEN9_MEM_LATENCY_LEVEL_MASK;
2293
2294 /* read the second set of memory latencies[4:7] */
2295 val = 1; /* data0 to be programmed to 1 for second set */
2296 mutex_lock(&dev_priv->rps.hw_lock);
2297 ret = sandybridge_pcode_read(dev_priv,
2298 GEN9_PCODE_READ_MEM_LATENCY,
2299 &val);
2300 mutex_unlock(&dev_priv->rps.hw_lock);
2301 if (ret) {
2302 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2303 return;
2304 }
2305
2306 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2307 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2308 GEN9_MEM_LATENCY_LEVEL_MASK;
2309 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2310 GEN9_MEM_LATENCY_LEVEL_MASK;
2311 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2312 GEN9_MEM_LATENCY_LEVEL_MASK;
2313
Vandana Kannan367294b2014-11-04 17:06:46 +00002314 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002315 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2316 * need to be disabled. We make sure to sanitize the values out
2317 * of the punit to satisfy this requirement.
2318 */
2319 for (level = 1; level <= max_level; level++) {
2320 if (wm[level] == 0) {
2321 for (i = level + 1; i <= max_level; i++)
2322 wm[i] = 0;
2323 break;
2324 }
2325 }
2326
2327 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002328 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002329 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002330 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002331 * to add 2us to the various latency levels we retrieve from the
2332 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002333 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002334 if (wm[0] == 0) {
2335 wm[0] += 2;
2336 for (level = 1; level <= max_level; level++) {
2337 if (wm[level] == 0)
2338 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002339 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002340 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002341 }
2342
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002343 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002344 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2345
2346 wm[0] = (sskpd >> 56) & 0xFF;
2347 if (wm[0] == 0)
2348 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002349 wm[1] = (sskpd >> 4) & 0xFF;
2350 wm[2] = (sskpd >> 12) & 0xFF;
2351 wm[3] = (sskpd >> 20) & 0x1FF;
2352 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002353 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002354 uint32_t sskpd = I915_READ(MCH_SSKPD);
2355
2356 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2357 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2358 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2359 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002360 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002361 uint32_t mltr = I915_READ(MLTR_ILK);
2362
2363 /* ILK primary LP0 latency is 700 ns */
2364 wm[0] = 7;
2365 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2366 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002367 }
2368}
2369
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002370static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2371 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002372{
2373 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002374 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002375 wm[0] = 13;
2376}
2377
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002378static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2379 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002380{
2381 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002382 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002383 wm[0] = 13;
2384
2385 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002386 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002387 wm[3] *= 2;
2388}
2389
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002390int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002391{
2392 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002393 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002394 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002395 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002396 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002397 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002398 return 3;
2399 else
2400 return 2;
2401}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002402
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002403static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002404 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002405 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002406{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002407 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002408
2409 for (level = 0; level <= max_level; level++) {
2410 unsigned int latency = wm[level];
2411
2412 if (latency == 0) {
2413 DRM_ERROR("%s WM%d latency not provided\n",
2414 name, level);
2415 continue;
2416 }
2417
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002418 /*
2419 * - latencies are in us on gen9.
2420 * - before then, WM1+ latency values are in 0.5us units
2421 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002422 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002423 latency *= 10;
2424 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002425 latency *= 5;
2426
2427 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2428 name, level, wm[level],
2429 latency / 10, latency % 10);
2430 }
2431}
2432
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002433static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2434 uint16_t wm[5], uint16_t min)
2435{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002436 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002437
2438 if (wm[0] >= min)
2439 return false;
2440
2441 wm[0] = max(wm[0], min);
2442 for (level = 1; level <= max_level; level++)
2443 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2444
2445 return true;
2446}
2447
Ville Syrjäläbb726512016-10-31 22:37:24 +02002448static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002449{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002450 bool changed;
2451
2452 /*
2453 * The BIOS provided WM memory latency values are often
2454 * inadequate for high resolution displays. Adjust them.
2455 */
2456 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2457 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2458 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2459
2460 if (!changed)
2461 return;
2462
2463 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002464 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2465 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2466 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002467}
2468
Ville Syrjäläbb726512016-10-31 22:37:24 +02002469static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002470{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002471 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002472
2473 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2474 sizeof(dev_priv->wm.pri_latency));
2475 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2476 sizeof(dev_priv->wm.pri_latency));
2477
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002478 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002479 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002480
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002481 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2482 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2483 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002484
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002485 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002486 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002487}
2488
Ville Syrjäläbb726512016-10-31 22:37:24 +02002489static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002490{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002491 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002492 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002493}
2494
Matt Ropered4a6a72016-02-23 17:20:13 -08002495static bool ilk_validate_pipe_wm(struct drm_device *dev,
2496 struct intel_pipe_wm *pipe_wm)
2497{
2498 /* LP0 watermark maximums depend on this pipe alone */
2499 const struct intel_wm_config config = {
2500 .num_pipes_active = 1,
2501 .sprites_enabled = pipe_wm->sprites_enabled,
2502 .sprites_scaled = pipe_wm->sprites_scaled,
2503 };
2504 struct ilk_wm_maximums max;
2505
2506 /* LP0 watermarks always use 1/2 DDB partitioning */
2507 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2508
2509 /* At least LP0 must be valid */
2510 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2511 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2512 return false;
2513 }
2514
2515 return true;
2516}
2517
Matt Roper261a27d2015-10-08 15:28:25 -07002518/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002519static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002520{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002521 struct drm_atomic_state *state = cstate->base.state;
2522 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002523 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002524 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002525 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002526 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002527 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002528 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002529 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002530 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002531 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002532
Matt Ropere8f1f022016-05-12 07:05:55 -07002533 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002534
Matt Roper43d59ed2015-09-24 15:53:07 -07002535 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002536 struct intel_plane_state *ps;
2537
2538 ps = intel_atomic_get_existing_plane_state(state,
2539 intel_plane);
2540 if (!ps)
2541 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002542
2543 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002544 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002545 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002546 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002547 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002548 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002549 }
2550
Matt Ropered4a6a72016-02-23 17:20:13 -08002551 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002552 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002553 pipe_wm->sprites_enabled = sprstate->base.visible;
2554 pipe_wm->sprites_scaled = sprstate->base.visible &&
2555 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2556 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002557 }
2558
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002559 usable_level = max_level;
2560
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002561 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002562 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002563 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002564
2565 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002566 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002567 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002568
Matt Roper86c8bbb2015-09-24 15:53:16 -07002569 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002570 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2571
2572 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2573 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002574
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002575 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002576 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002577
Matt Ropered4a6a72016-02-23 17:20:13 -08002578 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002579 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002580
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002581 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002582
2583 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002584 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002585
Matt Roper86c8bbb2015-09-24 15:53:16 -07002586 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002587 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002588
2589 /*
2590 * Disable any watermark level that exceeds the
2591 * register maximums since such watermarks are
2592 * always invalid.
2593 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002594 if (level > usable_level)
2595 continue;
2596
2597 if (ilk_validate_wm_level(level, &max, wm))
2598 pipe_wm->wm[level] = *wm;
2599 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002600 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002601 }
2602
Matt Roper86c8bbb2015-09-24 15:53:16 -07002603 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002604}
2605
2606/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002607 * Build a set of 'intermediate' watermark values that satisfy both the old
2608 * state and the new state. These can be programmed to the hardware
2609 * immediately.
2610 */
2611static int ilk_compute_intermediate_wm(struct drm_device *dev,
2612 struct intel_crtc *intel_crtc,
2613 struct intel_crtc_state *newstate)
2614{
Matt Ropere8f1f022016-05-12 07:05:55 -07002615 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002616 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002617 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002618
2619 /*
2620 * Start with the final, target watermarks, then combine with the
2621 * currently active watermarks to get values that are safe both before
2622 * and after the vblank.
2623 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002624 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002625 a->pipe_enabled |= b->pipe_enabled;
2626 a->sprites_enabled |= b->sprites_enabled;
2627 a->sprites_scaled |= b->sprites_scaled;
2628
2629 for (level = 0; level <= max_level; level++) {
2630 struct intel_wm_level *a_wm = &a->wm[level];
2631 const struct intel_wm_level *b_wm = &b->wm[level];
2632
2633 a_wm->enable &= b_wm->enable;
2634 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2635 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2636 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2637 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2638 }
2639
2640 /*
2641 * We need to make sure that these merged watermark values are
2642 * actually a valid configuration themselves. If they're not,
2643 * there's no safe way to transition from the old state to
2644 * the new state, so we need to fail the atomic transaction.
2645 */
2646 if (!ilk_validate_pipe_wm(dev, a))
2647 return -EINVAL;
2648
2649 /*
2650 * If our intermediate WM are identical to the final WM, then we can
2651 * omit the post-vblank programming; only update if it's different.
2652 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002653 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
2654 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08002655
2656 return 0;
2657}
2658
2659/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002660 * Merge the watermarks from all active pipes for a specific level.
2661 */
2662static void ilk_merge_wm_level(struct drm_device *dev,
2663 int level,
2664 struct intel_wm_level *ret_wm)
2665{
2666 const struct intel_crtc *intel_crtc;
2667
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002668 ret_wm->enable = true;
2669
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002670 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002671 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002672 const struct intel_wm_level *wm = &active->wm[level];
2673
2674 if (!active->pipe_enabled)
2675 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002676
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002677 /*
2678 * The watermark values may have been used in the past,
2679 * so we must maintain them in the registers for some
2680 * time even if the level is now disabled.
2681 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002682 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002683 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002684
2685 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2686 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2687 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2688 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2689 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002690}
2691
2692/*
2693 * Merge all low power watermarks for all active pipes.
2694 */
2695static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002696 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002697 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002698 struct intel_pipe_wm *merged)
2699{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002700 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002701 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002702 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002703
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002704 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002705 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002706 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002707 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002708
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002709 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002710 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002711
2712 /* merge each WM1+ level */
2713 for (level = 1; level <= max_level; level++) {
2714 struct intel_wm_level *wm = &merged->wm[level];
2715
2716 ilk_merge_wm_level(dev, level, wm);
2717
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002718 if (level > last_enabled_level)
2719 wm->enable = false;
2720 else if (!ilk_validate_wm_level(level, max, wm))
2721 /* make sure all following levels get disabled */
2722 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002723
2724 /*
2725 * The spec says it is preferred to disable
2726 * FBC WMs instead of disabling a WM level.
2727 */
2728 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002729 if (wm->enable)
2730 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002731 wm->fbc_val = 0;
2732 }
2733 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002734
2735 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2736 /*
2737 * FIXME this is racy. FBC might get enabled later.
2738 * What we should check here is whether FBC can be
2739 * enabled sometime later.
2740 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002741 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002742 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002743 for (level = 2; level <= max_level; level++) {
2744 struct intel_wm_level *wm = &merged->wm[level];
2745
2746 wm->enable = false;
2747 }
2748 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002749}
2750
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002751static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2752{
2753 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2754 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2755}
2756
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002757/* The value we need to program into the WM_LPx latency field */
2758static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2759{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002760 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002761
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002762 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002763 return 2 * level;
2764 else
2765 return dev_priv->wm.pri_latency[level];
2766}
2767
Imre Deak820c1982013-12-17 14:46:36 +02002768static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002769 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002770 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002771 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002772{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002773 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002774 struct intel_crtc *intel_crtc;
2775 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002776
Ville Syrjälä0362c782013-10-09 19:17:57 +03002777 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002778 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002779
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002780 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002781 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002782 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002783
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002784 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002785
Ville Syrjälä0362c782013-10-09 19:17:57 +03002786 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002787
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002788 /*
2789 * Maintain the watermark values even if the level is
2790 * disabled. Doing otherwise could cause underruns.
2791 */
2792 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002793 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002794 (r->pri_val << WM1_LP_SR_SHIFT) |
2795 r->cur_val;
2796
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002797 if (r->enable)
2798 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2799
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002800 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002801 results->wm_lp[wm_lp - 1] |=
2802 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2803 else
2804 results->wm_lp[wm_lp - 1] |=
2805 r->fbc_val << WM1_LP_FBC_SHIFT;
2806
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002807 /*
2808 * Always set WM1S_LP_EN when spr_val != 0, even if the
2809 * level is disabled. Doing otherwise could cause underruns.
2810 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002811 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002812 WARN_ON(wm_lp != 1);
2813 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2814 } else
2815 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002816 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002817
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002818 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002819 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002820 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002821 const struct intel_wm_level *r =
2822 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002823
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002824 if (WARN_ON(!r->enable))
2825 continue;
2826
Matt Ropered4a6a72016-02-23 17:20:13 -08002827 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002828
2829 results->wm_pipe[pipe] =
2830 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2831 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2832 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002833 }
2834}
2835
Paulo Zanoni861f3382013-05-31 10:19:21 -03002836/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2837 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002838static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002839 struct intel_pipe_wm *r1,
2840 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002841{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002842 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002843 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002844
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002845 for (level = 1; level <= max_level; level++) {
2846 if (r1->wm[level].enable)
2847 level1 = level;
2848 if (r2->wm[level].enable)
2849 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002850 }
2851
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002852 if (level1 == level2) {
2853 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002854 return r2;
2855 else
2856 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002857 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002858 return r1;
2859 } else {
2860 return r2;
2861 }
2862}
2863
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002864/* dirty bits used to track which watermarks need changes */
2865#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2866#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2867#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2868#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2869#define WM_DIRTY_FBC (1 << 24)
2870#define WM_DIRTY_DDB (1 << 25)
2871
Damien Lespiau055e3932014-08-18 13:49:10 +01002872static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002873 const struct ilk_wm_values *old,
2874 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002875{
2876 unsigned int dirty = 0;
2877 enum pipe pipe;
2878 int wm_lp;
2879
Damien Lespiau055e3932014-08-18 13:49:10 +01002880 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002881 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2882 dirty |= WM_DIRTY_LINETIME(pipe);
2883 /* Must disable LP1+ watermarks too */
2884 dirty |= WM_DIRTY_LP_ALL;
2885 }
2886
2887 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2888 dirty |= WM_DIRTY_PIPE(pipe);
2889 /* Must disable LP1+ watermarks too */
2890 dirty |= WM_DIRTY_LP_ALL;
2891 }
2892 }
2893
2894 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2895 dirty |= WM_DIRTY_FBC;
2896 /* Must disable LP1+ watermarks too */
2897 dirty |= WM_DIRTY_LP_ALL;
2898 }
2899
2900 if (old->partitioning != new->partitioning) {
2901 dirty |= WM_DIRTY_DDB;
2902 /* Must disable LP1+ watermarks too */
2903 dirty |= WM_DIRTY_LP_ALL;
2904 }
2905
2906 /* LP1+ watermarks already deemed dirty, no need to continue */
2907 if (dirty & WM_DIRTY_LP_ALL)
2908 return dirty;
2909
2910 /* Find the lowest numbered LP1+ watermark in need of an update... */
2911 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2912 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2913 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2914 break;
2915 }
2916
2917 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2918 for (; wm_lp <= 3; wm_lp++)
2919 dirty |= WM_DIRTY_LP(wm_lp);
2920
2921 return dirty;
2922}
2923
Ville Syrjälä8553c182013-12-05 15:51:39 +02002924static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2925 unsigned int dirty)
2926{
Imre Deak820c1982013-12-17 14:46:36 +02002927 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002928 bool changed = false;
2929
2930 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2931 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2932 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2933 changed = true;
2934 }
2935 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2936 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2937 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2938 changed = true;
2939 }
2940 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2941 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2942 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2943 changed = true;
2944 }
2945
2946 /*
2947 * Don't touch WM1S_LP_EN here.
2948 * Doing so could cause underruns.
2949 */
2950
2951 return changed;
2952}
2953
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002954/*
2955 * The spec says we shouldn't write when we don't need, because every write
2956 * causes WMs to be re-evaluated, expending some power.
2957 */
Imre Deak820c1982013-12-17 14:46:36 +02002958static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2959 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002960{
Imre Deak820c1982013-12-17 14:46:36 +02002961 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002962 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002963 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002964
Damien Lespiau055e3932014-08-18 13:49:10 +01002965 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002966 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002967 return;
2968
Ville Syrjälä8553c182013-12-05 15:51:39 +02002969 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002970
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002971 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002972 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002973 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002974 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002975 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002976 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2977
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002978 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002979 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002980 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002981 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002982 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002983 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2984
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002985 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002986 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002987 val = I915_READ(WM_MISC);
2988 if (results->partitioning == INTEL_DDB_PART_1_2)
2989 val &= ~WM_MISC_DATA_PARTITION_5_6;
2990 else
2991 val |= WM_MISC_DATA_PARTITION_5_6;
2992 I915_WRITE(WM_MISC, val);
2993 } else {
2994 val = I915_READ(DISP_ARB_CTL2);
2995 if (results->partitioning == INTEL_DDB_PART_1_2)
2996 val &= ~DISP_DATA_PARTITION_5_6;
2997 else
2998 val |= DISP_DATA_PARTITION_5_6;
2999 I915_WRITE(DISP_ARB_CTL2, val);
3000 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003001 }
3002
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003003 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003004 val = I915_READ(DISP_ARB_CTL);
3005 if (results->enable_fbc_wm)
3006 val &= ~DISP_FBC_WM_DIS;
3007 else
3008 val |= DISP_FBC_WM_DIS;
3009 I915_WRITE(DISP_ARB_CTL, val);
3010 }
3011
Imre Deak954911e2013-12-17 14:46:34 +02003012 if (dirty & WM_DIRTY_LP(1) &&
3013 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3014 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3015
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003016 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003017 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3018 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3019 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3020 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3021 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003022
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003023 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003024 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003025 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003026 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003027 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003028 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003029
3030 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003031}
3032
Matt Ropered4a6a72016-02-23 17:20:13 -08003033bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003034{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003035 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003036
3037 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3038}
3039
Lyude656d1b82016-08-17 15:55:54 -04003040#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003041
Matt Roper024c9042015-09-24 15:53:11 -07003042/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003043 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3044 * so assume we'll always need it in order to avoid underruns.
3045 */
3046static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3047{
3048 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3049
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003050 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003051 return true;
3052
3053 return false;
3054}
3055
Paulo Zanoni56feca92016-09-22 18:00:28 -03003056static bool
3057intel_has_sagv(struct drm_i915_private *dev_priv)
3058{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003059 if (IS_KABYLAKE(dev_priv))
3060 return true;
3061
3062 if (IS_SKYLAKE(dev_priv) &&
3063 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3064 return true;
3065
3066 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003067}
3068
Lyude656d1b82016-08-17 15:55:54 -04003069/*
3070 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3071 * depending on power and performance requirements. The display engine access
3072 * to system memory is blocked during the adjustment time. Because of the
3073 * blocking time, having this enabled can cause full system hangs and/or pipe
3074 * underruns if we don't meet all of the following requirements:
3075 *
3076 * - <= 1 pipe enabled
3077 * - All planes can enable watermarks for latencies >= SAGV engine block time
3078 * - We're not using an interlaced display configuration
3079 */
3080int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003081intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003082{
3083 int ret;
3084
Paulo Zanoni56feca92016-09-22 18:00:28 -03003085 if (!intel_has_sagv(dev_priv))
3086 return 0;
3087
3088 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003089 return 0;
3090
3091 DRM_DEBUG_KMS("Enabling the SAGV\n");
3092 mutex_lock(&dev_priv->rps.hw_lock);
3093
3094 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3095 GEN9_SAGV_ENABLE);
3096
3097 /* We don't need to wait for the SAGV when enabling */
3098 mutex_unlock(&dev_priv->rps.hw_lock);
3099
3100 /*
3101 * Some skl systems, pre-release machines in particular,
3102 * don't actually have an SAGV.
3103 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003104 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003105 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003106 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003107 return 0;
3108 } else if (ret < 0) {
3109 DRM_ERROR("Failed to enable the SAGV\n");
3110 return ret;
3111 }
3112
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003113 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003114 return 0;
3115}
3116
Lyude656d1b82016-08-17 15:55:54 -04003117int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003118intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003119{
Imre Deakb3b8e992016-12-05 18:27:38 +02003120 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003121
Paulo Zanoni56feca92016-09-22 18:00:28 -03003122 if (!intel_has_sagv(dev_priv))
3123 return 0;
3124
3125 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003126 return 0;
3127
3128 DRM_DEBUG_KMS("Disabling the SAGV\n");
3129 mutex_lock(&dev_priv->rps.hw_lock);
3130
3131 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003132 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3133 GEN9_SAGV_DISABLE,
3134 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3135 1);
Lyude656d1b82016-08-17 15:55:54 -04003136 mutex_unlock(&dev_priv->rps.hw_lock);
3137
Lyude656d1b82016-08-17 15:55:54 -04003138 /*
3139 * Some skl systems, pre-release machines in particular,
3140 * don't actually have an SAGV.
3141 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003142 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003143 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003144 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003145 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003146 } else if (ret < 0) {
3147 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3148 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003149 }
3150
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003151 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003152 return 0;
3153}
3154
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003155bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003156{
3157 struct drm_device *dev = state->dev;
3158 struct drm_i915_private *dev_priv = to_i915(dev);
3159 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003160 struct intel_crtc *crtc;
3161 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003162 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003163 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003164 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003165
Paulo Zanoni56feca92016-09-22 18:00:28 -03003166 if (!intel_has_sagv(dev_priv))
3167 return false;
3168
Lyude656d1b82016-08-17 15:55:54 -04003169 /*
3170 * SKL workaround: bspec recommends we disable the SAGV when we have
3171 * more then one pipe enabled
3172 *
3173 * If there are no active CRTCs, no additional checks need be performed
3174 */
3175 if (hweight32(intel_state->active_crtcs) == 0)
3176 return true;
3177 else if (hweight32(intel_state->active_crtcs) > 1)
3178 return false;
3179
3180 /* Since we're now guaranteed to only have one active CRTC... */
3181 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003182 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003183 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003184
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003185 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003186 return false;
3187
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003188 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003189 struct skl_plane_wm *wm =
3190 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003191
Lyude656d1b82016-08-17 15:55:54 -04003192 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003193 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003194 continue;
3195
3196 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003197 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003198 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003199 { }
3200
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003201 latency = dev_priv->wm.skl_latency[level];
3202
3203 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003204 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003205 I915_FORMAT_MOD_X_TILED)
3206 latency += 15;
3207
Lyude656d1b82016-08-17 15:55:54 -04003208 /*
3209 * If any of the planes on this pipe don't enable wm levels
3210 * that incur memory latencies higher then 30µs we can't enable
3211 * the SAGV
3212 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003213 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003214 return false;
3215 }
3216
3217 return true;
3218}
3219
Damien Lespiaub9cec072014-11-04 17:06:43 +00003220static void
3221skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003222 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003223 struct skl_ddb_entry *alloc, /* out */
3224 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003225{
Matt Roperc107acf2016-05-12 07:06:01 -07003226 struct drm_atomic_state *state = cstate->base.state;
3227 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3228 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003229 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003230 unsigned int pipe_size, ddb_size;
3231 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003232
Matt Ropera6d3460e2016-05-12 07:06:04 -07003233 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003234 alloc->start = 0;
3235 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003236 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003237 return;
3238 }
3239
Matt Ropera6d3460e2016-05-12 07:06:04 -07003240 if (intel_state->active_pipe_changes)
3241 *num_active = hweight32(intel_state->active_crtcs);
3242 else
3243 *num_active = hweight32(dev_priv->active_crtcs);
3244
Deepak M6f3fff62016-09-15 15:01:10 +05303245 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3246 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003247
3248 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3249
Matt Roperc107acf2016-05-12 07:06:01 -07003250 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003251 * If the state doesn't change the active CRTC's, then there's
3252 * no need to recalculate; the existing pipe allocation limits
3253 * should remain unchanged. Note that we're safe from racing
3254 * commits since any racing commit that changes the active CRTC
3255 * list would need to grab _all_ crtc locks, including the one
3256 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003257 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003258 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003259 /*
3260 * alloc may be cleared by clear_intel_crtc_state,
3261 * copy from old state to be sure
3262 */
3263 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003264 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003265 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003266
3267 nth_active_pipe = hweight32(intel_state->active_crtcs &
3268 (drm_crtc_mask(for_crtc) - 1));
3269 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3270 alloc->start = nth_active_pipe * ddb_size / *num_active;
3271 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003272}
3273
Matt Roperc107acf2016-05-12 07:06:01 -07003274static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003275{
Matt Roperc107acf2016-05-12 07:06:01 -07003276 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003277 return 32;
3278
3279 return 8;
3280}
3281
Damien Lespiaua269c582014-11-04 17:06:49 +00003282static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3283{
3284 entry->start = reg & 0x3ff;
3285 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003286 if (entry->end)
3287 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003288}
3289
Damien Lespiau08db6652014-11-04 17:06:52 +00003290void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3291 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003292{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003293 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003294
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003295 memset(ddb, 0, sizeof(*ddb));
3296
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003297 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003298 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003299 enum plane_id plane_id;
3300 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003301
3302 power_domain = POWER_DOMAIN_PIPE(pipe);
3303 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003304 continue;
3305
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003306 for_each_plane_id_on_crtc(crtc, plane_id) {
3307 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003308
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003309 if (plane_id != PLANE_CURSOR)
3310 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3311 else
3312 val = I915_READ(CUR_BUF_CFG(pipe));
3313
3314 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3315 }
Imre Deak4d800032016-02-17 16:31:29 +02003316
3317 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003318 }
3319}
3320
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003321/*
3322 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3323 * The bspec defines downscale amount as:
3324 *
3325 * """
3326 * Horizontal down scale amount = maximum[1, Horizontal source size /
3327 * Horizontal destination size]
3328 * Vertical down scale amount = maximum[1, Vertical source size /
3329 * Vertical destination size]
3330 * Total down scale amount = Horizontal down scale amount *
3331 * Vertical down scale amount
3332 * """
3333 *
3334 * Return value is provided in 16.16 fixed point form to retain fractional part.
3335 * Caller should take care of dividing & rounding off the value.
3336 */
3337static uint32_t
3338skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3339{
3340 uint32_t downscale_h, downscale_w;
3341 uint32_t src_w, src_h, dst_w, dst_h;
3342
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003343 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003344 return DRM_PLANE_HELPER_NO_SCALING;
3345
3346 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003347 src_w = drm_rect_width(&pstate->base.src);
3348 src_h = drm_rect_height(&pstate->base.src);
3349 dst_w = drm_rect_width(&pstate->base.dst);
3350 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003351 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003352 swap(dst_w, dst_h);
3353
3354 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3355 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3356
3357 /* Provide result in 16.16 fixed point */
3358 return (uint64_t)downscale_w * downscale_h >> 16;
3359}
3360
Damien Lespiaub9cec072014-11-04 17:06:43 +00003361static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003362skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3363 const struct drm_plane_state *pstate,
3364 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003365{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003366 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003367 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003368 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003369 struct drm_framebuffer *fb;
3370 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003371
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003372 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003373 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003374
3375 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003376 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003377
Matt Ropera1de91e2016-05-12 07:05:57 -07003378 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3379 return 0;
3380 if (y && format != DRM_FORMAT_NV12)
3381 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003382
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003383 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3384 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003385
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003386 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003387 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003388
3389 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003390 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003391 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003392 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003393 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003394 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003395 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003396 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003397 } else {
3398 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003399 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003400 }
3401
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003402 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3403
3404 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003405}
3406
3407/*
3408 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3409 * a 8192x4096@32bpp framebuffer:
3410 * 3 * 4096 * 8192 * 4 < 2^32
3411 */
3412static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003413skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3414 unsigned *plane_data_rate,
3415 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003416{
Matt Roper9c74d822016-05-12 07:05:58 -07003417 struct drm_crtc_state *cstate = &intel_cstate->base;
3418 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003419 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003420 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003421 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003422
3423 if (WARN_ON(!state))
3424 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003425
Matt Ropera1de91e2016-05-12 07:05:57 -07003426 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003427 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003428 enum plane_id plane_id = to_intel_plane(plane)->id;
3429 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003430
Matt Ropera6d3460e2016-05-12 07:06:04 -07003431 /* packed/uv */
3432 rate = skl_plane_relative_data_rate(intel_cstate,
3433 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003434 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003435
3436 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003437
Matt Ropera6d3460e2016-05-12 07:06:04 -07003438 /* y-plane */
3439 rate = skl_plane_relative_data_rate(intel_cstate,
3440 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003441 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003442
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003443 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003444 }
3445
3446 return total_data_rate;
3447}
3448
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003449static uint16_t
3450skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3451 const int y)
3452{
3453 struct drm_framebuffer *fb = pstate->fb;
3454 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3455 uint32_t src_w, src_h;
3456 uint32_t min_scanlines = 8;
3457 uint8_t plane_bpp;
3458
3459 if (WARN_ON(!fb))
3460 return 0;
3461
3462 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003463 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003464 return 0;
3465
3466 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003467 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3468 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003469 return 8;
3470
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003471 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3472 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003473
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003474 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003475 swap(src_w, src_h);
3476
3477 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003478 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003479 src_w /= 2;
3480 src_h /= 2;
3481 }
3482
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003483 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003484 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003485 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003486 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003487
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003488 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003489 switch (plane_bpp) {
3490 case 1:
3491 min_scanlines = 32;
3492 break;
3493 case 2:
3494 min_scanlines = 16;
3495 break;
3496 case 4:
3497 min_scanlines = 8;
3498 break;
3499 case 8:
3500 min_scanlines = 4;
3501 break;
3502 default:
3503 WARN(1, "Unsupported pixel depth %u for rotation",
3504 plane_bpp);
3505 min_scanlines = 32;
3506 }
3507 }
3508
3509 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3510}
3511
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003512static void
3513skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3514 uint16_t *minimum, uint16_t *y_minimum)
3515{
3516 const struct drm_plane_state *pstate;
3517 struct drm_plane *plane;
3518
3519 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003520 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003521
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003522 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003523 continue;
3524
3525 if (!pstate->visible)
3526 continue;
3527
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003528 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3529 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003530 }
3531
3532 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3533}
3534
Matt Roperc107acf2016-05-12 07:06:01 -07003535static int
Matt Roper024c9042015-09-24 15:53:11 -07003536skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003537 struct skl_ddb_allocation *ddb /* out */)
3538{
Matt Roperc107acf2016-05-12 07:06:01 -07003539 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003540 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003541 struct drm_device *dev = crtc->dev;
3542 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3543 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003544 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003545 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003546 uint16_t minimum[I915_MAX_PLANES] = {};
3547 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003548 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003549 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003550 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003551 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3552 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003553
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003554 /* Clear the partitioning for disabled planes. */
3555 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3556 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3557
Matt Ropera6d3460e2016-05-12 07:06:04 -07003558 if (WARN_ON(!state))
3559 return 0;
3560
Matt Roperc107acf2016-05-12 07:06:01 -07003561 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003562 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003563 return 0;
3564 }
3565
Matt Ropera6d3460e2016-05-12 07:06:04 -07003566 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003567 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003568 if (alloc_size == 0) {
3569 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003570 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003571 }
3572
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003573 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003574
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003575 /*
3576 * 1. Allocate the mininum required blocks for each active plane
3577 * and allocate the cursor, it doesn't require extra allocation
3578 * proportional to the data rate.
3579 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003580
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003581 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3582 alloc_size -= minimum[plane_id];
3583 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003584 }
3585
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003586 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3587 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3588
Damien Lespiaub9cec072014-11-04 17:06:43 +00003589 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003590 * 2. Distribute the remaining space in proportion to the amount of
3591 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003592 *
3593 * FIXME: we may not allocate every single block here.
3594 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003595 total_data_rate = skl_get_total_relative_data_rate(cstate,
3596 plane_data_rate,
3597 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003598 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003599 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003600
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003601 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003602 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003603 unsigned int data_rate, y_data_rate;
3604 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003605
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003606 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003607 continue;
3608
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003609 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003610
3611 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003612 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003613 * promote the expression to 64 bits to avoid overflowing, the
3614 * result is < available as data_rate / total_data_rate < 1
3615 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003616 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003617 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3618 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003619
Matt Roperc107acf2016-05-12 07:06:01 -07003620 /* Leave disabled planes at (0,0) */
3621 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003622 ddb->plane[pipe][plane_id].start = start;
3623 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003624 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003625
3626 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003627
3628 /*
3629 * allocation for y_plane part of planar format:
3630 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003631 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003632
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003633 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003634 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3635 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003636
Matt Roperc107acf2016-05-12 07:06:01 -07003637 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003638 ddb->y_plane[pipe][plane_id].start = start;
3639 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003640 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003641
Matt Ropera1de91e2016-05-12 07:05:57 -07003642 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003643 }
3644
Matt Roperc107acf2016-05-12 07:06:01 -07003645 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003646}
3647
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003648/*
3649 * 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 +02003650 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003651 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3652 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3653*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303654static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3655 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003656{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303657 uint32_t wm_intermediate_val;
3658 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003659
3660 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303661 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003662
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303663 wm_intermediate_val = latency * pixel_rate * cpp;
3664 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003665 return ret;
3666}
3667
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303668static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3669 uint32_t pipe_htotal,
3670 uint32_t latency,
3671 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003672{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003673 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303674 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003675
3676 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303677 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003678
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003679 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303680 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3681 pipe_htotal * 1000);
3682 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003683 return ret;
3684}
3685
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003686static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3687 struct intel_plane_state *pstate)
3688{
3689 uint64_t adjusted_pixel_rate;
3690 uint64_t downscale_amount;
3691 uint64_t pixel_rate;
3692
3693 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003694 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003695 return 0;
3696
3697 /*
3698 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3699 * with additional adjustments for plane-specific scaling.
3700 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003701 adjusted_pixel_rate = cstate->pixel_rate;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003702 downscale_amount = skl_plane_downscale_amount(pstate);
3703
3704 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3705 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3706
3707 return pixel_rate;
3708}
3709
Matt Roper55994c22016-05-12 07:06:08 -07003710static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3711 struct intel_crtc_state *cstate,
3712 struct intel_plane_state *intel_pstate,
3713 uint16_t ddb_allocation,
3714 int level,
3715 uint16_t *out_blocks, /* out */
3716 uint8_t *out_lines, /* out */
3717 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003718{
Matt Roper33815fa2016-05-12 07:06:05 -07003719 struct drm_plane_state *pstate = &intel_pstate->base;
3720 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003721 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303722 uint_fixed_16_16_t method1, method2;
3723 uint_fixed_16_16_t plane_blocks_per_line;
3724 uint_fixed_16_16_t selected_result;
3725 uint32_t interm_pbpl;
3726 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003727 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003728 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003729 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003730 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303731 uint_fixed_16_16_t y_tile_minimum;
3732 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003733 struct intel_atomic_state *state =
3734 to_intel_atomic_state(cstate->base.state);
3735 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303736 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003737
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003738 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003739 *enabled = false;
3740 return 0;
3741 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003742
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303743 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3744 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3745 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3746
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303747 /* Display WA #1141: kbl. */
3748 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3749 latency += 4;
3750
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303751 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003752 latency += 15;
3753
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003754 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3755 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003756
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003757 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003758 swap(width, height);
3759
Ville Syrjälä353c8592016-12-14 23:30:57 +02003760 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003761 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3762
Dave Airlie61d0a042016-10-25 16:35:20 +10003763 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003764 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003765 fb->format->cpp[1] :
3766 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003767
3768 switch (cpp) {
3769 case 1:
3770 y_min_scanlines = 16;
3771 break;
3772 case 2:
3773 y_min_scanlines = 8;
3774 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003775 case 4:
3776 y_min_scanlines = 4;
3777 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003778 default:
3779 MISSING_CASE(cpp);
3780 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003781 }
3782 } else {
3783 y_min_scanlines = 4;
3784 }
3785
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003786 if (apply_memory_bw_wa)
3787 y_min_scanlines *= 2;
3788
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003789 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303790 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303791 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3792 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003793 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303794 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303795 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303796 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3797 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303798 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303799 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3800 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003801 }
3802
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003803 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3804 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003805 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003806 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003807 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003808
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303809 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3810 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003811
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303812 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303813 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003814 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003815 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3816 (plane_bytes_per_line / 512 < 1))
3817 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303818 else if ((ddb_allocation /
3819 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3820 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003821 else
3822 selected_result = method1;
3823 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003824
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303825 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3826 res_lines = DIV_ROUND_UP(selected_result.val,
3827 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003828
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003829 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303830 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303831 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003832 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003833 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003834 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003835 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003836 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003837
Matt Roper55994c22016-05-12 07:06:08 -07003838 if (res_blocks >= ddb_allocation || res_lines > 31) {
3839 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003840
3841 /*
3842 * If there are no valid level 0 watermarks, then we can't
3843 * support this display configuration.
3844 */
3845 if (level) {
3846 return 0;
3847 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003848 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003849
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003850 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3851 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3852 plane->base.id, plane->name,
3853 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003854 return -EINVAL;
3855 }
Matt Roper55994c22016-05-12 07:06:08 -07003856 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003857
3858 *out_blocks = res_blocks;
3859 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003860 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003861
Matt Roper55994c22016-05-12 07:06:08 -07003862 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003863}
3864
Matt Roperf4a96752016-05-12 07:06:06 -07003865static int
3866skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3867 struct skl_ddb_allocation *ddb,
3868 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003869 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003870 int level,
3871 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003872{
Matt Roperf4a96752016-05-12 07:06:06 -07003873 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003874 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003875 struct drm_plane *plane = &intel_plane->base;
3876 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003877 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003878 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003879 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003880
3881 if (state)
3882 intel_pstate =
3883 intel_atomic_get_existing_plane_state(state,
3884 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003885
Matt Roperf4a96752016-05-12 07:06:06 -07003886 /*
Lyudea62163e2016-10-04 14:28:20 -04003887 * Note: If we start supporting multiple pending atomic commits against
3888 * the same planes/CRTC's in the future, plane->state will no longer be
3889 * the correct pre-state to use for the calculations here and we'll
3890 * need to change where we get the 'unchanged' plane data from.
3891 *
3892 * For now this is fine because we only allow one queued commit against
3893 * a CRTC. Even if the plane isn't modified by this transaction and we
3894 * don't have a plane lock, we still have the CRTC's lock, so we know
3895 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003896 */
Lyudea62163e2016-10-04 14:28:20 -04003897 if (!intel_pstate)
3898 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003899
Lyudea62163e2016-10-04 14:28:20 -04003900 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003901
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003902 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003903
Lyudea62163e2016-10-04 14:28:20 -04003904 ret = skl_compute_plane_wm(dev_priv,
3905 cstate,
3906 intel_pstate,
3907 ddb_blocks,
3908 level,
3909 &result->plane_res_b,
3910 &result->plane_res_l,
3911 &result->plane_en);
3912 if (ret)
3913 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003914
3915 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003916}
3917
Damien Lespiau407b50f2014-11-04 17:06:57 +00003918static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003919skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003920{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303921 struct drm_atomic_state *state = cstate->base.state;
3922 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003923 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303924 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003925
Matt Roper024c9042015-09-24 15:53:11 -07003926 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003927 return 0;
3928
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003929 pixel_rate = cstate->pixel_rate;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003930
3931 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003932 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003933
Mahesh Kumara3a89862016-12-01 21:19:34 +05303934 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3935 1000, pixel_rate);
3936
3937 /* Display WA #1135: bxt. */
3938 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3939 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3940
3941 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003942}
3943
Matt Roper024c9042015-09-24 15:53:11 -07003944static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003945 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003946{
Matt Roper024c9042015-09-24 15:53:11 -07003947 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003948 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003949
3950 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003951 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003952}
3953
Matt Roper55994c22016-05-12 07:06:08 -07003954static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3955 struct skl_ddb_allocation *ddb,
3956 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003957{
Matt Roper024c9042015-09-24 15:53:11 -07003958 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003959 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003960 struct intel_plane *intel_plane;
3961 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003962 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003963 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003964
Lyudea62163e2016-10-04 14:28:20 -04003965 /*
3966 * We'll only calculate watermarks for planes that are actually
3967 * enabled, so make sure all other planes are set as disabled.
3968 */
3969 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3970
3971 for_each_intel_plane_mask(&dev_priv->drm,
3972 intel_plane,
3973 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003974 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003975
3976 for (level = 0; level <= max_level; level++) {
3977 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3978 intel_plane, level,
3979 &wm->wm[level]);
3980 if (ret)
3981 return ret;
3982 }
3983 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003984 }
Matt Roper024c9042015-09-24 15:53:11 -07003985 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003986
Matt Roper55994c22016-05-12 07:06:08 -07003987 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003988}
3989
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003990static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3991 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003992 const struct skl_ddb_entry *entry)
3993{
3994 if (entry->end)
3995 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3996 else
3997 I915_WRITE(reg, 0);
3998}
3999
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004000static void skl_write_wm_level(struct drm_i915_private *dev_priv,
4001 i915_reg_t reg,
4002 const struct skl_wm_level *level)
4003{
4004 uint32_t val = 0;
4005
4006 if (level->plane_en) {
4007 val |= PLANE_WM_EN;
4008 val |= level->plane_res_b;
4009 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
4010 }
4011
4012 I915_WRITE(reg, val);
4013}
4014
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004015static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
4016 const struct skl_plane_wm *wm,
4017 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004018 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04004019{
4020 struct drm_crtc *crtc = &intel_crtc->base;
4021 struct drm_device *dev = crtc->dev;
4022 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004023 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004024 enum pipe pipe = intel_crtc->pipe;
4025
4026 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004027 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004028 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004029 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004030 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004031 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004032
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004033 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4034 &ddb->plane[pipe][plane_id]);
4035 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4036 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004037}
4038
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004039static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4040 const struct skl_plane_wm *wm,
4041 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004042{
4043 struct drm_crtc *crtc = &intel_crtc->base;
4044 struct drm_device *dev = crtc->dev;
4045 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004046 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004047 enum pipe pipe = intel_crtc->pipe;
4048
4049 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004050 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4051 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004052 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004053 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004054
4055 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004056 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004057}
4058
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004059bool skl_wm_level_equals(const struct skl_wm_level *l1,
4060 const struct skl_wm_level *l2)
4061{
4062 if (l1->plane_en != l2->plane_en)
4063 return false;
4064
4065 /* If both planes aren't enabled, the rest shouldn't matter */
4066 if (!l1->plane_en)
4067 return true;
4068
4069 return (l1->plane_res_l == l2->plane_res_l &&
4070 l1->plane_res_b == l2->plane_res_b);
4071}
4072
Lyude27082492016-08-24 07:48:10 +02004073static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4074 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004075{
Lyude27082492016-08-24 07:48:10 +02004076 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004077}
4078
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004079bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
4080 const struct skl_ddb_entry *ddb,
4081 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004082{
Lyudece0ba282016-09-15 10:46:35 -04004083 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004084
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004085 for (i = 0; i < I915_MAX_PIPES; i++)
4086 if (i != ignore && entries[i] &&
4087 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02004088 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004089
Lyude27082492016-08-24 07:48:10 +02004090 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004091}
4092
Matt Roper55994c22016-05-12 07:06:08 -07004093static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004094 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004095 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004096 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004097 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004098{
Matt Roperf4a96752016-05-12 07:06:06 -07004099 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004100 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004101
Matt Roper55994c22016-05-12 07:06:08 -07004102 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4103 if (ret)
4104 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004105
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004106 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004107 *changed = false;
4108 else
4109 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004110
Matt Roper55994c22016-05-12 07:06:08 -07004111 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004112}
4113
Matt Roper9b613022016-06-27 16:42:44 -07004114static uint32_t
4115pipes_modified(struct drm_atomic_state *state)
4116{
4117 struct drm_crtc *crtc;
4118 struct drm_crtc_state *cstate;
4119 uint32_t i, ret = 0;
4120
4121 for_each_crtc_in_state(state, crtc, cstate, i)
4122 ret |= drm_crtc_mask(crtc);
4123
4124 return ret;
4125}
4126
Jani Nikulabb7791b2016-10-04 12:29:17 +03004127static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004128skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4129{
4130 struct drm_atomic_state *state = cstate->base.state;
4131 struct drm_device *dev = state->dev;
4132 struct drm_crtc *crtc = cstate->base.crtc;
4133 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4134 struct drm_i915_private *dev_priv = to_i915(dev);
4135 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4136 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4137 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4138 struct drm_plane_state *plane_state;
4139 struct drm_plane *plane;
4140 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004141
4142 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4143
Maarten Lankhorst220b0962016-10-26 15:41:30 +02004144 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004145 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004146
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004147 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4148 &new_ddb->plane[pipe][plane_id]) &&
4149 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4150 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004151 continue;
4152
4153 plane_state = drm_atomic_get_plane_state(state, plane);
4154 if (IS_ERR(plane_state))
4155 return PTR_ERR(plane_state);
4156 }
4157
4158 return 0;
4159}
4160
Matt Roper98d39492016-05-12 07:06:03 -07004161static int
4162skl_compute_ddb(struct drm_atomic_state *state)
4163{
4164 struct drm_device *dev = state->dev;
4165 struct drm_i915_private *dev_priv = to_i915(dev);
4166 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4167 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004168 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004169 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004170 int ret;
4171
4172 /*
4173 * If this is our first atomic update following hardware readout,
4174 * we can't trust the DDB that the BIOS programmed for us. Let's
4175 * pretend that all pipes switched active status so that we'll
4176 * ensure a full DDB recompute.
4177 */
Matt Roper1b54a882016-06-17 13:42:18 -07004178 if (dev_priv->wm.distrust_bios_wm) {
4179 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4180 state->acquire_ctx);
4181 if (ret)
4182 return ret;
4183
Matt Roper98d39492016-05-12 07:06:03 -07004184 intel_state->active_pipe_changes = ~0;
4185
Matt Roper1b54a882016-06-17 13:42:18 -07004186 /*
4187 * We usually only initialize intel_state->active_crtcs if we
4188 * we're doing a modeset; make sure this field is always
4189 * initialized during the sanitization process that happens
4190 * on the first commit too.
4191 */
4192 if (!intel_state->modeset)
4193 intel_state->active_crtcs = dev_priv->active_crtcs;
4194 }
4195
Matt Roper98d39492016-05-12 07:06:03 -07004196 /*
4197 * If the modeset changes which CRTC's are active, we need to
4198 * recompute the DDB allocation for *all* active pipes, even
4199 * those that weren't otherwise being modified in any way by this
4200 * atomic commit. Due to the shrinking of the per-pipe allocations
4201 * when new active CRTC's are added, it's possible for a pipe that
4202 * we were already using and aren't changing at all here to suddenly
4203 * become invalid if its DDB needs exceeds its new allocation.
4204 *
4205 * Note that if we wind up doing a full DDB recompute, we can't let
4206 * any other display updates race with this transaction, so we need
4207 * to grab the lock on *all* CRTC's.
4208 */
Matt Roper734fa012016-05-12 15:11:40 -07004209 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004210 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004211 intel_state->wm_results.dirty_pipes = ~0;
4212 }
Matt Roper98d39492016-05-12 07:06:03 -07004213
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004214 /*
4215 * We're not recomputing for the pipes not included in the commit, so
4216 * make sure we start with the current state.
4217 */
4218 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4219
Matt Roper98d39492016-05-12 07:06:03 -07004220 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4221 struct intel_crtc_state *cstate;
4222
4223 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4224 if (IS_ERR(cstate))
4225 return PTR_ERR(cstate);
4226
Matt Roper734fa012016-05-12 15:11:40 -07004227 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004228 if (ret)
4229 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004230
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004231 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004232 if (ret)
4233 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004234 }
4235
4236 return 0;
4237}
4238
Matt Roper2722efb2016-08-17 15:55:55 -04004239static void
4240skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4241 struct skl_wm_values *src,
4242 enum pipe pipe)
4243{
Matt Roper2722efb2016-08-17 15:55:55 -04004244 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4245 sizeof(dst->ddb.y_plane[pipe]));
4246 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4247 sizeof(dst->ddb.plane[pipe]));
4248}
4249
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004250static void
4251skl_print_wm_changes(const struct drm_atomic_state *state)
4252{
4253 const struct drm_device *dev = state->dev;
4254 const struct drm_i915_private *dev_priv = to_i915(dev);
4255 const struct intel_atomic_state *intel_state =
4256 to_intel_atomic_state(state);
4257 const struct drm_crtc *crtc;
4258 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004259 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004260 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4261 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004262 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004263
4264 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004265 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4266 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004267
Maarten Lankhorst75704982016-11-01 12:04:10 +01004268 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004269 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004270 const struct skl_ddb_entry *old, *new;
4271
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004272 old = &old_ddb->plane[pipe][plane_id];
4273 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004274
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004275 if (skl_ddb_entry_equal(old, new))
4276 continue;
4277
Maarten Lankhorst75704982016-11-01 12:04:10 +01004278 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4279 intel_plane->base.base.id,
4280 intel_plane->base.name,
4281 old->start, old->end,
4282 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004283 }
4284 }
4285}
4286
Matt Roper98d39492016-05-12 07:06:03 -07004287static int
4288skl_compute_wm(struct drm_atomic_state *state)
4289{
4290 struct drm_crtc *crtc;
4291 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004292 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4293 struct skl_wm_values *results = &intel_state->wm_results;
4294 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004295 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004296 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004297
4298 /*
4299 * If this transaction isn't actually touching any CRTC's, don't
4300 * bother with watermark calculation. Note that if we pass this
4301 * test, we're guaranteed to hold at least one CRTC state mutex,
4302 * which means we can safely use values like dev_priv->active_crtcs
4303 * since any racing commits that want to update them would need to
4304 * hold _all_ CRTC state mutexes.
4305 */
4306 for_each_crtc_in_state(state, crtc, cstate, i)
4307 changed = true;
4308 if (!changed)
4309 return 0;
4310
Matt Roper734fa012016-05-12 15:11:40 -07004311 /* Clear all dirty flags */
4312 results->dirty_pipes = 0;
4313
Matt Roper98d39492016-05-12 07:06:03 -07004314 ret = skl_compute_ddb(state);
4315 if (ret)
4316 return ret;
4317
Matt Roper734fa012016-05-12 15:11:40 -07004318 /*
4319 * Calculate WM's for all pipes that are part of this transaction.
4320 * Note that the DDB allocation above may have added more CRTC's that
4321 * weren't otherwise being modified (and set bits in dirty_pipes) if
4322 * pipe allocations had to change.
4323 *
4324 * FIXME: Now that we're doing this in the atomic check phase, we
4325 * should allow skl_update_pipe_wm() to return failure in cases where
4326 * no suitable watermark values can be found.
4327 */
4328 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004329 struct intel_crtc_state *intel_cstate =
4330 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004331 const struct skl_pipe_wm *old_pipe_wm =
4332 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004333
4334 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004335 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4336 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004337 if (ret)
4338 return ret;
4339
4340 if (changed)
4341 results->dirty_pipes |= drm_crtc_mask(crtc);
4342
4343 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4344 /* This pipe's WM's did not change */
4345 continue;
4346
4347 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004348 }
4349
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004350 skl_print_wm_changes(state);
4351
Matt Roper98d39492016-05-12 07:06:03 -07004352 return 0;
4353}
4354
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004355static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4356 struct intel_crtc_state *cstate)
4357{
4358 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4359 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4360 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004361 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004362 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004363 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004364
4365 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4366 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004367
4368 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004369
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004370 for_each_plane_id_on_crtc(crtc, plane_id) {
4371 if (plane_id != PLANE_CURSOR)
4372 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4373 ddb, plane_id);
4374 else
4375 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4376 ddb);
4377 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004378}
4379
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004380static void skl_initial_wm(struct intel_atomic_state *state,
4381 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004382{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004383 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004384 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004385 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004386 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004387 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004388 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004389
Ville Syrjälä432081b2016-10-31 22:37:03 +02004390 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004391 return;
4392
Matt Roper734fa012016-05-12 15:11:40 -07004393 mutex_lock(&dev_priv->wm.wm_mutex);
4394
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004395 if (cstate->base.active_changed)
4396 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004397
4398 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004399
4400 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004401}
4402
Ville Syrjäläd8905652016-01-14 14:53:35 +02004403static void ilk_compute_wm_config(struct drm_device *dev,
4404 struct intel_wm_config *config)
4405{
4406 struct intel_crtc *crtc;
4407
4408 /* Compute the currently _active_ config */
4409 for_each_intel_crtc(dev, crtc) {
4410 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4411
4412 if (!wm->pipe_enabled)
4413 continue;
4414
4415 config->sprites_enabled |= wm->sprites_enabled;
4416 config->sprites_scaled |= wm->sprites_scaled;
4417 config->num_pipes_active++;
4418 }
4419}
4420
Matt Ropered4a6a72016-02-23 17:20:13 -08004421static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004422{
Chris Wilson91c8a322016-07-05 10:40:23 +01004423 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004424 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004425 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004426 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004427 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004428 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004429
Ville Syrjäläd8905652016-01-14 14:53:35 +02004430 ilk_compute_wm_config(dev, &config);
4431
4432 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4433 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004434
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004435 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004436 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004437 config.num_pipes_active == 1 && config.sprites_enabled) {
4438 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4439 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004440
Imre Deak820c1982013-12-17 14:46:36 +02004441 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004442 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004443 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004444 }
4445
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004446 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004447 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004448
Imre Deak820c1982013-12-17 14:46:36 +02004449 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004450
Imre Deak820c1982013-12-17 14:46:36 +02004451 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004452}
4453
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004454static void ilk_initial_watermarks(struct intel_atomic_state *state,
4455 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004456{
Matt Ropered4a6a72016-02-23 17:20:13 -08004457 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4458 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004459
Matt Ropered4a6a72016-02-23 17:20:13 -08004460 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004461 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004462 ilk_program_watermarks(dev_priv);
4463 mutex_unlock(&dev_priv->wm.wm_mutex);
4464}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004465
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004466static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4467 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004468{
4469 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4470 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4471
4472 mutex_lock(&dev_priv->wm.wm_mutex);
4473 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004474 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004475 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004476 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004477 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004478}
4479
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004480static inline void skl_wm_level_from_reg_val(uint32_t val,
4481 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004482{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004483 level->plane_en = val & PLANE_WM_EN;
4484 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4485 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4486 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004487}
4488
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004489void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4490 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004491{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004492 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004493 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004494 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004495 int level, max_level;
4496 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004497 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004498
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004499 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004500
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004501 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4502 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004503
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004504 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004505 if (plane_id != PLANE_CURSOR)
4506 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004507 else
4508 val = I915_READ(CUR_WM(pipe, level));
4509
4510 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4511 }
4512
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004513 if (plane_id != PLANE_CURSOR)
4514 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004515 else
4516 val = I915_READ(CUR_WM_TRANS(pipe));
4517
4518 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4519 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004520
Matt Roper3ef00282015-03-09 10:19:24 -07004521 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004522 return;
4523
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004524 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004525}
4526
4527void skl_wm_get_hw_state(struct drm_device *dev)
4528{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004529 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004530 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004531 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004532 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004533 struct intel_crtc *intel_crtc;
4534 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004535
Damien Lespiaua269c582014-11-04 17:06:49 +00004536 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004537 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4538 intel_crtc = to_intel_crtc(crtc);
4539 cstate = to_intel_crtc_state(crtc->state);
4540
4541 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4542
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004543 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004544 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004545 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004546
Matt Roper279e99d2016-05-12 07:06:02 -07004547 if (dev_priv->active_crtcs) {
4548 /* Fully recompute DDB on first atomic commit */
4549 dev_priv->wm.distrust_bios_wm = true;
4550 } else {
4551 /* Easy/common case; just sanitize DDB now if everything off */
4552 memset(ddb, 0, sizeof(*ddb));
4553 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004554}
4555
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004556static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4557{
4558 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004559 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004560 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004561 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004562 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004563 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004564 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004565 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004566 [PIPE_A] = WM0_PIPEA_ILK,
4567 [PIPE_B] = WM0_PIPEB_ILK,
4568 [PIPE_C] = WM0_PIPEC_IVB,
4569 };
4570
4571 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004572 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004573 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004574
Ville Syrjälä15606532016-05-13 17:55:17 +03004575 memset(active, 0, sizeof(*active));
4576
Matt Roper3ef00282015-03-09 10:19:24 -07004577 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004578
4579 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004580 u32 tmp = hw->wm_pipe[pipe];
4581
4582 /*
4583 * For active pipes LP0 watermark is marked as
4584 * enabled, and LP1+ watermaks as disabled since
4585 * we can't really reverse compute them in case
4586 * multiple pipes are active.
4587 */
4588 active->wm[0].enable = true;
4589 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4590 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4591 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4592 active->linetime = hw->wm_linetime[pipe];
4593 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004594 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004595
4596 /*
4597 * For inactive pipes, all watermark levels
4598 * should be marked as enabled but zeroed,
4599 * which is what we'd compute them to.
4600 */
4601 for (level = 0; level <= max_level; level++)
4602 active->wm[level].enable = true;
4603 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004604
4605 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004606}
4607
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004608#define _FW_WM(value, plane) \
4609 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4610#define _FW_WM_VLV(value, plane) \
4611 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4612
4613static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4614 struct vlv_wm_values *wm)
4615{
4616 enum pipe pipe;
4617 uint32_t tmp;
4618
4619 for_each_pipe(dev_priv, pipe) {
4620 tmp = I915_READ(VLV_DDL(pipe));
4621
Ville Syrjälä1b313892016-11-28 19:37:08 +02004622 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004623 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004624 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004625 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004626 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004627 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004628 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004629 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4630 }
4631
4632 tmp = I915_READ(DSPFW1);
4633 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004634 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4635 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4636 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004637
4638 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004639 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4640 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4641 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004642
4643 tmp = I915_READ(DSPFW3);
4644 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4645
4646 if (IS_CHERRYVIEW(dev_priv)) {
4647 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004648 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4649 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004650
4651 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004652 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4653 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004654
4655 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004656 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4657 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004658
4659 tmp = I915_READ(DSPHOWM);
4660 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004661 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4662 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4663 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4664 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4665 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4666 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4667 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4668 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4669 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004670 } else {
4671 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004672 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4673 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004674
4675 tmp = I915_READ(DSPHOWM);
4676 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004677 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4678 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4679 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4680 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4681 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4682 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004683 }
4684}
4685
4686#undef _FW_WM
4687#undef _FW_WM_VLV
4688
4689void vlv_wm_get_hw_state(struct drm_device *dev)
4690{
4691 struct drm_i915_private *dev_priv = to_i915(dev);
4692 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02004693 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004694 u32 val;
4695
4696 vlv_read_wm_values(dev_priv, wm);
4697
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004698 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4699 wm->level = VLV_WM_LEVEL_PM2;
4700
4701 if (IS_CHERRYVIEW(dev_priv)) {
4702 mutex_lock(&dev_priv->rps.hw_lock);
4703
4704 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4705 if (val & DSP_MAXFIFO_PM5_ENABLE)
4706 wm->level = VLV_WM_LEVEL_PM5;
4707
Ville Syrjälä58590c12015-09-08 21:05:12 +03004708 /*
4709 * If DDR DVFS is disabled in the BIOS, Punit
4710 * will never ack the request. So if that happens
4711 * assume we don't have to enable/disable DDR DVFS
4712 * dynamically. To test that just set the REQ_ACK
4713 * bit to poke the Punit, but don't change the
4714 * HIGH/LOW bits so that we don't actually change
4715 * the current state.
4716 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004717 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004718 val |= FORCE_DDR_FREQ_REQ_ACK;
4719 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4720
4721 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4722 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4723 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4724 "assuming DDR DVFS is disabled\n");
4725 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4726 } else {
4727 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4728 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4729 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4730 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004731
4732 mutex_unlock(&dev_priv->rps.hw_lock);
4733 }
4734
Ville Syrjäläff32c542017-03-02 19:14:57 +02004735 for_each_intel_crtc(dev, crtc) {
4736 struct intel_crtc_state *crtc_state =
4737 to_intel_crtc_state(crtc->base.state);
4738 struct vlv_wm_state *active = &crtc->wm.active.vlv;
4739 const struct vlv_fifo_state *fifo_state =
4740 &crtc_state->wm.vlv.fifo_state;
4741 enum pipe pipe = crtc->pipe;
4742 enum plane_id plane_id;
4743 int level;
4744
4745 vlv_get_fifo_size(crtc_state);
4746
4747 active->num_levels = wm->level + 1;
4748 active->cxsr = wm->cxsr;
4749
Ville Syrjäläff32c542017-03-02 19:14:57 +02004750 for (level = 0; level < active->num_levels; level++) {
4751 struct vlv_pipe_wm *raw =
4752 &crtc_state->wm.vlv.raw[level];
4753
4754 active->sr[level].plane = wm->sr.plane;
4755 active->sr[level].cursor = wm->sr.cursor;
4756
4757 for_each_plane_id_on_crtc(crtc, plane_id) {
4758 active->wm[level].plane[plane_id] =
4759 wm->pipe[pipe].plane[plane_id];
4760
4761 raw->plane[plane_id] =
4762 vlv_invert_wm_value(active->wm[level].plane[plane_id],
4763 fifo_state->plane[plane_id]);
4764 }
4765 }
4766
4767 for_each_plane_id_on_crtc(crtc, plane_id)
4768 vlv_raw_plane_wm_set(crtc_state, level,
4769 plane_id, USHRT_MAX);
4770 vlv_invalidate_wms(crtc, active, level);
4771
4772 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02004773 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02004774
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004775 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 +02004776 pipe_name(pipe),
4777 wm->pipe[pipe].plane[PLANE_PRIMARY],
4778 wm->pipe[pipe].plane[PLANE_CURSOR],
4779 wm->pipe[pipe].plane[PLANE_SPRITE0],
4780 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02004781 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004782
4783 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4784 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4785}
4786
Ville Syrjälä602ae832017-03-02 19:15:02 +02004787void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
4788{
4789 struct intel_plane *plane;
4790 struct intel_crtc *crtc;
4791
4792 mutex_lock(&dev_priv->wm.wm_mutex);
4793
4794 for_each_intel_plane(&dev_priv->drm, plane) {
4795 struct intel_crtc *crtc =
4796 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
4797 struct intel_crtc_state *crtc_state =
4798 to_intel_crtc_state(crtc->base.state);
4799 struct intel_plane_state *plane_state =
4800 to_intel_plane_state(plane->base.state);
4801 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
4802 const struct vlv_fifo_state *fifo_state =
4803 &crtc_state->wm.vlv.fifo_state;
4804 enum plane_id plane_id = plane->id;
4805 int level;
4806
4807 if (plane_state->base.visible)
4808 continue;
4809
4810 for (level = 0; level < wm_state->num_levels; level++) {
4811 struct vlv_pipe_wm *raw =
4812 &crtc_state->wm.vlv.raw[level];
4813
4814 raw->plane[plane_id] = 0;
4815
4816 wm_state->wm[level].plane[plane_id] =
4817 vlv_invert_wm_value(raw->plane[plane_id],
4818 fifo_state->plane[plane_id]);
4819 }
4820 }
4821
4822 for_each_intel_crtc(&dev_priv->drm, crtc) {
4823 struct intel_crtc_state *crtc_state =
4824 to_intel_crtc_state(crtc->base.state);
4825
4826 crtc_state->wm.vlv.intermediate =
4827 crtc_state->wm.vlv.optimal;
4828 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
4829 }
4830
4831 vlv_program_watermarks(dev_priv);
4832
4833 mutex_unlock(&dev_priv->wm.wm_mutex);
4834}
4835
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004836void ilk_wm_get_hw_state(struct drm_device *dev)
4837{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004838 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004839 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004840 struct drm_crtc *crtc;
4841
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004842 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004843 ilk_pipe_wm_get_hw_state(crtc);
4844
4845 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4846 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4847 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4848
4849 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004850 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004851 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4852 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4853 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004854
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004855 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004856 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4857 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004858 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004859 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4860 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004861
4862 hw->enable_fbc_wm =
4863 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4864}
4865
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004866/**
4867 * intel_update_watermarks - update FIFO watermark values based on current modes
4868 *
4869 * Calculate watermark values for the various WM regs based on current mode
4870 * and plane configuration.
4871 *
4872 * There are several cases to deal with here:
4873 * - normal (i.e. non-self-refresh)
4874 * - self-refresh (SR) mode
4875 * - lines are large relative to FIFO size (buffer can hold up to 2)
4876 * - lines are small relative to FIFO size (buffer can hold more than 2
4877 * lines), so need to account for TLB latency
4878 *
4879 * The normal calculation is:
4880 * watermark = dotclock * bytes per pixel * latency
4881 * where latency is platform & configuration dependent (we assume pessimal
4882 * values here).
4883 *
4884 * The SR calculation is:
4885 * watermark = (trunc(latency/line time)+1) * surface width *
4886 * bytes per pixel
4887 * where
4888 * line time = htotal / dotclock
4889 * surface width = hdisplay for normal plane and 64 for cursor
4890 * and latency is assumed to be high, as above.
4891 *
4892 * The final value programmed to the register should always be rounded up,
4893 * and include an extra 2 entries to account for clock crossings.
4894 *
4895 * We don't use the sprite, so we can ignore that. And on Crestline we have
4896 * to set the non-SR watermarks to 8.
4897 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004898void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004899{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004900 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004901
4902 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004903 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004904}
4905
Jani Nikulae2828912016-01-18 09:19:47 +02004906/*
Daniel Vetter92703882012-08-09 16:46:01 +02004907 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004908 */
4909DEFINE_SPINLOCK(mchdev_lock);
4910
4911/* Global for IPS driver to get at the current i915 device. Protected by
4912 * mchdev_lock. */
4913static struct drm_i915_private *i915_mch_dev;
4914
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004915bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004916{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004917 u16 rgvswctl;
4918
Chris Wilson67520412017-03-02 13:28:01 +00004919 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02004920
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004921 rgvswctl = I915_READ16(MEMSWCTL);
4922 if (rgvswctl & MEMCTL_CMD_STS) {
4923 DRM_DEBUG("gpu busy, RCS change rejected\n");
4924 return false; /* still busy with another command */
4925 }
4926
4927 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4928 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4929 I915_WRITE16(MEMSWCTL, rgvswctl);
4930 POSTING_READ16(MEMSWCTL);
4931
4932 rgvswctl |= MEMCTL_CMD_STS;
4933 I915_WRITE16(MEMSWCTL, rgvswctl);
4934
4935 return true;
4936}
4937
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004938static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004939{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004940 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004941 u8 fmax, fmin, fstart, vstart;
4942
Daniel Vetter92703882012-08-09 16:46:01 +02004943 spin_lock_irq(&mchdev_lock);
4944
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004945 rgvmodectl = I915_READ(MEMMODECTL);
4946
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004947 /* Enable temp reporting */
4948 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4949 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4950
4951 /* 100ms RC evaluation intervals */
4952 I915_WRITE(RCUPEI, 100000);
4953 I915_WRITE(RCDNEI, 100000);
4954
4955 /* Set max/min thresholds to 90ms and 80ms respectively */
4956 I915_WRITE(RCBMAXAVG, 90000);
4957 I915_WRITE(RCBMINAVG, 80000);
4958
4959 I915_WRITE(MEMIHYST, 1);
4960
4961 /* Set up min, max, and cur for interrupt handling */
4962 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4963 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4964 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4965 MEMMODE_FSTART_SHIFT;
4966
Ville Syrjälä616847e2015-09-18 20:03:19 +03004967 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004968 PXVFREQ_PX_SHIFT;
4969
Daniel Vetter20e4d402012-08-08 23:35:39 +02004970 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4971 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004972
Daniel Vetter20e4d402012-08-08 23:35:39 +02004973 dev_priv->ips.max_delay = fstart;
4974 dev_priv->ips.min_delay = fmin;
4975 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004976
4977 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4978 fmax, fmin, fstart);
4979
4980 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4981
4982 /*
4983 * Interrupts will be enabled in ironlake_irq_postinstall
4984 */
4985
4986 I915_WRITE(VIDSTART, vstart);
4987 POSTING_READ(VIDSTART);
4988
4989 rgvmodectl |= MEMMODE_SWMODE_EN;
4990 I915_WRITE(MEMMODECTL, rgvmodectl);
4991
Daniel Vetter92703882012-08-09 16:46:01 +02004992 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004993 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004994 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004995
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004996 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004997
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004998 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4999 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005000 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005001 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005002 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02005003
5004 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005005}
5006
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005007static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005008{
Daniel Vetter92703882012-08-09 16:46:01 +02005009 u16 rgvswctl;
5010
5011 spin_lock_irq(&mchdev_lock);
5012
5013 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005014
5015 /* Ack interrupts, disable EFC interrupt */
5016 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5017 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5018 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5019 I915_WRITE(DEIIR, DE_PCU_EVENT);
5020 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5021
5022 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005023 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005024 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005025 rgvswctl |= MEMCTL_CMD_STS;
5026 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005027 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005028
Daniel Vetter92703882012-08-09 16:46:01 +02005029 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005030}
5031
Daniel Vetteracbe9472012-07-26 11:50:05 +02005032/* There's a funny hw issue where the hw returns all 0 when reading from
5033 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
5034 * ourselves, instead of doing a rmw cycle (which might result in us clearing
5035 * all limits and the gpu stuck at whatever frequency it is at atm).
5036 */
Akash Goel74ef1172015-03-06 11:07:19 +05305037static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005038{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005039 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005040
Daniel Vetter20b46e52012-07-26 11:16:14 +02005041 /* Only set the down limit when we've reached the lowest level to avoid
5042 * getting more interrupts, otherwise leave this clear. This prevents a
5043 * race in the hw when coming out of rc6: There's a tiny window where
5044 * the hw runs at the minimal clock before selecting the desired
5045 * frequency, if the down threshold expires in that window we will not
5046 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03005047 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05305048 limits = (dev_priv->rps.max_freq_softlimit) << 23;
5049 if (val <= dev_priv->rps.min_freq_softlimit)
5050 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
5051 } else {
5052 limits = dev_priv->rps.max_freq_softlimit << 24;
5053 if (val <= dev_priv->rps.min_freq_softlimit)
5054 limits |= dev_priv->rps.min_freq_softlimit << 16;
5055 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02005056
5057 return limits;
5058}
5059
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005060static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
5061{
5062 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05305063 u32 threshold_up = 0, threshold_down = 0; /* in % */
5064 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005065
5066 new_power = dev_priv->rps.power;
5067 switch (dev_priv->rps.power) {
5068 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01005069 if (val > dev_priv->rps.efficient_freq + 1 &&
5070 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005071 new_power = BETWEEN;
5072 break;
5073
5074 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01005075 if (val <= dev_priv->rps.efficient_freq &&
5076 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005077 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01005078 else if (val >= dev_priv->rps.rp0_freq &&
5079 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005080 new_power = HIGH_POWER;
5081 break;
5082
5083 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01005084 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
5085 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005086 new_power = BETWEEN;
5087 break;
5088 }
5089 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005090 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005091 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00005092 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005093 new_power = HIGH_POWER;
5094 if (new_power == dev_priv->rps.power)
5095 return;
5096
5097 /* Note the units here are not exactly 1us, but 1280ns. */
5098 switch (new_power) {
5099 case LOW_POWER:
5100 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05305101 ei_up = 16000;
5102 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005103
5104 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05305105 ei_down = 32000;
5106 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005107 break;
5108
5109 case BETWEEN:
5110 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05305111 ei_up = 13000;
5112 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005113
5114 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05305115 ei_down = 32000;
5116 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005117 break;
5118
5119 case HIGH_POWER:
5120 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05305121 ei_up = 10000;
5122 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005123
5124 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05305125 ei_down = 32000;
5126 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005127 break;
5128 }
5129
Mika Kuoppala6067a272017-02-15 15:52:59 +02005130 /* When byt can survive without system hang with dynamic
5131 * sw freq adjustments, this restriction can be lifted.
5132 */
5133 if (IS_VALLEYVIEW(dev_priv))
5134 goto skip_hw_write;
5135
Akash Goel8a586432015-03-06 11:07:18 +05305136 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01005137 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05305138 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01005139 GT_INTERVAL_FROM_US(dev_priv,
5140 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05305141
5142 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01005143 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05305144 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01005145 GT_INTERVAL_FROM_US(dev_priv,
5146 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05305147
Chris Wilsona72b5622016-07-02 15:35:59 +01005148 I915_WRITE(GEN6_RP_CONTROL,
5149 GEN6_RP_MEDIA_TURBO |
5150 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5151 GEN6_RP_MEDIA_IS_GFX |
5152 GEN6_RP_ENABLE |
5153 GEN6_RP_UP_BUSY_AVG |
5154 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05305155
Mika Kuoppala6067a272017-02-15 15:52:59 +02005156skip_hw_write:
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005157 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01005158 dev_priv->rps.up_threshold = threshold_up;
5159 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005160 dev_priv->rps.last_adj = 0;
5161}
5162
Chris Wilson2876ce72014-03-28 08:03:34 +00005163static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
5164{
5165 u32 mask = 0;
5166
5167 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00005168 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00005169 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00005170 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00005171
Chris Wilson7b3c29f2014-07-10 20:31:19 +01005172 mask &= dev_priv->pm_rps_events;
5173
Imre Deak59d02a12014-12-19 19:33:26 +02005174 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00005175}
5176
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06005177/* gen6_set_rps is called to update the frequency request, but should also be
5178 * called when the range (min_delay and max_delay) is modified so that we can
5179 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005180static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02005181{
Chris Wilsoneb64cad2014-03-27 08:24:20 +00005182 /* min/max delay may still have been modified so be sure to
5183 * write the limits value.
5184 */
5185 if (val != dev_priv->rps.cur_freq) {
5186 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06005187
Chris Wilsondc979972016-05-10 14:10:04 +01005188 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05305189 I915_WRITE(GEN6_RPNSWREQ,
5190 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01005191 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00005192 I915_WRITE(GEN6_RPNSWREQ,
5193 HSW_FREQUENCY(val));
5194 else
5195 I915_WRITE(GEN6_RPNSWREQ,
5196 GEN6_FREQUENCY(val) |
5197 GEN6_OFFSET(0) |
5198 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06005199 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005200
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005201 /* Make sure we continue to get interrupts
5202 * until we hit the minimum or maximum frequencies.
5203 */
Akash Goel74ef1172015-03-06 11:07:19 +05305204 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00005205 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005206
Ben Widawskyb39fb292014-03-19 18:31:11 -07005207 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02005208 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005209
5210 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005211}
5212
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005213static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005214{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005215 int err;
5216
Chris Wilsondc979972016-05-10 14:10:04 +01005217 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005218 "Odd GPU freq value\n"))
5219 val &= ~1;
5220
Deepak Scd25dd52015-07-10 18:31:40 +05305221 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
5222
Chris Wilson8fb55192015-04-07 16:20:28 +01005223 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005224 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
5225 if (err)
5226 return err;
5227
Chris Wilsondb4c5e02017-02-10 15:03:46 +00005228 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01005229 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005230
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005231 dev_priv->rps.cur_freq = val;
5232 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005233
5234 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005235}
5236
Deepak Sa7f6e232015-05-09 18:04:44 +05305237/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05305238 *
5239 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05305240 * 1. Forcewake Media well.
5241 * 2. Request idle freq.
5242 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05305243*/
5244static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
5245{
Chris Wilsonaed242f2015-03-18 09:48:21 +00005246 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005247 int err;
Deepak S5549d252014-06-28 11:26:11 +05305248
Chris Wilsonaed242f2015-03-18 09:48:21 +00005249 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05305250 return;
5251
Chris Wilsonc9efef72017-01-02 15:28:45 +00005252 /* The punit delays the write of the frequency and voltage until it
5253 * determines the GPU is awake. During normal usage we don't want to
5254 * waste power changing the frequency if the GPU is sleeping (rc6).
5255 * However, the GPU and driver is now idle and we do not want to delay
5256 * switching to minimum voltage (reducing power whilst idle) as we do
5257 * not expect to be woken in the near future and so must flush the
5258 * change by waking the device.
5259 *
5260 * We choose to take the media powerwell (either would do to trick the
5261 * punit into committing the voltage change) as that takes a lot less
5262 * power than the render powerwell.
5263 */
Deepak Sa7f6e232015-05-09 18:04:44 +05305264 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005265 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305266 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005267
5268 if (err)
5269 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305270}
5271
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005272void gen6_rps_busy(struct drm_i915_private *dev_priv)
5273{
5274 mutex_lock(&dev_priv->rps.hw_lock);
5275 if (dev_priv->rps.enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00005276 u8 freq;
5277
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005278 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5279 gen6_rps_reset_ei(dev_priv);
5280 I915_WRITE(GEN6_PMINTRMSK,
5281 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005282
Chris Wilsonc33d2472016-07-04 08:08:36 +01005283 gen6_enable_rps_interrupts(dev_priv);
5284
Chris Wilsonbd648182017-02-10 15:03:48 +00005285 /* Use the user's desired frequency as a guide, but for better
5286 * performance, jump directly to RPe as our starting frequency.
5287 */
5288 freq = max(dev_priv->rps.cur_freq,
5289 dev_priv->rps.efficient_freq);
5290
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005291 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00005292 clamp(freq,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005293 dev_priv->rps.min_freq_softlimit,
5294 dev_priv->rps.max_freq_softlimit)))
5295 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005296 }
5297 mutex_unlock(&dev_priv->rps.hw_lock);
5298}
5299
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005300void gen6_rps_idle(struct drm_i915_private *dev_priv)
5301{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005302 /* Flush our bottom-half so that it does not race with us
5303 * setting the idle frequency and so that it is bounded by
5304 * our rpm wakeref. And then disable the interrupts to stop any
5305 * futher RPS reclocking whilst we are asleep.
5306 */
5307 gen6_disable_rps_interrupts(dev_priv);
5308
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005309 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005310 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005311 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305312 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005313 else
Chris Wilsondc979972016-05-10 14:10:04 +01005314 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005315 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005316 I915_WRITE(GEN6_PMINTRMSK,
5317 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005318 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005319 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005320
Chris Wilson8d3afd72015-05-21 21:01:47 +01005321 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005322 while (!list_empty(&dev_priv->rps.clients))
5323 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005324 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005325}
5326
Chris Wilson1854d5c2015-04-07 16:20:32 +01005327void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005328 struct intel_rps_client *rps,
5329 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005330{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005331 /* This is intentionally racy! We peek at the state here, then
5332 * validate inside the RPS worker.
5333 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005334 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005335 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005336 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005337 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005338
Chris Wilsone61b9952015-04-27 13:41:24 +01005339 /* Force a RPS boost (and don't count it against the client) if
5340 * the GPU is severely congested.
5341 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005342 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005343 rps = NULL;
5344
Chris Wilson8d3afd72015-05-21 21:01:47 +01005345 spin_lock(&dev_priv->rps.client_lock);
5346 if (rps == NULL || list_empty(&rps->link)) {
5347 spin_lock_irq(&dev_priv->irq_lock);
5348 if (dev_priv->rps.interrupts_enabled) {
5349 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005350 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005351 }
5352 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005353
Chris Wilson2e1b8732015-04-27 13:41:22 +01005354 if (rps != NULL) {
5355 list_add(&rps->link, &dev_priv->rps.clients);
5356 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005357 } else
5358 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005359 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005360 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005361}
5362
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005363int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005364{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005365 int err;
5366
Chris Wilsoncfd1c482017-02-20 09:47:07 +00005367 lockdep_assert_held(&dev_priv->rps.hw_lock);
5368 GEM_BUG_ON(val > dev_priv->rps.max_freq);
5369 GEM_BUG_ON(val < dev_priv->rps.min_freq);
5370
Chris Wilson76e4e4b2017-02-20 09:47:08 +00005371 if (!dev_priv->rps.enabled) {
5372 dev_priv->rps.cur_freq = val;
5373 return 0;
5374 }
5375
Chris Wilsondc979972016-05-10 14:10:04 +01005376 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005377 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005378 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005379 err = gen6_set_rps(dev_priv, val);
5380
5381 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005382}
5383
Chris Wilsondc979972016-05-10 14:10:04 +01005384static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005385{
Zhe Wang20e49362014-11-04 17:07:05 +00005386 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005387 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005388}
5389
Chris Wilsondc979972016-05-10 14:10:04 +01005390static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305391{
Akash Goel2030d682016-04-23 00:05:45 +05305392 I915_WRITE(GEN6_RP_CONTROL, 0);
5393}
5394
Chris Wilsondc979972016-05-10 14:10:04 +01005395static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005396{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005397 I915_WRITE(GEN6_RC_CONTROL, 0);
5398 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305399 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005400}
5401
Chris Wilsondc979972016-05-10 14:10:04 +01005402static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305403{
Deepak S38807742014-05-23 21:00:15 +05305404 I915_WRITE(GEN6_RC_CONTROL, 0);
5405}
5406
Chris Wilsondc979972016-05-10 14:10:04 +01005407static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005408{
Deepak S98a2e5f2014-08-18 10:35:27 -07005409 /* we're doing forcewake before Disabling RC6,
5410 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005411 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005412
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005413 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005414
Mika Kuoppala59bad942015-01-16 11:34:40 +02005415 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005416}
5417
Chris Wilsondc979972016-05-10 14:10:04 +01005418static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005419{
Chris Wilsondc979972016-05-10 14:10:04 +01005420 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005421 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5422 mode = GEN6_RC_CTL_RC6_ENABLE;
5423 else
5424 mode = 0;
5425 }
Chris Wilsondc979972016-05-10 14:10:04 +01005426 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005427 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5428 "RC6 %s RC6p %s RC6pp %s\n",
5429 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5430 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5431 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005432
5433 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005434 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5435 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005436}
5437
Chris Wilsondc979972016-05-10 14:10:04 +01005438static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305439{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005440 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305441 bool enable_rc6 = true;
5442 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005443 u32 rc_ctl;
5444 int rc_sw_target;
5445
5446 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5447 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5448 RC_SW_TARGET_STATE_SHIFT;
5449 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5450 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5451 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5452 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5453 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305454
5455 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005456 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305457 enable_rc6 = false;
5458 }
5459
5460 /*
5461 * The exact context size is not known for BXT, so assume a page size
5462 * for this check.
5463 */
5464 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005465 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5466 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5467 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005468 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305469 enable_rc6 = false;
5470 }
5471
5472 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5473 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5474 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5475 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005476 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305477 enable_rc6 = false;
5478 }
5479
Imre Deakfc619842016-06-29 19:13:55 +03005480 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5481 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5482 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5483 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5484 enable_rc6 = false;
5485 }
5486
5487 if (!I915_READ(GEN6_GFXPAUSE)) {
5488 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5489 enable_rc6 = false;
5490 }
5491
5492 if (!I915_READ(GEN8_MISC_CTRL0)) {
5493 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305494 enable_rc6 = false;
5495 }
5496
5497 return enable_rc6;
5498}
5499
Chris Wilsondc979972016-05-10 14:10:04 +01005500int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005501{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005502 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005503 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005504 return 0;
5505
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305506 if (!enable_rc6)
5507 return 0;
5508
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005509 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305510 DRM_INFO("RC6 disabled by BIOS\n");
5511 return 0;
5512 }
5513
Daniel Vetter456470e2012-08-08 23:35:40 +02005514 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005515 if (enable_rc6 >= 0) {
5516 int mask;
5517
Chris Wilsondc979972016-05-10 14:10:04 +01005518 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005519 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5520 INTEL_RC6pp_ENABLE;
5521 else
5522 mask = INTEL_RC6_ENABLE;
5523
5524 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005525 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5526 "(requested %d, valid %d)\n",
5527 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005528
5529 return enable_rc6 & mask;
5530 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005531
Chris Wilsondc979972016-05-10 14:10:04 +01005532 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005533 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005534
5535 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005536}
5537
Chris Wilsondc979972016-05-10 14:10:04 +01005538static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005539{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005540 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005541
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005542 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005543 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005544 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005545 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5546 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5547 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5548 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005549 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005550 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5551 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5552 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5553 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005554 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005555 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005556
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005557 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005558 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005559 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005560 u32 ddcc_status = 0;
5561
5562 if (sandybridge_pcode_read(dev_priv,
5563 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5564 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005565 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005566 clamp_t(u8,
5567 ((ddcc_status >> 8) & 0xff),
5568 dev_priv->rps.min_freq,
5569 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005570 }
5571
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005572 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305573 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005574 * the natural hardware unit for SKL
5575 */
Akash Goelc5e06882015-06-29 14:50:19 +05305576 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5577 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5578 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5579 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5580 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5581 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005582}
5583
Chris Wilson3a45b052016-07-13 09:10:32 +01005584static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005585 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005586{
5587 u8 freq = dev_priv->rps.cur_freq;
5588
5589 /* force a reset */
5590 dev_priv->rps.power = -1;
5591 dev_priv->rps.cur_freq = -1;
5592
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005593 if (set(dev_priv, freq))
5594 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005595}
5596
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005597/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005598static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005599{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005600 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5601
Akash Goel0beb0592015-03-06 11:07:20 +05305602 /* Program defaults and thresholds for RPS*/
5603 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5604 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005605
Akash Goel0beb0592015-03-06 11:07:20 +05305606 /* 1 second timeout*/
5607 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5608 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5609
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005610 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005611
Akash Goel0beb0592015-03-06 11:07:20 +05305612 /* Leaning on the below call to gen6_set_rps to program/setup the
5613 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5614 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005615 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005616
5617 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5618}
5619
Chris Wilsondc979972016-05-10 14:10:04 +01005620static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005621{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005622 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305623 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005624 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005625
5626 /* 1a: Software RC state - RC0 */
5627 I915_WRITE(GEN6_RC_STATE, 0);
5628
5629 /* 1b: Get forcewake during program sequence. Although the driver
5630 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005631 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005632
5633 /* 2a: Disable RC states. */
5634 I915_WRITE(GEN6_RC_CONTROL, 0);
5635
5636 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305637
5638 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005639 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305640 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5641 else
5642 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005643 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5644 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305645 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005646 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305647
Dave Gordon1a3d1892016-05-13 15:36:30 +01005648 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305649 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5650
Zhe Wang20e49362014-11-04 17:07:05 +00005651 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005652
Zhe Wang38c23522015-01-20 12:23:04 +00005653 /* 2c: Program Coarse Power Gating Policies. */
5654 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5655 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5656
Zhe Wang20e49362014-11-04 17:07:05 +00005657 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005658 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005659 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005660 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005661 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5662 I915_WRITE(GEN6_RC_CONTROL,
5663 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005664
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305665 /*
5666 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305667 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305668 */
Chris Wilsondc979972016-05-10 14:10:04 +01005669 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305670 I915_WRITE(GEN9_PG_ENABLE, 0);
5671 else
5672 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5673 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005674
Mika Kuoppala59bad942015-01-16 11:34:40 +02005675 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005676}
5677
Chris Wilsondc979972016-05-10 14:10:04 +01005678static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005679{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005680 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305681 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005682 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005683
5684 /* 1a: Software RC state - RC0 */
5685 I915_WRITE(GEN6_RC_STATE, 0);
5686
5687 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5688 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005689 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005690
5691 /* 2a: Disable RC states. */
5692 I915_WRITE(GEN6_RC_CONTROL, 0);
5693
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005694 /* 2b: Program RC6 thresholds.*/
5695 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5696 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5697 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305698 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005699 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005700 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005701 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005702 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5703 else
5704 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005705
5706 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005707 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005708 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005709 intel_print_rc6_info(dev_priv, rc6_mask);
5710 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005711 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5712 GEN7_RC_CTL_TO_MODE |
5713 rc6_mask);
5714 else
5715 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5716 GEN6_RC_CTL_EI_MODE(1) |
5717 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005718
5719 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005720 I915_WRITE(GEN6_RPNSWREQ,
5721 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5722 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5723 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005724 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5725 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005726
Daniel Vetter7526ed72014-09-29 15:07:19 +02005727 /* Docs recommend 900MHz, and 300 MHz respectively */
5728 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5729 dev_priv->rps.max_freq_softlimit << 24 |
5730 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005731
Daniel Vetter7526ed72014-09-29 15:07:19 +02005732 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5733 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5734 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5735 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005736
Daniel Vetter7526ed72014-09-29 15:07:19 +02005737 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005738
5739 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005740 I915_WRITE(GEN6_RP_CONTROL,
5741 GEN6_RP_MEDIA_TURBO |
5742 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5743 GEN6_RP_MEDIA_IS_GFX |
5744 GEN6_RP_ENABLE |
5745 GEN6_RP_UP_BUSY_AVG |
5746 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005747
Daniel Vetter7526ed72014-09-29 15:07:19 +02005748 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005749
Chris Wilson3a45b052016-07-13 09:10:32 +01005750 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005751
Mika Kuoppala59bad942015-01-16 11:34:40 +02005752 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005753}
5754
Chris Wilsondc979972016-05-10 14:10:04 +01005755static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005756{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005757 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305758 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005759 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005760 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005761 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005762 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005763
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005764 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005765
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005766 /* Here begins a magic sequence of register writes to enable
5767 * auto-downclocking.
5768 *
5769 * Perhaps there might be some value in exposing these to
5770 * userspace...
5771 */
5772 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005773
5774 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005775 gtfifodbg = I915_READ(GTFIFODBG);
5776 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005777 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5778 I915_WRITE(GTFIFODBG, gtfifodbg);
5779 }
5780
Mika Kuoppala59bad942015-01-16 11:34:40 +02005781 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005782
5783 /* disable the counters and set deterministic thresholds */
5784 I915_WRITE(GEN6_RC_CONTROL, 0);
5785
5786 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5787 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5788 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5789 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5790 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5791
Akash Goel3b3f1652016-10-13 22:44:48 +05305792 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005793 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005794
5795 I915_WRITE(GEN6_RC_SLEEP, 0);
5796 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005797 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005798 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5799 else
5800 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005801 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005802 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5803
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005804 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005805 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005806 if (rc6_mode & INTEL_RC6_ENABLE)
5807 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5808
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005809 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005810 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005811 if (rc6_mode & INTEL_RC6p_ENABLE)
5812 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005813
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005814 if (rc6_mode & INTEL_RC6pp_ENABLE)
5815 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5816 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005817
Chris Wilsondc979972016-05-10 14:10:04 +01005818 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005819
5820 I915_WRITE(GEN6_RC_CONTROL,
5821 rc6_mask |
5822 GEN6_RC_CTL_EI_MODE(1) |
5823 GEN6_RC_CTL_HW_ENABLE);
5824
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005825 /* Power down if completely idle for over 50ms */
5826 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005827 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005828
Chris Wilson3a45b052016-07-13 09:10:32 +01005829 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005830
Ben Widawsky31643d52012-09-26 10:34:01 -07005831 rc6vids = 0;
5832 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005833 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005834 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005835 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005836 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5837 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5838 rc6vids &= 0xffff00;
5839 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5840 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5841 if (ret)
5842 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5843 }
5844
Mika Kuoppala59bad942015-01-16 11:34:40 +02005845 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005846}
5847
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005848static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005849{
5850 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005851 unsigned int gpu_freq;
5852 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305853 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005854 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005855 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005856
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005857 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005858
Ben Widawskyeda79642013-10-07 17:15:48 -03005859 policy = cpufreq_cpu_get(0);
5860 if (policy) {
5861 max_ia_freq = policy->cpuinfo.max_freq;
5862 cpufreq_cpu_put(policy);
5863 } else {
5864 /*
5865 * Default to measured freq if none found, PCU will ensure we
5866 * don't go over
5867 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005868 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005869 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005870
5871 /* Convert from kHz to MHz */
5872 max_ia_freq /= 1000;
5873
Ben Widawsky153b4b952013-10-22 22:05:09 -07005874 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005875 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5876 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005877
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005878 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305879 /* Convert GT frequency to 50 HZ units */
5880 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5881 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5882 } else {
5883 min_gpu_freq = dev_priv->rps.min_freq;
5884 max_gpu_freq = dev_priv->rps.max_freq;
5885 }
5886
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005887 /*
5888 * For each potential GPU frequency, load a ring frequency we'd like
5889 * to use for memory access. We do this by specifying the IA frequency
5890 * the PCU should use as a reference to determine the ring frequency.
5891 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305892 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5893 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005894 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005895
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005896 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305897 /*
5898 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5899 * No floor required for ring frequency on SKL.
5900 */
5901 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005902 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005903 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5904 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005905 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005906 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005907 ring_freq = max(min_ring_freq, ring_freq);
5908 /* leave ia_freq as the default, chosen by cpufreq */
5909 } else {
5910 /* On older processors, there is no separate ring
5911 * clock domain, so in order to boost the bandwidth
5912 * of the ring, we need to upclock the CPU (ia_freq).
5913 *
5914 * For GPU frequencies less than 750MHz,
5915 * just use the lowest ring freq.
5916 */
5917 if (gpu_freq < min_freq)
5918 ia_freq = 800;
5919 else
5920 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5921 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5922 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005923
Ben Widawsky42c05262012-09-26 10:34:00 -07005924 sandybridge_pcode_write(dev_priv,
5925 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005926 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5927 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5928 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005929 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005930}
5931
Ville Syrjälä03af2042014-06-28 02:03:53 +03005932static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305933{
5934 u32 val, rp0;
5935
Jani Nikula5b5929c2015-10-07 11:17:46 +03005936 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305937
Imre Deak43b67992016-08-31 19:13:02 +03005938 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005939 case 8:
5940 /* (2 * 4) config */
5941 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5942 break;
5943 case 12:
5944 /* (2 * 6) config */
5945 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5946 break;
5947 case 16:
5948 /* (2 * 8) config */
5949 default:
5950 /* Setting (2 * 8) Min RP0 for any other combination */
5951 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5952 break;
Deepak S095acd52015-01-17 11:05:59 +05305953 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005954
5955 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5956
Deepak S2b6b3a02014-05-27 15:59:30 +05305957 return rp0;
5958}
5959
5960static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5961{
5962 u32 val, rpe;
5963
5964 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5965 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5966
5967 return rpe;
5968}
5969
Deepak S7707df42014-07-12 18:46:14 +05305970static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5971{
5972 u32 val, rp1;
5973
Jani Nikula5b5929c2015-10-07 11:17:46 +03005974 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5975 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5976
Deepak S7707df42014-07-12 18:46:14 +05305977 return rp1;
5978}
5979
Deepak S96676fe2016-08-12 18:46:41 +05305980static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
5981{
5982 u32 val, rpn;
5983
5984 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
5985 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
5986 FB_GFX_FREQ_FUSE_MASK);
5987
5988 return rpn;
5989}
5990
Deepak Sf8f2b002014-07-10 13:16:21 +05305991static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5992{
5993 u32 val, rp1;
5994
5995 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5996
5997 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5998
5999 return rp1;
6000}
6001
Ville Syrjälä03af2042014-06-28 02:03:53 +03006002static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006003{
6004 u32 val, rp0;
6005
Jani Nikula64936252013-05-22 15:36:20 +03006006 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006007
6008 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
6009 /* Clamp to max */
6010 rp0 = min_t(u32, rp0, 0xea);
6011
6012 return rp0;
6013}
6014
6015static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6016{
6017 u32 val, rpe;
6018
Jani Nikula64936252013-05-22 15:36:20 +03006019 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006020 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03006021 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006022 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
6023
6024 return rpe;
6025}
6026
Ville Syrjälä03af2042014-06-28 02:03:53 +03006027static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006028{
Imre Deak36146032014-12-04 18:39:35 +02006029 u32 val;
6030
6031 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
6032 /*
6033 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
6034 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
6035 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
6036 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
6037 * to make sure it matches what Punit accepts.
6038 */
6039 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006040}
6041
Imre Deakae484342014-03-31 15:10:44 +03006042/* Check that the pctx buffer wasn't move under us. */
6043static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
6044{
6045 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
6046
6047 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
6048 dev_priv->vlv_pctx->stolen->start);
6049}
6050
Deepak S38807742014-05-23 21:00:15 +05306051
6052/* Check that the pcbr address is not empty. */
6053static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
6054{
6055 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
6056
6057 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
6058}
6059
Chris Wilsondc979972016-05-10 14:10:04 +01006060static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306061{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02006062 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006063 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05306064 u32 pcbr;
6065 int pctx_size = 32*1024;
6066
Deepak S38807742014-05-23 21:00:15 +05306067 pcbr = I915_READ(VLV_PCBR);
6068 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006069 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05306070 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02006071 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05306072
6073 pctx_paddr = (paddr & (~4095));
6074 I915_WRITE(VLV_PCBR, pctx_paddr);
6075 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006076
6077 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05306078}
6079
Chris Wilsondc979972016-05-10 14:10:04 +01006080static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006081{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006082 struct drm_i915_gem_object *pctx;
6083 unsigned long pctx_paddr;
6084 u32 pcbr;
6085 int pctx_size = 24*1024;
6086
6087 pcbr = I915_READ(VLV_PCBR);
6088 if (pcbr) {
6089 /* BIOS set it up already, grab the pre-alloc'd space */
6090 int pcbr_offset;
6091
6092 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00006093 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006094 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02006095 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006096 pctx_size);
6097 goto out;
6098 }
6099
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006100 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
6101
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006102 /*
6103 * From the Gunit register HAS:
6104 * The Gfx driver is expected to program this register and ensure
6105 * proper allocation within Gfx stolen memory. For example, this
6106 * register should be programmed such than the PCBR range does not
6107 * overlap with other ranges, such as the frame buffer, protected
6108 * memory, or any other relevant ranges.
6109 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00006110 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006111 if (!pctx) {
6112 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00006113 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006114 }
6115
6116 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
6117 I915_WRITE(VLV_PCBR, pctx_paddr);
6118
6119out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006120 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006121 dev_priv->vlv_pctx = pctx;
6122}
6123
Chris Wilsondc979972016-05-10 14:10:04 +01006124static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006125{
Imre Deakae484342014-03-31 15:10:44 +03006126 if (WARN_ON(!dev_priv->vlv_pctx))
6127 return;
6128
Chris Wilsonf0cd5182016-10-28 13:58:43 +01006129 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03006130 dev_priv->vlv_pctx = NULL;
6131}
6132
Ville Syrjäläc30fec62016-03-04 21:43:02 +02006133static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
6134{
6135 dev_priv->rps.gpll_ref_freq =
6136 vlv_get_cck_clock(dev_priv, "GPLL ref",
6137 CCK_GPLL_CLOCK_CONTROL,
6138 dev_priv->czclk_freq);
6139
6140 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
6141 dev_priv->rps.gpll_ref_freq);
6142}
6143
Chris Wilsondc979972016-05-10 14:10:04 +01006144static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03006145{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006146 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03006147
Chris Wilsondc979972016-05-10 14:10:04 +01006148 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03006149
Ville Syrjäläc30fec62016-03-04 21:43:02 +02006150 vlv_init_gpll_ref_freq(dev_priv);
6151
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006152 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6153 switch ((val >> 6) & 3) {
6154 case 0:
6155 case 1:
6156 dev_priv->mem_freq = 800;
6157 break;
6158 case 2:
6159 dev_priv->mem_freq = 1066;
6160 break;
6161 case 3:
6162 dev_priv->mem_freq = 1333;
6163 break;
6164 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02006165 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006166
Imre Deak4e805192014-04-14 20:24:41 +03006167 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
6168 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
6169 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006170 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03006171 dev_priv->rps.max_freq);
6172
6173 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
6174 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006175 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03006176 dev_priv->rps.efficient_freq);
6177
Deepak Sf8f2b002014-07-10 13:16:21 +05306178 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
6179 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006180 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05306181 dev_priv->rps.rp1_freq);
6182
Imre Deak4e805192014-04-14 20:24:41 +03006183 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
6184 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006185 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03006186 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03006187}
6188
Chris Wilsondc979972016-05-10 14:10:04 +01006189static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306190{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006191 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05306192
Chris Wilsondc979972016-05-10 14:10:04 +01006193 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05306194
Ville Syrjäläc30fec62016-03-04 21:43:02 +02006195 vlv_init_gpll_ref_freq(dev_priv);
6196
Ville Syrjäläa5805162015-05-26 20:42:30 +03006197 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02006198 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03006199 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02006200
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006201 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006202 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006203 dev_priv->mem_freq = 2000;
6204 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006205 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006206 dev_priv->mem_freq = 1600;
6207 break;
6208 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02006209 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006210
Deepak S2b6b3a02014-05-27 15:59:30 +05306211 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
6212 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
6213 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006214 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05306215 dev_priv->rps.max_freq);
6216
6217 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
6218 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006219 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05306220 dev_priv->rps.efficient_freq);
6221
Deepak S7707df42014-07-12 18:46:14 +05306222 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
6223 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006224 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05306225 dev_priv->rps.rp1_freq);
6226
Deepak S96676fe2016-08-12 18:46:41 +05306227 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05306228 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006229 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05306230 dev_priv->rps.min_freq);
6231
Ville Syrjälä1c147622014-08-18 14:42:43 +03006232 WARN_ONCE((dev_priv->rps.max_freq |
6233 dev_priv->rps.efficient_freq |
6234 dev_priv->rps.rp1_freq |
6235 dev_priv->rps.min_freq) & 1,
6236 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05306237}
6238
Chris Wilsondc979972016-05-10 14:10:04 +01006239static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03006240{
Chris Wilsondc979972016-05-10 14:10:04 +01006241 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03006242}
6243
Chris Wilsondc979972016-05-10 14:10:04 +01006244static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306245{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006246 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306247 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05306248 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05306249
6250 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6251
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006252 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
6253 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05306254 if (gtfifodbg) {
6255 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6256 gtfifodbg);
6257 I915_WRITE(GTFIFODBG, gtfifodbg);
6258 }
6259
6260 cherryview_check_pctx(dev_priv);
6261
6262 /* 1a & 1b: Get forcewake during program sequence. Although the driver
6263 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006264 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306265
Ville Syrjälä160614a2015-01-19 13:50:47 +02006266 /* Disable RC states. */
6267 I915_WRITE(GEN6_RC_CONTROL, 0);
6268
Deepak S38807742014-05-23 21:00:15 +05306269 /* 2a: Program RC6 thresholds.*/
6270 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6271 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6272 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6273
Akash Goel3b3f1652016-10-13 22:44:48 +05306274 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006275 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306276 I915_WRITE(GEN6_RC_SLEEP, 0);
6277
Deepak Sf4f71c72015-03-28 15:23:35 +05306278 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6279 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306280
6281 /* allows RC6 residency counter to work */
6282 I915_WRITE(VLV_COUNTER_CONTROL,
6283 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6284 VLV_MEDIA_RC6_COUNT_EN |
6285 VLV_RENDER_RC6_COUNT_EN));
6286
6287 /* For now we assume BIOS is allocating and populating the PCBR */
6288 pcbr = I915_READ(VLV_PCBR);
6289
Deepak S38807742014-05-23 21:00:15 +05306290 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006291 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6292 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006293 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306294
6295 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6296
Deepak S2b6b3a02014-05-27 15:59:30 +05306297 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006298 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306299 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6300 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6301 I915_WRITE(GEN6_RP_UP_EI, 66000);
6302 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6303
6304 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6305
6306 /* 5: Enable RPS */
6307 I915_WRITE(GEN6_RP_CONTROL,
6308 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006309 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306310 GEN6_RP_ENABLE |
6311 GEN6_RP_UP_BUSY_AVG |
6312 GEN6_RP_DOWN_IDLE_AVG);
6313
Deepak S3ef62342015-04-29 08:36:24 +05306314 /* Setting Fixed Bias */
6315 val = VLV_OVERRIDE_EN |
6316 VLV_SOC_TDP_EN |
6317 CHV_BIAS_CPU_50_SOC_50;
6318 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6319
Deepak S2b6b3a02014-05-27 15:59:30 +05306320 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6321
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006322 /* RPS code assumes GPLL is used */
6323 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6324
Jani Nikula742f4912015-09-03 11:16:09 +03006325 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306326 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6327
Chris Wilson3a45b052016-07-13 09:10:32 +01006328 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306329
Mika Kuoppala59bad942015-01-16 11:34:40 +02006330 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306331}
6332
Chris Wilsondc979972016-05-10 14:10:04 +01006333static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006334{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006335 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306336 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006337 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006338
6339 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6340
Imre Deakae484342014-03-31 15:10:44 +03006341 valleyview_check_pctx(dev_priv);
6342
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006343 gtfifodbg = I915_READ(GTFIFODBG);
6344 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006345 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6346 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006347 I915_WRITE(GTFIFODBG, gtfifodbg);
6348 }
6349
Deepak Sc8d9a592013-11-23 14:55:42 +05306350 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006351 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006352
Ville Syrjälä160614a2015-01-19 13:50:47 +02006353 /* Disable RC states. */
6354 I915_WRITE(GEN6_RC_CONTROL, 0);
6355
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006356 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006357 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6358 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6359 I915_WRITE(GEN6_RP_UP_EI, 66000);
6360 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6361
6362 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6363
6364 I915_WRITE(GEN6_RP_CONTROL,
6365 GEN6_RP_MEDIA_TURBO |
6366 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6367 GEN6_RP_MEDIA_IS_GFX |
6368 GEN6_RP_ENABLE |
6369 GEN6_RP_UP_BUSY_AVG |
6370 GEN6_RP_DOWN_IDLE_CONT);
6371
6372 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6373 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6374 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6375
Akash Goel3b3f1652016-10-13 22:44:48 +05306376 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006377 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006378
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006379 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006380
6381 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006382 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006383 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6384 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006385 VLV_MEDIA_RC6_COUNT_EN |
6386 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006387
Chris Wilsondc979972016-05-10 14:10:04 +01006388 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006389 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006390
Chris Wilsondc979972016-05-10 14:10:04 +01006391 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006392
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006393 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006394
Deepak S3ef62342015-04-29 08:36:24 +05306395 /* Setting Fixed Bias */
6396 val = VLV_OVERRIDE_EN |
6397 VLV_SOC_TDP_EN |
6398 VLV_BIAS_CPU_125_SOC_875;
6399 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6400
Jani Nikula64936252013-05-22 15:36:20 +03006401 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006402
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006403 /* RPS code assumes GPLL is used */
6404 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6405
Jani Nikula742f4912015-09-03 11:16:09 +03006406 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006407 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6408
Chris Wilson3a45b052016-07-13 09:10:32 +01006409 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006410
Mika Kuoppala59bad942015-01-16 11:34:40 +02006411 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006412}
6413
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006414static unsigned long intel_pxfreq(u32 vidfreq)
6415{
6416 unsigned long freq;
6417 int div = (vidfreq & 0x3f0000) >> 16;
6418 int post = (vidfreq & 0x3000) >> 12;
6419 int pre = (vidfreq & 0x7);
6420
6421 if (!pre)
6422 return 0;
6423
6424 freq = ((div * 133333) / ((1<<post) * pre));
6425
6426 return freq;
6427}
6428
Daniel Vettereb48eb02012-04-26 23:28:12 +02006429static const struct cparams {
6430 u16 i;
6431 u16 t;
6432 u16 m;
6433 u16 c;
6434} cparams[] = {
6435 { 1, 1333, 301, 28664 },
6436 { 1, 1066, 294, 24460 },
6437 { 1, 800, 294, 25192 },
6438 { 0, 1333, 276, 27605 },
6439 { 0, 1066, 276, 27605 },
6440 { 0, 800, 231, 23784 },
6441};
6442
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006443static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006444{
6445 u64 total_count, diff, ret;
6446 u32 count1, count2, count3, m = 0, c = 0;
6447 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6448 int i;
6449
Chris Wilson67520412017-03-02 13:28:01 +00006450 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006451
Daniel Vetter20e4d402012-08-08 23:35:39 +02006452 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006453
6454 /* Prevent division-by-zero if we are asking too fast.
6455 * Also, we don't get interesting results if we are polling
6456 * faster than once in 10ms, so just return the saved value
6457 * in such cases.
6458 */
6459 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006460 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006461
6462 count1 = I915_READ(DMIEC);
6463 count2 = I915_READ(DDREC);
6464 count3 = I915_READ(CSIEC);
6465
6466 total_count = count1 + count2 + count3;
6467
6468 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006469 if (total_count < dev_priv->ips.last_count1) {
6470 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006471 diff += total_count;
6472 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006473 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006474 }
6475
6476 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006477 if (cparams[i].i == dev_priv->ips.c_m &&
6478 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006479 m = cparams[i].m;
6480 c = cparams[i].c;
6481 break;
6482 }
6483 }
6484
6485 diff = div_u64(diff, diff1);
6486 ret = ((m * diff) + c);
6487 ret = div_u64(ret, 10);
6488
Daniel Vetter20e4d402012-08-08 23:35:39 +02006489 dev_priv->ips.last_count1 = total_count;
6490 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006491
Daniel Vetter20e4d402012-08-08 23:35:39 +02006492 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006493
6494 return ret;
6495}
6496
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006497unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6498{
6499 unsigned long val;
6500
Chris Wilsondc979972016-05-10 14:10:04 +01006501 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006502 return 0;
6503
6504 spin_lock_irq(&mchdev_lock);
6505
6506 val = __i915_chipset_val(dev_priv);
6507
6508 spin_unlock_irq(&mchdev_lock);
6509
6510 return val;
6511}
6512
Daniel Vettereb48eb02012-04-26 23:28:12 +02006513unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6514{
6515 unsigned long m, x, b;
6516 u32 tsfs;
6517
6518 tsfs = I915_READ(TSFS);
6519
6520 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6521 x = I915_READ8(TR1);
6522
6523 b = tsfs & TSFS_INTR_MASK;
6524
6525 return ((m * x) / 127) - b;
6526}
6527
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006528static int _pxvid_to_vd(u8 pxvid)
6529{
6530 if (pxvid == 0)
6531 return 0;
6532
6533 if (pxvid >= 8 && pxvid < 31)
6534 pxvid = 31;
6535
6536 return (pxvid + 2) * 125;
6537}
6538
6539static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006540{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006541 const int vd = _pxvid_to_vd(pxvid);
6542 const int vm = vd - 1125;
6543
Chris Wilsondc979972016-05-10 14:10:04 +01006544 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006545 return vm > 0 ? vm : 0;
6546
6547 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006548}
6549
Daniel Vetter02d71952012-08-09 16:44:54 +02006550static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006551{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006552 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006553 u32 count;
6554
Chris Wilson67520412017-03-02 13:28:01 +00006555 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006556
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006557 now = ktime_get_raw_ns();
6558 diffms = now - dev_priv->ips.last_time2;
6559 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006560
6561 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006562 if (!diffms)
6563 return;
6564
6565 count = I915_READ(GFXEC);
6566
Daniel Vetter20e4d402012-08-08 23:35:39 +02006567 if (count < dev_priv->ips.last_count2) {
6568 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006569 diff += count;
6570 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006571 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006572 }
6573
Daniel Vetter20e4d402012-08-08 23:35:39 +02006574 dev_priv->ips.last_count2 = count;
6575 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006576
6577 /* More magic constants... */
6578 diff = diff * 1181;
6579 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006580 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006581}
6582
Daniel Vetter02d71952012-08-09 16:44:54 +02006583void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6584{
Chris Wilsondc979972016-05-10 14:10:04 +01006585 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006586 return;
6587
Daniel Vetter92703882012-08-09 16:46:01 +02006588 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006589
6590 __i915_update_gfx_val(dev_priv);
6591
Daniel Vetter92703882012-08-09 16:46:01 +02006592 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006593}
6594
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006595static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006596{
6597 unsigned long t, corr, state1, corr2, state2;
6598 u32 pxvid, ext_v;
6599
Chris Wilson67520412017-03-02 13:28:01 +00006600 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006601
Ville Syrjälä616847e2015-09-18 20:03:19 +03006602 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006603 pxvid = (pxvid >> 24) & 0x7f;
6604 ext_v = pvid_to_extvid(dev_priv, pxvid);
6605
6606 state1 = ext_v;
6607
6608 t = i915_mch_val(dev_priv);
6609
6610 /* Revel in the empirically derived constants */
6611
6612 /* Correction factor in 1/100000 units */
6613 if (t > 80)
6614 corr = ((t * 2349) + 135940);
6615 else if (t >= 50)
6616 corr = ((t * 964) + 29317);
6617 else /* < 50 */
6618 corr = ((t * 301) + 1004);
6619
6620 corr = corr * ((150142 * state1) / 10000 - 78642);
6621 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006622 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006623
6624 state2 = (corr2 * state1) / 10000;
6625 state2 /= 100; /* convert to mW */
6626
Daniel Vetter02d71952012-08-09 16:44:54 +02006627 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006628
Daniel Vetter20e4d402012-08-08 23:35:39 +02006629 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006630}
6631
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006632unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6633{
6634 unsigned long val;
6635
Chris Wilsondc979972016-05-10 14:10:04 +01006636 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006637 return 0;
6638
6639 spin_lock_irq(&mchdev_lock);
6640
6641 val = __i915_gfx_val(dev_priv);
6642
6643 spin_unlock_irq(&mchdev_lock);
6644
6645 return val;
6646}
6647
Daniel Vettereb48eb02012-04-26 23:28:12 +02006648/**
6649 * i915_read_mch_val - return value for IPS use
6650 *
6651 * Calculate and return a value for the IPS driver to use when deciding whether
6652 * we have thermal and power headroom to increase CPU or GPU power budget.
6653 */
6654unsigned long i915_read_mch_val(void)
6655{
6656 struct drm_i915_private *dev_priv;
6657 unsigned long chipset_val, graphics_val, ret = 0;
6658
Daniel Vetter92703882012-08-09 16:46:01 +02006659 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006660 if (!i915_mch_dev)
6661 goto out_unlock;
6662 dev_priv = i915_mch_dev;
6663
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006664 chipset_val = __i915_chipset_val(dev_priv);
6665 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006666
6667 ret = chipset_val + graphics_val;
6668
6669out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006670 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006671
6672 return ret;
6673}
6674EXPORT_SYMBOL_GPL(i915_read_mch_val);
6675
6676/**
6677 * i915_gpu_raise - raise GPU frequency limit
6678 *
6679 * Raise the limit; IPS indicates we have thermal headroom.
6680 */
6681bool i915_gpu_raise(void)
6682{
6683 struct drm_i915_private *dev_priv;
6684 bool ret = true;
6685
Daniel Vetter92703882012-08-09 16:46:01 +02006686 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006687 if (!i915_mch_dev) {
6688 ret = false;
6689 goto out_unlock;
6690 }
6691 dev_priv = i915_mch_dev;
6692
Daniel Vetter20e4d402012-08-08 23:35:39 +02006693 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6694 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006695
6696out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006697 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006698
6699 return ret;
6700}
6701EXPORT_SYMBOL_GPL(i915_gpu_raise);
6702
6703/**
6704 * i915_gpu_lower - lower GPU frequency limit
6705 *
6706 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6707 * frequency maximum.
6708 */
6709bool i915_gpu_lower(void)
6710{
6711 struct drm_i915_private *dev_priv;
6712 bool ret = true;
6713
Daniel Vetter92703882012-08-09 16:46:01 +02006714 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006715 if (!i915_mch_dev) {
6716 ret = false;
6717 goto out_unlock;
6718 }
6719 dev_priv = i915_mch_dev;
6720
Daniel Vetter20e4d402012-08-08 23:35:39 +02006721 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6722 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006723
6724out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006725 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006726
6727 return ret;
6728}
6729EXPORT_SYMBOL_GPL(i915_gpu_lower);
6730
6731/**
6732 * i915_gpu_busy - indicate GPU business to IPS
6733 *
6734 * Tell the IPS driver whether or not the GPU is busy.
6735 */
6736bool i915_gpu_busy(void)
6737{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006738 bool ret = false;
6739
Daniel Vetter92703882012-08-09 16:46:01 +02006740 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006741 if (i915_mch_dev)
6742 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006743 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006744
6745 return ret;
6746}
6747EXPORT_SYMBOL_GPL(i915_gpu_busy);
6748
6749/**
6750 * i915_gpu_turbo_disable - disable graphics turbo
6751 *
6752 * Disable graphics turbo by resetting the max frequency and setting the
6753 * current frequency to the default.
6754 */
6755bool i915_gpu_turbo_disable(void)
6756{
6757 struct drm_i915_private *dev_priv;
6758 bool ret = true;
6759
Daniel Vetter92703882012-08-09 16:46:01 +02006760 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006761 if (!i915_mch_dev) {
6762 ret = false;
6763 goto out_unlock;
6764 }
6765 dev_priv = i915_mch_dev;
6766
Daniel Vetter20e4d402012-08-08 23:35:39 +02006767 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006768
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006769 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006770 ret = false;
6771
6772out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006773 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006774
6775 return ret;
6776}
6777EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6778
6779/**
6780 * Tells the intel_ips driver that the i915 driver is now loaded, if
6781 * IPS got loaded first.
6782 *
6783 * This awkward dance is so that neither module has to depend on the
6784 * other in order for IPS to do the appropriate communication of
6785 * GPU turbo limits to i915.
6786 */
6787static void
6788ips_ping_for_i915_load(void)
6789{
6790 void (*link)(void);
6791
6792 link = symbol_get(ips_link_to_i915_driver);
6793 if (link) {
6794 link();
6795 symbol_put(ips_link_to_i915_driver);
6796 }
6797}
6798
6799void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6800{
Daniel Vetter02d71952012-08-09 16:44:54 +02006801 /* We only register the i915 ips part with intel-ips once everything is
6802 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006803 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006804 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006805 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006806
6807 ips_ping_for_i915_load();
6808}
6809
6810void intel_gpu_ips_teardown(void)
6811{
Daniel Vetter92703882012-08-09 16:46:01 +02006812 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006813 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006814 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006815}
Deepak S76c3552f2014-01-30 23:08:16 +05306816
Chris Wilsondc979972016-05-10 14:10:04 +01006817static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006818{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006819 u32 lcfuse;
6820 u8 pxw[16];
6821 int i;
6822
6823 /* Disable to program */
6824 I915_WRITE(ECR, 0);
6825 POSTING_READ(ECR);
6826
6827 /* Program energy weights for various events */
6828 I915_WRITE(SDEW, 0x15040d00);
6829 I915_WRITE(CSIEW0, 0x007f0000);
6830 I915_WRITE(CSIEW1, 0x1e220004);
6831 I915_WRITE(CSIEW2, 0x04000004);
6832
6833 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006834 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006835 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006836 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006837
6838 /* Program P-state weights to account for frequency power adjustment */
6839 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006840 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006841 unsigned long freq = intel_pxfreq(pxvidfreq);
6842 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6843 PXVFREQ_PX_SHIFT;
6844 unsigned long val;
6845
6846 val = vid * vid;
6847 val *= (freq / 1000);
6848 val *= 255;
6849 val /= (127*127*900);
6850 if (val > 0xff)
6851 DRM_ERROR("bad pxval: %ld\n", val);
6852 pxw[i] = val;
6853 }
6854 /* Render standby states get 0 weight */
6855 pxw[14] = 0;
6856 pxw[15] = 0;
6857
6858 for (i = 0; i < 4; i++) {
6859 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6860 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006861 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006862 }
6863
6864 /* Adjust magic regs to magic values (more experimental results) */
6865 I915_WRITE(OGW0, 0);
6866 I915_WRITE(OGW1, 0);
6867 I915_WRITE(EG0, 0x00007f00);
6868 I915_WRITE(EG1, 0x0000000e);
6869 I915_WRITE(EG2, 0x000e0000);
6870 I915_WRITE(EG3, 0x68000300);
6871 I915_WRITE(EG4, 0x42000000);
6872 I915_WRITE(EG5, 0x00140031);
6873 I915_WRITE(EG6, 0);
6874 I915_WRITE(EG7, 0);
6875
6876 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006877 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006878
6879 /* Enable PMON + select events */
6880 I915_WRITE(ECR, 0x80000019);
6881
6882 lcfuse = I915_READ(LCFUSE02);
6883
Daniel Vetter20e4d402012-08-08 23:35:39 +02006884 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006885}
6886
Chris Wilsondc979972016-05-10 14:10:04 +01006887void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006888{
Imre Deakb268c692015-12-15 20:10:31 +02006889 /*
6890 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6891 * requirement.
6892 */
6893 if (!i915.enable_rc6) {
6894 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6895 intel_runtime_pm_get(dev_priv);
6896 }
Imre Deake6069ca2014-04-18 16:01:02 +03006897
Chris Wilsonb5163db2016-08-10 13:58:24 +01006898 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006899 mutex_lock(&dev_priv->rps.hw_lock);
6900
6901 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006902 if (IS_CHERRYVIEW(dev_priv))
6903 cherryview_init_gt_powersave(dev_priv);
6904 else if (IS_VALLEYVIEW(dev_priv))
6905 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006906 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006907 gen6_init_rps_frequencies(dev_priv);
6908
6909 /* Derive initial user preferences/limits from the hardware limits */
6910 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6911 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6912
6913 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6914 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6915
6916 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6917 dev_priv->rps.min_freq_softlimit =
6918 max_t(int,
6919 dev_priv->rps.efficient_freq,
6920 intel_freq_opcode(dev_priv, 450));
6921
Chris Wilson99ac9612016-07-13 09:10:34 +01006922 /* After setting max-softlimit, find the overclock max freq */
6923 if (IS_GEN6(dev_priv) ||
6924 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6925 u32 params = 0;
6926
6927 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6928 if (params & BIT(31)) { /* OC supported */
6929 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6930 (dev_priv->rps.max_freq & 0xff) * 50,
6931 (params & 0xff) * 50);
6932 dev_priv->rps.max_freq = params & 0xff;
6933 }
6934 }
6935
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006936 /* Finally allow us to boost to max by default */
6937 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6938
Chris Wilson773ea9a2016-07-13 09:10:33 +01006939 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006940 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006941
6942 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006943}
6944
Chris Wilsondc979972016-05-10 14:10:04 +01006945void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006946{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006947 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006948 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006949
6950 if (!i915.enable_rc6)
6951 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006952}
6953
Chris Wilson54b4f682016-07-21 21:16:19 +01006954/**
6955 * intel_suspend_gt_powersave - suspend PM work and helper threads
6956 * @dev_priv: i915 device
6957 *
6958 * We don't want to disable RC6 or other features here, we just want
6959 * to make sure any work we've queued has finished and won't bother
6960 * us while we're suspended.
6961 */
6962void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6963{
6964 if (INTEL_GEN(dev_priv) < 6)
6965 return;
6966
6967 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6968 intel_runtime_pm_put(dev_priv);
6969
6970 /* gen6_rps_idle() will be called later to disable interrupts */
6971}
6972
Chris Wilsonb7137e02016-07-13 09:10:37 +01006973void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6974{
6975 dev_priv->rps.enabled = true; /* force disabling */
6976 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006977
6978 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006979}
6980
Chris Wilsondc979972016-05-10 14:10:04 +01006981void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006982{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006983 if (!READ_ONCE(dev_priv->rps.enabled))
6984 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006985
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006986 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006987
Chris Wilsonb7137e02016-07-13 09:10:37 +01006988 if (INTEL_GEN(dev_priv) >= 9) {
6989 gen9_disable_rc6(dev_priv);
6990 gen9_disable_rps(dev_priv);
6991 } else if (IS_CHERRYVIEW(dev_priv)) {
6992 cherryview_disable_rps(dev_priv);
6993 } else if (IS_VALLEYVIEW(dev_priv)) {
6994 valleyview_disable_rps(dev_priv);
6995 } else if (INTEL_GEN(dev_priv) >= 6) {
6996 gen6_disable_rps(dev_priv);
6997 } else if (IS_IRONLAKE_M(dev_priv)) {
6998 ironlake_disable_drps(dev_priv);
6999 }
7000
7001 dev_priv->rps.enabled = false;
7002 mutex_unlock(&dev_priv->rps.hw_lock);
7003}
7004
7005void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
7006{
Chris Wilson54b4f682016-07-21 21:16:19 +01007007 /* We shouldn't be disabling as we submit, so this should be less
7008 * racy than it appears!
7009 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01007010 if (READ_ONCE(dev_priv->rps.enabled))
7011 return;
7012
7013 /* Powersaving is controlled by the host when inside a VM */
7014 if (intel_vgpu_active(dev_priv))
7015 return;
7016
7017 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02007018
Chris Wilsondc979972016-05-10 14:10:04 +01007019 if (IS_CHERRYVIEW(dev_priv)) {
7020 cherryview_enable_rps(dev_priv);
7021 } else if (IS_VALLEYVIEW(dev_priv)) {
7022 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01007023 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01007024 gen9_enable_rc6(dev_priv);
7025 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08007026 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01007027 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01007028 } else if (IS_BROADWELL(dev_priv)) {
7029 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01007030 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01007031 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01007032 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01007033 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01007034 } else if (IS_IRONLAKE_M(dev_priv)) {
7035 ironlake_enable_drps(dev_priv);
7036 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007037 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00007038
7039 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
7040 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
7041
7042 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
7043 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
7044
Chris Wilson54b4f682016-07-21 21:16:19 +01007045 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007046 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01007047}
Imre Deakc6df39b2014-04-14 20:24:29 +03007048
Chris Wilson54b4f682016-07-21 21:16:19 +01007049static void __intel_autoenable_gt_powersave(struct work_struct *work)
7050{
7051 struct drm_i915_private *dev_priv =
7052 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
7053 struct intel_engine_cs *rcs;
7054 struct drm_i915_gem_request *req;
7055
7056 if (READ_ONCE(dev_priv->rps.enabled))
7057 goto out;
7058
Akash Goel3b3f1652016-10-13 22:44:48 +05307059 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00007060 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01007061 goto out;
7062
7063 if (!rcs->init_context)
7064 goto out;
7065
7066 mutex_lock(&dev_priv->drm.struct_mutex);
7067
7068 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
7069 if (IS_ERR(req))
7070 goto unlock;
7071
7072 if (!i915.enable_execlists && i915_switch_context(req) == 0)
7073 rcs->init_context(req);
7074
7075 /* Mark the device busy, calling intel_enable_gt_powersave() */
7076 i915_add_request_no_flush(req);
7077
7078unlock:
7079 mutex_unlock(&dev_priv->drm.struct_mutex);
7080out:
7081 intel_runtime_pm_put(dev_priv);
7082}
7083
7084void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
7085{
7086 if (READ_ONCE(dev_priv->rps.enabled))
7087 return;
7088
7089 if (IS_IRONLAKE_M(dev_priv)) {
7090 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007091 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007092 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
7093 /*
7094 * PCU communication is slow and this doesn't need to be
7095 * done at any specific time, so do this out of our fast path
7096 * to make resume and init faster.
7097 *
7098 * We depend on the HW RC6 power context save/restore
7099 * mechanism when entering D3 through runtime PM suspend. So
7100 * disable RPM until RPS/RC6 is properly setup. We can only
7101 * get here via the driver load/system resume/runtime resume
7102 * paths, so the _noresume version is enough (and in case of
7103 * runtime resume it's necessary).
7104 */
7105 if (queue_delayed_work(dev_priv->wq,
7106 &dev_priv->rps.autoenable_work,
7107 round_jiffies_up_relative(HZ)))
7108 intel_runtime_pm_get_noresume(dev_priv);
7109 }
7110}
7111
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007112static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01007113{
Daniel Vetter3107bd42012-10-31 22:52:31 +01007114 /*
7115 * On Ibex Peak and Cougar Point, we need to disable clock
7116 * gating for the panel power sequencer or it will fail to
7117 * start up when no ports are active.
7118 */
7119 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
7120}
7121
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007122static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007123{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03007124 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007125
Damien Lespiau055e3932014-08-18 13:49:10 +01007126 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007127 I915_WRITE(DSPCNTR(pipe),
7128 I915_READ(DSPCNTR(pipe)) |
7129 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03007130
7131 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
7132 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007133 }
7134}
7135
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007136static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02007137{
Ville Syrjälä017636c2013-12-05 15:51:37 +02007138 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
7139 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
7140 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
7141
7142 /*
7143 * Don't touch WM1S_LP_EN here.
7144 * Doing so could cause underruns.
7145 */
7146}
7147
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007148static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007149{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007150 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007151
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01007152 /*
7153 * Required for FBC
7154 * WaFbcDisableDpfcClockGating:ilk
7155 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01007156 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
7157 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
7158 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007159
7160 I915_WRITE(PCH_3DCGDIS0,
7161 MARIUNIT_CLOCK_GATE_DISABLE |
7162 SVSMUNIT_CLOCK_GATE_DISABLE);
7163 I915_WRITE(PCH_3DCGDIS1,
7164 VFMUNIT_CLOCK_GATE_DISABLE);
7165
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007166 /*
7167 * According to the spec the following bits should be set in
7168 * order to enable memory self-refresh
7169 * The bit 22/21 of 0x42004
7170 * The bit 5 of 0x42020
7171 * The bit 15 of 0x45000
7172 */
7173 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7174 (I915_READ(ILK_DISPLAY_CHICKEN2) |
7175 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01007176 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007177 I915_WRITE(DISP_ARB_CTL,
7178 (I915_READ(DISP_ARB_CTL) |
7179 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02007180
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007181 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007182
7183 /*
7184 * Based on the document from hardware guys the following bits
7185 * should be set unconditionally in order to enable FBC.
7186 * The bit 22 of 0x42000
7187 * The bit 22 of 0x42004
7188 * The bit 7,8,9 of 0x42020.
7189 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007190 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01007191 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007192 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7193 I915_READ(ILK_DISPLAY_CHICKEN1) |
7194 ILK_FBCQ_DIS);
7195 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7196 I915_READ(ILK_DISPLAY_CHICKEN2) |
7197 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007198 }
7199
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01007200 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
7201
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007202 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7203 I915_READ(ILK_DISPLAY_CHICKEN2) |
7204 ILK_ELPIN_409_SELECT);
7205 I915_WRITE(_3D_CHICKEN2,
7206 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
7207 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02007208
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007209 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02007210 I915_WRITE(CACHE_MODE_0,
7211 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01007212
Akash Goel4e046322014-04-04 17:14:38 +05307213 /* WaDisable_RenderCache_OperationalFlush:ilk */
7214 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7215
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007216 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03007217
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007218 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007219}
7220
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007221static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01007222{
Daniel Vetter3107bd42012-10-31 22:52:31 +01007223 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007224 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01007225
7226 /*
7227 * On Ibex Peak and Cougar Point, we need to disable clock
7228 * gating for the panel power sequencer or it will fail to
7229 * start up when no ports are active.
7230 */
Jesse Barnescd664072013-10-02 10:34:19 -07007231 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
7232 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
7233 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007234 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
7235 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01007236 /* The below fixes the weird display corruption, a few pixels shifted
7237 * downward, on (only) LVDS of some HP laptops with IVY.
7238 */
Damien Lespiau055e3932014-08-18 13:49:10 +01007239 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03007240 val = I915_READ(TRANS_CHICKEN2(pipe));
7241 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
7242 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007243 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007244 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03007245 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
7246 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
7247 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007248 I915_WRITE(TRANS_CHICKEN2(pipe), val);
7249 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01007250 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01007251 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01007252 I915_WRITE(TRANS_CHICKEN1(pipe),
7253 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
7254 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007255}
7256
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007257static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007258{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007259 uint32_t tmp;
7260
7261 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02007262 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
7263 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7264 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007265}
7266
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007267static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007268{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007269 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007270
Damien Lespiau231e54f2012-10-19 17:55:41 +01007271 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007272
7273 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7274 I915_READ(ILK_DISPLAY_CHICKEN2) |
7275 ILK_ELPIN_409_SELECT);
7276
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007277 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007278 I915_WRITE(_3D_CHICKEN,
7279 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7280
Akash Goel4e046322014-04-04 17:14:38 +05307281 /* WaDisable_RenderCache_OperationalFlush:snb */
7282 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7283
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007284 /*
7285 * BSpec recoomends 8x4 when MSAA is used,
7286 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007287 *
7288 * Note that PS/WM thread counts depend on the WIZ hashing
7289 * disable bit, which we don't touch here, but it's good
7290 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007291 */
7292 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007293 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007294
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007295 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007296
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007297 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007298 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007299
7300 I915_WRITE(GEN6_UCGCTL1,
7301 I915_READ(GEN6_UCGCTL1) |
7302 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7303 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7304
7305 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7306 * gating disable must be set. Failure to set it results in
7307 * flickering pixels due to Z write ordering failures after
7308 * some amount of runtime in the Mesa "fire" demo, and Unigine
7309 * Sanctuary and Tropics, and apparently anything else with
7310 * alpha test or pixel discard.
7311 *
7312 * According to the spec, bit 11 (RCCUNIT) must also be set,
7313 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007314 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007315 * WaDisableRCCUnitClockGating:snb
7316 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007317 */
7318 I915_WRITE(GEN6_UCGCTL2,
7319 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7320 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7321
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007322 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007323 I915_WRITE(_3D_CHICKEN3,
7324 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007325
7326 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007327 * Bspec says:
7328 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7329 * 3DSTATE_SF number of SF output attributes is more than 16."
7330 */
7331 I915_WRITE(_3D_CHICKEN3,
7332 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7333
7334 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007335 * According to the spec the following bits should be
7336 * set in order to enable memory self-refresh and fbc:
7337 * The bit21 and bit22 of 0x42000
7338 * The bit21 and bit22 of 0x42004
7339 * The bit5 and bit7 of 0x42020
7340 * The bit14 of 0x70180
7341 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007342 *
7343 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007344 */
7345 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7346 I915_READ(ILK_DISPLAY_CHICKEN1) |
7347 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7348 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7349 I915_READ(ILK_DISPLAY_CHICKEN2) |
7350 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007351 I915_WRITE(ILK_DSPCLK_GATE_D,
7352 I915_READ(ILK_DSPCLK_GATE_D) |
7353 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7354 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007355
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007356 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007357
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007358 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007359
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007360 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007361}
7362
7363static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7364{
7365 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7366
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007367 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007368 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007369 *
7370 * This actually overrides the dispatch
7371 * mode for all thread types.
7372 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007373 reg &= ~GEN7_FF_SCHED_MASK;
7374 reg |= GEN7_FF_TS_SCHED_HW;
7375 reg |= GEN7_FF_VS_SCHED_HW;
7376 reg |= GEN7_FF_DS_SCHED_HW;
7377
7378 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7379}
7380
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007381static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007382{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007383 /*
7384 * TODO: this bit should only be enabled when really needed, then
7385 * disabled when not needed anymore in order to save power.
7386 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007387 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007388 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7389 I915_READ(SOUTH_DSPCLK_GATE_D) |
7390 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007391
7392 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007393 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7394 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007395 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007396}
7397
Ville Syrjälä712bf362016-10-31 22:37:23 +02007398static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007399{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007400 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007401 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7402
7403 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7404 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7405 }
7406}
7407
Imre Deak450174f2016-05-03 15:54:21 +03007408static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7409 int general_prio_credits,
7410 int high_prio_credits)
7411{
7412 u32 misccpctl;
7413
7414 /* WaTempDisableDOPClkGating:bdw */
7415 misccpctl = I915_READ(GEN7_MISCCPCTL);
7416 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7417
7418 I915_WRITE(GEN8_L3SQCREG1,
7419 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7420 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7421
7422 /*
7423 * Wait at least 100 clocks before re-enabling clock gating.
7424 * See the definition of L3SQCREG1 in BSpec.
7425 */
7426 POSTING_READ(GEN8_L3SQCREG1);
7427 udelay(1);
7428 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7429}
7430
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007431static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007432{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007433 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007434
7435 /* WaDisableSDEUnitClockGating:kbl */
7436 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7437 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7438 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007439
7440 /* WaDisableGamClockGating:kbl */
7441 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7442 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7443 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007444
7445 /* WaFbcNukeOnHostModify:kbl */
7446 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7447 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007448}
7449
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007450static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007451{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007452 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007453
7454 /* WAC6entrylatency:skl */
7455 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7456 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007457
7458 /* WaFbcNukeOnHostModify:skl */
7459 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7460 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007461}
7462
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007463static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007464{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007465 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007466
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007467 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007468
Ben Widawskyab57fff2013-12-12 15:28:04 -08007469 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007470 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007471
Ben Widawskyab57fff2013-12-12 15:28:04 -08007472 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007473 I915_WRITE(CHICKEN_PAR1_1,
7474 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7475
Ben Widawskyab57fff2013-12-12 15:28:04 -08007476 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007477 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007478 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007479 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007480 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007481 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007482
Ben Widawskyab57fff2013-12-12 15:28:04 -08007483 /* WaVSRefCountFullforceMissDisable:bdw */
7484 /* WaDSRefCountFullforceMissDisable:bdw */
7485 I915_WRITE(GEN7_FF_THREAD_MODE,
7486 I915_READ(GEN7_FF_THREAD_MODE) &
7487 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007488
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007489 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7490 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007491
7492 /* WaDisableSDEUnitClockGating:bdw */
7493 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7494 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007495
Imre Deak450174f2016-05-03 15:54:21 +03007496 /* WaProgramL3SqcReg1Default:bdw */
7497 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007498
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007499 /*
7500 * WaGttCachingOffByDefault:bdw
7501 * GTT cache may not work with big pages, so if those
7502 * are ever enabled GTT cache may need to be disabled.
7503 */
7504 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7505
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007506 /* WaKVMNotificationOnConfigChange:bdw */
7507 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7508 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7509
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007510 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007511
7512 /* WaDisableDopClockGating:bdw
7513 *
7514 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7515 * clock gating.
7516 */
7517 I915_WRITE(GEN6_UCGCTL1,
7518 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007519}
7520
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007521static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007522{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007523 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007524
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007525 /* L3 caching of data atomics doesn't work -- disable it. */
7526 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7527 I915_WRITE(HSW_ROW_CHICKEN3,
7528 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7529
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007530 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007531 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7532 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7533 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7534
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007535 /* WaVSRefCountFullforceMissDisable:hsw */
7536 I915_WRITE(GEN7_FF_THREAD_MODE,
7537 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007538
Akash Goel4e046322014-04-04 17:14:38 +05307539 /* WaDisable_RenderCache_OperationalFlush:hsw */
7540 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7541
Chia-I Wufe27c602014-01-28 13:29:33 +08007542 /* enable HiZ Raw Stall Optimization */
7543 I915_WRITE(CACHE_MODE_0_GEN7,
7544 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7545
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007546 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007547 I915_WRITE(CACHE_MODE_1,
7548 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007549
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007550 /*
7551 * BSpec recommends 8x4 when MSAA is used,
7552 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007553 *
7554 * Note that PS/WM thread counts depend on the WIZ hashing
7555 * disable bit, which we don't touch here, but it's good
7556 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007557 */
7558 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007559 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007560
Kenneth Graunke94411592014-12-31 16:23:00 -08007561 /* WaSampleCChickenBitEnable:hsw */
7562 I915_WRITE(HALF_SLICE_CHICKEN3,
7563 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7564
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007565 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007566 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7567
Paulo Zanoni90a88642013-05-03 17:23:45 -03007568 /* WaRsPkgCStateDisplayPMReq:hsw */
7569 I915_WRITE(CHICKEN_PAR1_1,
7570 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007571
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007572 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007573}
7574
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007575static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007576{
Ben Widawsky20848222012-05-04 18:58:59 -07007577 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007578
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007579 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007580
Damien Lespiau231e54f2012-10-19 17:55:41 +01007581 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007582
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007583 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007584 I915_WRITE(_3D_CHICKEN3,
7585 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7586
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007587 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007588 I915_WRITE(IVB_CHICKEN3,
7589 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7590 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7591
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007592 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007593 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007594 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7595 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007596
Akash Goel4e046322014-04-04 17:14:38 +05307597 /* WaDisable_RenderCache_OperationalFlush:ivb */
7598 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7599
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007600 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007601 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7602 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7603
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007604 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007605 I915_WRITE(GEN7_L3CNTLREG1,
7606 GEN7_WA_FOR_GEN7_L3_CONTROL);
7607 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007608 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007609 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007610 I915_WRITE(GEN7_ROW_CHICKEN2,
7611 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007612 else {
7613 /* must write both registers */
7614 I915_WRITE(GEN7_ROW_CHICKEN2,
7615 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007616 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7617 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007618 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007619
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007620 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007621 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7622 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7623
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007624 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007625 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007626 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007627 */
7628 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007629 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007630
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007631 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007632 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7633 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7634 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7635
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007636 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007637
7638 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007639
Chris Wilson22721342014-03-04 09:41:43 +00007640 if (0) { /* causes HiZ corruption on ivb:gt1 */
7641 /* enable HiZ Raw Stall Optimization */
7642 I915_WRITE(CACHE_MODE_0_GEN7,
7643 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7644 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007645
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007646 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007647 I915_WRITE(CACHE_MODE_1,
7648 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007649
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007650 /*
7651 * BSpec recommends 8x4 when MSAA is used,
7652 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007653 *
7654 * Note that PS/WM thread counts depend on the WIZ hashing
7655 * disable bit, which we don't touch here, but it's good
7656 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007657 */
7658 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007659 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007660
Ben Widawsky20848222012-05-04 18:58:59 -07007661 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7662 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7663 snpcr |= GEN6_MBC_SNPCR_MED;
7664 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007665
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007666 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007667 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007668
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007669 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007670}
7671
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007672static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007673{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007674 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007675 I915_WRITE(_3D_CHICKEN3,
7676 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7677
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007678 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007679 I915_WRITE(IVB_CHICKEN3,
7680 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7681 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7682
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007683 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007684 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007685 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007686 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7687 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007688
Akash Goel4e046322014-04-04 17:14:38 +05307689 /* WaDisable_RenderCache_OperationalFlush:vlv */
7690 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7691
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007692 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007693 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7694 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7695
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007696 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007697 I915_WRITE(GEN7_ROW_CHICKEN2,
7698 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7699
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007700 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007701 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7702 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7703 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7704
Ville Syrjälä46680e02014-01-22 21:33:01 +02007705 gen7_setup_fixed_func_scheduler(dev_priv);
7706
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007707 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007708 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007709 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007710 */
7711 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007712 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007713
Akash Goelc98f5062014-03-24 23:00:07 +05307714 /* WaDisableL3Bank2xClockGate:vlv
7715 * Disabling L3 clock gating- MMIO 940c[25] = 1
7716 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7717 I915_WRITE(GEN7_UCGCTL4,
7718 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007719
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007720 /*
7721 * BSpec says this must be set, even though
7722 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7723 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007724 I915_WRITE(CACHE_MODE_1,
7725 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007726
7727 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007728 * BSpec recommends 8x4 when MSAA is used,
7729 * however in practice 16x4 seems fastest.
7730 *
7731 * Note that PS/WM thread counts depend on the WIZ hashing
7732 * disable bit, which we don't touch here, but it's good
7733 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7734 */
7735 I915_WRITE(GEN7_GT_MODE,
7736 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7737
7738 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007739 * WaIncreaseL3CreditsForVLVB0:vlv
7740 * This is the hardware default actually.
7741 */
7742 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7743
7744 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007745 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007746 * Disable clock gating on th GCFG unit to prevent a delay
7747 * in the reporting of vblank events.
7748 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007749 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007750}
7751
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007752static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007753{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007754 /* WaVSRefCountFullforceMissDisable:chv */
7755 /* WaDSRefCountFullforceMissDisable:chv */
7756 I915_WRITE(GEN7_FF_THREAD_MODE,
7757 I915_READ(GEN7_FF_THREAD_MODE) &
7758 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007759
7760 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7761 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7762 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007763
7764 /* WaDisableCSUnitClockGating:chv */
7765 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7766 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007767
7768 /* WaDisableSDEUnitClockGating:chv */
7769 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7770 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007771
7772 /*
Imre Deak450174f2016-05-03 15:54:21 +03007773 * WaProgramL3SqcReg1Default:chv
7774 * See gfxspecs/Related Documents/Performance Guide/
7775 * LSQC Setting Recommendations.
7776 */
7777 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7778
7779 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007780 * GTT cache may not work with big pages, so if those
7781 * are ever enabled GTT cache may need to be disabled.
7782 */
7783 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007784}
7785
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007786static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007787{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007788 uint32_t dspclk_gate;
7789
7790 I915_WRITE(RENCLK_GATE_D1, 0);
7791 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7792 GS_UNIT_CLOCK_GATE_DISABLE |
7793 CL_UNIT_CLOCK_GATE_DISABLE);
7794 I915_WRITE(RAMCLK_GATE_D, 0);
7795 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7796 OVRUNIT_CLOCK_GATE_DISABLE |
7797 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007798 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007799 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7800 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007801
7802 /* WaDisableRenderCachePipelinedFlush */
7803 I915_WRITE(CACHE_MODE_0,
7804 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007805
Akash Goel4e046322014-04-04 17:14:38 +05307806 /* WaDisable_RenderCache_OperationalFlush:g4x */
7807 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7808
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007809 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007810}
7811
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007812static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007813{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007814 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7815 I915_WRITE(RENCLK_GATE_D2, 0);
7816 I915_WRITE(DSPCLK_GATE_D, 0);
7817 I915_WRITE(RAMCLK_GATE_D, 0);
7818 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007819 I915_WRITE(MI_ARB_STATE,
7820 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307821
7822 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7823 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007824}
7825
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007826static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007827{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007828 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7829 I965_RCC_CLOCK_GATE_DISABLE |
7830 I965_RCPB_CLOCK_GATE_DISABLE |
7831 I965_ISC_CLOCK_GATE_DISABLE |
7832 I965_FBC_CLOCK_GATE_DISABLE);
7833 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007834 I915_WRITE(MI_ARB_STATE,
7835 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307836
7837 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7838 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007839}
7840
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007841static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007842{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007843 u32 dstate = I915_READ(D_STATE);
7844
7845 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7846 DSTATE_DOT_CLOCK_GATING;
7847 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007848
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007849 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007850 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007851
7852 /* IIR "flip pending" means done if this bit is set */
7853 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007854
7855 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007856 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007857
7858 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7859 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007860
7861 I915_WRITE(MI_ARB_STATE,
7862 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007863}
7864
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007865static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007866{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007867 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007868
7869 /* interrupts should cause a wake up from C3 */
7870 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7871 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007872
7873 I915_WRITE(MEM_MODE,
7874 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007875}
7876
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007877static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007878{
Ville Syrjälä10383922014-08-15 01:21:54 +03007879 I915_WRITE(MEM_MODE,
7880 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7881 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007882}
7883
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007884void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007885{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007886 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007887}
7888
Ville Syrjälä712bf362016-10-31 22:37:23 +02007889void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007890{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007891 if (HAS_PCH_LPT(dev_priv))
7892 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007893}
7894
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007895static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007896{
7897 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7898}
7899
7900/**
7901 * intel_init_clock_gating_hooks - setup the clock gating hooks
7902 * @dev_priv: device private
7903 *
7904 * Setup the hooks that configure which clocks of a given platform can be
7905 * gated and also apply various GT and display specific workarounds for these
7906 * platforms. Note that some GT specific workarounds are applied separately
7907 * when GPU contexts or batchbuffers start their execution.
7908 */
7909void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7910{
7911 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007912 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007913 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007914 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007915 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007916 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007917 else if (IS_GEMINILAKE(dev_priv))
7918 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007919 else if (IS_BROADWELL(dev_priv))
7920 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7921 else if (IS_CHERRYVIEW(dev_priv))
7922 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7923 else if (IS_HASWELL(dev_priv))
7924 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7925 else if (IS_IVYBRIDGE(dev_priv))
7926 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7927 else if (IS_VALLEYVIEW(dev_priv))
7928 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7929 else if (IS_GEN6(dev_priv))
7930 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7931 else if (IS_GEN5(dev_priv))
7932 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7933 else if (IS_G4X(dev_priv))
7934 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007935 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007936 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007937 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007938 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7939 else if (IS_GEN3(dev_priv))
7940 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7941 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7942 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7943 else if (IS_GEN2(dev_priv))
7944 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7945 else {
7946 MISSING_CASE(INTEL_DEVID(dev_priv));
7947 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7948 }
7949}
7950
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007951/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007952void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007953{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007954 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007955
Daniel Vetterc921aba2012-04-26 23:28:17 +02007956 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007957 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007958 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007959 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007960 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007961
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007962 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007963 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007964 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007965 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007966 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007967 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007968 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007969 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007970
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007971 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007972 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007973 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007974 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007975 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007976 dev_priv->display.compute_intermediate_wm =
7977 ilk_compute_intermediate_wm;
7978 dev_priv->display.initial_watermarks =
7979 ilk_initial_watermarks;
7980 dev_priv->display.optimize_watermarks =
7981 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007982 } else {
7983 DRM_DEBUG_KMS("Failed to read display plane latency. "
7984 "Disable CxSR\n");
7985 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007986 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007987 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02007988 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007989 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007990 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007991 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007992 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007993 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007994 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007995 dev_priv->is_ddr3,
7996 dev_priv->fsb_freq,
7997 dev_priv->mem_freq)) {
7998 DRM_INFO("failed to find known CxSR latency "
7999 "(found ddr%s fsb freq %d, mem freq %d), "
8000 "disabling CxSR\n",
8001 (dev_priv->is_ddr3 == 1) ? "3" : "2",
8002 dev_priv->fsb_freq, dev_priv->mem_freq);
8003 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03008004 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008005 dev_priv->display.update_wm = NULL;
8006 } else
8007 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01008008 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008009 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01008010 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008011 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01008012 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008013 dev_priv->display.update_wm = i9xx_update_wm;
8014 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01008015 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02008016 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02008017 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008018 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02008019 } else {
8020 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008021 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02008022 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02008023 } else {
8024 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03008025 }
8026}
8027
Lyude87660502016-08-17 15:55:53 -04008028static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
8029{
8030 uint32_t flags =
8031 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
8032
8033 switch (flags) {
8034 case GEN6_PCODE_SUCCESS:
8035 return 0;
8036 case GEN6_PCODE_UNIMPLEMENTED_CMD:
8037 case GEN6_PCODE_ILLEGAL_CMD:
8038 return -ENXIO;
8039 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01008040 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04008041 return -EOVERFLOW;
8042 case GEN6_PCODE_TIMEOUT:
8043 return -ETIMEDOUT;
8044 default:
8045 MISSING_CASE(flags)
8046 return 0;
8047 }
8048}
8049
8050static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
8051{
8052 uint32_t flags =
8053 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
8054
8055 switch (flags) {
8056 case GEN6_PCODE_SUCCESS:
8057 return 0;
8058 case GEN6_PCODE_ILLEGAL_CMD:
8059 return -ENXIO;
8060 case GEN7_PCODE_TIMEOUT:
8061 return -ETIMEDOUT;
8062 case GEN7_PCODE_ILLEGAL_DATA:
8063 return -EINVAL;
8064 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
8065 return -EOVERFLOW;
8066 default:
8067 MISSING_CASE(flags);
8068 return 0;
8069 }
8070}
8071
Tom O'Rourke151a49d2014-11-13 18:50:10 -08008072int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07008073{
Lyude87660502016-08-17 15:55:53 -04008074 int status;
8075
Jesse Barnes4fc688c2012-11-02 11:14:01 -07008076 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07008077
Chris Wilson3f5582d2016-06-30 15:32:45 +01008078 /* GEN6_PCODE_* are outside of the forcewake domain, we can
8079 * use te fw I915_READ variants to reduce the amount of work
8080 * required when reading/writing.
8081 */
8082
8083 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008084 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
8085 return -EAGAIN;
8086 }
8087
Chris Wilson3f5582d2016-06-30 15:32:45 +01008088 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
8089 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
8090 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07008091
Chris Wilson3f5582d2016-06-30 15:32:45 +01008092 if (intel_wait_for_register_fw(dev_priv,
8093 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
8094 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008095 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
8096 return -ETIMEDOUT;
8097 }
8098
Chris Wilson3f5582d2016-06-30 15:32:45 +01008099 *val = I915_READ_FW(GEN6_PCODE_DATA);
8100 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07008101
Lyude87660502016-08-17 15:55:53 -04008102 if (INTEL_GEN(dev_priv) > 6)
8103 status = gen7_check_mailbox_status(dev_priv);
8104 else
8105 status = gen6_check_mailbox_status(dev_priv);
8106
8107 if (status) {
8108 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
8109 status);
8110 return status;
8111 }
8112
Ben Widawsky42c05262012-09-26 10:34:00 -07008113 return 0;
8114}
8115
Chris Wilson3f5582d2016-06-30 15:32:45 +01008116int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04008117 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07008118{
Lyude87660502016-08-17 15:55:53 -04008119 int status;
8120
Jesse Barnes4fc688c2012-11-02 11:14:01 -07008121 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07008122
Chris Wilson3f5582d2016-06-30 15:32:45 +01008123 /* GEN6_PCODE_* are outside of the forcewake domain, we can
8124 * use te fw I915_READ variants to reduce the amount of work
8125 * required when reading/writing.
8126 */
8127
8128 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008129 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
8130 return -EAGAIN;
8131 }
8132
Chris Wilson3f5582d2016-06-30 15:32:45 +01008133 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02008134 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01008135 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07008136
Chris Wilson3f5582d2016-06-30 15:32:45 +01008137 if (intel_wait_for_register_fw(dev_priv,
8138 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
8139 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008140 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
8141 return -ETIMEDOUT;
8142 }
8143
Chris Wilson3f5582d2016-06-30 15:32:45 +01008144 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07008145
Lyude87660502016-08-17 15:55:53 -04008146 if (INTEL_GEN(dev_priv) > 6)
8147 status = gen7_check_mailbox_status(dev_priv);
8148 else
8149 status = gen6_check_mailbox_status(dev_priv);
8150
8151 if (status) {
8152 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
8153 status);
8154 return status;
8155 }
8156
Ben Widawsky42c05262012-09-26 10:34:00 -07008157 return 0;
8158}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07008159
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008160static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
8161 u32 request, u32 reply_mask, u32 reply,
8162 u32 *status)
8163{
8164 u32 val = request;
8165
8166 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
8167
8168 return *status || ((val & reply_mask) == reply);
8169}
8170
8171/**
8172 * skl_pcode_request - send PCODE request until acknowledgment
8173 * @dev_priv: device private
8174 * @mbox: PCODE mailbox ID the request is targeted for
8175 * @request: request ID
8176 * @reply_mask: mask used to check for request acknowledgment
8177 * @reply: value used to check for request acknowledgment
8178 * @timeout_base_ms: timeout for polling with preemption enabled
8179 *
8180 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02008181 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008182 * The request is acknowledged once the PCODE reply dword equals @reply after
8183 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02008184 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008185 * preemption disabled.
8186 *
8187 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
8188 * other error as reported by PCODE.
8189 */
8190int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
8191 u32 reply_mask, u32 reply, int timeout_base_ms)
8192{
8193 u32 status;
8194 int ret;
8195
8196 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
8197
8198#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
8199 &status)
8200
8201 /*
8202 * Prime the PCODE by doing a request first. Normally it guarantees
8203 * that a subsequent request, at most @timeout_base_ms later, succeeds.
8204 * _wait_for() doesn't guarantee when its passed condition is evaluated
8205 * first, so send the first request explicitly.
8206 */
8207 if (COND) {
8208 ret = 0;
8209 goto out;
8210 }
8211 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
8212 if (!ret)
8213 goto out;
8214
8215 /*
8216 * The above can time out if the number of requests was low (2 in the
8217 * worst case) _and_ PCODE was busy for some reason even after a
8218 * (queued) request and @timeout_base_ms delay. As a workaround retry
8219 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02008220 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008221 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02008222 * requests, and for any quirks of the PCODE firmware that delays
8223 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008224 */
8225 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
8226 WARN_ON_ONCE(timeout_base_ms > 3);
8227 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02008228 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008229 preempt_enable();
8230
8231out:
8232 return ret ? ret : status;
8233#undef COND
8234}
8235
Ville Syrjälädd06f882014-11-10 22:55:12 +02008236static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
8237{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008238 /*
8239 * N = val - 0xb7
8240 * Slow = Fast = GPLL ref * N
8241 */
8242 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008243}
8244
Fengguang Wub55dd642014-07-12 11:21:39 +02008245static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008246{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008247 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008248}
8249
Fengguang Wub55dd642014-07-12 11:21:39 +02008250static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308251{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008252 /*
8253 * N = val / 2
8254 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
8255 */
8256 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05308257}
8258
Fengguang Wub55dd642014-07-12 11:21:39 +02008259static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308260{
Ville Syrjälä1c147622014-08-18 14:42:43 +03008261 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008262 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05308263}
8264
Ville Syrjälä616bc822015-01-23 21:04:25 +02008265int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
8266{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008267 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008268 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
8269 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008270 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008271 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008272 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008273 return byt_gpu_freq(dev_priv, val);
8274 else
8275 return val * GT_FREQUENCY_MULTIPLIER;
8276}
8277
Ville Syrjälä616bc822015-01-23 21:04:25 +02008278int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
8279{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008280 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008281 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
8282 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008283 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008284 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008285 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008286 return byt_freq_opcode(dev_priv, val);
8287 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008288 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308289}
8290
Chris Wilson6ad790c2015-04-07 16:20:31 +01008291struct request_boost {
8292 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008293 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008294};
8295
8296static void __intel_rps_boost_work(struct work_struct *work)
8297{
8298 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008299 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008300
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008301 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008302 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008303
Chris Wilsone8a261e2016-07-20 13:31:49 +01008304 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008305 kfree(boost);
8306}
8307
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008308void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008309{
8310 struct request_boost *boost;
8311
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008312 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008313 return;
8314
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008315 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008316 return;
8317
Chris Wilson6ad790c2015-04-07 16:20:31 +01008318 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8319 if (boost == NULL)
8320 return;
8321
Chris Wilsone8a261e2016-07-20 13:31:49 +01008322 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008323
8324 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008325 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008326}
8327
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008328void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008329{
Daniel Vetterf742a552013-12-06 10:17:53 +01008330 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008331 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008332
Chris Wilson54b4f682016-07-21 21:16:19 +01008333 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8334 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008335 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008336
Paulo Zanoni33688d92014-03-07 20:08:19 -03008337 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008338 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008339}