blob: 063bb531703cd0f8f670e6d1f308cd230ee3f31a [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ä855c79f2017-03-02 19:14:54 +02001031static void vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001032{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001033 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1034 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001035 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001036 struct drm_device *dev = crtc->base.dev;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001037 struct intel_plane *plane;
1038 unsigned int total_rate = 0;
1039 const int fifo_size = 512 - 1;
1040 int fifo_extra, fifo_left = fifo_size;
1041
1042 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1043 struct intel_plane_state *state =
1044 to_intel_plane_state(plane->base.state);
1045
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001046 if (plane->id == PLANE_CURSOR)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001047 continue;
1048
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001049 if (state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001050 wm_state->num_active_planes++;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001051 total_rate += state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001052 }
1053 }
1054
1055 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1056 struct intel_plane_state *state =
1057 to_intel_plane_state(plane->base.state);
1058 unsigned int rate;
1059
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001060 if (plane->id == PLANE_CURSOR) {
1061 fifo_state->plane[plane->id] = 63;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001062 continue;
1063 }
1064
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001065 if (!state->base.visible) {
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001066 fifo_state->plane[plane->id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001067 continue;
1068 }
1069
Ville Syrjälä353c8592016-12-14 23:30:57 +02001070 rate = state->base.fb->format->cpp[0];
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001071 fifo_state->plane[plane->id] = fifo_size * rate / total_rate;
1072 fifo_left -= fifo_state->plane[plane->id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001073 }
1074
1075 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1076
1077 /* spread the remainder evenly */
1078 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1079 int plane_extra;
1080
1081 if (fifo_left == 0)
1082 break;
1083
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001084 if (plane->id == PLANE_CURSOR)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001085 continue;
1086
1087 /* give it all to the first plane if none are active */
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001088 if (fifo_state->plane[plane->id] == 0 &&
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001089 wm_state->num_active_planes)
1090 continue;
1091
1092 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001093 fifo_state->plane[plane->id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001094 fifo_left -= plane_extra;
1095 }
1096
1097 WARN_ON(fifo_left != 0);
1098}
1099
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001100static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1101{
1102 if (wm > fifo_size)
1103 return USHRT_MAX;
1104 else
1105 return fifo_size - wm;
1106}
1107
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001108static void vlv_invert_wms(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001109{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001110 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1111 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001112 const struct vlv_fifo_state *fifo_state =
1113 &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001114 int level;
1115
1116 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001117 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001118 const int sr_fifo_size =
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001119 INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001120 enum plane_id plane_id;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001121
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001122 wm_state->sr[level].plane =
1123 vlv_invert_wm_value(wm_state->sr[level].plane,
1124 sr_fifo_size);
1125 wm_state->sr[level].cursor =
1126 vlv_invert_wm_value(wm_state->sr[level].cursor,
1127 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001128
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001129 for_each_plane_id_on_crtc(crtc, plane_id) {
1130 wm_state->wm[level].plane[plane_id] =
1131 vlv_invert_wm_value(wm_state->wm[level].plane[plane_id],
1132 fifo_state->plane[plane_id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001133 }
1134 }
1135}
1136
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001137static void vlv_compute_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001138{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001139 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001140 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001141 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001142 const struct vlv_fifo_state *fifo_state =
1143 &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001144 struct intel_plane *plane;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001145 int level;
1146
1147 memset(wm_state, 0, sizeof(*wm_state));
1148
Ville Syrjälä852eb002015-06-24 22:00:07 +03001149 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001150 wm_state->num_levels = dev_priv->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001151
1152 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001153
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001154 vlv_compute_fifo(crtc_state);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001155
1156 if (wm_state->num_active_planes != 1)
1157 wm_state->cxsr = false;
1158
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001159 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001160 struct intel_plane_state *state =
1161 to_intel_plane_state(plane->base.state);
Ville Syrjälä1b313892016-11-28 19:37:08 +02001162 int level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001163
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001164 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001165 continue;
1166
1167 /* normal watermarks */
1168 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001169 int wm = vlv_compute_wm_level(crtc_state, state, level);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001170 int max_wm = fifo_state->plane[plane->id];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001171
1172 /* hack */
1173 if (WARN_ON(level == 0 && wm > max_wm))
1174 wm = max_wm;
1175
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001176 if (wm > max_wm)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001177 break;
1178
Ville Syrjälä1b313892016-11-28 19:37:08 +02001179 wm_state->wm[level].plane[plane->id] = wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001180 }
1181
1182 wm_state->num_levels = level;
1183
1184 if (!wm_state->cxsr)
1185 continue;
1186
1187 /* maxfifo watermarks */
Ville Syrjälä1b313892016-11-28 19:37:08 +02001188 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001189 for (level = 0; level < wm_state->num_levels; level++)
1190 wm_state->sr[level].cursor =
Ville Syrjälä1b313892016-11-28 19:37:08 +02001191 wm_state->wm[level].plane[PLANE_CURSOR];
1192 } else {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001193 for (level = 0; level < wm_state->num_levels; level++)
1194 wm_state->sr[level].plane =
Ville Syrjälä50a9dd32016-11-28 19:37:06 +02001195 max(wm_state->sr[level].plane,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001196 wm_state->wm[level].plane[plane->id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001197 }
1198 }
1199
1200 /* clear any (partially) filled invalid levels */
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001201 for (level = wm_state->num_levels; level < dev_priv->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001202 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1203 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1204 }
1205
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001206 vlv_invert_wms(crtc_state);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001207}
1208
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001209#define VLV_FIFO(plane, value) \
1210 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1211
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001212static void vlv_pipe_set_fifo_size(const struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001213{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001214 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001215 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001216 const struct vlv_fifo_state *fifo_state =
1217 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001218 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001219
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001220 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1221 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1222 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001223
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001224 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1225 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001226
1227 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1228 pipe_name(crtc->pipe), sprite0_start,
1229 sprite1_start, fifo_size);
1230
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001231 spin_lock(&dev_priv->wm.dsparb_lock);
1232
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001233 switch (crtc->pipe) {
1234 uint32_t dsparb, dsparb2, dsparb3;
1235 case PIPE_A:
1236 dsparb = I915_READ(DSPARB);
1237 dsparb2 = I915_READ(DSPARB2);
1238
1239 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1240 VLV_FIFO(SPRITEB, 0xff));
1241 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1242 VLV_FIFO(SPRITEB, sprite1_start));
1243
1244 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1245 VLV_FIFO(SPRITEB_HI, 0x1));
1246 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1247 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1248
1249 I915_WRITE(DSPARB, dsparb);
1250 I915_WRITE(DSPARB2, dsparb2);
1251 break;
1252 case PIPE_B:
1253 dsparb = I915_READ(DSPARB);
1254 dsparb2 = I915_READ(DSPARB2);
1255
1256 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1257 VLV_FIFO(SPRITED, 0xff));
1258 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1259 VLV_FIFO(SPRITED, sprite1_start));
1260
1261 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1262 VLV_FIFO(SPRITED_HI, 0xff));
1263 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1264 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1265
1266 I915_WRITE(DSPARB, dsparb);
1267 I915_WRITE(DSPARB2, dsparb2);
1268 break;
1269 case PIPE_C:
1270 dsparb3 = I915_READ(DSPARB3);
1271 dsparb2 = I915_READ(DSPARB2);
1272
1273 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1274 VLV_FIFO(SPRITEF, 0xff));
1275 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1276 VLV_FIFO(SPRITEF, sprite1_start));
1277
1278 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1279 VLV_FIFO(SPRITEF_HI, 0xff));
1280 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1281 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1282
1283 I915_WRITE(DSPARB3, dsparb3);
1284 I915_WRITE(DSPARB2, dsparb2);
1285 break;
1286 default:
1287 break;
1288 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001289
1290 POSTING_READ(DSPARB);
1291
1292 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001293}
1294
1295#undef VLV_FIFO
1296
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001297static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001298 struct vlv_wm_values *wm)
1299{
1300 struct intel_crtc *crtc;
1301 int num_active_crtcs = 0;
1302
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001303 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001304 wm->cxsr = true;
1305
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001306 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001307 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001308
1309 if (!crtc->active)
1310 continue;
1311
1312 if (!wm_state->cxsr)
1313 wm->cxsr = false;
1314
1315 num_active_crtcs++;
1316 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1317 }
1318
1319 if (num_active_crtcs != 1)
1320 wm->cxsr = false;
1321
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001322 if (num_active_crtcs > 1)
1323 wm->level = VLV_WM_LEVEL_PM2;
1324
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001325 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001326 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001327 enum pipe pipe = crtc->pipe;
1328
1329 if (!crtc->active)
1330 continue;
1331
1332 wm->pipe[pipe] = wm_state->wm[wm->level];
1333 if (wm->cxsr)
1334 wm->sr = wm_state->sr[wm->level];
1335
Ville Syrjälä1b313892016-11-28 19:37:08 +02001336 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1337 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1338 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1339 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001340 }
1341}
1342
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001343static bool is_disabling(int old, int new, int threshold)
1344{
1345 return old >= threshold && new < threshold;
1346}
1347
1348static bool is_enabling(int old, int new, int threshold)
1349{
1350 return old < threshold && new >= threshold;
1351}
1352
Ville Syrjälä432081b2016-10-31 22:37:03 +02001353static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001354{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001355 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001356 struct intel_crtc_state *crtc_state =
1357 to_intel_crtc_state(crtc->base.state);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001358 enum pipe pipe = crtc->pipe;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001359 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1360 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001361
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001362 vlv_compute_wm(crtc_state);
1363 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001364 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001365
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001366 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001367 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001368 vlv_pipe_set_fifo_size(crtc_state);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001369 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001370 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001371
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001372 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001373 chv_set_memory_dvfs(dev_priv, false);
1374
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001375 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001376 chv_set_memory_pm5(dev_priv, false);
1377
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001378 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001379 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001380
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001381 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001382 vlv_pipe_set_fifo_size(crtc_state);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001383
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001384 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001385
1386 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1387 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001388 pipe_name(pipe), new_wm.pipe[pipe].plane[PLANE_PRIMARY], new_wm.pipe[pipe].plane[PLANE_CURSOR],
1389 new_wm.pipe[pipe].plane[PLANE_SPRITE0], new_wm.pipe[pipe].plane[PLANE_SPRITE1],
1390 new_wm.sr.plane, new_wm.sr.cursor, new_wm.level, new_wm.cxsr);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001391
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001392 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001393 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001394
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001395 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001396 chv_set_memory_pm5(dev_priv, true);
1397
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001398 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001399 chv_set_memory_dvfs(dev_priv, true);
1400
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001401 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001402}
1403
Ville Syrjäläae801522015-03-05 21:19:49 +02001404#define single_plane_enabled(mask) is_power_of_2(mask)
1405
Ville Syrjälä432081b2016-10-31 22:37:03 +02001406static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001407{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001408 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001409 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001410 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1411 int plane_sr, cursor_sr;
1412 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001413 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001414
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001415 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001416 &g4x_wm_info, pessimal_latency_ns,
1417 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001418 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001419 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001420
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001421 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001422 &g4x_wm_info, pessimal_latency_ns,
1423 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001425 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001427 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001428 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001429 sr_latency_ns,
1430 &g4x_wm_info,
1431 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001432 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001433 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001434 } else {
Imre Deak98584252014-06-13 14:54:20 +03001435 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001436 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001437 plane_sr = cursor_sr = 0;
1438 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001439
Ville Syrjäläa5043452014-06-28 02:04:18 +03001440 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1441 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001442 planea_wm, cursora_wm,
1443 planeb_wm, cursorb_wm,
1444 plane_sr, cursor_sr);
1445
1446 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001447 FW_WM(plane_sr, SR) |
1448 FW_WM(cursorb_wm, CURSORB) |
1449 FW_WM(planeb_wm, PLANEB) |
1450 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001451 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001452 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001453 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001454 /* HPLL off in SR has some issues on G4x... disable it */
1455 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001456 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001457 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001458
1459 if (cxsr_enabled)
1460 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001461}
1462
Ville Syrjälä432081b2016-10-31 22:37:03 +02001463static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001464{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001465 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001466 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001467 int srwm = 1;
1468 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001469 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001470
1471 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001472 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001473 if (crtc) {
1474 /* self-refresh has much higher latency */
1475 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001476 const struct drm_display_mode *adjusted_mode =
1477 &crtc->config->base.adjusted_mode;
1478 const struct drm_framebuffer *fb =
1479 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001480 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001481 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001482 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001483 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001484 unsigned long line_time_us;
1485 int entries;
1486
Ville Syrjälä922044c2014-02-14 14:18:57 +02001487 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001488
1489 /* Use ns/us then divide to preserve precision */
1490 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001491 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001492 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1493 srwm = I965_FIFO_SIZE - entries;
1494 if (srwm < 0)
1495 srwm = 1;
1496 srwm &= 0x1ff;
1497 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1498 entries, srwm);
1499
1500 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001501 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001502 entries = DIV_ROUND_UP(entries,
1503 i965_cursor_wm_info.cacheline_size);
1504 cursor_sr = i965_cursor_wm_info.fifo_size -
1505 (entries + i965_cursor_wm_info.guard_size);
1506
1507 if (cursor_sr > i965_cursor_wm_info.max_wm)
1508 cursor_sr = i965_cursor_wm_info.max_wm;
1509
1510 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1511 "cursor %d\n", srwm, cursor_sr);
1512
Imre Deak98584252014-06-13 14:54:20 +03001513 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001514 } else {
Imre Deak98584252014-06-13 14:54:20 +03001515 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001516 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001517 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001518 }
1519
1520 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1521 srwm);
1522
1523 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001524 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1525 FW_WM(8, CURSORB) |
1526 FW_WM(8, PLANEB) |
1527 FW_WM(8, PLANEA));
1528 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1529 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001530 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001531 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001532
1533 if (cxsr_enabled)
1534 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001535}
1536
Ville Syrjäläf4998962015-03-10 17:02:21 +02001537#undef FW_WM
1538
Ville Syrjälä432081b2016-10-31 22:37:03 +02001539static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001540{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001541 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001542 const struct intel_watermark_params *wm_info;
1543 uint32_t fwater_lo;
1544 uint32_t fwater_hi;
1545 int cwm, srwm = 1;
1546 int fifo_size;
1547 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001548 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001549
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001550 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001551 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001552 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001553 wm_info = &i915_wm_info;
1554 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001555 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001556
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001557 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001558 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001559 if (intel_crtc_active(crtc)) {
1560 const struct drm_display_mode *adjusted_mode =
1561 &crtc->config->base.adjusted_mode;
1562 const struct drm_framebuffer *fb =
1563 crtc->base.primary->state->fb;
1564 int cpp;
1565
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001566 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001567 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001568 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001569 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001570
Damien Lespiau241bfc32013-09-25 16:45:37 +01001571 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001572 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001573 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001574 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001575 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001576 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001577 if (planea_wm > (long)wm_info->max_wm)
1578 planea_wm = wm_info->max_wm;
1579 }
1580
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001581 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001582 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001583
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001584 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001585 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001586 if (intel_crtc_active(crtc)) {
1587 const struct drm_display_mode *adjusted_mode =
1588 &crtc->config->base.adjusted_mode;
1589 const struct drm_framebuffer *fb =
1590 crtc->base.primary->state->fb;
1591 int cpp;
1592
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001593 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001594 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001595 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001596 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001597
Damien Lespiau241bfc32013-09-25 16:45:37 +01001598 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001599 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001600 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001601 if (enabled == NULL)
1602 enabled = crtc;
1603 else
1604 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001605 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001606 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001607 if (planeb_wm > (long)wm_info->max_wm)
1608 planeb_wm = wm_info->max_wm;
1609 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001610
1611 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1612
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001613 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001614 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001615
Ville Syrjäläefc26112016-10-31 22:37:04 +02001616 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001617
1618 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001619 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001620 enabled = NULL;
1621 }
1622
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001623 /*
1624 * Overlay gets an aggressive default since video jitter is bad.
1625 */
1626 cwm = 2;
1627
1628 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001629 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001630
1631 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001632 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001633 /* self-refresh has much higher latency */
1634 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001635 const struct drm_display_mode *adjusted_mode =
1636 &enabled->config->base.adjusted_mode;
1637 const struct drm_framebuffer *fb =
1638 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001639 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001640 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001641 int hdisplay = enabled->config->pipe_src_w;
1642 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001643 unsigned long line_time_us;
1644 int entries;
1645
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001646 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001647 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001648 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001649 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001650
Ville Syrjälä922044c2014-02-14 14:18:57 +02001651 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001652
1653 /* Use ns/us then divide to preserve precision */
1654 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001655 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001656 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1657 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1658 srwm = wm_info->fifo_size - entries;
1659 if (srwm < 0)
1660 srwm = 1;
1661
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001662 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001663 I915_WRITE(FW_BLC_SELF,
1664 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001665 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001666 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1667 }
1668
1669 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1670 planea_wm, planeb_wm, cwm, srwm);
1671
1672 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1673 fwater_hi = (cwm & 0x1f);
1674
1675 /* Set request length to 8 cachelines per fetch */
1676 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1677 fwater_hi = fwater_hi | (1 << 8);
1678
1679 I915_WRITE(FW_BLC, fwater_lo);
1680 I915_WRITE(FW_BLC2, fwater_hi);
1681
Imre Deak5209b1f2014-07-01 12:36:17 +03001682 if (enabled)
1683 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001684}
1685
Ville Syrjälä432081b2016-10-31 22:37:03 +02001686static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001687{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001688 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001689 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001690 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001691 uint32_t fwater_lo;
1692 int planea_wm;
1693
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001694 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001695 if (crtc == NULL)
1696 return;
1697
Ville Syrjäläefc26112016-10-31 22:37:04 +02001698 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001699 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001700 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001701 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001702 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001703 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1704 fwater_lo |= (3<<8) | planea_wm;
1705
1706 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1707
1708 I915_WRITE(FW_BLC, fwater_lo);
1709}
1710
Ville Syrjälä37126462013-08-01 16:18:55 +03001711/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001712static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001713{
1714 uint64_t ret;
1715
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001716 if (WARN(latency == 0, "Latency value missing\n"))
1717 return UINT_MAX;
1718
Ville Syrjäläac484962016-01-20 21:05:26 +02001719 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001720 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1721
1722 return ret;
1723}
1724
Ville Syrjälä37126462013-08-01 16:18:55 +03001725/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001726static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001727 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001728 uint32_t latency)
1729{
1730 uint32_t ret;
1731
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001732 if (WARN(latency == 0, "Latency value missing\n"))
1733 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001734 if (WARN_ON(!pipe_htotal))
1735 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001736
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001737 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001738 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001739 ret = DIV_ROUND_UP(ret, 64) + 2;
1740 return ret;
1741}
1742
Ville Syrjälä23297042013-07-05 11:57:17 +03001743static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001744 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001745{
Matt Roper15126882015-12-03 11:37:40 -08001746 /*
1747 * Neither of these should be possible since this function shouldn't be
1748 * called if the CRTC is off or the plane is invisible. But let's be
1749 * extra paranoid to avoid a potential divide-by-zero if we screw up
1750 * elsewhere in the driver.
1751 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001752 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001753 return 0;
1754 if (WARN_ON(!horiz_pixels))
1755 return 0;
1756
Ville Syrjäläac484962016-01-20 21:05:26 +02001757 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001758}
1759
Imre Deak820c1982013-12-17 14:46:36 +02001760struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001761 uint16_t pri;
1762 uint16_t spr;
1763 uint16_t cur;
1764 uint16_t fbc;
1765};
1766
Ville Syrjälä37126462013-08-01 16:18:55 +03001767/*
1768 * For both WM_PIPE and WM_LP.
1769 * mem_value must be in 0.1us units.
1770 */
Matt Roper7221fc32015-09-24 15:53:08 -07001771static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001772 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001773 uint32_t mem_value,
1774 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001775{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001776 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001777 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001778
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001779 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001780 return 0;
1781
Ville Syrjälä353c8592016-12-14 23:30:57 +02001782 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001783
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001784 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001785
1786 if (!is_lp)
1787 return method1;
1788
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001789 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001790 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001791 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001792 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001793
1794 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001795}
1796
Ville Syrjälä37126462013-08-01 16:18:55 +03001797/*
1798 * For both WM_PIPE and WM_LP.
1799 * mem_value must be in 0.1us units.
1800 */
Matt Roper7221fc32015-09-24 15:53:08 -07001801static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001802 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001803 uint32_t mem_value)
1804{
1805 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001806 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001807
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001808 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001809 return 0;
1810
Ville Syrjälä353c8592016-12-14 23:30:57 +02001811 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001812
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001813 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
1814 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001815 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001816 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001817 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001818 return min(method1, method2);
1819}
1820
Ville Syrjälä37126462013-08-01 16:18:55 +03001821/*
1822 * For both WM_PIPE and WM_LP.
1823 * mem_value must be in 0.1us units.
1824 */
Matt Roper7221fc32015-09-24 15:53:08 -07001825static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001826 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001827 uint32_t mem_value)
1828{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001829 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001830
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001831 /*
1832 * Treat cursor with fb as always visible since cursor updates
1833 * can happen faster than the vrefresh rate, and the current
1834 * watermark code doesn't handle that correctly. Cursor updates
1835 * which set/clear the fb or change the cursor size are going
1836 * to get throttled by intel_legacy_cursor_update() to work
1837 * around this problem with the watermark code.
1838 */
1839 if (!cstate->base.active || !pstate->base.fb)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001840 return 0;
1841
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001842 cpp = pstate->base.fb->format->cpp[0];
1843
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001844 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001845 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001846 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001847}
1848
Paulo Zanonicca32e92013-05-31 11:45:06 -03001849/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001850static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001851 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001852 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001853{
Ville Syrjälä83054942016-11-18 21:53:00 +02001854 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001855
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001856 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001857 return 0;
1858
Ville Syrjälä353c8592016-12-14 23:30:57 +02001859 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001860
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001861 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001862}
1863
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001864static unsigned int
1865ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001866{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001867 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07001868 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001869 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001870 return 768;
1871 else
1872 return 512;
1873}
1874
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001875static unsigned int
1876ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
1877 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001878{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001879 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001880 /* BDW primary/sprite plane watermarks */
1881 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001882 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001883 /* IVB/HSW primary/sprite plane watermarks */
1884 return level == 0 ? 127 : 1023;
1885 else if (!is_sprite)
1886 /* ILK/SNB primary plane watermarks */
1887 return level == 0 ? 127 : 511;
1888 else
1889 /* ILK/SNB sprite plane watermarks */
1890 return level == 0 ? 63 : 255;
1891}
1892
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001893static unsigned int
1894ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001895{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001896 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001897 return level == 0 ? 63 : 255;
1898 else
1899 return level == 0 ? 31 : 63;
1900}
1901
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001902static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001903{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001904 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001905 return 31;
1906 else
1907 return 15;
1908}
1909
Ville Syrjälä158ae642013-08-07 13:28:19 +03001910/* Calculate the maximum primary/sprite plane watermark */
1911static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1912 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001913 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001914 enum intel_ddb_partitioning ddb_partitioning,
1915 bool is_sprite)
1916{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001917 struct drm_i915_private *dev_priv = to_i915(dev);
1918 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001919
1920 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001921 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001922 return 0;
1923
1924 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001925 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001926 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03001927
1928 /*
1929 * For some reason the non self refresh
1930 * FIFO size is only half of the self
1931 * refresh FIFO size on ILK/SNB.
1932 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001933 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001934 fifo_size /= 2;
1935 }
1936
Ville Syrjälä240264f2013-08-07 13:29:12 +03001937 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001938 /* level 0 is always calculated with 1:1 split */
1939 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1940 if (is_sprite)
1941 fifo_size *= 5;
1942 fifo_size /= 6;
1943 } else {
1944 fifo_size /= 2;
1945 }
1946 }
1947
1948 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001949 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001950}
1951
1952/* Calculate the maximum cursor plane watermark */
1953static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001954 int level,
1955 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001956{
1957 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001958 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001959 return 64;
1960
1961 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001962 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001963}
1964
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00001965static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03001966 int level,
1967 const struct intel_wm_config *config,
1968 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02001969 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001970{
Ville Syrjälä240264f2013-08-07 13:29:12 +03001971 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
1972 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
1973 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001974 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001975}
1976
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001977static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001978 int level,
1979 struct ilk_wm_maximums *max)
1980{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001981 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
1982 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
1983 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
1984 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03001985}
1986
Ville Syrjäläd9395652013-10-09 19:18:10 +03001987static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02001988 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03001989 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03001990{
1991 bool ret;
1992
1993 /* already determined to be invalid? */
1994 if (!result->enable)
1995 return false;
1996
1997 result->enable = result->pri_val <= max->pri &&
1998 result->spr_val <= max->spr &&
1999 result->cur_val <= max->cur;
2000
2001 ret = result->enable;
2002
2003 /*
2004 * HACK until we can pre-compute everything,
2005 * and thus fail gracefully if LP0 watermarks
2006 * are exceeded...
2007 */
2008 if (level == 0 && !result->enable) {
2009 if (result->pri_val > max->pri)
2010 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2011 level, result->pri_val, max->pri);
2012 if (result->spr_val > max->spr)
2013 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2014 level, result->spr_val, max->spr);
2015 if (result->cur_val > max->cur)
2016 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2017 level, result->cur_val, max->cur);
2018
2019 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2020 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2021 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2022 result->enable = true;
2023 }
2024
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002025 return ret;
2026}
2027
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002028static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002029 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002030 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002031 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002032 struct intel_plane_state *pristate,
2033 struct intel_plane_state *sprstate,
2034 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002035 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002036{
2037 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2038 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2039 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2040
2041 /* WM1+ latency values stored in 0.5us units */
2042 if (level > 0) {
2043 pri_latency *= 5;
2044 spr_latency *= 5;
2045 cur_latency *= 5;
2046 }
2047
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002048 if (pristate) {
2049 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2050 pri_latency, level);
2051 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2052 }
2053
2054 if (sprstate)
2055 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2056
2057 if (curstate)
2058 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2059
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002060 result->enable = true;
2061}
2062
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002063static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002064hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002065{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002066 const struct intel_atomic_state *intel_state =
2067 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002068 const struct drm_display_mode *adjusted_mode =
2069 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002070 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002071
Matt Roperee91a152015-12-03 11:37:39 -08002072 if (!cstate->base.active)
2073 return 0;
2074 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2075 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002076 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002077 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002078
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002079 /* The WM are computed with base on how long it takes to fill a single
2080 * row at the given clock rate, multiplied by 8.
2081 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002082 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2083 adjusted_mode->crtc_clock);
2084 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002085 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002086
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002087 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2088 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002089}
2090
Ville Syrjäläbb726512016-10-31 22:37:24 +02002091static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2092 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002093{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002094 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002095 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002096 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002097 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002098
2099 /* read the first set of memory latencies[0:3] */
2100 val = 0; /* data0 to be programmed to 0 for first set */
2101 mutex_lock(&dev_priv->rps.hw_lock);
2102 ret = sandybridge_pcode_read(dev_priv,
2103 GEN9_PCODE_READ_MEM_LATENCY,
2104 &val);
2105 mutex_unlock(&dev_priv->rps.hw_lock);
2106
2107 if (ret) {
2108 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2109 return;
2110 }
2111
2112 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2113 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2114 GEN9_MEM_LATENCY_LEVEL_MASK;
2115 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2116 GEN9_MEM_LATENCY_LEVEL_MASK;
2117 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2118 GEN9_MEM_LATENCY_LEVEL_MASK;
2119
2120 /* read the second set of memory latencies[4:7] */
2121 val = 1; /* data0 to be programmed to 1 for second set */
2122 mutex_lock(&dev_priv->rps.hw_lock);
2123 ret = sandybridge_pcode_read(dev_priv,
2124 GEN9_PCODE_READ_MEM_LATENCY,
2125 &val);
2126 mutex_unlock(&dev_priv->rps.hw_lock);
2127 if (ret) {
2128 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2129 return;
2130 }
2131
2132 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2133 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2134 GEN9_MEM_LATENCY_LEVEL_MASK;
2135 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2136 GEN9_MEM_LATENCY_LEVEL_MASK;
2137 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2138 GEN9_MEM_LATENCY_LEVEL_MASK;
2139
Vandana Kannan367294b2014-11-04 17:06:46 +00002140 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002141 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2142 * need to be disabled. We make sure to sanitize the values out
2143 * of the punit to satisfy this requirement.
2144 */
2145 for (level = 1; level <= max_level; level++) {
2146 if (wm[level] == 0) {
2147 for (i = level + 1; i <= max_level; i++)
2148 wm[i] = 0;
2149 break;
2150 }
2151 }
2152
2153 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002154 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002155 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002156 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002157 * to add 2us to the various latency levels we retrieve from the
2158 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002159 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002160 if (wm[0] == 0) {
2161 wm[0] += 2;
2162 for (level = 1; level <= max_level; level++) {
2163 if (wm[level] == 0)
2164 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002165 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002166 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002167 }
2168
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002169 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002170 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2171
2172 wm[0] = (sskpd >> 56) & 0xFF;
2173 if (wm[0] == 0)
2174 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002175 wm[1] = (sskpd >> 4) & 0xFF;
2176 wm[2] = (sskpd >> 12) & 0xFF;
2177 wm[3] = (sskpd >> 20) & 0x1FF;
2178 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002179 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002180 uint32_t sskpd = I915_READ(MCH_SSKPD);
2181
2182 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2183 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2184 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2185 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002186 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002187 uint32_t mltr = I915_READ(MLTR_ILK);
2188
2189 /* ILK primary LP0 latency is 700 ns */
2190 wm[0] = 7;
2191 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2192 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002193 }
2194}
2195
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002196static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2197 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002198{
2199 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002200 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002201 wm[0] = 13;
2202}
2203
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002204static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2205 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002206{
2207 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002208 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002209 wm[0] = 13;
2210
2211 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002212 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002213 wm[3] *= 2;
2214}
2215
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002216int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002217{
2218 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002219 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002220 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002221 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002222 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002223 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002224 return 3;
2225 else
2226 return 2;
2227}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002228
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002229static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002230 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002231 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002232{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002233 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002234
2235 for (level = 0; level <= max_level; level++) {
2236 unsigned int latency = wm[level];
2237
2238 if (latency == 0) {
2239 DRM_ERROR("%s WM%d latency not provided\n",
2240 name, level);
2241 continue;
2242 }
2243
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002244 /*
2245 * - latencies are in us on gen9.
2246 * - before then, WM1+ latency values are in 0.5us units
2247 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002248 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002249 latency *= 10;
2250 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002251 latency *= 5;
2252
2253 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2254 name, level, wm[level],
2255 latency / 10, latency % 10);
2256 }
2257}
2258
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002259static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2260 uint16_t wm[5], uint16_t min)
2261{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002262 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002263
2264 if (wm[0] >= min)
2265 return false;
2266
2267 wm[0] = max(wm[0], min);
2268 for (level = 1; level <= max_level; level++)
2269 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2270
2271 return true;
2272}
2273
Ville Syrjäläbb726512016-10-31 22:37:24 +02002274static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002275{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002276 bool changed;
2277
2278 /*
2279 * The BIOS provided WM memory latency values are often
2280 * inadequate for high resolution displays. Adjust them.
2281 */
2282 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2283 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2284 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2285
2286 if (!changed)
2287 return;
2288
2289 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002290 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2291 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2292 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002293}
2294
Ville Syrjäläbb726512016-10-31 22:37:24 +02002295static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002296{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002297 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002298
2299 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2300 sizeof(dev_priv->wm.pri_latency));
2301 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2302 sizeof(dev_priv->wm.pri_latency));
2303
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002304 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002305 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002306
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002307 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2308 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2309 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002310
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002311 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002312 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002313}
2314
Ville Syrjäläbb726512016-10-31 22:37:24 +02002315static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002316{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002317 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002318 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002319}
2320
Matt Ropered4a6a72016-02-23 17:20:13 -08002321static bool ilk_validate_pipe_wm(struct drm_device *dev,
2322 struct intel_pipe_wm *pipe_wm)
2323{
2324 /* LP0 watermark maximums depend on this pipe alone */
2325 const struct intel_wm_config config = {
2326 .num_pipes_active = 1,
2327 .sprites_enabled = pipe_wm->sprites_enabled,
2328 .sprites_scaled = pipe_wm->sprites_scaled,
2329 };
2330 struct ilk_wm_maximums max;
2331
2332 /* LP0 watermarks always use 1/2 DDB partitioning */
2333 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2334
2335 /* At least LP0 must be valid */
2336 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2337 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2338 return false;
2339 }
2340
2341 return true;
2342}
2343
Matt Roper261a27d2015-10-08 15:28:25 -07002344/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002345static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002346{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002347 struct drm_atomic_state *state = cstate->base.state;
2348 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002349 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002350 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002351 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002352 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002353 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002354 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002355 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002356 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002357 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002358
Matt Ropere8f1f022016-05-12 07:05:55 -07002359 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002360
Matt Roper43d59ed2015-09-24 15:53:07 -07002361 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002362 struct intel_plane_state *ps;
2363
2364 ps = intel_atomic_get_existing_plane_state(state,
2365 intel_plane);
2366 if (!ps)
2367 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002368
2369 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002370 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002371 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002372 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002373 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002374 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002375 }
2376
Matt Ropered4a6a72016-02-23 17:20:13 -08002377 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002378 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002379 pipe_wm->sprites_enabled = sprstate->base.visible;
2380 pipe_wm->sprites_scaled = sprstate->base.visible &&
2381 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2382 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002383 }
2384
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002385 usable_level = max_level;
2386
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002387 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002388 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002389 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002390
2391 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002392 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002393 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002394
Matt Roper86c8bbb2015-09-24 15:53:16 -07002395 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002396 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2397
2398 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2399 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002400
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002401 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002402 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002403
Matt Ropered4a6a72016-02-23 17:20:13 -08002404 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002405 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002406
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002407 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002408
2409 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002410 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002411
Matt Roper86c8bbb2015-09-24 15:53:16 -07002412 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002413 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002414
2415 /*
2416 * Disable any watermark level that exceeds the
2417 * register maximums since such watermarks are
2418 * always invalid.
2419 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002420 if (level > usable_level)
2421 continue;
2422
2423 if (ilk_validate_wm_level(level, &max, wm))
2424 pipe_wm->wm[level] = *wm;
2425 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002426 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002427 }
2428
Matt Roper86c8bbb2015-09-24 15:53:16 -07002429 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002430}
2431
2432/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002433 * Build a set of 'intermediate' watermark values that satisfy both the old
2434 * state and the new state. These can be programmed to the hardware
2435 * immediately.
2436 */
2437static int ilk_compute_intermediate_wm(struct drm_device *dev,
2438 struct intel_crtc *intel_crtc,
2439 struct intel_crtc_state *newstate)
2440{
Matt Ropere8f1f022016-05-12 07:05:55 -07002441 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002442 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002443 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002444
2445 /*
2446 * Start with the final, target watermarks, then combine with the
2447 * currently active watermarks to get values that are safe both before
2448 * and after the vblank.
2449 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002450 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002451 a->pipe_enabled |= b->pipe_enabled;
2452 a->sprites_enabled |= b->sprites_enabled;
2453 a->sprites_scaled |= b->sprites_scaled;
2454
2455 for (level = 0; level <= max_level; level++) {
2456 struct intel_wm_level *a_wm = &a->wm[level];
2457 const struct intel_wm_level *b_wm = &b->wm[level];
2458
2459 a_wm->enable &= b_wm->enable;
2460 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2461 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2462 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2463 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2464 }
2465
2466 /*
2467 * We need to make sure that these merged watermark values are
2468 * actually a valid configuration themselves. If they're not,
2469 * there's no safe way to transition from the old state to
2470 * the new state, so we need to fail the atomic transaction.
2471 */
2472 if (!ilk_validate_pipe_wm(dev, a))
2473 return -EINVAL;
2474
2475 /*
2476 * If our intermediate WM are identical to the final WM, then we can
2477 * omit the post-vblank programming; only update if it's different.
2478 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002479 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002480 newstate->wm.need_postvbl_update = false;
2481
2482 return 0;
2483}
2484
2485/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002486 * Merge the watermarks from all active pipes for a specific level.
2487 */
2488static void ilk_merge_wm_level(struct drm_device *dev,
2489 int level,
2490 struct intel_wm_level *ret_wm)
2491{
2492 const struct intel_crtc *intel_crtc;
2493
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002494 ret_wm->enable = true;
2495
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002496 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002497 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002498 const struct intel_wm_level *wm = &active->wm[level];
2499
2500 if (!active->pipe_enabled)
2501 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002502
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002503 /*
2504 * The watermark values may have been used in the past,
2505 * so we must maintain them in the registers for some
2506 * time even if the level is now disabled.
2507 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002508 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002509 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002510
2511 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2512 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2513 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2514 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2515 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002516}
2517
2518/*
2519 * Merge all low power watermarks for all active pipes.
2520 */
2521static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002522 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002523 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002524 struct intel_pipe_wm *merged)
2525{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002526 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002527 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002528 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002529
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002530 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002531 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002532 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002533 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002534
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002535 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002536 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002537
2538 /* merge each WM1+ level */
2539 for (level = 1; level <= max_level; level++) {
2540 struct intel_wm_level *wm = &merged->wm[level];
2541
2542 ilk_merge_wm_level(dev, level, wm);
2543
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002544 if (level > last_enabled_level)
2545 wm->enable = false;
2546 else if (!ilk_validate_wm_level(level, max, wm))
2547 /* make sure all following levels get disabled */
2548 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002549
2550 /*
2551 * The spec says it is preferred to disable
2552 * FBC WMs instead of disabling a WM level.
2553 */
2554 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002555 if (wm->enable)
2556 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002557 wm->fbc_val = 0;
2558 }
2559 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002560
2561 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2562 /*
2563 * FIXME this is racy. FBC might get enabled later.
2564 * What we should check here is whether FBC can be
2565 * enabled sometime later.
2566 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002567 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002568 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002569 for (level = 2; level <= max_level; level++) {
2570 struct intel_wm_level *wm = &merged->wm[level];
2571
2572 wm->enable = false;
2573 }
2574 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002575}
2576
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002577static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2578{
2579 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2580 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2581}
2582
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002583/* The value we need to program into the WM_LPx latency field */
2584static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2585{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002586 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002587
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002588 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002589 return 2 * level;
2590 else
2591 return dev_priv->wm.pri_latency[level];
2592}
2593
Imre Deak820c1982013-12-17 14:46:36 +02002594static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002595 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002596 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002597 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002598{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002599 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002600 struct intel_crtc *intel_crtc;
2601 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002602
Ville Syrjälä0362c782013-10-09 19:17:57 +03002603 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002604 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002605
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002606 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002607 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002608 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002609
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002610 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002611
Ville Syrjälä0362c782013-10-09 19:17:57 +03002612 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002613
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002614 /*
2615 * Maintain the watermark values even if the level is
2616 * disabled. Doing otherwise could cause underruns.
2617 */
2618 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002619 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002620 (r->pri_val << WM1_LP_SR_SHIFT) |
2621 r->cur_val;
2622
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002623 if (r->enable)
2624 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2625
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002626 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002627 results->wm_lp[wm_lp - 1] |=
2628 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2629 else
2630 results->wm_lp[wm_lp - 1] |=
2631 r->fbc_val << WM1_LP_FBC_SHIFT;
2632
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002633 /*
2634 * Always set WM1S_LP_EN when spr_val != 0, even if the
2635 * level is disabled. Doing otherwise could cause underruns.
2636 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002637 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002638 WARN_ON(wm_lp != 1);
2639 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2640 } else
2641 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002642 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002643
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002644 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002645 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002646 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002647 const struct intel_wm_level *r =
2648 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002649
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002650 if (WARN_ON(!r->enable))
2651 continue;
2652
Matt Ropered4a6a72016-02-23 17:20:13 -08002653 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002654
2655 results->wm_pipe[pipe] =
2656 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2657 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2658 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002659 }
2660}
2661
Paulo Zanoni861f3382013-05-31 10:19:21 -03002662/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2663 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002664static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002665 struct intel_pipe_wm *r1,
2666 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002667{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002668 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002669 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002670
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002671 for (level = 1; level <= max_level; level++) {
2672 if (r1->wm[level].enable)
2673 level1 = level;
2674 if (r2->wm[level].enable)
2675 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002676 }
2677
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002678 if (level1 == level2) {
2679 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002680 return r2;
2681 else
2682 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002683 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002684 return r1;
2685 } else {
2686 return r2;
2687 }
2688}
2689
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002690/* dirty bits used to track which watermarks need changes */
2691#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2692#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2693#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2694#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2695#define WM_DIRTY_FBC (1 << 24)
2696#define WM_DIRTY_DDB (1 << 25)
2697
Damien Lespiau055e3932014-08-18 13:49:10 +01002698static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002699 const struct ilk_wm_values *old,
2700 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002701{
2702 unsigned int dirty = 0;
2703 enum pipe pipe;
2704 int wm_lp;
2705
Damien Lespiau055e3932014-08-18 13:49:10 +01002706 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002707 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2708 dirty |= WM_DIRTY_LINETIME(pipe);
2709 /* Must disable LP1+ watermarks too */
2710 dirty |= WM_DIRTY_LP_ALL;
2711 }
2712
2713 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2714 dirty |= WM_DIRTY_PIPE(pipe);
2715 /* Must disable LP1+ watermarks too */
2716 dirty |= WM_DIRTY_LP_ALL;
2717 }
2718 }
2719
2720 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2721 dirty |= WM_DIRTY_FBC;
2722 /* Must disable LP1+ watermarks too */
2723 dirty |= WM_DIRTY_LP_ALL;
2724 }
2725
2726 if (old->partitioning != new->partitioning) {
2727 dirty |= WM_DIRTY_DDB;
2728 /* Must disable LP1+ watermarks too */
2729 dirty |= WM_DIRTY_LP_ALL;
2730 }
2731
2732 /* LP1+ watermarks already deemed dirty, no need to continue */
2733 if (dirty & WM_DIRTY_LP_ALL)
2734 return dirty;
2735
2736 /* Find the lowest numbered LP1+ watermark in need of an update... */
2737 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2738 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2739 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2740 break;
2741 }
2742
2743 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2744 for (; wm_lp <= 3; wm_lp++)
2745 dirty |= WM_DIRTY_LP(wm_lp);
2746
2747 return dirty;
2748}
2749
Ville Syrjälä8553c182013-12-05 15:51:39 +02002750static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2751 unsigned int dirty)
2752{
Imre Deak820c1982013-12-17 14:46:36 +02002753 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002754 bool changed = false;
2755
2756 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2757 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2758 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2759 changed = true;
2760 }
2761 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2762 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2763 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2764 changed = true;
2765 }
2766 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2767 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2768 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2769 changed = true;
2770 }
2771
2772 /*
2773 * Don't touch WM1S_LP_EN here.
2774 * Doing so could cause underruns.
2775 */
2776
2777 return changed;
2778}
2779
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002780/*
2781 * The spec says we shouldn't write when we don't need, because every write
2782 * causes WMs to be re-evaluated, expending some power.
2783 */
Imre Deak820c1982013-12-17 14:46:36 +02002784static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2785 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002786{
Imre Deak820c1982013-12-17 14:46:36 +02002787 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002788 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002789 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002790
Damien Lespiau055e3932014-08-18 13:49:10 +01002791 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002792 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002793 return;
2794
Ville Syrjälä8553c182013-12-05 15:51:39 +02002795 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002796
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002797 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002798 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002799 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002800 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002801 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002802 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2803
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002804 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002805 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002806 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002807 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002808 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002809 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2810
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002811 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002812 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002813 val = I915_READ(WM_MISC);
2814 if (results->partitioning == INTEL_DDB_PART_1_2)
2815 val &= ~WM_MISC_DATA_PARTITION_5_6;
2816 else
2817 val |= WM_MISC_DATA_PARTITION_5_6;
2818 I915_WRITE(WM_MISC, val);
2819 } else {
2820 val = I915_READ(DISP_ARB_CTL2);
2821 if (results->partitioning == INTEL_DDB_PART_1_2)
2822 val &= ~DISP_DATA_PARTITION_5_6;
2823 else
2824 val |= DISP_DATA_PARTITION_5_6;
2825 I915_WRITE(DISP_ARB_CTL2, val);
2826 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002827 }
2828
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002829 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002830 val = I915_READ(DISP_ARB_CTL);
2831 if (results->enable_fbc_wm)
2832 val &= ~DISP_FBC_WM_DIS;
2833 else
2834 val |= DISP_FBC_WM_DIS;
2835 I915_WRITE(DISP_ARB_CTL, val);
2836 }
2837
Imre Deak954911e2013-12-17 14:46:34 +02002838 if (dirty & WM_DIRTY_LP(1) &&
2839 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2840 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2841
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002842 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002843 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2844 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2845 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2846 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2847 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002848
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002849 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002850 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002851 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002852 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002853 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002854 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002855
2856 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002857}
2858
Matt Ropered4a6a72016-02-23 17:20:13 -08002859bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002860{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002861 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002862
2863 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2864}
2865
Lyude656d1b82016-08-17 15:55:54 -04002866#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002867
Matt Roper024c9042015-09-24 15:53:11 -07002868/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002869 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2870 * so assume we'll always need it in order to avoid underruns.
2871 */
2872static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2873{
2874 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2875
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002876 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002877 return true;
2878
2879 return false;
2880}
2881
Paulo Zanoni56feca92016-09-22 18:00:28 -03002882static bool
2883intel_has_sagv(struct drm_i915_private *dev_priv)
2884{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002885 if (IS_KABYLAKE(dev_priv))
2886 return true;
2887
2888 if (IS_SKYLAKE(dev_priv) &&
2889 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2890 return true;
2891
2892 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002893}
2894
Lyude656d1b82016-08-17 15:55:54 -04002895/*
2896 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2897 * depending on power and performance requirements. The display engine access
2898 * to system memory is blocked during the adjustment time. Because of the
2899 * blocking time, having this enabled can cause full system hangs and/or pipe
2900 * underruns if we don't meet all of the following requirements:
2901 *
2902 * - <= 1 pipe enabled
2903 * - All planes can enable watermarks for latencies >= SAGV engine block time
2904 * - We're not using an interlaced display configuration
2905 */
2906int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002907intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002908{
2909 int ret;
2910
Paulo Zanoni56feca92016-09-22 18:00:28 -03002911 if (!intel_has_sagv(dev_priv))
2912 return 0;
2913
2914 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002915 return 0;
2916
2917 DRM_DEBUG_KMS("Enabling the SAGV\n");
2918 mutex_lock(&dev_priv->rps.hw_lock);
2919
2920 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2921 GEN9_SAGV_ENABLE);
2922
2923 /* We don't need to wait for the SAGV when enabling */
2924 mutex_unlock(&dev_priv->rps.hw_lock);
2925
2926 /*
2927 * Some skl systems, pre-release machines in particular,
2928 * don't actually have an SAGV.
2929 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002930 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002931 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002932 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002933 return 0;
2934 } else if (ret < 0) {
2935 DRM_ERROR("Failed to enable the SAGV\n");
2936 return ret;
2937 }
2938
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002939 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002940 return 0;
2941}
2942
Lyude656d1b82016-08-17 15:55:54 -04002943int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002944intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002945{
Imre Deakb3b8e992016-12-05 18:27:38 +02002946 int ret;
Lyude656d1b82016-08-17 15:55:54 -04002947
Paulo Zanoni56feca92016-09-22 18:00:28 -03002948 if (!intel_has_sagv(dev_priv))
2949 return 0;
2950
2951 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002952 return 0;
2953
2954 DRM_DEBUG_KMS("Disabling the SAGV\n");
2955 mutex_lock(&dev_priv->rps.hw_lock);
2956
2957 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02002958 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2959 GEN9_SAGV_DISABLE,
2960 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
2961 1);
Lyude656d1b82016-08-17 15:55:54 -04002962 mutex_unlock(&dev_priv->rps.hw_lock);
2963
Lyude656d1b82016-08-17 15:55:54 -04002964 /*
2965 * Some skl systems, pre-release machines in particular,
2966 * don't actually have an SAGV.
2967 */
Imre Deakb3b8e992016-12-05 18:27:38 +02002968 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002969 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002970 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002971 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02002972 } else if (ret < 0) {
2973 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
2974 return ret;
Lyude656d1b82016-08-17 15:55:54 -04002975 }
2976
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002977 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04002978 return 0;
2979}
2980
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002981bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04002982{
2983 struct drm_device *dev = state->dev;
2984 struct drm_i915_private *dev_priv = to_i915(dev);
2985 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002986 struct intel_crtc *crtc;
2987 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002988 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04002989 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02002990 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04002991
Paulo Zanoni56feca92016-09-22 18:00:28 -03002992 if (!intel_has_sagv(dev_priv))
2993 return false;
2994
Lyude656d1b82016-08-17 15:55:54 -04002995 /*
2996 * SKL workaround: bspec recommends we disable the SAGV when we have
2997 * more then one pipe enabled
2998 *
2999 * If there are no active CRTCs, no additional checks need be performed
3000 */
3001 if (hweight32(intel_state->active_crtcs) == 0)
3002 return true;
3003 else if (hweight32(intel_state->active_crtcs) > 1)
3004 return false;
3005
3006 /* Since we're now guaranteed to only have one active CRTC... */
3007 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003008 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003009 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003010
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003011 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003012 return false;
3013
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003014 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003015 struct skl_plane_wm *wm =
3016 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003017
Lyude656d1b82016-08-17 15:55:54 -04003018 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003019 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003020 continue;
3021
3022 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003023 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003024 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003025 { }
3026
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003027 latency = dev_priv->wm.skl_latency[level];
3028
3029 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003030 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003031 I915_FORMAT_MOD_X_TILED)
3032 latency += 15;
3033
Lyude656d1b82016-08-17 15:55:54 -04003034 /*
3035 * If any of the planes on this pipe don't enable wm levels
3036 * that incur memory latencies higher then 30µs we can't enable
3037 * the SAGV
3038 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003039 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003040 return false;
3041 }
3042
3043 return true;
3044}
3045
Damien Lespiaub9cec072014-11-04 17:06:43 +00003046static void
3047skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003048 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003049 struct skl_ddb_entry *alloc, /* out */
3050 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003051{
Matt Roperc107acf2016-05-12 07:06:01 -07003052 struct drm_atomic_state *state = cstate->base.state;
3053 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3054 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003055 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003056 unsigned int pipe_size, ddb_size;
3057 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003058
Matt Ropera6d3460e2016-05-12 07:06:04 -07003059 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003060 alloc->start = 0;
3061 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003062 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003063 return;
3064 }
3065
Matt Ropera6d3460e2016-05-12 07:06:04 -07003066 if (intel_state->active_pipe_changes)
3067 *num_active = hweight32(intel_state->active_crtcs);
3068 else
3069 *num_active = hweight32(dev_priv->active_crtcs);
3070
Deepak M6f3fff62016-09-15 15:01:10 +05303071 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3072 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003073
3074 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3075
Matt Roperc107acf2016-05-12 07:06:01 -07003076 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003077 * If the state doesn't change the active CRTC's, then there's
3078 * no need to recalculate; the existing pipe allocation limits
3079 * should remain unchanged. Note that we're safe from racing
3080 * commits since any racing commit that changes the active CRTC
3081 * list would need to grab _all_ crtc locks, including the one
3082 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003083 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003084 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003085 /*
3086 * alloc may be cleared by clear_intel_crtc_state,
3087 * copy from old state to be sure
3088 */
3089 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003090 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003091 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003092
3093 nth_active_pipe = hweight32(intel_state->active_crtcs &
3094 (drm_crtc_mask(for_crtc) - 1));
3095 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3096 alloc->start = nth_active_pipe * ddb_size / *num_active;
3097 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003098}
3099
Matt Roperc107acf2016-05-12 07:06:01 -07003100static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003101{
Matt Roperc107acf2016-05-12 07:06:01 -07003102 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003103 return 32;
3104
3105 return 8;
3106}
3107
Damien Lespiaua269c582014-11-04 17:06:49 +00003108static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3109{
3110 entry->start = reg & 0x3ff;
3111 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003112 if (entry->end)
3113 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003114}
3115
Damien Lespiau08db6652014-11-04 17:06:52 +00003116void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3117 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003118{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003119 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003120
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003121 memset(ddb, 0, sizeof(*ddb));
3122
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003123 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003124 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003125 enum plane_id plane_id;
3126 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003127
3128 power_domain = POWER_DOMAIN_PIPE(pipe);
3129 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003130 continue;
3131
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003132 for_each_plane_id_on_crtc(crtc, plane_id) {
3133 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003134
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003135 if (plane_id != PLANE_CURSOR)
3136 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3137 else
3138 val = I915_READ(CUR_BUF_CFG(pipe));
3139
3140 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3141 }
Imre Deak4d800032016-02-17 16:31:29 +02003142
3143 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003144 }
3145}
3146
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003147/*
3148 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3149 * The bspec defines downscale amount as:
3150 *
3151 * """
3152 * Horizontal down scale amount = maximum[1, Horizontal source size /
3153 * Horizontal destination size]
3154 * Vertical down scale amount = maximum[1, Vertical source size /
3155 * Vertical destination size]
3156 * Total down scale amount = Horizontal down scale amount *
3157 * Vertical down scale amount
3158 * """
3159 *
3160 * Return value is provided in 16.16 fixed point form to retain fractional part.
3161 * Caller should take care of dividing & rounding off the value.
3162 */
3163static uint32_t
3164skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3165{
3166 uint32_t downscale_h, downscale_w;
3167 uint32_t src_w, src_h, dst_w, dst_h;
3168
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003169 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003170 return DRM_PLANE_HELPER_NO_SCALING;
3171
3172 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003173 src_w = drm_rect_width(&pstate->base.src);
3174 src_h = drm_rect_height(&pstate->base.src);
3175 dst_w = drm_rect_width(&pstate->base.dst);
3176 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003177 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003178 swap(dst_w, dst_h);
3179
3180 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3181 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3182
3183 /* Provide result in 16.16 fixed point */
3184 return (uint64_t)downscale_w * downscale_h >> 16;
3185}
3186
Damien Lespiaub9cec072014-11-04 17:06:43 +00003187static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003188skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3189 const struct drm_plane_state *pstate,
3190 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003191{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003192 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003193 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003194 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003195 struct drm_framebuffer *fb;
3196 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003197
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003198 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003199 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003200
3201 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003202 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003203
Matt Ropera1de91e2016-05-12 07:05:57 -07003204 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3205 return 0;
3206 if (y && format != DRM_FORMAT_NV12)
3207 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003208
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003209 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3210 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003211
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003212 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003213 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003214
3215 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003216 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003217 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003218 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003219 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003220 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003221 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003222 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003223 } else {
3224 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003225 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003226 }
3227
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003228 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3229
3230 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003231}
3232
3233/*
3234 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3235 * a 8192x4096@32bpp framebuffer:
3236 * 3 * 4096 * 8192 * 4 < 2^32
3237 */
3238static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003239skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3240 unsigned *plane_data_rate,
3241 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003242{
Matt Roper9c74d822016-05-12 07:05:58 -07003243 struct drm_crtc_state *cstate = &intel_cstate->base;
3244 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003245 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003246 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003247 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003248
3249 if (WARN_ON(!state))
3250 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003251
Matt Ropera1de91e2016-05-12 07:05:57 -07003252 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003253 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003254 enum plane_id plane_id = to_intel_plane(plane)->id;
3255 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003256
Matt Ropera6d3460e2016-05-12 07:06:04 -07003257 /* packed/uv */
3258 rate = skl_plane_relative_data_rate(intel_cstate,
3259 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003260 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003261
3262 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003263
Matt Ropera6d3460e2016-05-12 07:06:04 -07003264 /* y-plane */
3265 rate = skl_plane_relative_data_rate(intel_cstate,
3266 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003267 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003268
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003269 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003270 }
3271
3272 return total_data_rate;
3273}
3274
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003275static uint16_t
3276skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3277 const int y)
3278{
3279 struct drm_framebuffer *fb = pstate->fb;
3280 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3281 uint32_t src_w, src_h;
3282 uint32_t min_scanlines = 8;
3283 uint8_t plane_bpp;
3284
3285 if (WARN_ON(!fb))
3286 return 0;
3287
3288 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003289 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003290 return 0;
3291
3292 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003293 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3294 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003295 return 8;
3296
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003297 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3298 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003299
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003300 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003301 swap(src_w, src_h);
3302
3303 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003304 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003305 src_w /= 2;
3306 src_h /= 2;
3307 }
3308
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003309 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003310 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003311 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003312 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003313
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003314 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003315 switch (plane_bpp) {
3316 case 1:
3317 min_scanlines = 32;
3318 break;
3319 case 2:
3320 min_scanlines = 16;
3321 break;
3322 case 4:
3323 min_scanlines = 8;
3324 break;
3325 case 8:
3326 min_scanlines = 4;
3327 break;
3328 default:
3329 WARN(1, "Unsupported pixel depth %u for rotation",
3330 plane_bpp);
3331 min_scanlines = 32;
3332 }
3333 }
3334
3335 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3336}
3337
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003338static void
3339skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3340 uint16_t *minimum, uint16_t *y_minimum)
3341{
3342 const struct drm_plane_state *pstate;
3343 struct drm_plane *plane;
3344
3345 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003346 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003347
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003348 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003349 continue;
3350
3351 if (!pstate->visible)
3352 continue;
3353
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003354 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3355 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003356 }
3357
3358 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3359}
3360
Matt Roperc107acf2016-05-12 07:06:01 -07003361static int
Matt Roper024c9042015-09-24 15:53:11 -07003362skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003363 struct skl_ddb_allocation *ddb /* out */)
3364{
Matt Roperc107acf2016-05-12 07:06:01 -07003365 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003366 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003367 struct drm_device *dev = crtc->dev;
3368 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3369 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003370 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003371 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003372 uint16_t minimum[I915_MAX_PLANES] = {};
3373 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003374 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003375 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003376 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003377 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3378 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003379
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003380 /* Clear the partitioning for disabled planes. */
3381 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3382 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3383
Matt Ropera6d3460e2016-05-12 07:06:04 -07003384 if (WARN_ON(!state))
3385 return 0;
3386
Matt Roperc107acf2016-05-12 07:06:01 -07003387 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003388 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003389 return 0;
3390 }
3391
Matt Ropera6d3460e2016-05-12 07:06:04 -07003392 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003393 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003394 if (alloc_size == 0) {
3395 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003396 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003397 }
3398
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003399 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003400
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003401 /*
3402 * 1. Allocate the mininum required blocks for each active plane
3403 * and allocate the cursor, it doesn't require extra allocation
3404 * proportional to the data rate.
3405 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003406
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003407 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3408 alloc_size -= minimum[plane_id];
3409 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003410 }
3411
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003412 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3413 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3414
Damien Lespiaub9cec072014-11-04 17:06:43 +00003415 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003416 * 2. Distribute the remaining space in proportion to the amount of
3417 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003418 *
3419 * FIXME: we may not allocate every single block here.
3420 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003421 total_data_rate = skl_get_total_relative_data_rate(cstate,
3422 plane_data_rate,
3423 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003424 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003425 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003426
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003427 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003428 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003429 unsigned int data_rate, y_data_rate;
3430 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003431
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003432 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003433 continue;
3434
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003435 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003436
3437 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003438 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003439 * promote the expression to 64 bits to avoid overflowing, the
3440 * result is < available as data_rate / total_data_rate < 1
3441 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003442 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003443 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3444 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003445
Matt Roperc107acf2016-05-12 07:06:01 -07003446 /* Leave disabled planes at (0,0) */
3447 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003448 ddb->plane[pipe][plane_id].start = start;
3449 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003450 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003451
3452 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003453
3454 /*
3455 * allocation for y_plane part of planar format:
3456 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003457 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003458
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003459 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003460 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3461 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003462
Matt Roperc107acf2016-05-12 07:06:01 -07003463 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003464 ddb->y_plane[pipe][plane_id].start = start;
3465 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003466 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003467
Matt Ropera1de91e2016-05-12 07:05:57 -07003468 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003469 }
3470
Matt Roperc107acf2016-05-12 07:06:01 -07003471 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003472}
3473
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003474/*
3475 * 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 +02003476 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003477 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3478 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3479*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303480static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3481 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003482{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303483 uint32_t wm_intermediate_val;
3484 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003485
3486 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303487 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003488
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303489 wm_intermediate_val = latency * pixel_rate * cpp;
3490 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003491 return ret;
3492}
3493
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303494static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3495 uint32_t pipe_htotal,
3496 uint32_t latency,
3497 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003498{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003499 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303500 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003501
3502 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303503 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003504
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003505 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303506 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3507 pipe_htotal * 1000);
3508 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003509 return ret;
3510}
3511
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003512static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3513 struct intel_plane_state *pstate)
3514{
3515 uint64_t adjusted_pixel_rate;
3516 uint64_t downscale_amount;
3517 uint64_t pixel_rate;
3518
3519 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003520 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003521 return 0;
3522
3523 /*
3524 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3525 * with additional adjustments for plane-specific scaling.
3526 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003527 adjusted_pixel_rate = cstate->pixel_rate;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003528 downscale_amount = skl_plane_downscale_amount(pstate);
3529
3530 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3531 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3532
3533 return pixel_rate;
3534}
3535
Matt Roper55994c22016-05-12 07:06:08 -07003536static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3537 struct intel_crtc_state *cstate,
3538 struct intel_plane_state *intel_pstate,
3539 uint16_t ddb_allocation,
3540 int level,
3541 uint16_t *out_blocks, /* out */
3542 uint8_t *out_lines, /* out */
3543 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003544{
Matt Roper33815fa2016-05-12 07:06:05 -07003545 struct drm_plane_state *pstate = &intel_pstate->base;
3546 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003547 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303548 uint_fixed_16_16_t method1, method2;
3549 uint_fixed_16_16_t plane_blocks_per_line;
3550 uint_fixed_16_16_t selected_result;
3551 uint32_t interm_pbpl;
3552 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003553 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003554 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003555 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003556 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303557 uint_fixed_16_16_t y_tile_minimum;
3558 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003559 struct intel_atomic_state *state =
3560 to_intel_atomic_state(cstate->base.state);
3561 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303562 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003563
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003564 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003565 *enabled = false;
3566 return 0;
3567 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003568
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303569 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3570 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3571 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3572
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303573 /* Display WA #1141: kbl. */
3574 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3575 latency += 4;
3576
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303577 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003578 latency += 15;
3579
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003580 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3581 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003582
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003583 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003584 swap(width, height);
3585
Ville Syrjälä353c8592016-12-14 23:30:57 +02003586 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003587 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3588
Dave Airlie61d0a042016-10-25 16:35:20 +10003589 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003590 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003591 fb->format->cpp[1] :
3592 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003593
3594 switch (cpp) {
3595 case 1:
3596 y_min_scanlines = 16;
3597 break;
3598 case 2:
3599 y_min_scanlines = 8;
3600 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003601 case 4:
3602 y_min_scanlines = 4;
3603 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003604 default:
3605 MISSING_CASE(cpp);
3606 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003607 }
3608 } else {
3609 y_min_scanlines = 4;
3610 }
3611
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003612 if (apply_memory_bw_wa)
3613 y_min_scanlines *= 2;
3614
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003615 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303616 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303617 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3618 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003619 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303620 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303621 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303622 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3623 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303624 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303625 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3626 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003627 }
3628
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003629 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3630 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003631 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003632 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003633 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003634
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303635 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3636 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003637
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303638 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303639 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003640 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003641 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3642 (plane_bytes_per_line / 512 < 1))
3643 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303644 else if ((ddb_allocation /
3645 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3646 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003647 else
3648 selected_result = method1;
3649 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003650
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303651 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3652 res_lines = DIV_ROUND_UP(selected_result.val,
3653 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003654
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003655 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303656 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303657 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003658 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003659 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003660 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003661 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003662 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003663
Matt Roper55994c22016-05-12 07:06:08 -07003664 if (res_blocks >= ddb_allocation || res_lines > 31) {
3665 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003666
3667 /*
3668 * If there are no valid level 0 watermarks, then we can't
3669 * support this display configuration.
3670 */
3671 if (level) {
3672 return 0;
3673 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003674 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003675
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003676 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3677 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3678 plane->base.id, plane->name,
3679 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003680 return -EINVAL;
3681 }
Matt Roper55994c22016-05-12 07:06:08 -07003682 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003683
3684 *out_blocks = res_blocks;
3685 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003686 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003687
Matt Roper55994c22016-05-12 07:06:08 -07003688 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003689}
3690
Matt Roperf4a96752016-05-12 07:06:06 -07003691static int
3692skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3693 struct skl_ddb_allocation *ddb,
3694 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003695 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003696 int level,
3697 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003698{
Matt Roperf4a96752016-05-12 07:06:06 -07003699 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003700 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003701 struct drm_plane *plane = &intel_plane->base;
3702 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003703 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003704 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003705 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003706
3707 if (state)
3708 intel_pstate =
3709 intel_atomic_get_existing_plane_state(state,
3710 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003711
Matt Roperf4a96752016-05-12 07:06:06 -07003712 /*
Lyudea62163e2016-10-04 14:28:20 -04003713 * Note: If we start supporting multiple pending atomic commits against
3714 * the same planes/CRTC's in the future, plane->state will no longer be
3715 * the correct pre-state to use for the calculations here and we'll
3716 * need to change where we get the 'unchanged' plane data from.
3717 *
3718 * For now this is fine because we only allow one queued commit against
3719 * a CRTC. Even if the plane isn't modified by this transaction and we
3720 * don't have a plane lock, we still have the CRTC's lock, so we know
3721 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003722 */
Lyudea62163e2016-10-04 14:28:20 -04003723 if (!intel_pstate)
3724 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003725
Lyudea62163e2016-10-04 14:28:20 -04003726 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003727
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003728 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003729
Lyudea62163e2016-10-04 14:28:20 -04003730 ret = skl_compute_plane_wm(dev_priv,
3731 cstate,
3732 intel_pstate,
3733 ddb_blocks,
3734 level,
3735 &result->plane_res_b,
3736 &result->plane_res_l,
3737 &result->plane_en);
3738 if (ret)
3739 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003740
3741 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003742}
3743
Damien Lespiau407b50f2014-11-04 17:06:57 +00003744static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003745skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003746{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303747 struct drm_atomic_state *state = cstate->base.state;
3748 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003749 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303750 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003751
Matt Roper024c9042015-09-24 15:53:11 -07003752 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003753 return 0;
3754
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003755 pixel_rate = cstate->pixel_rate;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003756
3757 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003758 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003759
Mahesh Kumara3a89862016-12-01 21:19:34 +05303760 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3761 1000, pixel_rate);
3762
3763 /* Display WA #1135: bxt. */
3764 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3765 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3766
3767 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003768}
3769
Matt Roper024c9042015-09-24 15:53:11 -07003770static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003771 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003772{
Matt Roper024c9042015-09-24 15:53:11 -07003773 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003774 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003775
3776 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003777 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003778}
3779
Matt Roper55994c22016-05-12 07:06:08 -07003780static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3781 struct skl_ddb_allocation *ddb,
3782 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003783{
Matt Roper024c9042015-09-24 15:53:11 -07003784 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003785 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003786 struct intel_plane *intel_plane;
3787 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003788 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003789 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003790
Lyudea62163e2016-10-04 14:28:20 -04003791 /*
3792 * We'll only calculate watermarks for planes that are actually
3793 * enabled, so make sure all other planes are set as disabled.
3794 */
3795 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3796
3797 for_each_intel_plane_mask(&dev_priv->drm,
3798 intel_plane,
3799 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003800 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003801
3802 for (level = 0; level <= max_level; level++) {
3803 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3804 intel_plane, level,
3805 &wm->wm[level]);
3806 if (ret)
3807 return ret;
3808 }
3809 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003810 }
Matt Roper024c9042015-09-24 15:53:11 -07003811 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003812
Matt Roper55994c22016-05-12 07:06:08 -07003813 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003814}
3815
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003816static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3817 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003818 const struct skl_ddb_entry *entry)
3819{
3820 if (entry->end)
3821 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3822 else
3823 I915_WRITE(reg, 0);
3824}
3825
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003826static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3827 i915_reg_t reg,
3828 const struct skl_wm_level *level)
3829{
3830 uint32_t val = 0;
3831
3832 if (level->plane_en) {
3833 val |= PLANE_WM_EN;
3834 val |= level->plane_res_b;
3835 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3836 }
3837
3838 I915_WRITE(reg, val);
3839}
3840
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003841static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3842 const struct skl_plane_wm *wm,
3843 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003844 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003845{
3846 struct drm_crtc *crtc = &intel_crtc->base;
3847 struct drm_device *dev = crtc->dev;
3848 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003849 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003850 enum pipe pipe = intel_crtc->pipe;
3851
3852 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003853 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003854 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003855 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003856 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003857 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003858
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003859 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
3860 &ddb->plane[pipe][plane_id]);
3861 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
3862 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04003863}
3864
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003865static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
3866 const struct skl_plane_wm *wm,
3867 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003868{
3869 struct drm_crtc *crtc = &intel_crtc->base;
3870 struct drm_device *dev = crtc->dev;
3871 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003872 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003873 enum pipe pipe = intel_crtc->pipe;
3874
3875 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003876 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3877 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003878 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003879 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003880
3881 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003882 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003883}
3884
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003885bool skl_wm_level_equals(const struct skl_wm_level *l1,
3886 const struct skl_wm_level *l2)
3887{
3888 if (l1->plane_en != l2->plane_en)
3889 return false;
3890
3891 /* If both planes aren't enabled, the rest shouldn't matter */
3892 if (!l1->plane_en)
3893 return true;
3894
3895 return (l1->plane_res_l == l2->plane_res_l &&
3896 l1->plane_res_b == l2->plane_res_b);
3897}
3898
Lyude27082492016-08-24 07:48:10 +02003899static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3900 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003901{
Lyude27082492016-08-24 07:48:10 +02003902 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003903}
3904
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003905bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
3906 const struct skl_ddb_entry *ddb,
3907 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003908{
Lyudece0ba282016-09-15 10:46:35 -04003909 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003910
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003911 for (i = 0; i < I915_MAX_PIPES; i++)
3912 if (i != ignore && entries[i] &&
3913 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02003914 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003915
Lyude27082492016-08-24 07:48:10 +02003916 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003917}
3918
Matt Roper55994c22016-05-12 07:06:08 -07003919static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003920 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003921 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003922 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003923 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003924{
Matt Roperf4a96752016-05-12 07:06:06 -07003925 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003926 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003927
Matt Roper55994c22016-05-12 07:06:08 -07003928 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3929 if (ret)
3930 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003931
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003932 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003933 *changed = false;
3934 else
3935 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003936
Matt Roper55994c22016-05-12 07:06:08 -07003937 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003938}
3939
Matt Roper9b613022016-06-27 16:42:44 -07003940static uint32_t
3941pipes_modified(struct drm_atomic_state *state)
3942{
3943 struct drm_crtc *crtc;
3944 struct drm_crtc_state *cstate;
3945 uint32_t i, ret = 0;
3946
3947 for_each_crtc_in_state(state, crtc, cstate, i)
3948 ret |= drm_crtc_mask(crtc);
3949
3950 return ret;
3951}
3952
Jani Nikulabb7791b2016-10-04 12:29:17 +03003953static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003954skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3955{
3956 struct drm_atomic_state *state = cstate->base.state;
3957 struct drm_device *dev = state->dev;
3958 struct drm_crtc *crtc = cstate->base.crtc;
3959 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3960 struct drm_i915_private *dev_priv = to_i915(dev);
3961 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3962 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3963 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3964 struct drm_plane_state *plane_state;
3965 struct drm_plane *plane;
3966 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003967
3968 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
3969
Maarten Lankhorst220b0962016-10-26 15:41:30 +02003970 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003971 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003972
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003973 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
3974 &new_ddb->plane[pipe][plane_id]) &&
3975 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
3976 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003977 continue;
3978
3979 plane_state = drm_atomic_get_plane_state(state, plane);
3980 if (IS_ERR(plane_state))
3981 return PTR_ERR(plane_state);
3982 }
3983
3984 return 0;
3985}
3986
Matt Roper98d39492016-05-12 07:06:03 -07003987static int
3988skl_compute_ddb(struct drm_atomic_state *state)
3989{
3990 struct drm_device *dev = state->dev;
3991 struct drm_i915_private *dev_priv = to_i915(dev);
3992 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3993 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07003994 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07003995 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07003996 int ret;
3997
3998 /*
3999 * If this is our first atomic update following hardware readout,
4000 * we can't trust the DDB that the BIOS programmed for us. Let's
4001 * pretend that all pipes switched active status so that we'll
4002 * ensure a full DDB recompute.
4003 */
Matt Roper1b54a882016-06-17 13:42:18 -07004004 if (dev_priv->wm.distrust_bios_wm) {
4005 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4006 state->acquire_ctx);
4007 if (ret)
4008 return ret;
4009
Matt Roper98d39492016-05-12 07:06:03 -07004010 intel_state->active_pipe_changes = ~0;
4011
Matt Roper1b54a882016-06-17 13:42:18 -07004012 /*
4013 * We usually only initialize intel_state->active_crtcs if we
4014 * we're doing a modeset; make sure this field is always
4015 * initialized during the sanitization process that happens
4016 * on the first commit too.
4017 */
4018 if (!intel_state->modeset)
4019 intel_state->active_crtcs = dev_priv->active_crtcs;
4020 }
4021
Matt Roper98d39492016-05-12 07:06:03 -07004022 /*
4023 * If the modeset changes which CRTC's are active, we need to
4024 * recompute the DDB allocation for *all* active pipes, even
4025 * those that weren't otherwise being modified in any way by this
4026 * atomic commit. Due to the shrinking of the per-pipe allocations
4027 * when new active CRTC's are added, it's possible for a pipe that
4028 * we were already using and aren't changing at all here to suddenly
4029 * become invalid if its DDB needs exceeds its new allocation.
4030 *
4031 * Note that if we wind up doing a full DDB recompute, we can't let
4032 * any other display updates race with this transaction, so we need
4033 * to grab the lock on *all* CRTC's.
4034 */
Matt Roper734fa012016-05-12 15:11:40 -07004035 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004036 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004037 intel_state->wm_results.dirty_pipes = ~0;
4038 }
Matt Roper98d39492016-05-12 07:06:03 -07004039
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004040 /*
4041 * We're not recomputing for the pipes not included in the commit, so
4042 * make sure we start with the current state.
4043 */
4044 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4045
Matt Roper98d39492016-05-12 07:06:03 -07004046 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4047 struct intel_crtc_state *cstate;
4048
4049 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4050 if (IS_ERR(cstate))
4051 return PTR_ERR(cstate);
4052
Matt Roper734fa012016-05-12 15:11:40 -07004053 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004054 if (ret)
4055 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004056
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004057 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004058 if (ret)
4059 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004060 }
4061
4062 return 0;
4063}
4064
Matt Roper2722efb2016-08-17 15:55:55 -04004065static void
4066skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4067 struct skl_wm_values *src,
4068 enum pipe pipe)
4069{
Matt Roper2722efb2016-08-17 15:55:55 -04004070 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4071 sizeof(dst->ddb.y_plane[pipe]));
4072 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4073 sizeof(dst->ddb.plane[pipe]));
4074}
4075
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004076static void
4077skl_print_wm_changes(const struct drm_atomic_state *state)
4078{
4079 const struct drm_device *dev = state->dev;
4080 const struct drm_i915_private *dev_priv = to_i915(dev);
4081 const struct intel_atomic_state *intel_state =
4082 to_intel_atomic_state(state);
4083 const struct drm_crtc *crtc;
4084 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004085 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004086 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4087 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004088 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004089
4090 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004091 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4092 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004093
Maarten Lankhorst75704982016-11-01 12:04:10 +01004094 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004095 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004096 const struct skl_ddb_entry *old, *new;
4097
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004098 old = &old_ddb->plane[pipe][plane_id];
4099 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004100
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004101 if (skl_ddb_entry_equal(old, new))
4102 continue;
4103
Maarten Lankhorst75704982016-11-01 12:04:10 +01004104 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4105 intel_plane->base.base.id,
4106 intel_plane->base.name,
4107 old->start, old->end,
4108 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004109 }
4110 }
4111}
4112
Matt Roper98d39492016-05-12 07:06:03 -07004113static int
4114skl_compute_wm(struct drm_atomic_state *state)
4115{
4116 struct drm_crtc *crtc;
4117 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004118 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4119 struct skl_wm_values *results = &intel_state->wm_results;
4120 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004121 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004122 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004123
4124 /*
4125 * If this transaction isn't actually touching any CRTC's, don't
4126 * bother with watermark calculation. Note that if we pass this
4127 * test, we're guaranteed to hold at least one CRTC state mutex,
4128 * which means we can safely use values like dev_priv->active_crtcs
4129 * since any racing commits that want to update them would need to
4130 * hold _all_ CRTC state mutexes.
4131 */
4132 for_each_crtc_in_state(state, crtc, cstate, i)
4133 changed = true;
4134 if (!changed)
4135 return 0;
4136
Matt Roper734fa012016-05-12 15:11:40 -07004137 /* Clear all dirty flags */
4138 results->dirty_pipes = 0;
4139
Matt Roper98d39492016-05-12 07:06:03 -07004140 ret = skl_compute_ddb(state);
4141 if (ret)
4142 return ret;
4143
Matt Roper734fa012016-05-12 15:11:40 -07004144 /*
4145 * Calculate WM's for all pipes that are part of this transaction.
4146 * Note that the DDB allocation above may have added more CRTC's that
4147 * weren't otherwise being modified (and set bits in dirty_pipes) if
4148 * pipe allocations had to change.
4149 *
4150 * FIXME: Now that we're doing this in the atomic check phase, we
4151 * should allow skl_update_pipe_wm() to return failure in cases where
4152 * no suitable watermark values can be found.
4153 */
4154 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004155 struct intel_crtc_state *intel_cstate =
4156 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004157 const struct skl_pipe_wm *old_pipe_wm =
4158 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004159
4160 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004161 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4162 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004163 if (ret)
4164 return ret;
4165
4166 if (changed)
4167 results->dirty_pipes |= drm_crtc_mask(crtc);
4168
4169 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4170 /* This pipe's WM's did not change */
4171 continue;
4172
4173 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004174 }
4175
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004176 skl_print_wm_changes(state);
4177
Matt Roper98d39492016-05-12 07:06:03 -07004178 return 0;
4179}
4180
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004181static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4182 struct intel_crtc_state *cstate)
4183{
4184 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4185 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4186 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004187 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004188 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004189 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004190
4191 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4192 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004193
4194 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004195
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004196 for_each_plane_id_on_crtc(crtc, plane_id) {
4197 if (plane_id != PLANE_CURSOR)
4198 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4199 ddb, plane_id);
4200 else
4201 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4202 ddb);
4203 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004204}
4205
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004206static void skl_initial_wm(struct intel_atomic_state *state,
4207 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004208{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004209 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004210 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004211 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004212 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004213 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004214 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004215
Ville Syrjälä432081b2016-10-31 22:37:03 +02004216 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004217 return;
4218
Matt Roper734fa012016-05-12 15:11:40 -07004219 mutex_lock(&dev_priv->wm.wm_mutex);
4220
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004221 if (cstate->base.active_changed)
4222 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004223
4224 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004225
4226 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004227}
4228
Ville Syrjäläd8905652016-01-14 14:53:35 +02004229static void ilk_compute_wm_config(struct drm_device *dev,
4230 struct intel_wm_config *config)
4231{
4232 struct intel_crtc *crtc;
4233
4234 /* Compute the currently _active_ config */
4235 for_each_intel_crtc(dev, crtc) {
4236 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4237
4238 if (!wm->pipe_enabled)
4239 continue;
4240
4241 config->sprites_enabled |= wm->sprites_enabled;
4242 config->sprites_scaled |= wm->sprites_scaled;
4243 config->num_pipes_active++;
4244 }
4245}
4246
Matt Ropered4a6a72016-02-23 17:20:13 -08004247static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004248{
Chris Wilson91c8a322016-07-05 10:40:23 +01004249 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004250 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004251 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004252 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004253 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004254 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004255
Ville Syrjäläd8905652016-01-14 14:53:35 +02004256 ilk_compute_wm_config(dev, &config);
4257
4258 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4259 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004260
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004261 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004262 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004263 config.num_pipes_active == 1 && config.sprites_enabled) {
4264 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4265 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004266
Imre Deak820c1982013-12-17 14:46:36 +02004267 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004268 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004269 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004270 }
4271
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004272 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004273 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004274
Imre Deak820c1982013-12-17 14:46:36 +02004275 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004276
Imre Deak820c1982013-12-17 14:46:36 +02004277 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004278}
4279
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004280static void ilk_initial_watermarks(struct intel_atomic_state *state,
4281 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004282{
Matt Ropered4a6a72016-02-23 17:20:13 -08004283 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4284 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004285
Matt Ropered4a6a72016-02-23 17:20:13 -08004286 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004287 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004288 ilk_program_watermarks(dev_priv);
4289 mutex_unlock(&dev_priv->wm.wm_mutex);
4290}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004291
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004292static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4293 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004294{
4295 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4296 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4297
4298 mutex_lock(&dev_priv->wm.wm_mutex);
4299 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004300 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004301 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004302 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004303 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004304}
4305
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004306static inline void skl_wm_level_from_reg_val(uint32_t val,
4307 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004308{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004309 level->plane_en = val & PLANE_WM_EN;
4310 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4311 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4312 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004313}
4314
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004315void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4316 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004317{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004318 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004319 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004320 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004321 int level, max_level;
4322 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004323 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004324
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004325 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004326
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004327 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4328 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004329
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004330 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004331 if (plane_id != PLANE_CURSOR)
4332 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004333 else
4334 val = I915_READ(CUR_WM(pipe, level));
4335
4336 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4337 }
4338
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004339 if (plane_id != PLANE_CURSOR)
4340 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004341 else
4342 val = I915_READ(CUR_WM_TRANS(pipe));
4343
4344 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4345 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004346
Matt Roper3ef00282015-03-09 10:19:24 -07004347 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004348 return;
4349
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004350 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004351}
4352
4353void skl_wm_get_hw_state(struct drm_device *dev)
4354{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004355 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004356 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004357 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004358 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004359 struct intel_crtc *intel_crtc;
4360 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004361
Damien Lespiaua269c582014-11-04 17:06:49 +00004362 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004363 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4364 intel_crtc = to_intel_crtc(crtc);
4365 cstate = to_intel_crtc_state(crtc->state);
4366
4367 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4368
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004369 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004370 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004371 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004372
Matt Roper279e99d2016-05-12 07:06:02 -07004373 if (dev_priv->active_crtcs) {
4374 /* Fully recompute DDB on first atomic commit */
4375 dev_priv->wm.distrust_bios_wm = true;
4376 } else {
4377 /* Easy/common case; just sanitize DDB now if everything off */
4378 memset(ddb, 0, sizeof(*ddb));
4379 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004380}
4381
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004382static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4383{
4384 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004385 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004386 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004387 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004388 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004389 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004390 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004391 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004392 [PIPE_A] = WM0_PIPEA_ILK,
4393 [PIPE_B] = WM0_PIPEB_ILK,
4394 [PIPE_C] = WM0_PIPEC_IVB,
4395 };
4396
4397 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004398 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004399 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004400
Ville Syrjälä15606532016-05-13 17:55:17 +03004401 memset(active, 0, sizeof(*active));
4402
Matt Roper3ef00282015-03-09 10:19:24 -07004403 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004404
4405 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004406 u32 tmp = hw->wm_pipe[pipe];
4407
4408 /*
4409 * For active pipes LP0 watermark is marked as
4410 * enabled, and LP1+ watermaks as disabled since
4411 * we can't really reverse compute them in case
4412 * multiple pipes are active.
4413 */
4414 active->wm[0].enable = true;
4415 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4416 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4417 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4418 active->linetime = hw->wm_linetime[pipe];
4419 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004420 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004421
4422 /*
4423 * For inactive pipes, all watermark levels
4424 * should be marked as enabled but zeroed,
4425 * which is what we'd compute them to.
4426 */
4427 for (level = 0; level <= max_level; level++)
4428 active->wm[level].enable = true;
4429 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004430
4431 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004432}
4433
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004434#define _FW_WM(value, plane) \
4435 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4436#define _FW_WM_VLV(value, plane) \
4437 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4438
4439static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4440 struct vlv_wm_values *wm)
4441{
4442 enum pipe pipe;
4443 uint32_t tmp;
4444
4445 for_each_pipe(dev_priv, pipe) {
4446 tmp = I915_READ(VLV_DDL(pipe));
4447
Ville Syrjälä1b313892016-11-28 19:37:08 +02004448 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004449 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004450 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004451 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004452 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004453 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004454 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004455 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4456 }
4457
4458 tmp = I915_READ(DSPFW1);
4459 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004460 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4461 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4462 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004463
4464 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004465 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4466 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4467 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004468
4469 tmp = I915_READ(DSPFW3);
4470 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4471
4472 if (IS_CHERRYVIEW(dev_priv)) {
4473 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004474 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4475 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004476
4477 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004478 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4479 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004480
4481 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004482 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4483 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004484
4485 tmp = I915_READ(DSPHOWM);
4486 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004487 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4488 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4489 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4490 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4491 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4492 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4493 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4494 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4495 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004496 } else {
4497 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004498 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4499 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004500
4501 tmp = I915_READ(DSPHOWM);
4502 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004503 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4504 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4505 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4506 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4507 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4508 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004509 }
4510}
4511
4512#undef _FW_WM
4513#undef _FW_WM_VLV
4514
4515void vlv_wm_get_hw_state(struct drm_device *dev)
4516{
4517 struct drm_i915_private *dev_priv = to_i915(dev);
4518 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02004519 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004520 enum pipe pipe;
4521 u32 val;
4522
4523 vlv_read_wm_values(dev_priv, wm);
4524
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02004525 for_each_intel_crtc(dev, crtc)
Ville Syrjälä814e7f02017-03-02 19:14:55 +02004526 vlv_get_fifo_size(to_intel_crtc_state(crtc->base.state));
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004527
4528 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4529 wm->level = VLV_WM_LEVEL_PM2;
4530
4531 if (IS_CHERRYVIEW(dev_priv)) {
4532 mutex_lock(&dev_priv->rps.hw_lock);
4533
4534 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4535 if (val & DSP_MAXFIFO_PM5_ENABLE)
4536 wm->level = VLV_WM_LEVEL_PM5;
4537
Ville Syrjälä58590c12015-09-08 21:05:12 +03004538 /*
4539 * If DDR DVFS is disabled in the BIOS, Punit
4540 * will never ack the request. So if that happens
4541 * assume we don't have to enable/disable DDR DVFS
4542 * dynamically. To test that just set the REQ_ACK
4543 * bit to poke the Punit, but don't change the
4544 * HIGH/LOW bits so that we don't actually change
4545 * the current state.
4546 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004547 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004548 val |= FORCE_DDR_FREQ_REQ_ACK;
4549 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4550
4551 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4552 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4553 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4554 "assuming DDR DVFS is disabled\n");
4555 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4556 } else {
4557 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4558 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4559 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4560 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004561
4562 mutex_unlock(&dev_priv->rps.hw_lock);
4563 }
4564
4565 for_each_pipe(dev_priv, pipe)
4566 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 +02004567 pipe_name(pipe),
4568 wm->pipe[pipe].plane[PLANE_PRIMARY],
4569 wm->pipe[pipe].plane[PLANE_CURSOR],
4570 wm->pipe[pipe].plane[PLANE_SPRITE0],
4571 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004572
4573 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4574 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4575}
4576
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004577void ilk_wm_get_hw_state(struct drm_device *dev)
4578{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004579 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004580 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004581 struct drm_crtc *crtc;
4582
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004583 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004584 ilk_pipe_wm_get_hw_state(crtc);
4585
4586 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4587 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4588 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4589
4590 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004591 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004592 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4593 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4594 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004595
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004596 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004597 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4598 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004599 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004600 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4601 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004602
4603 hw->enable_fbc_wm =
4604 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4605}
4606
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004607/**
4608 * intel_update_watermarks - update FIFO watermark values based on current modes
4609 *
4610 * Calculate watermark values for the various WM regs based on current mode
4611 * and plane configuration.
4612 *
4613 * There are several cases to deal with here:
4614 * - normal (i.e. non-self-refresh)
4615 * - self-refresh (SR) mode
4616 * - lines are large relative to FIFO size (buffer can hold up to 2)
4617 * - lines are small relative to FIFO size (buffer can hold more than 2
4618 * lines), so need to account for TLB latency
4619 *
4620 * The normal calculation is:
4621 * watermark = dotclock * bytes per pixel * latency
4622 * where latency is platform & configuration dependent (we assume pessimal
4623 * values here).
4624 *
4625 * The SR calculation is:
4626 * watermark = (trunc(latency/line time)+1) * surface width *
4627 * bytes per pixel
4628 * where
4629 * line time = htotal / dotclock
4630 * surface width = hdisplay for normal plane and 64 for cursor
4631 * and latency is assumed to be high, as above.
4632 *
4633 * The final value programmed to the register should always be rounded up,
4634 * and include an extra 2 entries to account for clock crossings.
4635 *
4636 * We don't use the sprite, so we can ignore that. And on Crestline we have
4637 * to set the non-SR watermarks to 8.
4638 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004639void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004640{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004641 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004642
4643 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004644 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004645}
4646
Jani Nikulae2828912016-01-18 09:19:47 +02004647/*
Daniel Vetter92703882012-08-09 16:46:01 +02004648 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004649 */
4650DEFINE_SPINLOCK(mchdev_lock);
4651
4652/* Global for IPS driver to get at the current i915 device. Protected by
4653 * mchdev_lock. */
4654static struct drm_i915_private *i915_mch_dev;
4655
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004656bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004657{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004658 u16 rgvswctl;
4659
Chris Wilson67520412017-03-02 13:28:01 +00004660 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02004661
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004662 rgvswctl = I915_READ16(MEMSWCTL);
4663 if (rgvswctl & MEMCTL_CMD_STS) {
4664 DRM_DEBUG("gpu busy, RCS change rejected\n");
4665 return false; /* still busy with another command */
4666 }
4667
4668 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4669 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4670 I915_WRITE16(MEMSWCTL, rgvswctl);
4671 POSTING_READ16(MEMSWCTL);
4672
4673 rgvswctl |= MEMCTL_CMD_STS;
4674 I915_WRITE16(MEMSWCTL, rgvswctl);
4675
4676 return true;
4677}
4678
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004679static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004680{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004681 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004682 u8 fmax, fmin, fstart, vstart;
4683
Daniel Vetter92703882012-08-09 16:46:01 +02004684 spin_lock_irq(&mchdev_lock);
4685
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004686 rgvmodectl = I915_READ(MEMMODECTL);
4687
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004688 /* Enable temp reporting */
4689 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4690 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4691
4692 /* 100ms RC evaluation intervals */
4693 I915_WRITE(RCUPEI, 100000);
4694 I915_WRITE(RCDNEI, 100000);
4695
4696 /* Set max/min thresholds to 90ms and 80ms respectively */
4697 I915_WRITE(RCBMAXAVG, 90000);
4698 I915_WRITE(RCBMINAVG, 80000);
4699
4700 I915_WRITE(MEMIHYST, 1);
4701
4702 /* Set up min, max, and cur for interrupt handling */
4703 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4704 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4705 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4706 MEMMODE_FSTART_SHIFT;
4707
Ville Syrjälä616847e2015-09-18 20:03:19 +03004708 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004709 PXVFREQ_PX_SHIFT;
4710
Daniel Vetter20e4d402012-08-08 23:35:39 +02004711 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4712 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004713
Daniel Vetter20e4d402012-08-08 23:35:39 +02004714 dev_priv->ips.max_delay = fstart;
4715 dev_priv->ips.min_delay = fmin;
4716 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004717
4718 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4719 fmax, fmin, fstart);
4720
4721 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4722
4723 /*
4724 * Interrupts will be enabled in ironlake_irq_postinstall
4725 */
4726
4727 I915_WRITE(VIDSTART, vstart);
4728 POSTING_READ(VIDSTART);
4729
4730 rgvmodectl |= MEMMODE_SWMODE_EN;
4731 I915_WRITE(MEMMODECTL, rgvmodectl);
4732
Daniel Vetter92703882012-08-09 16:46:01 +02004733 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004734 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004735 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004736
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004737 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004738
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004739 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4740 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004741 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004742 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004743 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004744
4745 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004746}
4747
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004748static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004749{
Daniel Vetter92703882012-08-09 16:46:01 +02004750 u16 rgvswctl;
4751
4752 spin_lock_irq(&mchdev_lock);
4753
4754 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004755
4756 /* Ack interrupts, disable EFC interrupt */
4757 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4758 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4759 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4760 I915_WRITE(DEIIR, DE_PCU_EVENT);
4761 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4762
4763 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004764 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004765 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004766 rgvswctl |= MEMCTL_CMD_STS;
4767 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004768 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004769
Daniel Vetter92703882012-08-09 16:46:01 +02004770 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004771}
4772
Daniel Vetteracbe9472012-07-26 11:50:05 +02004773/* There's a funny hw issue where the hw returns all 0 when reading from
4774 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4775 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4776 * all limits and the gpu stuck at whatever frequency it is at atm).
4777 */
Akash Goel74ef1172015-03-06 11:07:19 +05304778static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004779{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004780 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004781
Daniel Vetter20b46e52012-07-26 11:16:14 +02004782 /* Only set the down limit when we've reached the lowest level to avoid
4783 * getting more interrupts, otherwise leave this clear. This prevents a
4784 * race in the hw when coming out of rc6: There's a tiny window where
4785 * the hw runs at the minimal clock before selecting the desired
4786 * frequency, if the down threshold expires in that window we will not
4787 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004788 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304789 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4790 if (val <= dev_priv->rps.min_freq_softlimit)
4791 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4792 } else {
4793 limits = dev_priv->rps.max_freq_softlimit << 24;
4794 if (val <= dev_priv->rps.min_freq_softlimit)
4795 limits |= dev_priv->rps.min_freq_softlimit << 16;
4796 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004797
4798 return limits;
4799}
4800
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004801static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4802{
4803 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304804 u32 threshold_up = 0, threshold_down = 0; /* in % */
4805 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004806
4807 new_power = dev_priv->rps.power;
4808 switch (dev_priv->rps.power) {
4809 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004810 if (val > dev_priv->rps.efficient_freq + 1 &&
4811 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004812 new_power = BETWEEN;
4813 break;
4814
4815 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004816 if (val <= dev_priv->rps.efficient_freq &&
4817 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004818 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004819 else if (val >= dev_priv->rps.rp0_freq &&
4820 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004821 new_power = HIGH_POWER;
4822 break;
4823
4824 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004825 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4826 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004827 new_power = BETWEEN;
4828 break;
4829 }
4830 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004831 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004832 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004833 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004834 new_power = HIGH_POWER;
4835 if (new_power == dev_priv->rps.power)
4836 return;
4837
4838 /* Note the units here are not exactly 1us, but 1280ns. */
4839 switch (new_power) {
4840 case LOW_POWER:
4841 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304842 ei_up = 16000;
4843 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004844
4845 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304846 ei_down = 32000;
4847 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004848 break;
4849
4850 case BETWEEN:
4851 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304852 ei_up = 13000;
4853 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004854
4855 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304856 ei_down = 32000;
4857 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004858 break;
4859
4860 case HIGH_POWER:
4861 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304862 ei_up = 10000;
4863 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004864
4865 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304866 ei_down = 32000;
4867 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004868 break;
4869 }
4870
Mika Kuoppala6067a272017-02-15 15:52:59 +02004871 /* When byt can survive without system hang with dynamic
4872 * sw freq adjustments, this restriction can be lifted.
4873 */
4874 if (IS_VALLEYVIEW(dev_priv))
4875 goto skip_hw_write;
4876
Akash Goel8a586432015-03-06 11:07:18 +05304877 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004878 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304879 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004880 GT_INTERVAL_FROM_US(dev_priv,
4881 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304882
4883 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004884 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304885 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004886 GT_INTERVAL_FROM_US(dev_priv,
4887 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304888
Chris Wilsona72b5622016-07-02 15:35:59 +01004889 I915_WRITE(GEN6_RP_CONTROL,
4890 GEN6_RP_MEDIA_TURBO |
4891 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4892 GEN6_RP_MEDIA_IS_GFX |
4893 GEN6_RP_ENABLE |
4894 GEN6_RP_UP_BUSY_AVG |
4895 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304896
Mika Kuoppala6067a272017-02-15 15:52:59 +02004897skip_hw_write:
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004898 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004899 dev_priv->rps.up_threshold = threshold_up;
4900 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004901 dev_priv->rps.last_adj = 0;
4902}
4903
Chris Wilson2876ce72014-03-28 08:03:34 +00004904static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4905{
4906 u32 mask = 0;
4907
4908 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004909 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004910 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004911 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004912
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004913 mask &= dev_priv->pm_rps_events;
4914
Imre Deak59d02a12014-12-19 19:33:26 +02004915 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004916}
4917
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004918/* gen6_set_rps is called to update the frequency request, but should also be
4919 * called when the range (min_delay and max_delay) is modified so that we can
4920 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004921static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004922{
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004923 /* min/max delay may still have been modified so be sure to
4924 * write the limits value.
4925 */
4926 if (val != dev_priv->rps.cur_freq) {
4927 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004928
Chris Wilsondc979972016-05-10 14:10:04 +01004929 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304930 I915_WRITE(GEN6_RPNSWREQ,
4931 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004932 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004933 I915_WRITE(GEN6_RPNSWREQ,
4934 HSW_FREQUENCY(val));
4935 else
4936 I915_WRITE(GEN6_RPNSWREQ,
4937 GEN6_FREQUENCY(val) |
4938 GEN6_OFFSET(0) |
4939 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004940 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004941
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004942 /* Make sure we continue to get interrupts
4943 * until we hit the minimum or maximum frequencies.
4944 */
Akash Goel74ef1172015-03-06 11:07:19 +05304945 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004946 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004947
Ben Widawskyb39fb292014-03-19 18:31:11 -07004948 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004949 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004950
4951 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004952}
4953
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004954static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004955{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004956 int err;
4957
Chris Wilsondc979972016-05-10 14:10:04 +01004958 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004959 "Odd GPU freq value\n"))
4960 val &= ~1;
4961
Deepak Scd25dd52015-07-10 18:31:40 +05304962 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
4963
Chris Wilson8fb55192015-04-07 16:20:28 +01004964 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004965 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
4966 if (err)
4967 return err;
4968
Chris Wilsondb4c5e02017-02-10 15:03:46 +00004969 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01004970 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004971
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004972 dev_priv->rps.cur_freq = val;
4973 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004974
4975 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004976}
4977
Deepak Sa7f6e232015-05-09 18:04:44 +05304978/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05304979 *
4980 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05304981 * 1. Forcewake Media well.
4982 * 2. Request idle freq.
4983 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05304984*/
4985static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
4986{
Chris Wilsonaed242f2015-03-18 09:48:21 +00004987 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004988 int err;
Deepak S5549d252014-06-28 11:26:11 +05304989
Chris Wilsonaed242f2015-03-18 09:48:21 +00004990 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05304991 return;
4992
Chris Wilsonc9efef72017-01-02 15:28:45 +00004993 /* The punit delays the write of the frequency and voltage until it
4994 * determines the GPU is awake. During normal usage we don't want to
4995 * waste power changing the frequency if the GPU is sleeping (rc6).
4996 * However, the GPU and driver is now idle and we do not want to delay
4997 * switching to minimum voltage (reducing power whilst idle) as we do
4998 * not expect to be woken in the near future and so must flush the
4999 * change by waking the device.
5000 *
5001 * We choose to take the media powerwell (either would do to trick the
5002 * punit into committing the voltage change) as that takes a lot less
5003 * power than the render powerwell.
5004 */
Deepak Sa7f6e232015-05-09 18:04:44 +05305005 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005006 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305007 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005008
5009 if (err)
5010 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305011}
5012
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005013void gen6_rps_busy(struct drm_i915_private *dev_priv)
5014{
5015 mutex_lock(&dev_priv->rps.hw_lock);
5016 if (dev_priv->rps.enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00005017 u8 freq;
5018
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005019 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5020 gen6_rps_reset_ei(dev_priv);
5021 I915_WRITE(GEN6_PMINTRMSK,
5022 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005023
Chris Wilsonc33d2472016-07-04 08:08:36 +01005024 gen6_enable_rps_interrupts(dev_priv);
5025
Chris Wilsonbd648182017-02-10 15:03:48 +00005026 /* Use the user's desired frequency as a guide, but for better
5027 * performance, jump directly to RPe as our starting frequency.
5028 */
5029 freq = max(dev_priv->rps.cur_freq,
5030 dev_priv->rps.efficient_freq);
5031
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005032 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00005033 clamp(freq,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005034 dev_priv->rps.min_freq_softlimit,
5035 dev_priv->rps.max_freq_softlimit)))
5036 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005037 }
5038 mutex_unlock(&dev_priv->rps.hw_lock);
5039}
5040
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005041void gen6_rps_idle(struct drm_i915_private *dev_priv)
5042{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005043 /* Flush our bottom-half so that it does not race with us
5044 * setting the idle frequency and so that it is bounded by
5045 * our rpm wakeref. And then disable the interrupts to stop any
5046 * futher RPS reclocking whilst we are asleep.
5047 */
5048 gen6_disable_rps_interrupts(dev_priv);
5049
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005050 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005051 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005052 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305053 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005054 else
Chris Wilsondc979972016-05-10 14:10:04 +01005055 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005056 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005057 I915_WRITE(GEN6_PMINTRMSK,
5058 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005059 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005060 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005061
Chris Wilson8d3afd72015-05-21 21:01:47 +01005062 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005063 while (!list_empty(&dev_priv->rps.clients))
5064 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005065 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005066}
5067
Chris Wilson1854d5c2015-04-07 16:20:32 +01005068void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005069 struct intel_rps_client *rps,
5070 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005071{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005072 /* This is intentionally racy! We peek at the state here, then
5073 * validate inside the RPS worker.
5074 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005075 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005076 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005077 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005078 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005079
Chris Wilsone61b9952015-04-27 13:41:24 +01005080 /* Force a RPS boost (and don't count it against the client) if
5081 * the GPU is severely congested.
5082 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005083 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005084 rps = NULL;
5085
Chris Wilson8d3afd72015-05-21 21:01:47 +01005086 spin_lock(&dev_priv->rps.client_lock);
5087 if (rps == NULL || list_empty(&rps->link)) {
5088 spin_lock_irq(&dev_priv->irq_lock);
5089 if (dev_priv->rps.interrupts_enabled) {
5090 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005091 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005092 }
5093 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005094
Chris Wilson2e1b8732015-04-27 13:41:22 +01005095 if (rps != NULL) {
5096 list_add(&rps->link, &dev_priv->rps.clients);
5097 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005098 } else
5099 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005100 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005101 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005102}
5103
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005104int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005105{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005106 int err;
5107
Chris Wilsoncfd1c482017-02-20 09:47:07 +00005108 lockdep_assert_held(&dev_priv->rps.hw_lock);
5109 GEM_BUG_ON(val > dev_priv->rps.max_freq);
5110 GEM_BUG_ON(val < dev_priv->rps.min_freq);
5111
Chris Wilson76e4e4b2017-02-20 09:47:08 +00005112 if (!dev_priv->rps.enabled) {
5113 dev_priv->rps.cur_freq = val;
5114 return 0;
5115 }
5116
Chris Wilsondc979972016-05-10 14:10:04 +01005117 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005118 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005119 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005120 err = gen6_set_rps(dev_priv, val);
5121
5122 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005123}
5124
Chris Wilsondc979972016-05-10 14:10:04 +01005125static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005126{
Zhe Wang20e49362014-11-04 17:07:05 +00005127 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005128 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005129}
5130
Chris Wilsondc979972016-05-10 14:10:04 +01005131static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305132{
Akash Goel2030d682016-04-23 00:05:45 +05305133 I915_WRITE(GEN6_RP_CONTROL, 0);
5134}
5135
Chris Wilsondc979972016-05-10 14:10:04 +01005136static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005137{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005138 I915_WRITE(GEN6_RC_CONTROL, 0);
5139 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305140 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005141}
5142
Chris Wilsondc979972016-05-10 14:10:04 +01005143static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305144{
Deepak S38807742014-05-23 21:00:15 +05305145 I915_WRITE(GEN6_RC_CONTROL, 0);
5146}
5147
Chris Wilsondc979972016-05-10 14:10:04 +01005148static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005149{
Deepak S98a2e5f2014-08-18 10:35:27 -07005150 /* we're doing forcewake before Disabling RC6,
5151 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005152 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005153
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005154 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005155
Mika Kuoppala59bad942015-01-16 11:34:40 +02005156 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005157}
5158
Chris Wilsondc979972016-05-10 14:10:04 +01005159static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005160{
Chris Wilsondc979972016-05-10 14:10:04 +01005161 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005162 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5163 mode = GEN6_RC_CTL_RC6_ENABLE;
5164 else
5165 mode = 0;
5166 }
Chris Wilsondc979972016-05-10 14:10:04 +01005167 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005168 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5169 "RC6 %s RC6p %s RC6pp %s\n",
5170 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5171 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5172 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005173
5174 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005175 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5176 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005177}
5178
Chris Wilsondc979972016-05-10 14:10:04 +01005179static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305180{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005181 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305182 bool enable_rc6 = true;
5183 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005184 u32 rc_ctl;
5185 int rc_sw_target;
5186
5187 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5188 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5189 RC_SW_TARGET_STATE_SHIFT;
5190 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5191 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5192 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5193 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5194 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305195
5196 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005197 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305198 enable_rc6 = false;
5199 }
5200
5201 /*
5202 * The exact context size is not known for BXT, so assume a page size
5203 * for this check.
5204 */
5205 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005206 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5207 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5208 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005209 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305210 enable_rc6 = false;
5211 }
5212
5213 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5214 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5215 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5216 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005217 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305218 enable_rc6 = false;
5219 }
5220
Imre Deakfc619842016-06-29 19:13:55 +03005221 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5222 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5223 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5224 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5225 enable_rc6 = false;
5226 }
5227
5228 if (!I915_READ(GEN6_GFXPAUSE)) {
5229 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5230 enable_rc6 = false;
5231 }
5232
5233 if (!I915_READ(GEN8_MISC_CTRL0)) {
5234 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305235 enable_rc6 = false;
5236 }
5237
5238 return enable_rc6;
5239}
5240
Chris Wilsondc979972016-05-10 14:10:04 +01005241int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005242{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005243 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005244 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005245 return 0;
5246
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305247 if (!enable_rc6)
5248 return 0;
5249
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005250 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305251 DRM_INFO("RC6 disabled by BIOS\n");
5252 return 0;
5253 }
5254
Daniel Vetter456470e2012-08-08 23:35:40 +02005255 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005256 if (enable_rc6 >= 0) {
5257 int mask;
5258
Chris Wilsondc979972016-05-10 14:10:04 +01005259 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005260 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5261 INTEL_RC6pp_ENABLE;
5262 else
5263 mask = INTEL_RC6_ENABLE;
5264
5265 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005266 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5267 "(requested %d, valid %d)\n",
5268 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005269
5270 return enable_rc6 & mask;
5271 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005272
Chris Wilsondc979972016-05-10 14:10:04 +01005273 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005274 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005275
5276 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005277}
5278
Chris Wilsondc979972016-05-10 14:10:04 +01005279static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005280{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005281 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005282
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005283 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005284 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005285 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005286 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5287 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5288 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5289 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005290 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005291 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5292 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5293 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5294 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005295 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005296 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005297
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005298 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005299 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005300 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005301 u32 ddcc_status = 0;
5302
5303 if (sandybridge_pcode_read(dev_priv,
5304 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5305 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005306 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005307 clamp_t(u8,
5308 ((ddcc_status >> 8) & 0xff),
5309 dev_priv->rps.min_freq,
5310 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005311 }
5312
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005313 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305314 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005315 * the natural hardware unit for SKL
5316 */
Akash Goelc5e06882015-06-29 14:50:19 +05305317 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5318 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5319 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5320 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5321 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5322 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005323}
5324
Chris Wilson3a45b052016-07-13 09:10:32 +01005325static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005326 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005327{
5328 u8 freq = dev_priv->rps.cur_freq;
5329
5330 /* force a reset */
5331 dev_priv->rps.power = -1;
5332 dev_priv->rps.cur_freq = -1;
5333
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005334 if (set(dev_priv, freq))
5335 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005336}
5337
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005338/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005339static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005340{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005341 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5342
Akash Goel0beb0592015-03-06 11:07:20 +05305343 /* Program defaults and thresholds for RPS*/
5344 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5345 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005346
Akash Goel0beb0592015-03-06 11:07:20 +05305347 /* 1 second timeout*/
5348 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5349 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5350
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005351 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005352
Akash Goel0beb0592015-03-06 11:07:20 +05305353 /* Leaning on the below call to gen6_set_rps to program/setup the
5354 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5355 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005356 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005357
5358 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5359}
5360
Chris Wilsondc979972016-05-10 14:10:04 +01005361static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005362{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005363 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305364 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005365 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005366
5367 /* 1a: Software RC state - RC0 */
5368 I915_WRITE(GEN6_RC_STATE, 0);
5369
5370 /* 1b: Get forcewake during program sequence. Although the driver
5371 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005372 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005373
5374 /* 2a: Disable RC states. */
5375 I915_WRITE(GEN6_RC_CONTROL, 0);
5376
5377 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305378
5379 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005380 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305381 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5382 else
5383 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005384 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5385 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305386 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005387 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305388
Dave Gordon1a3d1892016-05-13 15:36:30 +01005389 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305390 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5391
Zhe Wang20e49362014-11-04 17:07:05 +00005392 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005393
Zhe Wang38c23522015-01-20 12:23:04 +00005394 /* 2c: Program Coarse Power Gating Policies. */
5395 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5396 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5397
Zhe Wang20e49362014-11-04 17:07:05 +00005398 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005399 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005400 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005401 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005402 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5403 I915_WRITE(GEN6_RC_CONTROL,
5404 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005405
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305406 /*
5407 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305408 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305409 */
Chris Wilsondc979972016-05-10 14:10:04 +01005410 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305411 I915_WRITE(GEN9_PG_ENABLE, 0);
5412 else
5413 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5414 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005415
Mika Kuoppala59bad942015-01-16 11:34:40 +02005416 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005417}
5418
Chris Wilsondc979972016-05-10 14:10:04 +01005419static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005420{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005421 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305422 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005423 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005424
5425 /* 1a: Software RC state - RC0 */
5426 I915_WRITE(GEN6_RC_STATE, 0);
5427
5428 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5429 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005430 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005431
5432 /* 2a: Disable RC states. */
5433 I915_WRITE(GEN6_RC_CONTROL, 0);
5434
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005435 /* 2b: Program RC6 thresholds.*/
5436 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5437 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5438 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305439 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005440 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005441 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005442 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005443 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5444 else
5445 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005446
5447 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005448 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005449 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005450 intel_print_rc6_info(dev_priv, rc6_mask);
5451 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005452 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5453 GEN7_RC_CTL_TO_MODE |
5454 rc6_mask);
5455 else
5456 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5457 GEN6_RC_CTL_EI_MODE(1) |
5458 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005459
5460 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005461 I915_WRITE(GEN6_RPNSWREQ,
5462 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5463 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5464 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005465 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5466 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005467
Daniel Vetter7526ed72014-09-29 15:07:19 +02005468 /* Docs recommend 900MHz, and 300 MHz respectively */
5469 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5470 dev_priv->rps.max_freq_softlimit << 24 |
5471 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005472
Daniel Vetter7526ed72014-09-29 15:07:19 +02005473 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5474 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5475 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5476 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005477
Daniel Vetter7526ed72014-09-29 15:07:19 +02005478 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005479
5480 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005481 I915_WRITE(GEN6_RP_CONTROL,
5482 GEN6_RP_MEDIA_TURBO |
5483 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5484 GEN6_RP_MEDIA_IS_GFX |
5485 GEN6_RP_ENABLE |
5486 GEN6_RP_UP_BUSY_AVG |
5487 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005488
Daniel Vetter7526ed72014-09-29 15:07:19 +02005489 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005490
Chris Wilson3a45b052016-07-13 09:10:32 +01005491 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005492
Mika Kuoppala59bad942015-01-16 11:34:40 +02005493 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005494}
5495
Chris Wilsondc979972016-05-10 14:10:04 +01005496static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005497{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005498 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305499 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005500 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005501 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005502 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005503 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005504
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005505 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005506
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005507 /* Here begins a magic sequence of register writes to enable
5508 * auto-downclocking.
5509 *
5510 * Perhaps there might be some value in exposing these to
5511 * userspace...
5512 */
5513 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005514
5515 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005516 gtfifodbg = I915_READ(GTFIFODBG);
5517 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005518 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5519 I915_WRITE(GTFIFODBG, gtfifodbg);
5520 }
5521
Mika Kuoppala59bad942015-01-16 11:34:40 +02005522 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005523
5524 /* disable the counters and set deterministic thresholds */
5525 I915_WRITE(GEN6_RC_CONTROL, 0);
5526
5527 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5528 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5529 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5530 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5531 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5532
Akash Goel3b3f1652016-10-13 22:44:48 +05305533 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005534 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005535
5536 I915_WRITE(GEN6_RC_SLEEP, 0);
5537 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005538 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005539 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5540 else
5541 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005542 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005543 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5544
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005545 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005546 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005547 if (rc6_mode & INTEL_RC6_ENABLE)
5548 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5549
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005550 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005551 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005552 if (rc6_mode & INTEL_RC6p_ENABLE)
5553 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005554
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005555 if (rc6_mode & INTEL_RC6pp_ENABLE)
5556 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5557 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005558
Chris Wilsondc979972016-05-10 14:10:04 +01005559 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005560
5561 I915_WRITE(GEN6_RC_CONTROL,
5562 rc6_mask |
5563 GEN6_RC_CTL_EI_MODE(1) |
5564 GEN6_RC_CTL_HW_ENABLE);
5565
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005566 /* Power down if completely idle for over 50ms */
5567 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005568 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005569
Chris Wilson3a45b052016-07-13 09:10:32 +01005570 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005571
Ben Widawsky31643d52012-09-26 10:34:01 -07005572 rc6vids = 0;
5573 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005574 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005575 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005576 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005577 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5578 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5579 rc6vids &= 0xffff00;
5580 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5581 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5582 if (ret)
5583 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5584 }
5585
Mika Kuoppala59bad942015-01-16 11:34:40 +02005586 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005587}
5588
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005589static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005590{
5591 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005592 unsigned int gpu_freq;
5593 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305594 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005595 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005596 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005597
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005598 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005599
Ben Widawskyeda79642013-10-07 17:15:48 -03005600 policy = cpufreq_cpu_get(0);
5601 if (policy) {
5602 max_ia_freq = policy->cpuinfo.max_freq;
5603 cpufreq_cpu_put(policy);
5604 } else {
5605 /*
5606 * Default to measured freq if none found, PCU will ensure we
5607 * don't go over
5608 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005609 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005610 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005611
5612 /* Convert from kHz to MHz */
5613 max_ia_freq /= 1000;
5614
Ben Widawsky153b4b952013-10-22 22:05:09 -07005615 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005616 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5617 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005618
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005619 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305620 /* Convert GT frequency to 50 HZ units */
5621 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5622 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5623 } else {
5624 min_gpu_freq = dev_priv->rps.min_freq;
5625 max_gpu_freq = dev_priv->rps.max_freq;
5626 }
5627
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005628 /*
5629 * For each potential GPU frequency, load a ring frequency we'd like
5630 * to use for memory access. We do this by specifying the IA frequency
5631 * the PCU should use as a reference to determine the ring frequency.
5632 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305633 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5634 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005635 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005636
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005637 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305638 /*
5639 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5640 * No floor required for ring frequency on SKL.
5641 */
5642 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005643 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005644 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5645 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005646 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005647 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005648 ring_freq = max(min_ring_freq, ring_freq);
5649 /* leave ia_freq as the default, chosen by cpufreq */
5650 } else {
5651 /* On older processors, there is no separate ring
5652 * clock domain, so in order to boost the bandwidth
5653 * of the ring, we need to upclock the CPU (ia_freq).
5654 *
5655 * For GPU frequencies less than 750MHz,
5656 * just use the lowest ring freq.
5657 */
5658 if (gpu_freq < min_freq)
5659 ia_freq = 800;
5660 else
5661 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5662 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5663 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005664
Ben Widawsky42c05262012-09-26 10:34:00 -07005665 sandybridge_pcode_write(dev_priv,
5666 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005667 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5668 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5669 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005670 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005671}
5672
Ville Syrjälä03af2042014-06-28 02:03:53 +03005673static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305674{
5675 u32 val, rp0;
5676
Jani Nikula5b5929c2015-10-07 11:17:46 +03005677 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305678
Imre Deak43b67992016-08-31 19:13:02 +03005679 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005680 case 8:
5681 /* (2 * 4) config */
5682 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5683 break;
5684 case 12:
5685 /* (2 * 6) config */
5686 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5687 break;
5688 case 16:
5689 /* (2 * 8) config */
5690 default:
5691 /* Setting (2 * 8) Min RP0 for any other combination */
5692 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5693 break;
Deepak S095acd52015-01-17 11:05:59 +05305694 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005695
5696 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5697
Deepak S2b6b3a02014-05-27 15:59:30 +05305698 return rp0;
5699}
5700
5701static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5702{
5703 u32 val, rpe;
5704
5705 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5706 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5707
5708 return rpe;
5709}
5710
Deepak S7707df42014-07-12 18:46:14 +05305711static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5712{
5713 u32 val, rp1;
5714
Jani Nikula5b5929c2015-10-07 11:17:46 +03005715 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5716 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5717
Deepak S7707df42014-07-12 18:46:14 +05305718 return rp1;
5719}
5720
Deepak S96676fe2016-08-12 18:46:41 +05305721static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
5722{
5723 u32 val, rpn;
5724
5725 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
5726 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
5727 FB_GFX_FREQ_FUSE_MASK);
5728
5729 return rpn;
5730}
5731
Deepak Sf8f2b002014-07-10 13:16:21 +05305732static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5733{
5734 u32 val, rp1;
5735
5736 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5737
5738 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5739
5740 return rp1;
5741}
5742
Ville Syrjälä03af2042014-06-28 02:03:53 +03005743static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005744{
5745 u32 val, rp0;
5746
Jani Nikula64936252013-05-22 15:36:20 +03005747 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005748
5749 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5750 /* Clamp to max */
5751 rp0 = min_t(u32, rp0, 0xea);
5752
5753 return rp0;
5754}
5755
5756static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5757{
5758 u32 val, rpe;
5759
Jani Nikula64936252013-05-22 15:36:20 +03005760 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005761 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005762 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005763 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5764
5765 return rpe;
5766}
5767
Ville Syrjälä03af2042014-06-28 02:03:53 +03005768static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005769{
Imre Deak36146032014-12-04 18:39:35 +02005770 u32 val;
5771
5772 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5773 /*
5774 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5775 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5776 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5777 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5778 * to make sure it matches what Punit accepts.
5779 */
5780 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005781}
5782
Imre Deakae484342014-03-31 15:10:44 +03005783/* Check that the pctx buffer wasn't move under us. */
5784static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5785{
5786 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5787
5788 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5789 dev_priv->vlv_pctx->stolen->start);
5790}
5791
Deepak S38807742014-05-23 21:00:15 +05305792
5793/* Check that the pcbr address is not empty. */
5794static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5795{
5796 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5797
5798 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5799}
5800
Chris Wilsondc979972016-05-10 14:10:04 +01005801static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305802{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005803 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005804 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305805 u32 pcbr;
5806 int pctx_size = 32*1024;
5807
Deepak S38807742014-05-23 21:00:15 +05305808 pcbr = I915_READ(VLV_PCBR);
5809 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005810 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305811 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005812 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305813
5814 pctx_paddr = (paddr & (~4095));
5815 I915_WRITE(VLV_PCBR, pctx_paddr);
5816 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005817
5818 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305819}
5820
Chris Wilsondc979972016-05-10 14:10:04 +01005821static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005822{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005823 struct drm_i915_gem_object *pctx;
5824 unsigned long pctx_paddr;
5825 u32 pcbr;
5826 int pctx_size = 24*1024;
5827
5828 pcbr = I915_READ(VLV_PCBR);
5829 if (pcbr) {
5830 /* BIOS set it up already, grab the pre-alloc'd space */
5831 int pcbr_offset;
5832
5833 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005834 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005835 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005836 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005837 pctx_size);
5838 goto out;
5839 }
5840
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005841 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5842
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005843 /*
5844 * From the Gunit register HAS:
5845 * The Gfx driver is expected to program this register and ensure
5846 * proper allocation within Gfx stolen memory. For example, this
5847 * register should be programmed such than the PCBR range does not
5848 * overlap with other ranges, such as the frame buffer, protected
5849 * memory, or any other relevant ranges.
5850 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005851 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005852 if (!pctx) {
5853 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005854 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005855 }
5856
5857 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5858 I915_WRITE(VLV_PCBR, pctx_paddr);
5859
5860out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005861 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005862 dev_priv->vlv_pctx = pctx;
5863}
5864
Chris Wilsondc979972016-05-10 14:10:04 +01005865static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005866{
Imre Deakae484342014-03-31 15:10:44 +03005867 if (WARN_ON(!dev_priv->vlv_pctx))
5868 return;
5869
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005870 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005871 dev_priv->vlv_pctx = NULL;
5872}
5873
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005874static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5875{
5876 dev_priv->rps.gpll_ref_freq =
5877 vlv_get_cck_clock(dev_priv, "GPLL ref",
5878 CCK_GPLL_CLOCK_CONTROL,
5879 dev_priv->czclk_freq);
5880
5881 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5882 dev_priv->rps.gpll_ref_freq);
5883}
5884
Chris Wilsondc979972016-05-10 14:10:04 +01005885static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005886{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005887 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005888
Chris Wilsondc979972016-05-10 14:10:04 +01005889 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005890
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005891 vlv_init_gpll_ref_freq(dev_priv);
5892
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005893 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5894 switch ((val >> 6) & 3) {
5895 case 0:
5896 case 1:
5897 dev_priv->mem_freq = 800;
5898 break;
5899 case 2:
5900 dev_priv->mem_freq = 1066;
5901 break;
5902 case 3:
5903 dev_priv->mem_freq = 1333;
5904 break;
5905 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005906 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005907
Imre Deak4e805192014-04-14 20:24:41 +03005908 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5909 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5910 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005911 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005912 dev_priv->rps.max_freq);
5913
5914 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5915 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005916 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005917 dev_priv->rps.efficient_freq);
5918
Deepak Sf8f2b002014-07-10 13:16:21 +05305919 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5920 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005921 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305922 dev_priv->rps.rp1_freq);
5923
Imre Deak4e805192014-04-14 20:24:41 +03005924 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5925 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005926 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005927 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005928}
5929
Chris Wilsondc979972016-05-10 14:10:04 +01005930static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305931{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005932 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305933
Chris Wilsondc979972016-05-10 14:10:04 +01005934 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305935
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005936 vlv_init_gpll_ref_freq(dev_priv);
5937
Ville Syrjäläa5805162015-05-26 20:42:30 +03005938 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005939 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005940 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005941
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005942 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005943 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005944 dev_priv->mem_freq = 2000;
5945 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005946 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005947 dev_priv->mem_freq = 1600;
5948 break;
5949 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005950 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005951
Deepak S2b6b3a02014-05-27 15:59:30 +05305952 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5953 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5954 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005955 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305956 dev_priv->rps.max_freq);
5957
5958 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5959 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005960 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305961 dev_priv->rps.efficient_freq);
5962
Deepak S7707df42014-07-12 18:46:14 +05305963 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5964 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005965 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305966 dev_priv->rps.rp1_freq);
5967
Deepak S96676fe2016-08-12 18:46:41 +05305968 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305969 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005970 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305971 dev_priv->rps.min_freq);
5972
Ville Syrjälä1c147622014-08-18 14:42:43 +03005973 WARN_ONCE((dev_priv->rps.max_freq |
5974 dev_priv->rps.efficient_freq |
5975 dev_priv->rps.rp1_freq |
5976 dev_priv->rps.min_freq) & 1,
5977 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305978}
5979
Chris Wilsondc979972016-05-10 14:10:04 +01005980static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005981{
Chris Wilsondc979972016-05-10 14:10:04 +01005982 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005983}
5984
Chris Wilsondc979972016-05-10 14:10:04 +01005985static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305986{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005987 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305988 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05305989 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05305990
5991 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
5992
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005993 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
5994 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05305995 if (gtfifodbg) {
5996 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
5997 gtfifodbg);
5998 I915_WRITE(GTFIFODBG, gtfifodbg);
5999 }
6000
6001 cherryview_check_pctx(dev_priv);
6002
6003 /* 1a & 1b: Get forcewake during program sequence. Although the driver
6004 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006005 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306006
Ville Syrjälä160614a2015-01-19 13:50:47 +02006007 /* Disable RC states. */
6008 I915_WRITE(GEN6_RC_CONTROL, 0);
6009
Deepak S38807742014-05-23 21:00:15 +05306010 /* 2a: Program RC6 thresholds.*/
6011 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6012 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6013 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6014
Akash Goel3b3f1652016-10-13 22:44:48 +05306015 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006016 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306017 I915_WRITE(GEN6_RC_SLEEP, 0);
6018
Deepak Sf4f71c72015-03-28 15:23:35 +05306019 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6020 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306021
6022 /* allows RC6 residency counter to work */
6023 I915_WRITE(VLV_COUNTER_CONTROL,
6024 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6025 VLV_MEDIA_RC6_COUNT_EN |
6026 VLV_RENDER_RC6_COUNT_EN));
6027
6028 /* For now we assume BIOS is allocating and populating the PCBR */
6029 pcbr = I915_READ(VLV_PCBR);
6030
Deepak S38807742014-05-23 21:00:15 +05306031 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006032 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6033 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006034 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306035
6036 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6037
Deepak S2b6b3a02014-05-27 15:59:30 +05306038 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006039 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306040 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6041 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6042 I915_WRITE(GEN6_RP_UP_EI, 66000);
6043 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6044
6045 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6046
6047 /* 5: Enable RPS */
6048 I915_WRITE(GEN6_RP_CONTROL,
6049 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006050 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306051 GEN6_RP_ENABLE |
6052 GEN6_RP_UP_BUSY_AVG |
6053 GEN6_RP_DOWN_IDLE_AVG);
6054
Deepak S3ef62342015-04-29 08:36:24 +05306055 /* Setting Fixed Bias */
6056 val = VLV_OVERRIDE_EN |
6057 VLV_SOC_TDP_EN |
6058 CHV_BIAS_CPU_50_SOC_50;
6059 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6060
Deepak S2b6b3a02014-05-27 15:59:30 +05306061 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6062
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006063 /* RPS code assumes GPLL is used */
6064 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6065
Jani Nikula742f4912015-09-03 11:16:09 +03006066 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306067 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6068
Chris Wilson3a45b052016-07-13 09:10:32 +01006069 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306070
Mika Kuoppala59bad942015-01-16 11:34:40 +02006071 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306072}
6073
Chris Wilsondc979972016-05-10 14:10:04 +01006074static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006075{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006076 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306077 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006078 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006079
6080 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6081
Imre Deakae484342014-03-31 15:10:44 +03006082 valleyview_check_pctx(dev_priv);
6083
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006084 gtfifodbg = I915_READ(GTFIFODBG);
6085 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006086 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6087 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006088 I915_WRITE(GTFIFODBG, gtfifodbg);
6089 }
6090
Deepak Sc8d9a592013-11-23 14:55:42 +05306091 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006092 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006093
Ville Syrjälä160614a2015-01-19 13:50:47 +02006094 /* Disable RC states. */
6095 I915_WRITE(GEN6_RC_CONTROL, 0);
6096
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006097 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006098 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6099 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6100 I915_WRITE(GEN6_RP_UP_EI, 66000);
6101 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6102
6103 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6104
6105 I915_WRITE(GEN6_RP_CONTROL,
6106 GEN6_RP_MEDIA_TURBO |
6107 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6108 GEN6_RP_MEDIA_IS_GFX |
6109 GEN6_RP_ENABLE |
6110 GEN6_RP_UP_BUSY_AVG |
6111 GEN6_RP_DOWN_IDLE_CONT);
6112
6113 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6114 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6115 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6116
Akash Goel3b3f1652016-10-13 22:44:48 +05306117 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006118 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006119
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006120 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006121
6122 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006123 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006124 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6125 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006126 VLV_MEDIA_RC6_COUNT_EN |
6127 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006128
Chris Wilsondc979972016-05-10 14:10:04 +01006129 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006130 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006131
Chris Wilsondc979972016-05-10 14:10:04 +01006132 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006133
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006134 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006135
Deepak S3ef62342015-04-29 08:36:24 +05306136 /* Setting Fixed Bias */
6137 val = VLV_OVERRIDE_EN |
6138 VLV_SOC_TDP_EN |
6139 VLV_BIAS_CPU_125_SOC_875;
6140 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6141
Jani Nikula64936252013-05-22 15:36:20 +03006142 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006143
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006144 /* RPS code assumes GPLL is used */
6145 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6146
Jani Nikula742f4912015-09-03 11:16:09 +03006147 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006148 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6149
Chris Wilson3a45b052016-07-13 09:10:32 +01006150 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006151
Mika Kuoppala59bad942015-01-16 11:34:40 +02006152 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006153}
6154
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006155static unsigned long intel_pxfreq(u32 vidfreq)
6156{
6157 unsigned long freq;
6158 int div = (vidfreq & 0x3f0000) >> 16;
6159 int post = (vidfreq & 0x3000) >> 12;
6160 int pre = (vidfreq & 0x7);
6161
6162 if (!pre)
6163 return 0;
6164
6165 freq = ((div * 133333) / ((1<<post) * pre));
6166
6167 return freq;
6168}
6169
Daniel Vettereb48eb02012-04-26 23:28:12 +02006170static const struct cparams {
6171 u16 i;
6172 u16 t;
6173 u16 m;
6174 u16 c;
6175} cparams[] = {
6176 { 1, 1333, 301, 28664 },
6177 { 1, 1066, 294, 24460 },
6178 { 1, 800, 294, 25192 },
6179 { 0, 1333, 276, 27605 },
6180 { 0, 1066, 276, 27605 },
6181 { 0, 800, 231, 23784 },
6182};
6183
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006184static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006185{
6186 u64 total_count, diff, ret;
6187 u32 count1, count2, count3, m = 0, c = 0;
6188 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6189 int i;
6190
Chris Wilson67520412017-03-02 13:28:01 +00006191 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006192
Daniel Vetter20e4d402012-08-08 23:35:39 +02006193 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006194
6195 /* Prevent division-by-zero if we are asking too fast.
6196 * Also, we don't get interesting results if we are polling
6197 * faster than once in 10ms, so just return the saved value
6198 * in such cases.
6199 */
6200 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006201 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006202
6203 count1 = I915_READ(DMIEC);
6204 count2 = I915_READ(DDREC);
6205 count3 = I915_READ(CSIEC);
6206
6207 total_count = count1 + count2 + count3;
6208
6209 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006210 if (total_count < dev_priv->ips.last_count1) {
6211 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006212 diff += total_count;
6213 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006214 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006215 }
6216
6217 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006218 if (cparams[i].i == dev_priv->ips.c_m &&
6219 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006220 m = cparams[i].m;
6221 c = cparams[i].c;
6222 break;
6223 }
6224 }
6225
6226 diff = div_u64(diff, diff1);
6227 ret = ((m * diff) + c);
6228 ret = div_u64(ret, 10);
6229
Daniel Vetter20e4d402012-08-08 23:35:39 +02006230 dev_priv->ips.last_count1 = total_count;
6231 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006232
Daniel Vetter20e4d402012-08-08 23:35:39 +02006233 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006234
6235 return ret;
6236}
6237
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006238unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6239{
6240 unsigned long val;
6241
Chris Wilsondc979972016-05-10 14:10:04 +01006242 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006243 return 0;
6244
6245 spin_lock_irq(&mchdev_lock);
6246
6247 val = __i915_chipset_val(dev_priv);
6248
6249 spin_unlock_irq(&mchdev_lock);
6250
6251 return val;
6252}
6253
Daniel Vettereb48eb02012-04-26 23:28:12 +02006254unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6255{
6256 unsigned long m, x, b;
6257 u32 tsfs;
6258
6259 tsfs = I915_READ(TSFS);
6260
6261 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6262 x = I915_READ8(TR1);
6263
6264 b = tsfs & TSFS_INTR_MASK;
6265
6266 return ((m * x) / 127) - b;
6267}
6268
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006269static int _pxvid_to_vd(u8 pxvid)
6270{
6271 if (pxvid == 0)
6272 return 0;
6273
6274 if (pxvid >= 8 && pxvid < 31)
6275 pxvid = 31;
6276
6277 return (pxvid + 2) * 125;
6278}
6279
6280static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006281{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006282 const int vd = _pxvid_to_vd(pxvid);
6283 const int vm = vd - 1125;
6284
Chris Wilsondc979972016-05-10 14:10:04 +01006285 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006286 return vm > 0 ? vm : 0;
6287
6288 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006289}
6290
Daniel Vetter02d71952012-08-09 16:44:54 +02006291static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006292{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006293 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006294 u32 count;
6295
Chris Wilson67520412017-03-02 13:28:01 +00006296 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006297
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006298 now = ktime_get_raw_ns();
6299 diffms = now - dev_priv->ips.last_time2;
6300 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006301
6302 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006303 if (!diffms)
6304 return;
6305
6306 count = I915_READ(GFXEC);
6307
Daniel Vetter20e4d402012-08-08 23:35:39 +02006308 if (count < dev_priv->ips.last_count2) {
6309 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006310 diff += count;
6311 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006312 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006313 }
6314
Daniel Vetter20e4d402012-08-08 23:35:39 +02006315 dev_priv->ips.last_count2 = count;
6316 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006317
6318 /* More magic constants... */
6319 diff = diff * 1181;
6320 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006321 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006322}
6323
Daniel Vetter02d71952012-08-09 16:44:54 +02006324void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6325{
Chris Wilsondc979972016-05-10 14:10:04 +01006326 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006327 return;
6328
Daniel Vetter92703882012-08-09 16:46:01 +02006329 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006330
6331 __i915_update_gfx_val(dev_priv);
6332
Daniel Vetter92703882012-08-09 16:46:01 +02006333 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006334}
6335
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006336static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006337{
6338 unsigned long t, corr, state1, corr2, state2;
6339 u32 pxvid, ext_v;
6340
Chris Wilson67520412017-03-02 13:28:01 +00006341 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006342
Ville Syrjälä616847e2015-09-18 20:03:19 +03006343 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006344 pxvid = (pxvid >> 24) & 0x7f;
6345 ext_v = pvid_to_extvid(dev_priv, pxvid);
6346
6347 state1 = ext_v;
6348
6349 t = i915_mch_val(dev_priv);
6350
6351 /* Revel in the empirically derived constants */
6352
6353 /* Correction factor in 1/100000 units */
6354 if (t > 80)
6355 corr = ((t * 2349) + 135940);
6356 else if (t >= 50)
6357 corr = ((t * 964) + 29317);
6358 else /* < 50 */
6359 corr = ((t * 301) + 1004);
6360
6361 corr = corr * ((150142 * state1) / 10000 - 78642);
6362 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006363 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006364
6365 state2 = (corr2 * state1) / 10000;
6366 state2 /= 100; /* convert to mW */
6367
Daniel Vetter02d71952012-08-09 16:44:54 +02006368 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006369
Daniel Vetter20e4d402012-08-08 23:35:39 +02006370 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006371}
6372
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006373unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6374{
6375 unsigned long val;
6376
Chris Wilsondc979972016-05-10 14:10:04 +01006377 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006378 return 0;
6379
6380 spin_lock_irq(&mchdev_lock);
6381
6382 val = __i915_gfx_val(dev_priv);
6383
6384 spin_unlock_irq(&mchdev_lock);
6385
6386 return val;
6387}
6388
Daniel Vettereb48eb02012-04-26 23:28:12 +02006389/**
6390 * i915_read_mch_val - return value for IPS use
6391 *
6392 * Calculate and return a value for the IPS driver to use when deciding whether
6393 * we have thermal and power headroom to increase CPU or GPU power budget.
6394 */
6395unsigned long i915_read_mch_val(void)
6396{
6397 struct drm_i915_private *dev_priv;
6398 unsigned long chipset_val, graphics_val, ret = 0;
6399
Daniel Vetter92703882012-08-09 16:46:01 +02006400 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006401 if (!i915_mch_dev)
6402 goto out_unlock;
6403 dev_priv = i915_mch_dev;
6404
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006405 chipset_val = __i915_chipset_val(dev_priv);
6406 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006407
6408 ret = chipset_val + graphics_val;
6409
6410out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006411 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006412
6413 return ret;
6414}
6415EXPORT_SYMBOL_GPL(i915_read_mch_val);
6416
6417/**
6418 * i915_gpu_raise - raise GPU frequency limit
6419 *
6420 * Raise the limit; IPS indicates we have thermal headroom.
6421 */
6422bool i915_gpu_raise(void)
6423{
6424 struct drm_i915_private *dev_priv;
6425 bool ret = true;
6426
Daniel Vetter92703882012-08-09 16:46:01 +02006427 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006428 if (!i915_mch_dev) {
6429 ret = false;
6430 goto out_unlock;
6431 }
6432 dev_priv = i915_mch_dev;
6433
Daniel Vetter20e4d402012-08-08 23:35:39 +02006434 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6435 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006436
6437out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006438 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006439
6440 return ret;
6441}
6442EXPORT_SYMBOL_GPL(i915_gpu_raise);
6443
6444/**
6445 * i915_gpu_lower - lower GPU frequency limit
6446 *
6447 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6448 * frequency maximum.
6449 */
6450bool i915_gpu_lower(void)
6451{
6452 struct drm_i915_private *dev_priv;
6453 bool ret = true;
6454
Daniel Vetter92703882012-08-09 16:46:01 +02006455 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006456 if (!i915_mch_dev) {
6457 ret = false;
6458 goto out_unlock;
6459 }
6460 dev_priv = i915_mch_dev;
6461
Daniel Vetter20e4d402012-08-08 23:35:39 +02006462 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6463 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006464
6465out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006466 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006467
6468 return ret;
6469}
6470EXPORT_SYMBOL_GPL(i915_gpu_lower);
6471
6472/**
6473 * i915_gpu_busy - indicate GPU business to IPS
6474 *
6475 * Tell the IPS driver whether or not the GPU is busy.
6476 */
6477bool i915_gpu_busy(void)
6478{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006479 bool ret = false;
6480
Daniel Vetter92703882012-08-09 16:46:01 +02006481 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006482 if (i915_mch_dev)
6483 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006484 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006485
6486 return ret;
6487}
6488EXPORT_SYMBOL_GPL(i915_gpu_busy);
6489
6490/**
6491 * i915_gpu_turbo_disable - disable graphics turbo
6492 *
6493 * Disable graphics turbo by resetting the max frequency and setting the
6494 * current frequency to the default.
6495 */
6496bool i915_gpu_turbo_disable(void)
6497{
6498 struct drm_i915_private *dev_priv;
6499 bool ret = true;
6500
Daniel Vetter92703882012-08-09 16:46:01 +02006501 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006502 if (!i915_mch_dev) {
6503 ret = false;
6504 goto out_unlock;
6505 }
6506 dev_priv = i915_mch_dev;
6507
Daniel Vetter20e4d402012-08-08 23:35:39 +02006508 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006509
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006510 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006511 ret = false;
6512
6513out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006514 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006515
6516 return ret;
6517}
6518EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6519
6520/**
6521 * Tells the intel_ips driver that the i915 driver is now loaded, if
6522 * IPS got loaded first.
6523 *
6524 * This awkward dance is so that neither module has to depend on the
6525 * other in order for IPS to do the appropriate communication of
6526 * GPU turbo limits to i915.
6527 */
6528static void
6529ips_ping_for_i915_load(void)
6530{
6531 void (*link)(void);
6532
6533 link = symbol_get(ips_link_to_i915_driver);
6534 if (link) {
6535 link();
6536 symbol_put(ips_link_to_i915_driver);
6537 }
6538}
6539
6540void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6541{
Daniel Vetter02d71952012-08-09 16:44:54 +02006542 /* We only register the i915 ips part with intel-ips once everything is
6543 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006544 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006545 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006546 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006547
6548 ips_ping_for_i915_load();
6549}
6550
6551void intel_gpu_ips_teardown(void)
6552{
Daniel Vetter92703882012-08-09 16:46:01 +02006553 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006554 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006555 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006556}
Deepak S76c3552f2014-01-30 23:08:16 +05306557
Chris Wilsondc979972016-05-10 14:10:04 +01006558static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006559{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006560 u32 lcfuse;
6561 u8 pxw[16];
6562 int i;
6563
6564 /* Disable to program */
6565 I915_WRITE(ECR, 0);
6566 POSTING_READ(ECR);
6567
6568 /* Program energy weights for various events */
6569 I915_WRITE(SDEW, 0x15040d00);
6570 I915_WRITE(CSIEW0, 0x007f0000);
6571 I915_WRITE(CSIEW1, 0x1e220004);
6572 I915_WRITE(CSIEW2, 0x04000004);
6573
6574 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006575 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006576 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006577 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006578
6579 /* Program P-state weights to account for frequency power adjustment */
6580 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006581 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006582 unsigned long freq = intel_pxfreq(pxvidfreq);
6583 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6584 PXVFREQ_PX_SHIFT;
6585 unsigned long val;
6586
6587 val = vid * vid;
6588 val *= (freq / 1000);
6589 val *= 255;
6590 val /= (127*127*900);
6591 if (val > 0xff)
6592 DRM_ERROR("bad pxval: %ld\n", val);
6593 pxw[i] = val;
6594 }
6595 /* Render standby states get 0 weight */
6596 pxw[14] = 0;
6597 pxw[15] = 0;
6598
6599 for (i = 0; i < 4; i++) {
6600 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6601 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006602 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006603 }
6604
6605 /* Adjust magic regs to magic values (more experimental results) */
6606 I915_WRITE(OGW0, 0);
6607 I915_WRITE(OGW1, 0);
6608 I915_WRITE(EG0, 0x00007f00);
6609 I915_WRITE(EG1, 0x0000000e);
6610 I915_WRITE(EG2, 0x000e0000);
6611 I915_WRITE(EG3, 0x68000300);
6612 I915_WRITE(EG4, 0x42000000);
6613 I915_WRITE(EG5, 0x00140031);
6614 I915_WRITE(EG6, 0);
6615 I915_WRITE(EG7, 0);
6616
6617 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006618 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006619
6620 /* Enable PMON + select events */
6621 I915_WRITE(ECR, 0x80000019);
6622
6623 lcfuse = I915_READ(LCFUSE02);
6624
Daniel Vetter20e4d402012-08-08 23:35:39 +02006625 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006626}
6627
Chris Wilsondc979972016-05-10 14:10:04 +01006628void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006629{
Imre Deakb268c692015-12-15 20:10:31 +02006630 /*
6631 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6632 * requirement.
6633 */
6634 if (!i915.enable_rc6) {
6635 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6636 intel_runtime_pm_get(dev_priv);
6637 }
Imre Deake6069ca2014-04-18 16:01:02 +03006638
Chris Wilsonb5163db2016-08-10 13:58:24 +01006639 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006640 mutex_lock(&dev_priv->rps.hw_lock);
6641
6642 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006643 if (IS_CHERRYVIEW(dev_priv))
6644 cherryview_init_gt_powersave(dev_priv);
6645 else if (IS_VALLEYVIEW(dev_priv))
6646 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006647 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006648 gen6_init_rps_frequencies(dev_priv);
6649
6650 /* Derive initial user preferences/limits from the hardware limits */
6651 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6652 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6653
6654 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6655 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6656
6657 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6658 dev_priv->rps.min_freq_softlimit =
6659 max_t(int,
6660 dev_priv->rps.efficient_freq,
6661 intel_freq_opcode(dev_priv, 450));
6662
Chris Wilson99ac9612016-07-13 09:10:34 +01006663 /* After setting max-softlimit, find the overclock max freq */
6664 if (IS_GEN6(dev_priv) ||
6665 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6666 u32 params = 0;
6667
6668 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6669 if (params & BIT(31)) { /* OC supported */
6670 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6671 (dev_priv->rps.max_freq & 0xff) * 50,
6672 (params & 0xff) * 50);
6673 dev_priv->rps.max_freq = params & 0xff;
6674 }
6675 }
6676
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006677 /* Finally allow us to boost to max by default */
6678 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6679
Chris Wilson773ea9a2016-07-13 09:10:33 +01006680 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006681 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006682
6683 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006684}
6685
Chris Wilsondc979972016-05-10 14:10:04 +01006686void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006687{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006688 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006689 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006690
6691 if (!i915.enable_rc6)
6692 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006693}
6694
Chris Wilson54b4f682016-07-21 21:16:19 +01006695/**
6696 * intel_suspend_gt_powersave - suspend PM work and helper threads
6697 * @dev_priv: i915 device
6698 *
6699 * We don't want to disable RC6 or other features here, we just want
6700 * to make sure any work we've queued has finished and won't bother
6701 * us while we're suspended.
6702 */
6703void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6704{
6705 if (INTEL_GEN(dev_priv) < 6)
6706 return;
6707
6708 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6709 intel_runtime_pm_put(dev_priv);
6710
6711 /* gen6_rps_idle() will be called later to disable interrupts */
6712}
6713
Chris Wilsonb7137e02016-07-13 09:10:37 +01006714void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6715{
6716 dev_priv->rps.enabled = true; /* force disabling */
6717 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006718
6719 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006720}
6721
Chris Wilsondc979972016-05-10 14:10:04 +01006722void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006723{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006724 if (!READ_ONCE(dev_priv->rps.enabled))
6725 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006726
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006727 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006728
Chris Wilsonb7137e02016-07-13 09:10:37 +01006729 if (INTEL_GEN(dev_priv) >= 9) {
6730 gen9_disable_rc6(dev_priv);
6731 gen9_disable_rps(dev_priv);
6732 } else if (IS_CHERRYVIEW(dev_priv)) {
6733 cherryview_disable_rps(dev_priv);
6734 } else if (IS_VALLEYVIEW(dev_priv)) {
6735 valleyview_disable_rps(dev_priv);
6736 } else if (INTEL_GEN(dev_priv) >= 6) {
6737 gen6_disable_rps(dev_priv);
6738 } else if (IS_IRONLAKE_M(dev_priv)) {
6739 ironlake_disable_drps(dev_priv);
6740 }
6741
6742 dev_priv->rps.enabled = false;
6743 mutex_unlock(&dev_priv->rps.hw_lock);
6744}
6745
6746void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6747{
Chris Wilson54b4f682016-07-21 21:16:19 +01006748 /* We shouldn't be disabling as we submit, so this should be less
6749 * racy than it appears!
6750 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006751 if (READ_ONCE(dev_priv->rps.enabled))
6752 return;
6753
6754 /* Powersaving is controlled by the host when inside a VM */
6755 if (intel_vgpu_active(dev_priv))
6756 return;
6757
6758 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006759
Chris Wilsondc979972016-05-10 14:10:04 +01006760 if (IS_CHERRYVIEW(dev_priv)) {
6761 cherryview_enable_rps(dev_priv);
6762 } else if (IS_VALLEYVIEW(dev_priv)) {
6763 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006764 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006765 gen9_enable_rc6(dev_priv);
6766 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08006767 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006768 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006769 } else if (IS_BROADWELL(dev_priv)) {
6770 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006771 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006772 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006773 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006774 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006775 } else if (IS_IRONLAKE_M(dev_priv)) {
6776 ironlake_enable_drps(dev_priv);
6777 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006778 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006779
6780 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6781 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6782
6783 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6784 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6785
Chris Wilson54b4f682016-07-21 21:16:19 +01006786 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006787 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006788}
Imre Deakc6df39b2014-04-14 20:24:29 +03006789
Chris Wilson54b4f682016-07-21 21:16:19 +01006790static void __intel_autoenable_gt_powersave(struct work_struct *work)
6791{
6792 struct drm_i915_private *dev_priv =
6793 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6794 struct intel_engine_cs *rcs;
6795 struct drm_i915_gem_request *req;
6796
6797 if (READ_ONCE(dev_priv->rps.enabled))
6798 goto out;
6799
Akash Goel3b3f1652016-10-13 22:44:48 +05306800 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00006801 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01006802 goto out;
6803
6804 if (!rcs->init_context)
6805 goto out;
6806
6807 mutex_lock(&dev_priv->drm.struct_mutex);
6808
6809 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6810 if (IS_ERR(req))
6811 goto unlock;
6812
6813 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6814 rcs->init_context(req);
6815
6816 /* Mark the device busy, calling intel_enable_gt_powersave() */
6817 i915_add_request_no_flush(req);
6818
6819unlock:
6820 mutex_unlock(&dev_priv->drm.struct_mutex);
6821out:
6822 intel_runtime_pm_put(dev_priv);
6823}
6824
6825void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6826{
6827 if (READ_ONCE(dev_priv->rps.enabled))
6828 return;
6829
6830 if (IS_IRONLAKE_M(dev_priv)) {
6831 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006832 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006833 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6834 /*
6835 * PCU communication is slow and this doesn't need to be
6836 * done at any specific time, so do this out of our fast path
6837 * to make resume and init faster.
6838 *
6839 * We depend on the HW RC6 power context save/restore
6840 * mechanism when entering D3 through runtime PM suspend. So
6841 * disable RPM until RPS/RC6 is properly setup. We can only
6842 * get here via the driver load/system resume/runtime resume
6843 * paths, so the _noresume version is enough (and in case of
6844 * runtime resume it's necessary).
6845 */
6846 if (queue_delayed_work(dev_priv->wq,
6847 &dev_priv->rps.autoenable_work,
6848 round_jiffies_up_relative(HZ)))
6849 intel_runtime_pm_get_noresume(dev_priv);
6850 }
6851}
6852
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006853static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006854{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006855 /*
6856 * On Ibex Peak and Cougar Point, we need to disable clock
6857 * gating for the panel power sequencer or it will fail to
6858 * start up when no ports are active.
6859 */
6860 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6861}
6862
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006863static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006864{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006865 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006866
Damien Lespiau055e3932014-08-18 13:49:10 +01006867 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006868 I915_WRITE(DSPCNTR(pipe),
6869 I915_READ(DSPCNTR(pipe)) |
6870 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006871
6872 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6873 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006874 }
6875}
6876
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006877static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006878{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006879 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6880 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6881 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6882
6883 /*
6884 * Don't touch WM1S_LP_EN here.
6885 * Doing so could cause underruns.
6886 */
6887}
6888
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006889static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006890{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006891 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006892
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006893 /*
6894 * Required for FBC
6895 * WaFbcDisableDpfcClockGating:ilk
6896 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006897 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6898 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6899 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006900
6901 I915_WRITE(PCH_3DCGDIS0,
6902 MARIUNIT_CLOCK_GATE_DISABLE |
6903 SVSMUNIT_CLOCK_GATE_DISABLE);
6904 I915_WRITE(PCH_3DCGDIS1,
6905 VFMUNIT_CLOCK_GATE_DISABLE);
6906
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006907 /*
6908 * According to the spec the following bits should be set in
6909 * order to enable memory self-refresh
6910 * The bit 22/21 of 0x42004
6911 * The bit 5 of 0x42020
6912 * The bit 15 of 0x45000
6913 */
6914 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6915 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6916 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006917 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006918 I915_WRITE(DISP_ARB_CTL,
6919 (I915_READ(DISP_ARB_CTL) |
6920 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006921
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006922 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006923
6924 /*
6925 * Based on the document from hardware guys the following bits
6926 * should be set unconditionally in order to enable FBC.
6927 * The bit 22 of 0x42000
6928 * The bit 22 of 0x42004
6929 * The bit 7,8,9 of 0x42020.
6930 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006931 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006932 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006933 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6934 I915_READ(ILK_DISPLAY_CHICKEN1) |
6935 ILK_FBCQ_DIS);
6936 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6937 I915_READ(ILK_DISPLAY_CHICKEN2) |
6938 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006939 }
6940
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006941 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6942
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006943 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6944 I915_READ(ILK_DISPLAY_CHICKEN2) |
6945 ILK_ELPIN_409_SELECT);
6946 I915_WRITE(_3D_CHICKEN2,
6947 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6948 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006949
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006950 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006951 I915_WRITE(CACHE_MODE_0,
6952 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006953
Akash Goel4e046322014-04-04 17:14:38 +05306954 /* WaDisable_RenderCache_OperationalFlush:ilk */
6955 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6956
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006957 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006958
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006959 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006960}
6961
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006962static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006963{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006964 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006965 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006966
6967 /*
6968 * On Ibex Peak and Cougar Point, we need to disable clock
6969 * gating for the panel power sequencer or it will fail to
6970 * start up when no ports are active.
6971 */
Jesse Barnescd664072013-10-02 10:34:19 -07006972 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6973 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6974 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006975 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6976 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006977 /* The below fixes the weird display corruption, a few pixels shifted
6978 * downward, on (only) LVDS of some HP laptops with IVY.
6979 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006980 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006981 val = I915_READ(TRANS_CHICKEN2(pipe));
6982 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6983 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006984 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006985 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006986 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
6987 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6988 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006989 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6990 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006991 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006992 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006993 I915_WRITE(TRANS_CHICKEN1(pipe),
6994 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6995 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006996}
6997
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006998static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006999{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007000 uint32_t tmp;
7001
7002 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02007003 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
7004 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7005 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007006}
7007
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007008static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007009{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007010 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007011
Damien Lespiau231e54f2012-10-19 17:55:41 +01007012 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007013
7014 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7015 I915_READ(ILK_DISPLAY_CHICKEN2) |
7016 ILK_ELPIN_409_SELECT);
7017
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007018 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007019 I915_WRITE(_3D_CHICKEN,
7020 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7021
Akash Goel4e046322014-04-04 17:14:38 +05307022 /* WaDisable_RenderCache_OperationalFlush:snb */
7023 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7024
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007025 /*
7026 * BSpec recoomends 8x4 when MSAA is used,
7027 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007028 *
7029 * Note that PS/WM thread counts depend on the WIZ hashing
7030 * disable bit, which we don't touch here, but it's good
7031 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007032 */
7033 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007034 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007035
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007036 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007037
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007038 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007039 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007040
7041 I915_WRITE(GEN6_UCGCTL1,
7042 I915_READ(GEN6_UCGCTL1) |
7043 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7044 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7045
7046 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7047 * gating disable must be set. Failure to set it results in
7048 * flickering pixels due to Z write ordering failures after
7049 * some amount of runtime in the Mesa "fire" demo, and Unigine
7050 * Sanctuary and Tropics, and apparently anything else with
7051 * alpha test or pixel discard.
7052 *
7053 * According to the spec, bit 11 (RCCUNIT) must also be set,
7054 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007055 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007056 * WaDisableRCCUnitClockGating:snb
7057 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007058 */
7059 I915_WRITE(GEN6_UCGCTL2,
7060 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7061 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7062
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007063 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007064 I915_WRITE(_3D_CHICKEN3,
7065 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007066
7067 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007068 * Bspec says:
7069 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7070 * 3DSTATE_SF number of SF output attributes is more than 16."
7071 */
7072 I915_WRITE(_3D_CHICKEN3,
7073 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7074
7075 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007076 * According to the spec the following bits should be
7077 * set in order to enable memory self-refresh and fbc:
7078 * The bit21 and bit22 of 0x42000
7079 * The bit21 and bit22 of 0x42004
7080 * The bit5 and bit7 of 0x42020
7081 * The bit14 of 0x70180
7082 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007083 *
7084 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007085 */
7086 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7087 I915_READ(ILK_DISPLAY_CHICKEN1) |
7088 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7089 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7090 I915_READ(ILK_DISPLAY_CHICKEN2) |
7091 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007092 I915_WRITE(ILK_DSPCLK_GATE_D,
7093 I915_READ(ILK_DSPCLK_GATE_D) |
7094 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7095 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007096
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007097 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007098
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007099 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007100
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007101 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007102}
7103
7104static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7105{
7106 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7107
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007108 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007109 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007110 *
7111 * This actually overrides the dispatch
7112 * mode for all thread types.
7113 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007114 reg &= ~GEN7_FF_SCHED_MASK;
7115 reg |= GEN7_FF_TS_SCHED_HW;
7116 reg |= GEN7_FF_VS_SCHED_HW;
7117 reg |= GEN7_FF_DS_SCHED_HW;
7118
7119 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7120}
7121
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007122static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007123{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007124 /*
7125 * TODO: this bit should only be enabled when really needed, then
7126 * disabled when not needed anymore in order to save power.
7127 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007128 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007129 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7130 I915_READ(SOUTH_DSPCLK_GATE_D) |
7131 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007132
7133 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007134 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7135 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007136 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007137}
7138
Ville Syrjälä712bf362016-10-31 22:37:23 +02007139static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007140{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007141 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007142 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7143
7144 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7145 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7146 }
7147}
7148
Imre Deak450174f2016-05-03 15:54:21 +03007149static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7150 int general_prio_credits,
7151 int high_prio_credits)
7152{
7153 u32 misccpctl;
7154
7155 /* WaTempDisableDOPClkGating:bdw */
7156 misccpctl = I915_READ(GEN7_MISCCPCTL);
7157 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7158
7159 I915_WRITE(GEN8_L3SQCREG1,
7160 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7161 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7162
7163 /*
7164 * Wait at least 100 clocks before re-enabling clock gating.
7165 * See the definition of L3SQCREG1 in BSpec.
7166 */
7167 POSTING_READ(GEN8_L3SQCREG1);
7168 udelay(1);
7169 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7170}
7171
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007172static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007173{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007174 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007175
7176 /* WaDisableSDEUnitClockGating:kbl */
7177 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7178 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7179 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007180
7181 /* WaDisableGamClockGating:kbl */
7182 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7183 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7184 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007185
7186 /* WaFbcNukeOnHostModify:kbl */
7187 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7188 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007189}
7190
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007191static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007192{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007193 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007194
7195 /* WAC6entrylatency:skl */
7196 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7197 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007198
7199 /* WaFbcNukeOnHostModify:skl */
7200 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7201 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007202}
7203
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007204static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007205{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007206 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007207
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007208 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007209
Ben Widawskyab57fff2013-12-12 15:28:04 -08007210 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007211 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007212
Ben Widawskyab57fff2013-12-12 15:28:04 -08007213 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007214 I915_WRITE(CHICKEN_PAR1_1,
7215 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7216
Ben Widawskyab57fff2013-12-12 15:28:04 -08007217 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007218 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007219 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007220 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007221 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007222 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007223
Ben Widawskyab57fff2013-12-12 15:28:04 -08007224 /* WaVSRefCountFullforceMissDisable:bdw */
7225 /* WaDSRefCountFullforceMissDisable:bdw */
7226 I915_WRITE(GEN7_FF_THREAD_MODE,
7227 I915_READ(GEN7_FF_THREAD_MODE) &
7228 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007229
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007230 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7231 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007232
7233 /* WaDisableSDEUnitClockGating:bdw */
7234 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7235 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007236
Imre Deak450174f2016-05-03 15:54:21 +03007237 /* WaProgramL3SqcReg1Default:bdw */
7238 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007239
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007240 /*
7241 * WaGttCachingOffByDefault:bdw
7242 * GTT cache may not work with big pages, so if those
7243 * are ever enabled GTT cache may need to be disabled.
7244 */
7245 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7246
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007247 /* WaKVMNotificationOnConfigChange:bdw */
7248 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7249 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7250
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007251 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007252
7253 /* WaDisableDopClockGating:bdw
7254 *
7255 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7256 * clock gating.
7257 */
7258 I915_WRITE(GEN6_UCGCTL1,
7259 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007260}
7261
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007262static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007263{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007264 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007265
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007266 /* L3 caching of data atomics doesn't work -- disable it. */
7267 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7268 I915_WRITE(HSW_ROW_CHICKEN3,
7269 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7270
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007271 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007272 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7273 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7274 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7275
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007276 /* WaVSRefCountFullforceMissDisable:hsw */
7277 I915_WRITE(GEN7_FF_THREAD_MODE,
7278 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007279
Akash Goel4e046322014-04-04 17:14:38 +05307280 /* WaDisable_RenderCache_OperationalFlush:hsw */
7281 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7282
Chia-I Wufe27c602014-01-28 13:29:33 +08007283 /* enable HiZ Raw Stall Optimization */
7284 I915_WRITE(CACHE_MODE_0_GEN7,
7285 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7286
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007287 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007288 I915_WRITE(CACHE_MODE_1,
7289 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007290
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007291 /*
7292 * BSpec recommends 8x4 when MSAA is used,
7293 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007294 *
7295 * Note that PS/WM thread counts depend on the WIZ hashing
7296 * disable bit, which we don't touch here, but it's good
7297 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007298 */
7299 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007300 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007301
Kenneth Graunke94411592014-12-31 16:23:00 -08007302 /* WaSampleCChickenBitEnable:hsw */
7303 I915_WRITE(HALF_SLICE_CHICKEN3,
7304 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7305
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007306 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007307 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7308
Paulo Zanoni90a88642013-05-03 17:23:45 -03007309 /* WaRsPkgCStateDisplayPMReq:hsw */
7310 I915_WRITE(CHICKEN_PAR1_1,
7311 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007312
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007313 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007314}
7315
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007316static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007317{
Ben Widawsky20848222012-05-04 18:58:59 -07007318 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007319
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007320 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007321
Damien Lespiau231e54f2012-10-19 17:55:41 +01007322 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007323
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007324 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007325 I915_WRITE(_3D_CHICKEN3,
7326 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7327
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007328 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007329 I915_WRITE(IVB_CHICKEN3,
7330 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7331 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7332
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007333 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007334 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007335 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7336 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007337
Akash Goel4e046322014-04-04 17:14:38 +05307338 /* WaDisable_RenderCache_OperationalFlush:ivb */
7339 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7340
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007341 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007342 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7343 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7344
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007345 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007346 I915_WRITE(GEN7_L3CNTLREG1,
7347 GEN7_WA_FOR_GEN7_L3_CONTROL);
7348 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007349 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007350 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007351 I915_WRITE(GEN7_ROW_CHICKEN2,
7352 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007353 else {
7354 /* must write both registers */
7355 I915_WRITE(GEN7_ROW_CHICKEN2,
7356 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007357 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7358 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007359 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007360
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007361 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007362 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7363 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7364
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007365 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007366 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007367 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007368 */
7369 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007370 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007371
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007372 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007373 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7374 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7375 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7376
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007377 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007378
7379 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007380
Chris Wilson22721342014-03-04 09:41:43 +00007381 if (0) { /* causes HiZ corruption on ivb:gt1 */
7382 /* enable HiZ Raw Stall Optimization */
7383 I915_WRITE(CACHE_MODE_0_GEN7,
7384 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7385 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007386
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007387 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007388 I915_WRITE(CACHE_MODE_1,
7389 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007390
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007391 /*
7392 * BSpec recommends 8x4 when MSAA is used,
7393 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007394 *
7395 * Note that PS/WM thread counts depend on the WIZ hashing
7396 * disable bit, which we don't touch here, but it's good
7397 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007398 */
7399 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007400 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007401
Ben Widawsky20848222012-05-04 18:58:59 -07007402 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7403 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7404 snpcr |= GEN6_MBC_SNPCR_MED;
7405 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007406
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007407 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007408 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007409
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007410 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007411}
7412
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007413static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007414{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007415 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007416 I915_WRITE(_3D_CHICKEN3,
7417 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7418
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007419 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007420 I915_WRITE(IVB_CHICKEN3,
7421 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7422 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7423
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007424 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007425 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007426 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007427 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7428 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007429
Akash Goel4e046322014-04-04 17:14:38 +05307430 /* WaDisable_RenderCache_OperationalFlush:vlv */
7431 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7432
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007433 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007434 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7435 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7436
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007437 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007438 I915_WRITE(GEN7_ROW_CHICKEN2,
7439 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7440
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007441 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007442 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7443 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7444 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7445
Ville Syrjälä46680e02014-01-22 21:33:01 +02007446 gen7_setup_fixed_func_scheduler(dev_priv);
7447
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007448 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007449 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007450 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007451 */
7452 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007453 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007454
Akash Goelc98f5062014-03-24 23:00:07 +05307455 /* WaDisableL3Bank2xClockGate:vlv
7456 * Disabling L3 clock gating- MMIO 940c[25] = 1
7457 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7458 I915_WRITE(GEN7_UCGCTL4,
7459 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007460
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007461 /*
7462 * BSpec says this must be set, even though
7463 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7464 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007465 I915_WRITE(CACHE_MODE_1,
7466 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007467
7468 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007469 * BSpec recommends 8x4 when MSAA is used,
7470 * however in practice 16x4 seems fastest.
7471 *
7472 * Note that PS/WM thread counts depend on the WIZ hashing
7473 * disable bit, which we don't touch here, but it's good
7474 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7475 */
7476 I915_WRITE(GEN7_GT_MODE,
7477 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7478
7479 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007480 * WaIncreaseL3CreditsForVLVB0:vlv
7481 * This is the hardware default actually.
7482 */
7483 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7484
7485 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007486 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007487 * Disable clock gating on th GCFG unit to prevent a delay
7488 * in the reporting of vblank events.
7489 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007490 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007491}
7492
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007493static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007494{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007495 /* WaVSRefCountFullforceMissDisable:chv */
7496 /* WaDSRefCountFullforceMissDisable:chv */
7497 I915_WRITE(GEN7_FF_THREAD_MODE,
7498 I915_READ(GEN7_FF_THREAD_MODE) &
7499 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007500
7501 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7502 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7503 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007504
7505 /* WaDisableCSUnitClockGating:chv */
7506 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7507 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007508
7509 /* WaDisableSDEUnitClockGating:chv */
7510 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7511 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007512
7513 /*
Imre Deak450174f2016-05-03 15:54:21 +03007514 * WaProgramL3SqcReg1Default:chv
7515 * See gfxspecs/Related Documents/Performance Guide/
7516 * LSQC Setting Recommendations.
7517 */
7518 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7519
7520 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007521 * GTT cache may not work with big pages, so if those
7522 * are ever enabled GTT cache may need to be disabled.
7523 */
7524 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007525}
7526
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007527static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007528{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007529 uint32_t dspclk_gate;
7530
7531 I915_WRITE(RENCLK_GATE_D1, 0);
7532 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7533 GS_UNIT_CLOCK_GATE_DISABLE |
7534 CL_UNIT_CLOCK_GATE_DISABLE);
7535 I915_WRITE(RAMCLK_GATE_D, 0);
7536 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7537 OVRUNIT_CLOCK_GATE_DISABLE |
7538 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007539 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007540 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7541 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007542
7543 /* WaDisableRenderCachePipelinedFlush */
7544 I915_WRITE(CACHE_MODE_0,
7545 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007546
Akash Goel4e046322014-04-04 17:14:38 +05307547 /* WaDisable_RenderCache_OperationalFlush:g4x */
7548 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7549
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007550 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007551}
7552
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007553static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007554{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007555 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7556 I915_WRITE(RENCLK_GATE_D2, 0);
7557 I915_WRITE(DSPCLK_GATE_D, 0);
7558 I915_WRITE(RAMCLK_GATE_D, 0);
7559 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007560 I915_WRITE(MI_ARB_STATE,
7561 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307562
7563 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7564 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007565}
7566
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007567static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007568{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007569 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7570 I965_RCC_CLOCK_GATE_DISABLE |
7571 I965_RCPB_CLOCK_GATE_DISABLE |
7572 I965_ISC_CLOCK_GATE_DISABLE |
7573 I965_FBC_CLOCK_GATE_DISABLE);
7574 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007575 I915_WRITE(MI_ARB_STATE,
7576 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307577
7578 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7579 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007580}
7581
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007582static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007583{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007584 u32 dstate = I915_READ(D_STATE);
7585
7586 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7587 DSTATE_DOT_CLOCK_GATING;
7588 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007589
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007590 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007591 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007592
7593 /* IIR "flip pending" means done if this bit is set */
7594 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007595
7596 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007597 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007598
7599 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7600 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007601
7602 I915_WRITE(MI_ARB_STATE,
7603 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007604}
7605
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007606static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007607{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007608 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007609
7610 /* interrupts should cause a wake up from C3 */
7611 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7612 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007613
7614 I915_WRITE(MEM_MODE,
7615 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007616}
7617
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007618static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007619{
Ville Syrjälä10383922014-08-15 01:21:54 +03007620 I915_WRITE(MEM_MODE,
7621 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7622 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007623}
7624
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007625void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007626{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007627 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007628}
7629
Ville Syrjälä712bf362016-10-31 22:37:23 +02007630void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007631{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007632 if (HAS_PCH_LPT(dev_priv))
7633 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007634}
7635
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007636static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007637{
7638 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7639}
7640
7641/**
7642 * intel_init_clock_gating_hooks - setup the clock gating hooks
7643 * @dev_priv: device private
7644 *
7645 * Setup the hooks that configure which clocks of a given platform can be
7646 * gated and also apply various GT and display specific workarounds for these
7647 * platforms. Note that some GT specific workarounds are applied separately
7648 * when GPU contexts or batchbuffers start their execution.
7649 */
7650void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7651{
7652 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007653 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007654 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007655 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007656 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007657 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007658 else if (IS_GEMINILAKE(dev_priv))
7659 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007660 else if (IS_BROADWELL(dev_priv))
7661 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7662 else if (IS_CHERRYVIEW(dev_priv))
7663 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7664 else if (IS_HASWELL(dev_priv))
7665 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7666 else if (IS_IVYBRIDGE(dev_priv))
7667 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7668 else if (IS_VALLEYVIEW(dev_priv))
7669 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7670 else if (IS_GEN6(dev_priv))
7671 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7672 else if (IS_GEN5(dev_priv))
7673 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7674 else if (IS_G4X(dev_priv))
7675 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007676 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007677 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007678 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007679 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7680 else if (IS_GEN3(dev_priv))
7681 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7682 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7683 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7684 else if (IS_GEN2(dev_priv))
7685 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7686 else {
7687 MISSING_CASE(INTEL_DEVID(dev_priv));
7688 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7689 }
7690}
7691
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007692/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007693void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007694{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007695 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007696
Daniel Vetterc921aba2012-04-26 23:28:17 +02007697 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007698 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007699 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007700 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007701 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007702
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007703 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007704 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007705 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007706 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007707 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007708 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007709 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007710 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007711
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007712 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007713 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007714 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007715 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007716 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007717 dev_priv->display.compute_intermediate_wm =
7718 ilk_compute_intermediate_wm;
7719 dev_priv->display.initial_watermarks =
7720 ilk_initial_watermarks;
7721 dev_priv->display.optimize_watermarks =
7722 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007723 } else {
7724 DRM_DEBUG_KMS("Failed to read display plane latency. "
7725 "Disable CxSR\n");
7726 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007727 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007728 vlv_setup_wm_latency(dev_priv);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007729 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007730 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007731 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007732 dev_priv->is_ddr3,
7733 dev_priv->fsb_freq,
7734 dev_priv->mem_freq)) {
7735 DRM_INFO("failed to find known CxSR latency "
7736 "(found ddr%s fsb freq %d, mem freq %d), "
7737 "disabling CxSR\n",
7738 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7739 dev_priv->fsb_freq, dev_priv->mem_freq);
7740 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007741 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007742 dev_priv->display.update_wm = NULL;
7743 } else
7744 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007745 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007746 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007747 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007748 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007749 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007750 dev_priv->display.update_wm = i9xx_update_wm;
7751 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007752 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007753 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007754 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007755 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007756 } else {
7757 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007758 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007759 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007760 } else {
7761 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007762 }
7763}
7764
Lyude87660502016-08-17 15:55:53 -04007765static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7766{
7767 uint32_t flags =
7768 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7769
7770 switch (flags) {
7771 case GEN6_PCODE_SUCCESS:
7772 return 0;
7773 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7774 case GEN6_PCODE_ILLEGAL_CMD:
7775 return -ENXIO;
7776 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007777 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007778 return -EOVERFLOW;
7779 case GEN6_PCODE_TIMEOUT:
7780 return -ETIMEDOUT;
7781 default:
7782 MISSING_CASE(flags)
7783 return 0;
7784 }
7785}
7786
7787static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7788{
7789 uint32_t flags =
7790 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7791
7792 switch (flags) {
7793 case GEN6_PCODE_SUCCESS:
7794 return 0;
7795 case GEN6_PCODE_ILLEGAL_CMD:
7796 return -ENXIO;
7797 case GEN7_PCODE_TIMEOUT:
7798 return -ETIMEDOUT;
7799 case GEN7_PCODE_ILLEGAL_DATA:
7800 return -EINVAL;
7801 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7802 return -EOVERFLOW;
7803 default:
7804 MISSING_CASE(flags);
7805 return 0;
7806 }
7807}
7808
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007809int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007810{
Lyude87660502016-08-17 15:55:53 -04007811 int status;
7812
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007813 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007814
Chris Wilson3f5582d2016-06-30 15:32:45 +01007815 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7816 * use te fw I915_READ variants to reduce the amount of work
7817 * required when reading/writing.
7818 */
7819
7820 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007821 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7822 return -EAGAIN;
7823 }
7824
Chris Wilson3f5582d2016-06-30 15:32:45 +01007825 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7826 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7827 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007828
Chris Wilson3f5582d2016-06-30 15:32:45 +01007829 if (intel_wait_for_register_fw(dev_priv,
7830 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7831 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007832 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7833 return -ETIMEDOUT;
7834 }
7835
Chris Wilson3f5582d2016-06-30 15:32:45 +01007836 *val = I915_READ_FW(GEN6_PCODE_DATA);
7837 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007838
Lyude87660502016-08-17 15:55:53 -04007839 if (INTEL_GEN(dev_priv) > 6)
7840 status = gen7_check_mailbox_status(dev_priv);
7841 else
7842 status = gen6_check_mailbox_status(dev_priv);
7843
7844 if (status) {
7845 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7846 status);
7847 return status;
7848 }
7849
Ben Widawsky42c05262012-09-26 10:34:00 -07007850 return 0;
7851}
7852
Chris Wilson3f5582d2016-06-30 15:32:45 +01007853int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007854 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007855{
Lyude87660502016-08-17 15:55:53 -04007856 int status;
7857
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007858 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007859
Chris Wilson3f5582d2016-06-30 15:32:45 +01007860 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7861 * use te fw I915_READ variants to reduce the amount of work
7862 * required when reading/writing.
7863 */
7864
7865 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007866 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7867 return -EAGAIN;
7868 }
7869
Chris Wilson3f5582d2016-06-30 15:32:45 +01007870 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02007871 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01007872 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007873
Chris Wilson3f5582d2016-06-30 15:32:45 +01007874 if (intel_wait_for_register_fw(dev_priv,
7875 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7876 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007877 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7878 return -ETIMEDOUT;
7879 }
7880
Chris Wilson3f5582d2016-06-30 15:32:45 +01007881 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007882
Lyude87660502016-08-17 15:55:53 -04007883 if (INTEL_GEN(dev_priv) > 6)
7884 status = gen7_check_mailbox_status(dev_priv);
7885 else
7886 status = gen6_check_mailbox_status(dev_priv);
7887
7888 if (status) {
7889 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7890 status);
7891 return status;
7892 }
7893
Ben Widawsky42c05262012-09-26 10:34:00 -07007894 return 0;
7895}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007896
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007897static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
7898 u32 request, u32 reply_mask, u32 reply,
7899 u32 *status)
7900{
7901 u32 val = request;
7902
7903 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
7904
7905 return *status || ((val & reply_mask) == reply);
7906}
7907
7908/**
7909 * skl_pcode_request - send PCODE request until acknowledgment
7910 * @dev_priv: device private
7911 * @mbox: PCODE mailbox ID the request is targeted for
7912 * @request: request ID
7913 * @reply_mask: mask used to check for request acknowledgment
7914 * @reply: value used to check for request acknowledgment
7915 * @timeout_base_ms: timeout for polling with preemption enabled
7916 *
7917 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02007918 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007919 * The request is acknowledged once the PCODE reply dword equals @reply after
7920 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02007921 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007922 * preemption disabled.
7923 *
7924 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
7925 * other error as reported by PCODE.
7926 */
7927int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
7928 u32 reply_mask, u32 reply, int timeout_base_ms)
7929{
7930 u32 status;
7931 int ret;
7932
7933 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
7934
7935#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
7936 &status)
7937
7938 /*
7939 * Prime the PCODE by doing a request first. Normally it guarantees
7940 * that a subsequent request, at most @timeout_base_ms later, succeeds.
7941 * _wait_for() doesn't guarantee when its passed condition is evaluated
7942 * first, so send the first request explicitly.
7943 */
7944 if (COND) {
7945 ret = 0;
7946 goto out;
7947 }
7948 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
7949 if (!ret)
7950 goto out;
7951
7952 /*
7953 * The above can time out if the number of requests was low (2 in the
7954 * worst case) _and_ PCODE was busy for some reason even after a
7955 * (queued) request and @timeout_base_ms delay. As a workaround retry
7956 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02007957 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007958 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02007959 * requests, and for any quirks of the PCODE firmware that delays
7960 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007961 */
7962 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
7963 WARN_ON_ONCE(timeout_base_ms > 3);
7964 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02007965 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007966 preempt_enable();
7967
7968out:
7969 return ret ? ret : status;
7970#undef COND
7971}
7972
Ville Syrjälädd06f882014-11-10 22:55:12 +02007973static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7974{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007975 /*
7976 * N = val - 0xb7
7977 * Slow = Fast = GPLL ref * N
7978 */
7979 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007980}
7981
Fengguang Wub55dd642014-07-12 11:21:39 +02007982static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007983{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007984 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007985}
7986
Fengguang Wub55dd642014-07-12 11:21:39 +02007987static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307988{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007989 /*
7990 * N = val / 2
7991 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7992 */
7993 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307994}
7995
Fengguang Wub55dd642014-07-12 11:21:39 +02007996static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307997{
Ville Syrjälä1c147622014-08-18 14:42:43 +03007998 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007999 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05308000}
8001
Ville Syrjälä616bc822015-01-23 21:04:25 +02008002int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
8003{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008004 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008005 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
8006 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008007 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008008 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008009 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008010 return byt_gpu_freq(dev_priv, val);
8011 else
8012 return val * GT_FREQUENCY_MULTIPLIER;
8013}
8014
Ville Syrjälä616bc822015-01-23 21:04:25 +02008015int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
8016{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008017 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008018 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
8019 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008020 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008021 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008022 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008023 return byt_freq_opcode(dev_priv, val);
8024 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008025 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308026}
8027
Chris Wilson6ad790c2015-04-07 16:20:31 +01008028struct request_boost {
8029 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008030 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008031};
8032
8033static void __intel_rps_boost_work(struct work_struct *work)
8034{
8035 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008036 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008037
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008038 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008039 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008040
Chris Wilsone8a261e2016-07-20 13:31:49 +01008041 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008042 kfree(boost);
8043}
8044
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008045void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008046{
8047 struct request_boost *boost;
8048
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008049 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008050 return;
8051
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008052 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008053 return;
8054
Chris Wilson6ad790c2015-04-07 16:20:31 +01008055 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8056 if (boost == NULL)
8057 return;
8058
Chris Wilsone8a261e2016-07-20 13:31:49 +01008059 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008060
8061 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008062 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008063}
8064
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008065void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008066{
Daniel Vetterf742a552013-12-06 10:17:53 +01008067 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008068 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008069
Chris Wilson54b4f682016-07-21 21:16:19 +01008070 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8071 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008072 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008073
Paulo Zanoni33688d92014-03-07 20:08:19 -03008074 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008075 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008076}