blob: 824d5b0806b920eb76e96255e1289f9df670be4b [file] [log] [blame]
Eugeni Dodonov85208be2012-04-16 22:20:34 -03001/*
2 * Copyright © 2012 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
25 *
26 */
27
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -030028#include <linux/cpufreq.h>
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -070029#include <drm/drm_plane_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030030#include "i915_drv.h"
31#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020032#include "../../../platform/x86/intel_ips.h"
33#include <linux/module.h>
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +020034#include <drm/drm_atomic_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030035
Ben Widawskydc39fff2013-10-18 12:32:07 -070036/**
Jani Nikula18afd442016-01-18 09:19:48 +020037 * DOC: RC6
38 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070039 * RC6 is a special power stage which allows the GPU to enter an very
40 * low-voltage mode when idle, using down to 0V while at this stage. This
41 * stage is entered automatically when the GPU is idle when RC6 support is
42 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
43 *
44 * There are different RC6 modes available in Intel GPU, which differentiate
45 * among each other with the latency required to enter and leave RC6 and
46 * voltage consumed by the GPU in different states.
47 *
48 * The combination of the following flags define which states GPU is allowed
49 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
50 * RC6pp is deepest RC6. Their support by hardware varies according to the
51 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
52 * which brings the most power savings; deeper states save more power, but
53 * require higher latency to switch to and wake up.
54 */
55#define INTEL_RC6_ENABLE (1<<0)
56#define INTEL_RC6p_ENABLE (1<<1)
57#define INTEL_RC6pp_ENABLE (1<<2)
58
Ville Syrjälä46f16e62016-10-31 22:37:22 +020059static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030060{
Mika Kuoppalab033bb62016-06-07 17:19:04 +030061 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl */
62 I915_WRITE(CHICKEN_PAR1_1,
63 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
64
65 I915_WRITE(GEN8_CONFIG0,
66 I915_READ(GEN8_CONFIG0) | GEN9_DEFAULT_FIXES);
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030067
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +020068 /* WaEnableChickenDCPR:skl,bxt,kbl,glk */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030069 I915_WRITE(GEN8_CHICKEN_DCPR_1,
70 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030071
72 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl */
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +020073 /* WaFbcWakeMemOn:skl,bxt,kbl,glk */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030074 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
75 DISP_FBC_WM_DIS |
76 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030077
78 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl */
79 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
80 ILK_DPFC_DISABLE_DUMMY0);
Mika Kuoppalab033bb62016-06-07 17:19:04 +030081}
82
Ville Syrjälä46f16e62016-10-31 22:37:22 +020083static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +020084{
Ville Syrjälä46f16e62016-10-31 22:37:22 +020085 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +020086
Nick Hoatha7546152015-06-29 14:07:32 +010087 /* WaDisableSDEUnitClockGating:bxt */
88 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
89 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
90
Imre Deak32608ca2015-03-11 11:10:27 +020091 /*
92 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020093 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +020094 */
Imre Deak32608ca2015-03-11 11:10:27 +020095 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +020096 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +020097
98 /*
99 * Wa: Backlight PWM may stop in the asserted state, causing backlight
100 * to stay fully on.
101 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200102 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
103 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200104}
105
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200106static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
107{
108 gen9_init_clock_gating(dev_priv);
109
110 /*
111 * WaDisablePWMClockGating:glk
112 * Backlight PWM may stop in the asserted state, causing backlight
113 * to stay fully on.
114 */
115 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
116 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200117
118 /* WaDDIIOTimeout:glk */
119 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
120 u32 val = I915_READ(CHICKEN_MISC_2);
121 val &= ~(GLK_CL0_PWR_DOWN |
122 GLK_CL1_PWR_DOWN |
123 GLK_CL2_PWR_DOWN);
124 I915_WRITE(CHICKEN_MISC_2, val);
125 }
126
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200127}
128
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200129static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200130{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200131 u32 tmp;
132
133 tmp = I915_READ(CLKCFG);
134
135 switch (tmp & CLKCFG_FSB_MASK) {
136 case CLKCFG_FSB_533:
137 dev_priv->fsb_freq = 533; /* 133*4 */
138 break;
139 case CLKCFG_FSB_800:
140 dev_priv->fsb_freq = 800; /* 200*4 */
141 break;
142 case CLKCFG_FSB_667:
143 dev_priv->fsb_freq = 667; /* 167*4 */
144 break;
145 case CLKCFG_FSB_400:
146 dev_priv->fsb_freq = 400; /* 100*4 */
147 break;
148 }
149
150 switch (tmp & CLKCFG_MEM_MASK) {
151 case CLKCFG_MEM_533:
152 dev_priv->mem_freq = 533;
153 break;
154 case CLKCFG_MEM_667:
155 dev_priv->mem_freq = 667;
156 break;
157 case CLKCFG_MEM_800:
158 dev_priv->mem_freq = 800;
159 break;
160 }
161
162 /* detect pineview DDR3 setting */
163 tmp = I915_READ(CSHRDDR3CTL);
164 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
165}
166
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200167static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200168{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200169 u16 ddrpll, csipll;
170
171 ddrpll = I915_READ16(DDRMPLL1);
172 csipll = I915_READ16(CSIPLL0);
173
174 switch (ddrpll & 0xff) {
175 case 0xc:
176 dev_priv->mem_freq = 800;
177 break;
178 case 0x10:
179 dev_priv->mem_freq = 1066;
180 break;
181 case 0x14:
182 dev_priv->mem_freq = 1333;
183 break;
184 case 0x18:
185 dev_priv->mem_freq = 1600;
186 break;
187 default:
188 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
189 ddrpll & 0xff);
190 dev_priv->mem_freq = 0;
191 break;
192 }
193
Daniel Vetter20e4d402012-08-08 23:35:39 +0200194 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200195
196 switch (csipll & 0x3ff) {
197 case 0x00c:
198 dev_priv->fsb_freq = 3200;
199 break;
200 case 0x00e:
201 dev_priv->fsb_freq = 3733;
202 break;
203 case 0x010:
204 dev_priv->fsb_freq = 4266;
205 break;
206 case 0x012:
207 dev_priv->fsb_freq = 4800;
208 break;
209 case 0x014:
210 dev_priv->fsb_freq = 5333;
211 break;
212 case 0x016:
213 dev_priv->fsb_freq = 5866;
214 break;
215 case 0x018:
216 dev_priv->fsb_freq = 6400;
217 break;
218 default:
219 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
220 csipll & 0x3ff);
221 dev_priv->fsb_freq = 0;
222 break;
223 }
224
225 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200226 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200227 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200228 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200229 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200230 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200231 }
232}
233
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300234static const struct cxsr_latency cxsr_latency_table[] = {
235 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
236 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
237 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
238 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
239 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
240
241 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
242 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
243 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
244 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
245 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
246
247 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
248 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
249 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
250 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
251 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
252
253 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
254 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
255 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
256 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
257 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
258
259 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
260 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
261 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
262 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
263 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
264
265 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
266 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
267 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
268 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
269 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
270};
271
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100272static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
273 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300274 int fsb,
275 int mem)
276{
277 const struct cxsr_latency *latency;
278 int i;
279
280 if (fsb == 0 || mem == 0)
281 return NULL;
282
283 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
284 latency = &cxsr_latency_table[i];
285 if (is_desktop == latency->is_desktop &&
286 is_ddr3 == latency->is_ddr3 &&
287 fsb == latency->fsb_freq && mem == latency->mem_freq)
288 return latency;
289 }
290
291 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
292
293 return NULL;
294}
295
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200296static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
297{
298 u32 val;
299
300 mutex_lock(&dev_priv->rps.hw_lock);
301
302 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
303 if (enable)
304 val &= ~FORCE_DDR_HIGH_FREQ;
305 else
306 val |= FORCE_DDR_HIGH_FREQ;
307 val &= ~FORCE_DDR_LOW_FREQ;
308 val |= FORCE_DDR_FREQ_REQ_ACK;
309 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
310
311 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
312 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
313 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
314
315 mutex_unlock(&dev_priv->rps.hw_lock);
316}
317
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200318static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
319{
320 u32 val;
321
322 mutex_lock(&dev_priv->rps.hw_lock);
323
324 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
325 if (enable)
326 val |= DSP_MAXFIFO_PM5_ENABLE;
327 else
328 val &= ~DSP_MAXFIFO_PM5_ENABLE;
329 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
330
331 mutex_unlock(&dev_priv->rps.hw_lock);
332}
333
Ville Syrjäläf4998962015-03-10 17:02:21 +0200334#define FW_WM(value, plane) \
335 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
336
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200337static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300338{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200339 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300340 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300341
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100342 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200343 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300344 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300345 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200346 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200347 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300348 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300349 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200350 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200351 val = I915_READ(DSPFW3);
352 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
353 if (enable)
354 val |= PINEVIEW_SELF_REFRESH_EN;
355 else
356 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300357 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300358 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100359 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200360 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300361 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
362 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
363 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300364 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100365 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300366 /*
367 * FIXME can't find a bit like this for 915G, and
368 * and yet it does have the related watermark in
369 * FW_BLC_SELF. What's going on?
370 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200371 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300372 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
373 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
374 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300375 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300376 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200377 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300378 }
379
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200380 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
381 enableddisabled(enable),
382 enableddisabled(was_enabled));
383
384 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300385}
386
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200387bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200388{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200389 bool ret;
390
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200391 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200392 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200393 dev_priv->wm.vlv.cxsr = enable;
394 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200395
396 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200397}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200398
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300399/*
400 * Latency for FIFO fetches is dependent on several factors:
401 * - memory configuration (speed, channels)
402 * - chipset
403 * - current MCH state
404 * It can be fairly high in some situations, so here we assume a fairly
405 * pessimal value. It's a tradeoff between extra memory fetches (if we
406 * set this value too high, the FIFO will fetch frequently to stay full)
407 * and power consumption (set it too low to save power and we might see
408 * FIFO underruns and display "flicker").
409 *
410 * A value of 5us seems to be a good balance; safe for very low end
411 * platforms but not overly aggressive on lower latency configs.
412 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100413static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300414
Ville Syrjäläb5004722015-03-05 21:19:47 +0200415#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
416 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
417
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200418static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200419{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200420 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200421 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200422 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200423 enum pipe pipe = crtc->pipe;
424 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200425
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200426 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200427 uint32_t dsparb, dsparb2, dsparb3;
428 case PIPE_A:
429 dsparb = I915_READ(DSPARB);
430 dsparb2 = I915_READ(DSPARB2);
431 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
432 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
433 break;
434 case PIPE_B:
435 dsparb = I915_READ(DSPARB);
436 dsparb2 = I915_READ(DSPARB2);
437 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
438 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
439 break;
440 case PIPE_C:
441 dsparb2 = I915_READ(DSPARB2);
442 dsparb3 = I915_READ(DSPARB3);
443 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
444 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
445 break;
446 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200447 MISSING_CASE(pipe);
448 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200449 }
450
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200451 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
452 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
453 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
454 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200455
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200456 DRM_DEBUG_KMS("Pipe %c FIFO size: %d/%d/%d/%d\n",
457 pipe_name(pipe),
458 fifo_state->plane[PLANE_PRIMARY],
459 fifo_state->plane[PLANE_SPRITE0],
460 fifo_state->plane[PLANE_SPRITE1],
461 fifo_state->plane[PLANE_CURSOR]);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200462}
463
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200464static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300465{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300466 uint32_t dsparb = I915_READ(DSPARB);
467 int size;
468
469 size = dsparb & 0x7f;
470 if (plane)
471 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
472
473 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
474 plane ? "B" : "A", size);
475
476 return size;
477}
478
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200479static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300480{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300481 uint32_t dsparb = I915_READ(DSPARB);
482 int size;
483
484 size = dsparb & 0x1ff;
485 if (plane)
486 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
487 size >>= 1; /* Convert to cachelines */
488
489 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
490 plane ? "B" : "A", size);
491
492 return size;
493}
494
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200495static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300496{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300497 uint32_t dsparb = I915_READ(DSPARB);
498 int size;
499
500 size = dsparb & 0x7f;
501 size >>= 2; /* Convert to cachelines */
502
503 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
504 plane ? "B" : "A",
505 size);
506
507 return size;
508}
509
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300510/* Pineview has different values for various configs */
511static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300512 .fifo_size = PINEVIEW_DISPLAY_FIFO,
513 .max_wm = PINEVIEW_MAX_WM,
514 .default_wm = PINEVIEW_DFT_WM,
515 .guard_size = PINEVIEW_GUARD_WM,
516 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300517};
518static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300519 .fifo_size = PINEVIEW_DISPLAY_FIFO,
520 .max_wm = PINEVIEW_MAX_WM,
521 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
522 .guard_size = PINEVIEW_GUARD_WM,
523 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300524};
525static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300526 .fifo_size = PINEVIEW_CURSOR_FIFO,
527 .max_wm = PINEVIEW_CURSOR_MAX_WM,
528 .default_wm = PINEVIEW_CURSOR_DFT_WM,
529 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
530 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531};
532static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300533 .fifo_size = PINEVIEW_CURSOR_FIFO,
534 .max_wm = PINEVIEW_CURSOR_MAX_WM,
535 .default_wm = PINEVIEW_CURSOR_DFT_WM,
536 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
537 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300538};
539static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300540 .fifo_size = G4X_FIFO_SIZE,
541 .max_wm = G4X_MAX_WM,
542 .default_wm = G4X_MAX_WM,
543 .guard_size = 2,
544 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300545};
546static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300547 .fifo_size = I965_CURSOR_FIFO,
548 .max_wm = I965_CURSOR_MAX_WM,
549 .default_wm = I965_CURSOR_DFT_WM,
550 .guard_size = 2,
551 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300552};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300553static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300554 .fifo_size = I965_CURSOR_FIFO,
555 .max_wm = I965_CURSOR_MAX_WM,
556 .default_wm = I965_CURSOR_DFT_WM,
557 .guard_size = 2,
558 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300559};
560static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300561 .fifo_size = I945_FIFO_SIZE,
562 .max_wm = I915_MAX_WM,
563 .default_wm = 1,
564 .guard_size = 2,
565 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300566};
567static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300568 .fifo_size = I915_FIFO_SIZE,
569 .max_wm = I915_MAX_WM,
570 .default_wm = 1,
571 .guard_size = 2,
572 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300573};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300574static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300575 .fifo_size = I855GM_FIFO_SIZE,
576 .max_wm = I915_MAX_WM,
577 .default_wm = 1,
578 .guard_size = 2,
579 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300580};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300581static const struct intel_watermark_params i830_bc_wm_info = {
582 .fifo_size = I855GM_FIFO_SIZE,
583 .max_wm = I915_MAX_WM/2,
584 .default_wm = 1,
585 .guard_size = 2,
586 .cacheline_size = I830_FIFO_LINE_SIZE,
587};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200588static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300589 .fifo_size = I830_FIFO_SIZE,
590 .max_wm = I915_MAX_WM,
591 .default_wm = 1,
592 .guard_size = 2,
593 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300594};
595
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300596/**
597 * intel_calculate_wm - calculate watermark level
598 * @clock_in_khz: pixel clock
599 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200600 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300601 * @latency_ns: memory latency for the platform
602 *
603 * Calculate the watermark level (the level at which the display plane will
604 * start fetching from memory again). Each chip has a different display
605 * FIFO size and allocation, so the caller needs to figure that out and pass
606 * in the correct intel_watermark_params structure.
607 *
608 * As the pixel clock runs, the FIFO will be drained at a rate that depends
609 * on the pixel size. When it reaches the watermark level, it'll start
610 * fetching FIFO line sized based chunks from memory until the FIFO fills
611 * past the watermark point. If the FIFO drains completely, a FIFO underrun
612 * will occur, and a display engine hang could result.
613 */
614static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
615 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200616 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300617 unsigned long latency_ns)
618{
619 long entries_required, wm_size;
620
621 /*
622 * Note: we need to make sure we don't overflow for various clock &
623 * latency values.
624 * clocks go from a few thousand to several hundred thousand.
625 * latency is usually a few thousand
626 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200627 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300628 1000;
629 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
630
631 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
632
633 wm_size = fifo_size - (entries_required + wm->guard_size);
634
635 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
636
637 /* Don't promote wm_size to unsigned... */
638 if (wm_size > (long)wm->max_wm)
639 wm_size = wm->max_wm;
640 if (wm_size <= 0)
641 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300642
643 /*
644 * Bspec seems to indicate that the value shouldn't be lower than
645 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
646 * Lets go for 8 which is the burst size since certain platforms
647 * already use a hardcoded 8 (which is what the spec says should be
648 * done).
649 */
650 if (wm_size <= 8)
651 wm_size = 8;
652
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300653 return wm_size;
654}
655
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200656static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300657{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200658 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300659
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200660 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200661 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300662 if (enabled)
663 return NULL;
664 enabled = crtc;
665 }
666 }
667
668 return enabled;
669}
670
Ville Syrjälä432081b2016-10-31 22:37:03 +0200671static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300672{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200673 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200674 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300675 const struct cxsr_latency *latency;
676 u32 reg;
677 unsigned long wm;
678
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100679 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
680 dev_priv->is_ddr3,
681 dev_priv->fsb_freq,
682 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300683 if (!latency) {
684 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300685 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686 return;
687 }
688
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200689 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300690 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200691 const struct drm_display_mode *adjusted_mode =
692 &crtc->config->base.adjusted_mode;
693 const struct drm_framebuffer *fb =
694 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200695 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300696 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300697
698 /* Display SR */
699 wm = intel_calculate_wm(clock, &pineview_display_wm,
700 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200701 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300702 reg = I915_READ(DSPFW1);
703 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200704 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300705 I915_WRITE(DSPFW1, reg);
706 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
707
708 /* cursor SR */
709 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
710 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200711 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300712 reg = I915_READ(DSPFW3);
713 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200714 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300715 I915_WRITE(DSPFW3, reg);
716
717 /* Display HPLL off SR */
718 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
719 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200720 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300721 reg = I915_READ(DSPFW3);
722 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200723 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300724 I915_WRITE(DSPFW3, reg);
725
726 /* cursor HPLL off SR */
727 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
728 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200729 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300730 reg = I915_READ(DSPFW3);
731 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200732 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 I915_WRITE(DSPFW3, reg);
734 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
735
Imre Deak5209b1f2014-07-01 12:36:17 +0300736 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300737 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300738 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 }
740}
741
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200742static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300743 int plane,
744 const struct intel_watermark_params *display,
745 int display_latency_ns,
746 const struct intel_watermark_params *cursor,
747 int cursor_latency_ns,
748 int *plane_wm,
749 int *cursor_wm)
750{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200751 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300752 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200753 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200754 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300755 int line_time_us, line_count;
756 int entries, tlb_miss;
757
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200758 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200759 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300760 *cursor_wm = cursor->guard_size;
761 *plane_wm = display->guard_size;
762 return false;
763 }
764
Ville Syrjäläefc26112016-10-31 22:37:04 +0200765 adjusted_mode = &crtc->config->base.adjusted_mode;
766 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100767 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800768 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200769 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200770 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300771
772 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200773 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
775 if (tlb_miss > 0)
776 entries += tlb_miss;
777 entries = DIV_ROUND_UP(entries, display->cacheline_size);
778 *plane_wm = entries + display->guard_size;
779 if (*plane_wm > (int)display->max_wm)
780 *plane_wm = display->max_wm;
781
782 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200783 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300784 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200785 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300786 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
787 if (tlb_miss > 0)
788 entries += tlb_miss;
789 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
790 *cursor_wm = entries + cursor->guard_size;
791 if (*cursor_wm > (int)cursor->max_wm)
792 *cursor_wm = (int)cursor->max_wm;
793
794 return true;
795}
796
797/*
798 * Check the wm result.
799 *
800 * If any calculated watermark values is larger than the maximum value that
801 * can be programmed into the associated watermark register, that watermark
802 * must be disabled.
803 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200804static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300805 int display_wm, int cursor_wm,
806 const struct intel_watermark_params *display,
807 const struct intel_watermark_params *cursor)
808{
809 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
810 display_wm, cursor_wm);
811
812 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100813 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300814 display_wm, display->max_wm);
815 return false;
816 }
817
818 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100819 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300820 cursor_wm, cursor->max_wm);
821 return false;
822 }
823
824 if (!(display_wm || cursor_wm)) {
825 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
826 return false;
827 }
828
829 return true;
830}
831
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200832static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300833 int plane,
834 int latency_ns,
835 const struct intel_watermark_params *display,
836 const struct intel_watermark_params *cursor,
837 int *display_wm, int *cursor_wm)
838{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200839 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300840 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200841 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200842 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300843 unsigned long line_time_us;
844 int line_count, line_size;
845 int small, large;
846 int entries;
847
848 if (!latency_ns) {
849 *display_wm = *cursor_wm = 0;
850 return false;
851 }
852
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200853 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200854 adjusted_mode = &crtc->config->base.adjusted_mode;
855 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100856 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800857 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200858 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200859 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300860
Ville Syrjälä922044c2014-02-14 14:18:57 +0200861 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300862 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200863 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300864
865 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200866 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300867 large = line_count * line_size;
868
869 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
870 *display_wm = entries + display->guard_size;
871
872 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200873 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300874 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
875 *cursor_wm = entries + cursor->guard_size;
876
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200877 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300878 *display_wm, *cursor_wm,
879 display, cursor);
880}
881
Ville Syrjälä15665972015-03-10 16:16:28 +0200882#define FW_WM_VLV(value, plane) \
883 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
884
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200885static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200886 const struct vlv_wm_values *wm)
887{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200888 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200889
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200890 for_each_pipe(dev_priv, pipe) {
891 I915_WRITE(VLV_DDL(pipe),
892 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
893 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
894 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
895 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
896 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200897
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200898 /*
899 * Zero the (unused) WM1 watermarks, and also clear all the
900 * high order bits so that there are no out of bounds values
901 * present in the registers during the reprogramming.
902 */
903 I915_WRITE(DSPHOWM, 0);
904 I915_WRITE(DSPHOWM1, 0);
905 I915_WRITE(DSPFW4, 0);
906 I915_WRITE(DSPFW5, 0);
907 I915_WRITE(DSPFW6, 0);
908
Ville Syrjäläae801522015-03-05 21:19:49 +0200909 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200910 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200911 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
912 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
913 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200914 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200915 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
916 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
917 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200918 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200919 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200920
921 if (IS_CHERRYVIEW(dev_priv)) {
922 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200923 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
924 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200925 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200926 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
927 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200928 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200929 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
930 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200931 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200932 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200933 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
934 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
935 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
936 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
937 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
938 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
939 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
940 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
941 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200942 } else {
943 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200944 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
945 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200946 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200947 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200948 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
949 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
950 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
951 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
952 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
953 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200954 }
955
956 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200957}
958
Ville Syrjälä15665972015-03-10 16:16:28 +0200959#undef FW_WM_VLV
960
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300961/* latency must be in 0.1us units. */
962static unsigned int vlv_wm_method2(unsigned int pixel_rate,
963 unsigned int pipe_htotal,
964 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200965 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300966 unsigned int latency)
967{
968 unsigned int ret;
969
970 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200971 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300972 ret = DIV_ROUND_UP(ret, 64);
973
974 return ret;
975}
976
Ville Syrjäläbb726512016-10-31 22:37:24 +0200977static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300978{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300979 /* all latencies in usec */
980 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
981
Ville Syrjälä58590c12015-09-08 21:05:12 +0300982 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
983
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300984 if (IS_CHERRYVIEW(dev_priv)) {
985 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
986 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300987
988 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300989 }
990}
991
Ville Syrjäläe339d672016-11-28 19:37:17 +0200992static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
993 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300994 int level)
995{
Ville Syrjäläe339d672016-11-28 19:37:17 +0200996 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300997 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +0200998 const struct drm_display_mode *adjusted_mode =
999 &crtc_state->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001000 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001001
1002 if (dev_priv->wm.pri_latency[level] == 0)
1003 return USHRT_MAX;
1004
Ville Syrjäläe339d672016-11-28 19:37:17 +02001005 if (!plane_state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001006 return 0;
1007
Daniel Vetteref426c12017-01-04 11:41:10 +01001008 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001009 clock = adjusted_mode->crtc_clock;
1010 htotal = adjusted_mode->crtc_htotal;
1011 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001012 if (WARN_ON(htotal == 0))
1013 htotal = 1;
1014
1015 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1016 /*
1017 * FIXME the formula gives values that are
1018 * too big for the cursor FIFO, and hence we
1019 * would never be able to use cursors. For
1020 * now just hardcode the watermark.
1021 */
1022 wm = 63;
1023 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001024 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001025 dev_priv->wm.pri_latency[level] * 10);
1026 }
1027
1028 return min_t(int, wm, USHRT_MAX);
1029}
1030
Ville Syrjälä5012e602017-03-02 19:14:56 +02001031static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001032{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001033 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001034 const struct vlv_pipe_wm *raw =
1035 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001036 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001037 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1038 int num_active_planes = hweight32(active_planes);
1039 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001040 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001041 unsigned int total_rate;
1042 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001043
Ville Syrjälä5012e602017-03-02 19:14:56 +02001044 total_rate = raw->plane[PLANE_PRIMARY] +
1045 raw->plane[PLANE_SPRITE0] +
1046 raw->plane[PLANE_SPRITE1];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001047
Ville Syrjälä5012e602017-03-02 19:14:56 +02001048 if (total_rate > fifo_size)
1049 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001050
Ville Syrjälä5012e602017-03-02 19:14:56 +02001051 if (total_rate == 0)
1052 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001053
Ville Syrjälä5012e602017-03-02 19:14:56 +02001054 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001055 unsigned int rate;
1056
Ville Syrjälä5012e602017-03-02 19:14:56 +02001057 if ((active_planes & BIT(plane_id)) == 0) {
1058 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001059 continue;
1060 }
1061
Ville Syrjälä5012e602017-03-02 19:14:56 +02001062 rate = raw->plane[plane_id];
1063 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1064 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001065 }
1066
Ville Syrjälä5012e602017-03-02 19:14:56 +02001067 fifo_state->plane[PLANE_CURSOR] = 63;
1068
1069 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001070
1071 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001072 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001073 int plane_extra;
1074
1075 if (fifo_left == 0)
1076 break;
1077
Ville Syrjälä5012e602017-03-02 19:14:56 +02001078 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001079 continue;
1080
1081 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001082 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001083 fifo_left -= plane_extra;
1084 }
1085
Ville Syrjälä5012e602017-03-02 19:14:56 +02001086 WARN_ON(active_planes != 0 && fifo_left != 0);
1087
1088 /* give it all to the first plane if none are active */
1089 if (active_planes == 0) {
1090 WARN_ON(fifo_left != fifo_size);
1091 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1092 }
1093
1094 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001095}
1096
Ville Syrjäläff32c542017-03-02 19:14:57 +02001097static int vlv_num_wm_levels(struct drm_i915_private *dev_priv)
1098{
1099 return dev_priv->wm.max_level + 1;
1100}
1101
1102/* mark all levels starting from 'level' as invalid */
1103static void vlv_invalidate_wms(struct intel_crtc *crtc,
1104 struct vlv_wm_state *wm_state, int level)
1105{
1106 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1107
1108 for (; level < vlv_num_wm_levels(dev_priv); level++) {
1109 enum plane_id plane_id;
1110
1111 for_each_plane_id_on_crtc(crtc, plane_id)
1112 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1113
1114 wm_state->sr[level].cursor = USHRT_MAX;
1115 wm_state->sr[level].plane = USHRT_MAX;
1116 }
1117}
1118
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001119static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1120{
1121 if (wm > fifo_size)
1122 return USHRT_MAX;
1123 else
1124 return fifo_size - wm;
1125}
1126
Ville Syrjäläff32c542017-03-02 19:14:57 +02001127/*
1128 * Starting from 'level' set all higher
1129 * levels to 'value' in the "raw" watermarks.
1130 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001131static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001132 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001133{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001134 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1135 int num_levels = vlv_num_wm_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001136 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001137
Ville Syrjäläff32c542017-03-02 19:14:57 +02001138 for (; level < num_levels; level++) {
1139 struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001140
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001141 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001142 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001143 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001144
1145 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001146}
1147
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001148static bool vlv_plane_wm_compute(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001149 const struct intel_plane_state *plane_state)
1150{
1151 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1152 enum plane_id plane_id = plane->id;
1153 int num_levels = vlv_num_wm_levels(to_i915(plane->base.dev));
1154 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001155 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001156
1157 if (!plane_state->base.visible) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001158 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1159 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001160 }
1161
1162 for (level = 0; level < num_levels; level++) {
1163 struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1164 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1165 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1166
1167 /* FIXME just bail */
1168 if (WARN_ON(level == 0 && wm > max_wm))
1169 wm = max_wm;
1170
1171 if (wm > max_wm)
1172 break;
1173
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001174 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001175 raw->plane[plane_id] = wm;
1176 }
1177
1178 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001179 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001180
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001181out:
1182 if (dirty)
1183 DRM_DEBUG_KMS("%s wms: [0]=%d,[1]=%d,[2]=%d\n",
1184 plane->base.name,
1185 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1186 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1187 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1188
1189 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001190}
1191
1192static bool vlv_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1193 enum plane_id plane_id, int level)
1194{
1195 const struct vlv_pipe_wm *raw =
1196 &crtc_state->wm.vlv.raw[level];
1197 const struct vlv_fifo_state *fifo_state =
1198 &crtc_state->wm.vlv.fifo_state;
1199
1200 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1201}
1202
1203static bool vlv_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, int level)
1204{
1205 return vlv_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1206 vlv_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1207 vlv_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1208 vlv_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1209}
1210
1211static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001212{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001213 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001214 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001215 struct intel_atomic_state *state =
1216 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001217 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001218 const struct vlv_fifo_state *fifo_state =
1219 &crtc_state->wm.vlv.fifo_state;
1220 int num_active_planes = hweight32(crtc_state->active_planes &
1221 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001222 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001223 struct intel_plane_state *plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001224 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001225 enum plane_id plane_id;
1226 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001227 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001228
Ville Syrjäläff32c542017-03-02 19:14:57 +02001229 for_each_intel_plane_in_state(state, plane, plane_state, i) {
1230 const struct intel_plane_state *old_plane_state =
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001231 to_intel_plane_state(plane->base.state);
1232
Ville Syrjäläff32c542017-03-02 19:14:57 +02001233 if (plane_state->base.crtc != &crtc->base &&
1234 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001235 continue;
1236
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001237 if (vlv_plane_wm_compute(crtc_state, plane_state))
1238 dirty |= BIT(plane->id);
1239 }
1240
1241 /*
1242 * DSPARB registers may have been reset due to the
1243 * power well being turned off. Make sure we restore
1244 * them to a consistent state even if no primary/sprite
1245 * planes are initially active.
1246 */
1247 if (needs_modeset)
1248 crtc_state->fifo_changed = true;
1249
1250 if (!dirty)
1251 return 0;
1252
1253 /* cursor changes don't warrant a FIFO recompute */
1254 if (dirty & ~BIT(PLANE_CURSOR)) {
1255 const struct intel_crtc_state *old_crtc_state =
1256 to_intel_crtc_state(crtc->base.state);
1257 const struct vlv_fifo_state *old_fifo_state =
1258 &old_crtc_state->wm.vlv.fifo_state;
1259
1260 ret = vlv_compute_fifo(crtc_state);
1261 if (ret)
1262 return ret;
1263
1264 if (needs_modeset ||
1265 memcmp(old_fifo_state, fifo_state,
1266 sizeof(*fifo_state)) != 0)
1267 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001268 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001269
Ville Syrjäläff32c542017-03-02 19:14:57 +02001270 /* initially allow all levels */
1271 wm_state->num_levels = vlv_num_wm_levels(dev_priv);
1272 /*
1273 * Note that enabling cxsr with no primary/sprite planes
1274 * enabled can wedge the pipe. Hence we only allow cxsr
1275 * with exactly one enabled primary/sprite plane.
1276 */
1277 wm_state->cxsr = crtc->pipe != PIPE_C &&
1278 crtc->wm.cxsr_allowed && num_active_planes == 1;
1279
Ville Syrjälä5012e602017-03-02 19:14:56 +02001280 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001281 const struct vlv_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1282 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001283
Ville Syrjäläff32c542017-03-02 19:14:57 +02001284 if (!vlv_crtc_wm_is_valid(crtc_state, level))
1285 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001286
Ville Syrjäläff32c542017-03-02 19:14:57 +02001287 for_each_plane_id_on_crtc(crtc, plane_id) {
1288 wm_state->wm[level].plane[plane_id] =
1289 vlv_invert_wm_value(raw->plane[plane_id],
1290 fifo_state->plane[plane_id]);
1291 }
1292
1293 wm_state->sr[level].plane =
1294 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001295 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001296 raw->plane[PLANE_SPRITE1]),
1297 sr_fifo_size);
1298
1299 wm_state->sr[level].cursor =
1300 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1301 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001302 }
1303
Ville Syrjäläff32c542017-03-02 19:14:57 +02001304 if (level == 0)
1305 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001306
Ville Syrjäläff32c542017-03-02 19:14:57 +02001307 /* limit to only levels we can actually handle */
1308 wm_state->num_levels = level;
1309
1310 /* invalidate the higher levels */
1311 vlv_invalidate_wms(crtc, wm_state, level);
1312
1313 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001314}
1315
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001316#define VLV_FIFO(plane, value) \
1317 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1318
Ville Syrjäläff32c542017-03-02 19:14:57 +02001319static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1320 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001321{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001322 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001323 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001324 const struct vlv_fifo_state *fifo_state =
1325 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001326 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001327
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001328 if (!crtc_state->fifo_changed)
1329 return;
1330
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001331 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1332 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1333 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001334
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001335 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1336 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001337
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001338 spin_lock(&dev_priv->wm.dsparb_lock);
1339
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001340 switch (crtc->pipe) {
1341 uint32_t dsparb, dsparb2, dsparb3;
1342 case PIPE_A:
1343 dsparb = I915_READ(DSPARB);
1344 dsparb2 = I915_READ(DSPARB2);
1345
1346 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1347 VLV_FIFO(SPRITEB, 0xff));
1348 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1349 VLV_FIFO(SPRITEB, sprite1_start));
1350
1351 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1352 VLV_FIFO(SPRITEB_HI, 0x1));
1353 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1354 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1355
1356 I915_WRITE(DSPARB, dsparb);
1357 I915_WRITE(DSPARB2, dsparb2);
1358 break;
1359 case PIPE_B:
1360 dsparb = I915_READ(DSPARB);
1361 dsparb2 = I915_READ(DSPARB2);
1362
1363 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1364 VLV_FIFO(SPRITED, 0xff));
1365 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1366 VLV_FIFO(SPRITED, sprite1_start));
1367
1368 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1369 VLV_FIFO(SPRITED_HI, 0xff));
1370 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1371 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1372
1373 I915_WRITE(DSPARB, dsparb);
1374 I915_WRITE(DSPARB2, dsparb2);
1375 break;
1376 case PIPE_C:
1377 dsparb3 = I915_READ(DSPARB3);
1378 dsparb2 = I915_READ(DSPARB2);
1379
1380 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1381 VLV_FIFO(SPRITEF, 0xff));
1382 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1383 VLV_FIFO(SPRITEF, sprite1_start));
1384
1385 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1386 VLV_FIFO(SPRITEF_HI, 0xff));
1387 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1388 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1389
1390 I915_WRITE(DSPARB3, dsparb3);
1391 I915_WRITE(DSPARB2, dsparb2);
1392 break;
1393 default:
1394 break;
1395 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001396
1397 POSTING_READ(DSPARB);
1398
1399 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001400}
1401
1402#undef VLV_FIFO
1403
Ville Syrjälä4841da52017-03-02 19:14:59 +02001404static int vlv_compute_intermediate_wm(struct drm_device *dev,
1405 struct intel_crtc *crtc,
1406 struct intel_crtc_state *crtc_state)
1407{
1408 struct vlv_wm_state *intermediate = &crtc_state->wm.vlv.intermediate;
1409 const struct vlv_wm_state *optimal = &crtc_state->wm.vlv.optimal;
1410 const struct vlv_wm_state *active = &crtc->wm.active.vlv;
1411 int level;
1412
1413 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
1414 intermediate->cxsr = optimal->cxsr & active->cxsr;
1415
1416 for (level = 0; level < intermediate->num_levels; level++) {
1417 enum plane_id plane_id;
1418
1419 for_each_plane_id_on_crtc(crtc, plane_id) {
1420 intermediate->wm[level].plane[plane_id] =
1421 min(optimal->wm[level].plane[plane_id],
1422 active->wm[level].plane[plane_id]);
1423 }
1424
1425 intermediate->sr[level].plane = min(optimal->sr[level].plane,
1426 active->sr[level].plane);
1427 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
1428 active->sr[level].cursor);
1429 }
1430
1431 vlv_invalidate_wms(crtc, intermediate, level);
1432
1433 /*
1434 * If our intermediate WM are identical to the final WM, then we can
1435 * omit the post-vblank programming; only update if it's different.
1436 */
1437 if (memcmp(intermediate, optimal, sizeof(*intermediate)) == 0)
1438 crtc_state->wm.need_postvbl_update = false;
1439
1440 return 0;
1441}
1442
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001443static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001444 struct vlv_wm_values *wm)
1445{
1446 struct intel_crtc *crtc;
1447 int num_active_crtcs = 0;
1448
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001449 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001450 wm->cxsr = true;
1451
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001452 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001453 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001454
1455 if (!crtc->active)
1456 continue;
1457
1458 if (!wm_state->cxsr)
1459 wm->cxsr = false;
1460
1461 num_active_crtcs++;
1462 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1463 }
1464
1465 if (num_active_crtcs != 1)
1466 wm->cxsr = false;
1467
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001468 if (num_active_crtcs > 1)
1469 wm->level = VLV_WM_LEVEL_PM2;
1470
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001471 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02001472 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001473 enum pipe pipe = crtc->pipe;
1474
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001475 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001476 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001477 wm->sr = wm_state->sr[wm->level];
1478
Ville Syrjälä1b313892016-11-28 19:37:08 +02001479 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1480 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1481 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1482 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001483 }
1484}
1485
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001486static bool is_disabling(int old, int new, int threshold)
1487{
1488 return old >= threshold && new < threshold;
1489}
1490
1491static bool is_enabling(int old, int new, int threshold)
1492{
1493 return old < threshold && new >= threshold;
1494}
1495
Ville Syrjäläff32c542017-03-02 19:14:57 +02001496static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001497{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001498 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1499 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001500
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001501 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001502
Ville Syrjäläff32c542017-03-02 19:14:57 +02001503 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001504 return;
1505
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001506 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001507 chv_set_memory_dvfs(dev_priv, false);
1508
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001509 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001510 chv_set_memory_pm5(dev_priv, false);
1511
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001512 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001513 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001514
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001515 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001516
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001517 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001518 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001519
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001520 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001521 chv_set_memory_pm5(dev_priv, true);
1522
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001523 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001524 chv_set_memory_dvfs(dev_priv, true);
1525
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001526 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001527}
1528
Ville Syrjäläff32c542017-03-02 19:14:57 +02001529static void vlv_initial_watermarks(struct intel_atomic_state *state,
1530 struct intel_crtc_state *crtc_state)
1531{
1532 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1533 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1534
1535 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02001536 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
1537 vlv_program_watermarks(dev_priv);
1538 mutex_unlock(&dev_priv->wm.wm_mutex);
1539}
1540
1541static void vlv_optimize_watermarks(struct intel_atomic_state *state,
1542 struct intel_crtc_state *crtc_state)
1543{
1544 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1545 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1546
1547 if (!crtc_state->wm.need_postvbl_update)
1548 return;
1549
1550 mutex_lock(&dev_priv->wm.wm_mutex);
1551 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001552 vlv_program_watermarks(dev_priv);
1553 mutex_unlock(&dev_priv->wm.wm_mutex);
1554}
1555
Ville Syrjäläae801522015-03-05 21:19:49 +02001556#define single_plane_enabled(mask) is_power_of_2(mask)
1557
Ville Syrjälä432081b2016-10-31 22:37:03 +02001558static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001559{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001560 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001561 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001562 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1563 int plane_sr, cursor_sr;
1564 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001565 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001566
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001567 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001568 &g4x_wm_info, pessimal_latency_ns,
1569 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001570 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001571 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001572
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001573 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001574 &g4x_wm_info, pessimal_latency_ns,
1575 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001576 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001577 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001578
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001579 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001580 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001581 sr_latency_ns,
1582 &g4x_wm_info,
1583 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001584 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001585 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001586 } else {
Imre Deak98584252014-06-13 14:54:20 +03001587 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001588 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001589 plane_sr = cursor_sr = 0;
1590 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001591
Ville Syrjäläa5043452014-06-28 02:04:18 +03001592 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1593 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001594 planea_wm, cursora_wm,
1595 planeb_wm, cursorb_wm,
1596 plane_sr, cursor_sr);
1597
1598 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001599 FW_WM(plane_sr, SR) |
1600 FW_WM(cursorb_wm, CURSORB) |
1601 FW_WM(planeb_wm, PLANEB) |
1602 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001603 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001604 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001605 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001606 /* HPLL off in SR has some issues on G4x... disable it */
1607 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001608 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001609 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001610
1611 if (cxsr_enabled)
1612 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001613}
1614
Ville Syrjälä432081b2016-10-31 22:37:03 +02001615static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001617 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001618 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001619 int srwm = 1;
1620 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001621 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001622
1623 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001624 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001625 if (crtc) {
1626 /* self-refresh has much higher latency */
1627 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001628 const struct drm_display_mode *adjusted_mode =
1629 &crtc->config->base.adjusted_mode;
1630 const struct drm_framebuffer *fb =
1631 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001632 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001633 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001634 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001635 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001636 unsigned long line_time_us;
1637 int entries;
1638
Ville Syrjälä922044c2014-02-14 14:18:57 +02001639 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001640
1641 /* Use ns/us then divide to preserve precision */
1642 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001643 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001644 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1645 srwm = I965_FIFO_SIZE - entries;
1646 if (srwm < 0)
1647 srwm = 1;
1648 srwm &= 0x1ff;
1649 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1650 entries, srwm);
1651
1652 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001653 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001654 entries = DIV_ROUND_UP(entries,
1655 i965_cursor_wm_info.cacheline_size);
1656 cursor_sr = i965_cursor_wm_info.fifo_size -
1657 (entries + i965_cursor_wm_info.guard_size);
1658
1659 if (cursor_sr > i965_cursor_wm_info.max_wm)
1660 cursor_sr = i965_cursor_wm_info.max_wm;
1661
1662 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1663 "cursor %d\n", srwm, cursor_sr);
1664
Imre Deak98584252014-06-13 14:54:20 +03001665 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001666 } else {
Imre Deak98584252014-06-13 14:54:20 +03001667 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001668 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001669 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001670 }
1671
1672 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1673 srwm);
1674
1675 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001676 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1677 FW_WM(8, CURSORB) |
1678 FW_WM(8, PLANEB) |
1679 FW_WM(8, PLANEA));
1680 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1681 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001682 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001683 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001684
1685 if (cxsr_enabled)
1686 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001687}
1688
Ville Syrjäläf4998962015-03-10 17:02:21 +02001689#undef FW_WM
1690
Ville Syrjälä432081b2016-10-31 22:37:03 +02001691static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001692{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001693 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001694 const struct intel_watermark_params *wm_info;
1695 uint32_t fwater_lo;
1696 uint32_t fwater_hi;
1697 int cwm, srwm = 1;
1698 int fifo_size;
1699 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001700 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001701
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001702 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001703 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001704 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001705 wm_info = &i915_wm_info;
1706 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001707 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001708
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001709 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001710 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001711 if (intel_crtc_active(crtc)) {
1712 const struct drm_display_mode *adjusted_mode =
1713 &crtc->config->base.adjusted_mode;
1714 const struct drm_framebuffer *fb =
1715 crtc->base.primary->state->fb;
1716 int cpp;
1717
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001718 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001719 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001720 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001721 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001722
Damien Lespiau241bfc32013-09-25 16:45:37 +01001723 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001724 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001725 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001726 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001727 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001728 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001729 if (planea_wm > (long)wm_info->max_wm)
1730 planea_wm = wm_info->max_wm;
1731 }
1732
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001733 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001734 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001735
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001736 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001737 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001738 if (intel_crtc_active(crtc)) {
1739 const struct drm_display_mode *adjusted_mode =
1740 &crtc->config->base.adjusted_mode;
1741 const struct drm_framebuffer *fb =
1742 crtc->base.primary->state->fb;
1743 int cpp;
1744
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001745 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001746 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001747 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001748 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001749
Damien Lespiau241bfc32013-09-25 16:45:37 +01001750 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001751 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001752 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001753 if (enabled == NULL)
1754 enabled = crtc;
1755 else
1756 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001757 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001758 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001759 if (planeb_wm > (long)wm_info->max_wm)
1760 planeb_wm = wm_info->max_wm;
1761 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001762
1763 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1764
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001765 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001766 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001767
Ville Syrjäläefc26112016-10-31 22:37:04 +02001768 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001769
1770 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001771 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001772 enabled = NULL;
1773 }
1774
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001775 /*
1776 * Overlay gets an aggressive default since video jitter is bad.
1777 */
1778 cwm = 2;
1779
1780 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001781 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001782
1783 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001784 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001785 /* self-refresh has much higher latency */
1786 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001787 const struct drm_display_mode *adjusted_mode =
1788 &enabled->config->base.adjusted_mode;
1789 const struct drm_framebuffer *fb =
1790 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001791 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001792 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001793 int hdisplay = enabled->config->pipe_src_w;
1794 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001795 unsigned long line_time_us;
1796 int entries;
1797
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001798 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001799 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001800 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001801 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001802
Ville Syrjälä922044c2014-02-14 14:18:57 +02001803 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001804
1805 /* Use ns/us then divide to preserve precision */
1806 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001807 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001808 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1809 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1810 srwm = wm_info->fifo_size - entries;
1811 if (srwm < 0)
1812 srwm = 1;
1813
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001814 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001815 I915_WRITE(FW_BLC_SELF,
1816 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001817 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001818 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1819 }
1820
1821 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1822 planea_wm, planeb_wm, cwm, srwm);
1823
1824 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1825 fwater_hi = (cwm & 0x1f);
1826
1827 /* Set request length to 8 cachelines per fetch */
1828 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1829 fwater_hi = fwater_hi | (1 << 8);
1830
1831 I915_WRITE(FW_BLC, fwater_lo);
1832 I915_WRITE(FW_BLC2, fwater_hi);
1833
Imre Deak5209b1f2014-07-01 12:36:17 +03001834 if (enabled)
1835 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001836}
1837
Ville Syrjälä432081b2016-10-31 22:37:03 +02001838static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001839{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001840 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001841 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001842 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001843 uint32_t fwater_lo;
1844 int planea_wm;
1845
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001846 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001847 if (crtc == NULL)
1848 return;
1849
Ville Syrjäläefc26112016-10-31 22:37:04 +02001850 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001851 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001852 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001853 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001854 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001855 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1856 fwater_lo |= (3<<8) | planea_wm;
1857
1858 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1859
1860 I915_WRITE(FW_BLC, fwater_lo);
1861}
1862
Ville Syrjälä37126462013-08-01 16:18:55 +03001863/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001864static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001865{
1866 uint64_t ret;
1867
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001868 if (WARN(latency == 0, "Latency value missing\n"))
1869 return UINT_MAX;
1870
Ville Syrjäläac484962016-01-20 21:05:26 +02001871 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001872 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1873
1874 return ret;
1875}
1876
Ville Syrjälä37126462013-08-01 16:18:55 +03001877/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001878static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001879 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001880 uint32_t latency)
1881{
1882 uint32_t ret;
1883
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001884 if (WARN(latency == 0, "Latency value missing\n"))
1885 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001886 if (WARN_ON(!pipe_htotal))
1887 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001888
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001889 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001890 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001891 ret = DIV_ROUND_UP(ret, 64) + 2;
1892 return ret;
1893}
1894
Ville Syrjälä23297042013-07-05 11:57:17 +03001895static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001896 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001897{
Matt Roper15126882015-12-03 11:37:40 -08001898 /*
1899 * Neither of these should be possible since this function shouldn't be
1900 * called if the CRTC is off or the plane is invisible. But let's be
1901 * extra paranoid to avoid a potential divide-by-zero if we screw up
1902 * elsewhere in the driver.
1903 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001904 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001905 return 0;
1906 if (WARN_ON(!horiz_pixels))
1907 return 0;
1908
Ville Syrjäläac484962016-01-20 21:05:26 +02001909 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001910}
1911
Imre Deak820c1982013-12-17 14:46:36 +02001912struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001913 uint16_t pri;
1914 uint16_t spr;
1915 uint16_t cur;
1916 uint16_t fbc;
1917};
1918
Ville Syrjälä37126462013-08-01 16:18:55 +03001919/*
1920 * For both WM_PIPE and WM_LP.
1921 * mem_value must be in 0.1us units.
1922 */
Matt Roper7221fc32015-09-24 15:53:08 -07001923static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001924 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001925 uint32_t mem_value,
1926 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001927{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001928 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001929 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001930
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001931 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001932 return 0;
1933
Ville Syrjälä353c8592016-12-14 23:30:57 +02001934 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001935
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001936 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001937
1938 if (!is_lp)
1939 return method1;
1940
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001941 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001942 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001943 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001944 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001945
1946 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001947}
1948
Ville Syrjälä37126462013-08-01 16:18:55 +03001949/*
1950 * For both WM_PIPE and WM_LP.
1951 * mem_value must be in 0.1us units.
1952 */
Matt Roper7221fc32015-09-24 15:53:08 -07001953static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001954 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001955 uint32_t mem_value)
1956{
1957 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001958 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001959
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001960 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001961 return 0;
1962
Ville Syrjälä353c8592016-12-14 23:30:57 +02001963 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001964
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001965 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
1966 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001967 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001968 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001969 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001970 return min(method1, method2);
1971}
1972
Ville Syrjälä37126462013-08-01 16:18:55 +03001973/*
1974 * For both WM_PIPE and WM_LP.
1975 * mem_value must be in 0.1us units.
1976 */
Matt Roper7221fc32015-09-24 15:53:08 -07001977static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001978 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001979 uint32_t mem_value)
1980{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001981 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001982
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001983 /*
1984 * Treat cursor with fb as always visible since cursor updates
1985 * can happen faster than the vrefresh rate, and the current
1986 * watermark code doesn't handle that correctly. Cursor updates
1987 * which set/clear the fb or change the cursor size are going
1988 * to get throttled by intel_legacy_cursor_update() to work
1989 * around this problem with the watermark code.
1990 */
1991 if (!cstate->base.active || !pstate->base.fb)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001992 return 0;
1993
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001994 cpp = pstate->base.fb->format->cpp[0];
1995
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02001996 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07001997 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02001998 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001999}
2000
Paulo Zanonicca32e92013-05-31 11:45:06 -03002001/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002002static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002003 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002004 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002005{
Ville Syrjälä83054942016-11-18 21:53:00 +02002006 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002007
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002008 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002009 return 0;
2010
Ville Syrjälä353c8592016-12-14 23:30:57 +02002011 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002012
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002013 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002014}
2015
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002016static unsigned int
2017ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002018{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002019 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002020 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002021 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002022 return 768;
2023 else
2024 return 512;
2025}
2026
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002027static unsigned int
2028ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2029 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002030{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002031 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002032 /* BDW primary/sprite plane watermarks */
2033 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002034 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002035 /* IVB/HSW primary/sprite plane watermarks */
2036 return level == 0 ? 127 : 1023;
2037 else if (!is_sprite)
2038 /* ILK/SNB primary plane watermarks */
2039 return level == 0 ? 127 : 511;
2040 else
2041 /* ILK/SNB sprite plane watermarks */
2042 return level == 0 ? 63 : 255;
2043}
2044
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002045static unsigned int
2046ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002047{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002048 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002049 return level == 0 ? 63 : 255;
2050 else
2051 return level == 0 ? 31 : 63;
2052}
2053
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002054static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002055{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002056 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002057 return 31;
2058 else
2059 return 15;
2060}
2061
Ville Syrjälä158ae642013-08-07 13:28:19 +03002062/* Calculate the maximum primary/sprite plane watermark */
2063static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2064 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002065 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002066 enum intel_ddb_partitioning ddb_partitioning,
2067 bool is_sprite)
2068{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002069 struct drm_i915_private *dev_priv = to_i915(dev);
2070 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002071
2072 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002073 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002074 return 0;
2075
2076 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002077 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002078 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002079
2080 /*
2081 * For some reason the non self refresh
2082 * FIFO size is only half of the self
2083 * refresh FIFO size on ILK/SNB.
2084 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002085 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002086 fifo_size /= 2;
2087 }
2088
Ville Syrjälä240264f2013-08-07 13:29:12 +03002089 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002090 /* level 0 is always calculated with 1:1 split */
2091 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2092 if (is_sprite)
2093 fifo_size *= 5;
2094 fifo_size /= 6;
2095 } else {
2096 fifo_size /= 2;
2097 }
2098 }
2099
2100 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002101 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002102}
2103
2104/* Calculate the maximum cursor plane watermark */
2105static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002106 int level,
2107 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002108{
2109 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002110 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002111 return 64;
2112
2113 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002114 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002115}
2116
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002117static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002118 int level,
2119 const struct intel_wm_config *config,
2120 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002121 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002122{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002123 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2124 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2125 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002126 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002127}
2128
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002129static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002130 int level,
2131 struct ilk_wm_maximums *max)
2132{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002133 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2134 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2135 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2136 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002137}
2138
Ville Syrjäläd9395652013-10-09 19:18:10 +03002139static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002140 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002141 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002142{
2143 bool ret;
2144
2145 /* already determined to be invalid? */
2146 if (!result->enable)
2147 return false;
2148
2149 result->enable = result->pri_val <= max->pri &&
2150 result->spr_val <= max->spr &&
2151 result->cur_val <= max->cur;
2152
2153 ret = result->enable;
2154
2155 /*
2156 * HACK until we can pre-compute everything,
2157 * and thus fail gracefully if LP0 watermarks
2158 * are exceeded...
2159 */
2160 if (level == 0 && !result->enable) {
2161 if (result->pri_val > max->pri)
2162 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2163 level, result->pri_val, max->pri);
2164 if (result->spr_val > max->spr)
2165 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2166 level, result->spr_val, max->spr);
2167 if (result->cur_val > max->cur)
2168 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2169 level, result->cur_val, max->cur);
2170
2171 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2172 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2173 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2174 result->enable = true;
2175 }
2176
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002177 return ret;
2178}
2179
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002180static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002181 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002182 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002183 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002184 struct intel_plane_state *pristate,
2185 struct intel_plane_state *sprstate,
2186 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002187 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002188{
2189 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2190 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2191 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2192
2193 /* WM1+ latency values stored in 0.5us units */
2194 if (level > 0) {
2195 pri_latency *= 5;
2196 spr_latency *= 5;
2197 cur_latency *= 5;
2198 }
2199
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002200 if (pristate) {
2201 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2202 pri_latency, level);
2203 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2204 }
2205
2206 if (sprstate)
2207 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2208
2209 if (curstate)
2210 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2211
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002212 result->enable = true;
2213}
2214
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002215static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002216hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002217{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002218 const struct intel_atomic_state *intel_state =
2219 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002220 const struct drm_display_mode *adjusted_mode =
2221 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002222 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002223
Matt Roperee91a152015-12-03 11:37:39 -08002224 if (!cstate->base.active)
2225 return 0;
2226 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2227 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002228 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002229 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002230
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002231 /* The WM are computed with base on how long it takes to fill a single
2232 * row at the given clock rate, multiplied by 8.
2233 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002234 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2235 adjusted_mode->crtc_clock);
2236 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002237 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002238
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002239 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2240 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002241}
2242
Ville Syrjäläbb726512016-10-31 22:37:24 +02002243static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2244 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002245{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002246 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002247 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002248 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002249 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002250
2251 /* read the first set of memory latencies[0:3] */
2252 val = 0; /* data0 to be programmed to 0 for first set */
2253 mutex_lock(&dev_priv->rps.hw_lock);
2254 ret = sandybridge_pcode_read(dev_priv,
2255 GEN9_PCODE_READ_MEM_LATENCY,
2256 &val);
2257 mutex_unlock(&dev_priv->rps.hw_lock);
2258
2259 if (ret) {
2260 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2261 return;
2262 }
2263
2264 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2265 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2266 GEN9_MEM_LATENCY_LEVEL_MASK;
2267 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2268 GEN9_MEM_LATENCY_LEVEL_MASK;
2269 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2270 GEN9_MEM_LATENCY_LEVEL_MASK;
2271
2272 /* read the second set of memory latencies[4:7] */
2273 val = 1; /* data0 to be programmed to 1 for second set */
2274 mutex_lock(&dev_priv->rps.hw_lock);
2275 ret = sandybridge_pcode_read(dev_priv,
2276 GEN9_PCODE_READ_MEM_LATENCY,
2277 &val);
2278 mutex_unlock(&dev_priv->rps.hw_lock);
2279 if (ret) {
2280 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2281 return;
2282 }
2283
2284 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2285 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2286 GEN9_MEM_LATENCY_LEVEL_MASK;
2287 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2288 GEN9_MEM_LATENCY_LEVEL_MASK;
2289 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2290 GEN9_MEM_LATENCY_LEVEL_MASK;
2291
Vandana Kannan367294b2014-11-04 17:06:46 +00002292 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002293 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2294 * need to be disabled. We make sure to sanitize the values out
2295 * of the punit to satisfy this requirement.
2296 */
2297 for (level = 1; level <= max_level; level++) {
2298 if (wm[level] == 0) {
2299 for (i = level + 1; i <= max_level; i++)
2300 wm[i] = 0;
2301 break;
2302 }
2303 }
2304
2305 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002306 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002307 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002308 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002309 * to add 2us to the various latency levels we retrieve from the
2310 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002311 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002312 if (wm[0] == 0) {
2313 wm[0] += 2;
2314 for (level = 1; level <= max_level; level++) {
2315 if (wm[level] == 0)
2316 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002317 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002318 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002319 }
2320
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002321 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002322 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2323
2324 wm[0] = (sskpd >> 56) & 0xFF;
2325 if (wm[0] == 0)
2326 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002327 wm[1] = (sskpd >> 4) & 0xFF;
2328 wm[2] = (sskpd >> 12) & 0xFF;
2329 wm[3] = (sskpd >> 20) & 0x1FF;
2330 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002331 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002332 uint32_t sskpd = I915_READ(MCH_SSKPD);
2333
2334 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2335 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2336 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2337 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002338 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002339 uint32_t mltr = I915_READ(MLTR_ILK);
2340
2341 /* ILK primary LP0 latency is 700 ns */
2342 wm[0] = 7;
2343 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2344 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002345 }
2346}
2347
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002348static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2349 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002350{
2351 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002352 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002353 wm[0] = 13;
2354}
2355
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002356static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2357 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002358{
2359 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002360 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002361 wm[0] = 13;
2362
2363 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002364 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002365 wm[3] *= 2;
2366}
2367
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002368int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002369{
2370 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002371 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002372 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002373 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002374 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002375 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002376 return 3;
2377 else
2378 return 2;
2379}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002380
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002381static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002382 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002383 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002384{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002385 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002386
2387 for (level = 0; level <= max_level; level++) {
2388 unsigned int latency = wm[level];
2389
2390 if (latency == 0) {
2391 DRM_ERROR("%s WM%d latency not provided\n",
2392 name, level);
2393 continue;
2394 }
2395
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002396 /*
2397 * - latencies are in us on gen9.
2398 * - before then, WM1+ latency values are in 0.5us units
2399 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002400 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002401 latency *= 10;
2402 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002403 latency *= 5;
2404
2405 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2406 name, level, wm[level],
2407 latency / 10, latency % 10);
2408 }
2409}
2410
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002411static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2412 uint16_t wm[5], uint16_t min)
2413{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002414 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002415
2416 if (wm[0] >= min)
2417 return false;
2418
2419 wm[0] = max(wm[0], min);
2420 for (level = 1; level <= max_level; level++)
2421 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2422
2423 return true;
2424}
2425
Ville Syrjäläbb726512016-10-31 22:37:24 +02002426static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002427{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002428 bool changed;
2429
2430 /*
2431 * The BIOS provided WM memory latency values are often
2432 * inadequate for high resolution displays. Adjust them.
2433 */
2434 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2435 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2436 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2437
2438 if (!changed)
2439 return;
2440
2441 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002442 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2443 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2444 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002445}
2446
Ville Syrjäläbb726512016-10-31 22:37:24 +02002447static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002448{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002449 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002450
2451 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2452 sizeof(dev_priv->wm.pri_latency));
2453 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2454 sizeof(dev_priv->wm.pri_latency));
2455
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002456 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002457 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002458
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002459 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2460 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2461 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002462
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002463 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002464 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002465}
2466
Ville Syrjäläbb726512016-10-31 22:37:24 +02002467static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002468{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002469 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002470 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002471}
2472
Matt Ropered4a6a72016-02-23 17:20:13 -08002473static bool ilk_validate_pipe_wm(struct drm_device *dev,
2474 struct intel_pipe_wm *pipe_wm)
2475{
2476 /* LP0 watermark maximums depend on this pipe alone */
2477 const struct intel_wm_config config = {
2478 .num_pipes_active = 1,
2479 .sprites_enabled = pipe_wm->sprites_enabled,
2480 .sprites_scaled = pipe_wm->sprites_scaled,
2481 };
2482 struct ilk_wm_maximums max;
2483
2484 /* LP0 watermarks always use 1/2 DDB partitioning */
2485 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2486
2487 /* At least LP0 must be valid */
2488 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2489 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2490 return false;
2491 }
2492
2493 return true;
2494}
2495
Matt Roper261a27d2015-10-08 15:28:25 -07002496/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002497static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002498{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002499 struct drm_atomic_state *state = cstate->base.state;
2500 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002501 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002502 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002503 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002504 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002505 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002506 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002507 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002508 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002509 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002510
Matt Ropere8f1f022016-05-12 07:05:55 -07002511 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002512
Matt Roper43d59ed2015-09-24 15:53:07 -07002513 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002514 struct intel_plane_state *ps;
2515
2516 ps = intel_atomic_get_existing_plane_state(state,
2517 intel_plane);
2518 if (!ps)
2519 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002520
2521 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002522 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002523 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002524 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002525 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002526 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002527 }
2528
Matt Ropered4a6a72016-02-23 17:20:13 -08002529 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002530 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002531 pipe_wm->sprites_enabled = sprstate->base.visible;
2532 pipe_wm->sprites_scaled = sprstate->base.visible &&
2533 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2534 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002535 }
2536
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002537 usable_level = max_level;
2538
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002539 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002540 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002541 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002542
2543 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002544 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002545 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002546
Matt Roper86c8bbb2015-09-24 15:53:16 -07002547 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002548 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2549
2550 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2551 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002552
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002553 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002554 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002555
Matt Ropered4a6a72016-02-23 17:20:13 -08002556 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002557 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002558
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002559 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002560
2561 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002562 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002563
Matt Roper86c8bbb2015-09-24 15:53:16 -07002564 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002565 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002566
2567 /*
2568 * Disable any watermark level that exceeds the
2569 * register maximums since such watermarks are
2570 * always invalid.
2571 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002572 if (level > usable_level)
2573 continue;
2574
2575 if (ilk_validate_wm_level(level, &max, wm))
2576 pipe_wm->wm[level] = *wm;
2577 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002578 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002579 }
2580
Matt Roper86c8bbb2015-09-24 15:53:16 -07002581 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002582}
2583
2584/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002585 * Build a set of 'intermediate' watermark values that satisfy both the old
2586 * state and the new state. These can be programmed to the hardware
2587 * immediately.
2588 */
2589static int ilk_compute_intermediate_wm(struct drm_device *dev,
2590 struct intel_crtc *intel_crtc,
2591 struct intel_crtc_state *newstate)
2592{
Matt Ropere8f1f022016-05-12 07:05:55 -07002593 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002594 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002595 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002596
2597 /*
2598 * Start with the final, target watermarks, then combine with the
2599 * currently active watermarks to get values that are safe both before
2600 * and after the vblank.
2601 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002602 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002603 a->pipe_enabled |= b->pipe_enabled;
2604 a->sprites_enabled |= b->sprites_enabled;
2605 a->sprites_scaled |= b->sprites_scaled;
2606
2607 for (level = 0; level <= max_level; level++) {
2608 struct intel_wm_level *a_wm = &a->wm[level];
2609 const struct intel_wm_level *b_wm = &b->wm[level];
2610
2611 a_wm->enable &= b_wm->enable;
2612 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2613 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2614 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2615 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2616 }
2617
2618 /*
2619 * We need to make sure that these merged watermark values are
2620 * actually a valid configuration themselves. If they're not,
2621 * there's no safe way to transition from the old state to
2622 * the new state, so we need to fail the atomic transaction.
2623 */
2624 if (!ilk_validate_pipe_wm(dev, a))
2625 return -EINVAL;
2626
2627 /*
2628 * If our intermediate WM are identical to the final WM, then we can
2629 * omit the post-vblank programming; only update if it's different.
2630 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002631 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002632 newstate->wm.need_postvbl_update = false;
2633
2634 return 0;
2635}
2636
2637/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002638 * Merge the watermarks from all active pipes for a specific level.
2639 */
2640static void ilk_merge_wm_level(struct drm_device *dev,
2641 int level,
2642 struct intel_wm_level *ret_wm)
2643{
2644 const struct intel_crtc *intel_crtc;
2645
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002646 ret_wm->enable = true;
2647
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002648 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002649 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002650 const struct intel_wm_level *wm = &active->wm[level];
2651
2652 if (!active->pipe_enabled)
2653 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002654
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002655 /*
2656 * The watermark values may have been used in the past,
2657 * so we must maintain them in the registers for some
2658 * time even if the level is now disabled.
2659 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002660 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002661 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002662
2663 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2664 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2665 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2666 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2667 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002668}
2669
2670/*
2671 * Merge all low power watermarks for all active pipes.
2672 */
2673static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002674 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002675 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002676 struct intel_pipe_wm *merged)
2677{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002678 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002679 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002680 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002681
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002682 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002683 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002684 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002685 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002686
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002687 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002688 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002689
2690 /* merge each WM1+ level */
2691 for (level = 1; level <= max_level; level++) {
2692 struct intel_wm_level *wm = &merged->wm[level];
2693
2694 ilk_merge_wm_level(dev, level, wm);
2695
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002696 if (level > last_enabled_level)
2697 wm->enable = false;
2698 else if (!ilk_validate_wm_level(level, max, wm))
2699 /* make sure all following levels get disabled */
2700 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002701
2702 /*
2703 * The spec says it is preferred to disable
2704 * FBC WMs instead of disabling a WM level.
2705 */
2706 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002707 if (wm->enable)
2708 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002709 wm->fbc_val = 0;
2710 }
2711 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002712
2713 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2714 /*
2715 * FIXME this is racy. FBC might get enabled later.
2716 * What we should check here is whether FBC can be
2717 * enabled sometime later.
2718 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002719 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002720 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002721 for (level = 2; level <= max_level; level++) {
2722 struct intel_wm_level *wm = &merged->wm[level];
2723
2724 wm->enable = false;
2725 }
2726 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002727}
2728
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002729static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2730{
2731 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2732 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2733}
2734
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002735/* The value we need to program into the WM_LPx latency field */
2736static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2737{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002738 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002739
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002740 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002741 return 2 * level;
2742 else
2743 return dev_priv->wm.pri_latency[level];
2744}
2745
Imre Deak820c1982013-12-17 14:46:36 +02002746static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002747 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002748 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002749 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002750{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002751 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002752 struct intel_crtc *intel_crtc;
2753 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002754
Ville Syrjälä0362c782013-10-09 19:17:57 +03002755 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002756 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002757
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002758 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002759 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002760 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002761
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002762 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002763
Ville Syrjälä0362c782013-10-09 19:17:57 +03002764 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002765
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002766 /*
2767 * Maintain the watermark values even if the level is
2768 * disabled. Doing otherwise could cause underruns.
2769 */
2770 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002771 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002772 (r->pri_val << WM1_LP_SR_SHIFT) |
2773 r->cur_val;
2774
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002775 if (r->enable)
2776 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2777
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002778 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002779 results->wm_lp[wm_lp - 1] |=
2780 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2781 else
2782 results->wm_lp[wm_lp - 1] |=
2783 r->fbc_val << WM1_LP_FBC_SHIFT;
2784
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002785 /*
2786 * Always set WM1S_LP_EN when spr_val != 0, even if the
2787 * level is disabled. Doing otherwise could cause underruns.
2788 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002789 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002790 WARN_ON(wm_lp != 1);
2791 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2792 } else
2793 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002794 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002795
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002796 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002797 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002798 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002799 const struct intel_wm_level *r =
2800 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002801
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002802 if (WARN_ON(!r->enable))
2803 continue;
2804
Matt Ropered4a6a72016-02-23 17:20:13 -08002805 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002806
2807 results->wm_pipe[pipe] =
2808 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2809 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2810 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002811 }
2812}
2813
Paulo Zanoni861f3382013-05-31 10:19:21 -03002814/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2815 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002816static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002817 struct intel_pipe_wm *r1,
2818 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002819{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002820 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002821 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002822
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002823 for (level = 1; level <= max_level; level++) {
2824 if (r1->wm[level].enable)
2825 level1 = level;
2826 if (r2->wm[level].enable)
2827 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002828 }
2829
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002830 if (level1 == level2) {
2831 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002832 return r2;
2833 else
2834 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002835 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002836 return r1;
2837 } else {
2838 return r2;
2839 }
2840}
2841
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002842/* dirty bits used to track which watermarks need changes */
2843#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2844#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2845#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2846#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2847#define WM_DIRTY_FBC (1 << 24)
2848#define WM_DIRTY_DDB (1 << 25)
2849
Damien Lespiau055e3932014-08-18 13:49:10 +01002850static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002851 const struct ilk_wm_values *old,
2852 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002853{
2854 unsigned int dirty = 0;
2855 enum pipe pipe;
2856 int wm_lp;
2857
Damien Lespiau055e3932014-08-18 13:49:10 +01002858 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002859 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2860 dirty |= WM_DIRTY_LINETIME(pipe);
2861 /* Must disable LP1+ watermarks too */
2862 dirty |= WM_DIRTY_LP_ALL;
2863 }
2864
2865 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2866 dirty |= WM_DIRTY_PIPE(pipe);
2867 /* Must disable LP1+ watermarks too */
2868 dirty |= WM_DIRTY_LP_ALL;
2869 }
2870 }
2871
2872 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2873 dirty |= WM_DIRTY_FBC;
2874 /* Must disable LP1+ watermarks too */
2875 dirty |= WM_DIRTY_LP_ALL;
2876 }
2877
2878 if (old->partitioning != new->partitioning) {
2879 dirty |= WM_DIRTY_DDB;
2880 /* Must disable LP1+ watermarks too */
2881 dirty |= WM_DIRTY_LP_ALL;
2882 }
2883
2884 /* LP1+ watermarks already deemed dirty, no need to continue */
2885 if (dirty & WM_DIRTY_LP_ALL)
2886 return dirty;
2887
2888 /* Find the lowest numbered LP1+ watermark in need of an update... */
2889 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2890 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2891 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2892 break;
2893 }
2894
2895 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2896 for (; wm_lp <= 3; wm_lp++)
2897 dirty |= WM_DIRTY_LP(wm_lp);
2898
2899 return dirty;
2900}
2901
Ville Syrjälä8553c182013-12-05 15:51:39 +02002902static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2903 unsigned int dirty)
2904{
Imre Deak820c1982013-12-17 14:46:36 +02002905 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002906 bool changed = false;
2907
2908 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2909 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2910 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2911 changed = true;
2912 }
2913 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2914 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2915 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2916 changed = true;
2917 }
2918 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2919 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2920 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2921 changed = true;
2922 }
2923
2924 /*
2925 * Don't touch WM1S_LP_EN here.
2926 * Doing so could cause underruns.
2927 */
2928
2929 return changed;
2930}
2931
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002932/*
2933 * The spec says we shouldn't write when we don't need, because every write
2934 * causes WMs to be re-evaluated, expending some power.
2935 */
Imre Deak820c1982013-12-17 14:46:36 +02002936static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2937 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002938{
Imre Deak820c1982013-12-17 14:46:36 +02002939 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002940 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002941 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002942
Damien Lespiau055e3932014-08-18 13:49:10 +01002943 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002944 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002945 return;
2946
Ville Syrjälä8553c182013-12-05 15:51:39 +02002947 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002948
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002949 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002950 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002951 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002952 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002953 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002954 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2955
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002956 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002957 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002958 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002959 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002960 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002961 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2962
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002963 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002964 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002965 val = I915_READ(WM_MISC);
2966 if (results->partitioning == INTEL_DDB_PART_1_2)
2967 val &= ~WM_MISC_DATA_PARTITION_5_6;
2968 else
2969 val |= WM_MISC_DATA_PARTITION_5_6;
2970 I915_WRITE(WM_MISC, val);
2971 } else {
2972 val = I915_READ(DISP_ARB_CTL2);
2973 if (results->partitioning == INTEL_DDB_PART_1_2)
2974 val &= ~DISP_DATA_PARTITION_5_6;
2975 else
2976 val |= DISP_DATA_PARTITION_5_6;
2977 I915_WRITE(DISP_ARB_CTL2, val);
2978 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002979 }
2980
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002981 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002982 val = I915_READ(DISP_ARB_CTL);
2983 if (results->enable_fbc_wm)
2984 val &= ~DISP_FBC_WM_DIS;
2985 else
2986 val |= DISP_FBC_WM_DIS;
2987 I915_WRITE(DISP_ARB_CTL, val);
2988 }
2989
Imre Deak954911e2013-12-17 14:46:34 +02002990 if (dirty & WM_DIRTY_LP(1) &&
2991 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2992 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2993
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002994 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002995 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2996 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2997 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2998 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2999 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003000
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003001 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003002 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003003 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003004 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003005 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003006 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003007
3008 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003009}
3010
Matt Ropered4a6a72016-02-23 17:20:13 -08003011bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003012{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003013 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003014
3015 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3016}
3017
Lyude656d1b82016-08-17 15:55:54 -04003018#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003019
Matt Roper024c9042015-09-24 15:53:11 -07003020/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003021 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3022 * so assume we'll always need it in order to avoid underruns.
3023 */
3024static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3025{
3026 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3027
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003028 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003029 return true;
3030
3031 return false;
3032}
3033
Paulo Zanoni56feca92016-09-22 18:00:28 -03003034static bool
3035intel_has_sagv(struct drm_i915_private *dev_priv)
3036{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003037 if (IS_KABYLAKE(dev_priv))
3038 return true;
3039
3040 if (IS_SKYLAKE(dev_priv) &&
3041 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3042 return true;
3043
3044 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003045}
3046
Lyude656d1b82016-08-17 15:55:54 -04003047/*
3048 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3049 * depending on power and performance requirements. The display engine access
3050 * to system memory is blocked during the adjustment time. Because of the
3051 * blocking time, having this enabled can cause full system hangs and/or pipe
3052 * underruns if we don't meet all of the following requirements:
3053 *
3054 * - <= 1 pipe enabled
3055 * - All planes can enable watermarks for latencies >= SAGV engine block time
3056 * - We're not using an interlaced display configuration
3057 */
3058int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003059intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003060{
3061 int ret;
3062
Paulo Zanoni56feca92016-09-22 18:00:28 -03003063 if (!intel_has_sagv(dev_priv))
3064 return 0;
3065
3066 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003067 return 0;
3068
3069 DRM_DEBUG_KMS("Enabling the SAGV\n");
3070 mutex_lock(&dev_priv->rps.hw_lock);
3071
3072 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3073 GEN9_SAGV_ENABLE);
3074
3075 /* We don't need to wait for the SAGV when enabling */
3076 mutex_unlock(&dev_priv->rps.hw_lock);
3077
3078 /*
3079 * Some skl systems, pre-release machines in particular,
3080 * don't actually have an SAGV.
3081 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003082 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003083 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003084 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003085 return 0;
3086 } else if (ret < 0) {
3087 DRM_ERROR("Failed to enable the SAGV\n");
3088 return ret;
3089 }
3090
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003091 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003092 return 0;
3093}
3094
Lyude656d1b82016-08-17 15:55:54 -04003095int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003096intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003097{
Imre Deakb3b8e992016-12-05 18:27:38 +02003098 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003099
Paulo Zanoni56feca92016-09-22 18:00:28 -03003100 if (!intel_has_sagv(dev_priv))
3101 return 0;
3102
3103 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003104 return 0;
3105
3106 DRM_DEBUG_KMS("Disabling the SAGV\n");
3107 mutex_lock(&dev_priv->rps.hw_lock);
3108
3109 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003110 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3111 GEN9_SAGV_DISABLE,
3112 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3113 1);
Lyude656d1b82016-08-17 15:55:54 -04003114 mutex_unlock(&dev_priv->rps.hw_lock);
3115
Lyude656d1b82016-08-17 15:55:54 -04003116 /*
3117 * Some skl systems, pre-release machines in particular,
3118 * don't actually have an SAGV.
3119 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003120 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003121 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003122 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003123 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003124 } else if (ret < 0) {
3125 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3126 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003127 }
3128
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003129 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003130 return 0;
3131}
3132
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003133bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003134{
3135 struct drm_device *dev = state->dev;
3136 struct drm_i915_private *dev_priv = to_i915(dev);
3137 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003138 struct intel_crtc *crtc;
3139 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003140 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003141 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003142 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003143
Paulo Zanoni56feca92016-09-22 18:00:28 -03003144 if (!intel_has_sagv(dev_priv))
3145 return false;
3146
Lyude656d1b82016-08-17 15:55:54 -04003147 /*
3148 * SKL workaround: bspec recommends we disable the SAGV when we have
3149 * more then one pipe enabled
3150 *
3151 * If there are no active CRTCs, no additional checks need be performed
3152 */
3153 if (hweight32(intel_state->active_crtcs) == 0)
3154 return true;
3155 else if (hweight32(intel_state->active_crtcs) > 1)
3156 return false;
3157
3158 /* Since we're now guaranteed to only have one active CRTC... */
3159 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003160 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003161 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003162
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003163 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003164 return false;
3165
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003166 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003167 struct skl_plane_wm *wm =
3168 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003169
Lyude656d1b82016-08-17 15:55:54 -04003170 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003171 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003172 continue;
3173
3174 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003175 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003176 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003177 { }
3178
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003179 latency = dev_priv->wm.skl_latency[level];
3180
3181 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003182 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003183 I915_FORMAT_MOD_X_TILED)
3184 latency += 15;
3185
Lyude656d1b82016-08-17 15:55:54 -04003186 /*
3187 * If any of the planes on this pipe don't enable wm levels
3188 * that incur memory latencies higher then 30µs we can't enable
3189 * the SAGV
3190 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003191 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003192 return false;
3193 }
3194
3195 return true;
3196}
3197
Damien Lespiaub9cec072014-11-04 17:06:43 +00003198static void
3199skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003200 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003201 struct skl_ddb_entry *alloc, /* out */
3202 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003203{
Matt Roperc107acf2016-05-12 07:06:01 -07003204 struct drm_atomic_state *state = cstate->base.state;
3205 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3206 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003207 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003208 unsigned int pipe_size, ddb_size;
3209 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003210
Matt Ropera6d3460e2016-05-12 07:06:04 -07003211 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003212 alloc->start = 0;
3213 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003214 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003215 return;
3216 }
3217
Matt Ropera6d3460e2016-05-12 07:06:04 -07003218 if (intel_state->active_pipe_changes)
3219 *num_active = hweight32(intel_state->active_crtcs);
3220 else
3221 *num_active = hweight32(dev_priv->active_crtcs);
3222
Deepak M6f3fff62016-09-15 15:01:10 +05303223 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3224 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003225
3226 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3227
Matt Roperc107acf2016-05-12 07:06:01 -07003228 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003229 * If the state doesn't change the active CRTC's, then there's
3230 * no need to recalculate; the existing pipe allocation limits
3231 * should remain unchanged. Note that we're safe from racing
3232 * commits since any racing commit that changes the active CRTC
3233 * list would need to grab _all_ crtc locks, including the one
3234 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003235 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003236 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003237 /*
3238 * alloc may be cleared by clear_intel_crtc_state,
3239 * copy from old state to be sure
3240 */
3241 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003242 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003243 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003244
3245 nth_active_pipe = hweight32(intel_state->active_crtcs &
3246 (drm_crtc_mask(for_crtc) - 1));
3247 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3248 alloc->start = nth_active_pipe * ddb_size / *num_active;
3249 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003250}
3251
Matt Roperc107acf2016-05-12 07:06:01 -07003252static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003253{
Matt Roperc107acf2016-05-12 07:06:01 -07003254 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003255 return 32;
3256
3257 return 8;
3258}
3259
Damien Lespiaua269c582014-11-04 17:06:49 +00003260static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3261{
3262 entry->start = reg & 0x3ff;
3263 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003264 if (entry->end)
3265 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003266}
3267
Damien Lespiau08db6652014-11-04 17:06:52 +00003268void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3269 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003270{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003271 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003272
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003273 memset(ddb, 0, sizeof(*ddb));
3274
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003275 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003276 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003277 enum plane_id plane_id;
3278 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003279
3280 power_domain = POWER_DOMAIN_PIPE(pipe);
3281 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003282 continue;
3283
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003284 for_each_plane_id_on_crtc(crtc, plane_id) {
3285 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003286
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003287 if (plane_id != PLANE_CURSOR)
3288 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3289 else
3290 val = I915_READ(CUR_BUF_CFG(pipe));
3291
3292 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3293 }
Imre Deak4d800032016-02-17 16:31:29 +02003294
3295 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003296 }
3297}
3298
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003299/*
3300 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3301 * The bspec defines downscale amount as:
3302 *
3303 * """
3304 * Horizontal down scale amount = maximum[1, Horizontal source size /
3305 * Horizontal destination size]
3306 * Vertical down scale amount = maximum[1, Vertical source size /
3307 * Vertical destination size]
3308 * Total down scale amount = Horizontal down scale amount *
3309 * Vertical down scale amount
3310 * """
3311 *
3312 * Return value is provided in 16.16 fixed point form to retain fractional part.
3313 * Caller should take care of dividing & rounding off the value.
3314 */
3315static uint32_t
3316skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3317{
3318 uint32_t downscale_h, downscale_w;
3319 uint32_t src_w, src_h, dst_w, dst_h;
3320
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003321 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003322 return DRM_PLANE_HELPER_NO_SCALING;
3323
3324 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003325 src_w = drm_rect_width(&pstate->base.src);
3326 src_h = drm_rect_height(&pstate->base.src);
3327 dst_w = drm_rect_width(&pstate->base.dst);
3328 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003329 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003330 swap(dst_w, dst_h);
3331
3332 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3333 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3334
3335 /* Provide result in 16.16 fixed point */
3336 return (uint64_t)downscale_w * downscale_h >> 16;
3337}
3338
Damien Lespiaub9cec072014-11-04 17:06:43 +00003339static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003340skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3341 const struct drm_plane_state *pstate,
3342 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003343{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003344 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003345 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003346 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003347 struct drm_framebuffer *fb;
3348 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003349
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003350 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003351 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003352
3353 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003354 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003355
Matt Ropera1de91e2016-05-12 07:05:57 -07003356 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3357 return 0;
3358 if (y && format != DRM_FORMAT_NV12)
3359 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003360
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003361 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3362 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003363
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003364 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003365 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003366
3367 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003368 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003369 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003370 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003371 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003372 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003373 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003374 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003375 } else {
3376 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003377 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003378 }
3379
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003380 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3381
3382 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003383}
3384
3385/*
3386 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3387 * a 8192x4096@32bpp framebuffer:
3388 * 3 * 4096 * 8192 * 4 < 2^32
3389 */
3390static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003391skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3392 unsigned *plane_data_rate,
3393 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003394{
Matt Roper9c74d822016-05-12 07:05:58 -07003395 struct drm_crtc_state *cstate = &intel_cstate->base;
3396 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003397 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003398 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003399 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003400
3401 if (WARN_ON(!state))
3402 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003403
Matt Ropera1de91e2016-05-12 07:05:57 -07003404 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003405 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003406 enum plane_id plane_id = to_intel_plane(plane)->id;
3407 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003408
Matt Ropera6d3460e2016-05-12 07:06:04 -07003409 /* packed/uv */
3410 rate = skl_plane_relative_data_rate(intel_cstate,
3411 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003412 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003413
3414 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003415
Matt Ropera6d3460e2016-05-12 07:06:04 -07003416 /* y-plane */
3417 rate = skl_plane_relative_data_rate(intel_cstate,
3418 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003419 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003420
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003421 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003422 }
3423
3424 return total_data_rate;
3425}
3426
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003427static uint16_t
3428skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3429 const int y)
3430{
3431 struct drm_framebuffer *fb = pstate->fb;
3432 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3433 uint32_t src_w, src_h;
3434 uint32_t min_scanlines = 8;
3435 uint8_t plane_bpp;
3436
3437 if (WARN_ON(!fb))
3438 return 0;
3439
3440 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003441 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003442 return 0;
3443
3444 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003445 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3446 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003447 return 8;
3448
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003449 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3450 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003451
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003452 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003453 swap(src_w, src_h);
3454
3455 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003456 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003457 src_w /= 2;
3458 src_h /= 2;
3459 }
3460
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003461 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003462 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003463 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003464 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003465
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003466 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003467 switch (plane_bpp) {
3468 case 1:
3469 min_scanlines = 32;
3470 break;
3471 case 2:
3472 min_scanlines = 16;
3473 break;
3474 case 4:
3475 min_scanlines = 8;
3476 break;
3477 case 8:
3478 min_scanlines = 4;
3479 break;
3480 default:
3481 WARN(1, "Unsupported pixel depth %u for rotation",
3482 plane_bpp);
3483 min_scanlines = 32;
3484 }
3485 }
3486
3487 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3488}
3489
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003490static void
3491skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3492 uint16_t *minimum, uint16_t *y_minimum)
3493{
3494 const struct drm_plane_state *pstate;
3495 struct drm_plane *plane;
3496
3497 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003498 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003499
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003500 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003501 continue;
3502
3503 if (!pstate->visible)
3504 continue;
3505
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003506 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3507 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003508 }
3509
3510 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3511}
3512
Matt Roperc107acf2016-05-12 07:06:01 -07003513static int
Matt Roper024c9042015-09-24 15:53:11 -07003514skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003515 struct skl_ddb_allocation *ddb /* out */)
3516{
Matt Roperc107acf2016-05-12 07:06:01 -07003517 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003518 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003519 struct drm_device *dev = crtc->dev;
3520 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3521 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003522 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003523 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003524 uint16_t minimum[I915_MAX_PLANES] = {};
3525 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003526 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003527 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003528 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003529 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3530 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003531
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003532 /* Clear the partitioning for disabled planes. */
3533 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3534 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3535
Matt Ropera6d3460e2016-05-12 07:06:04 -07003536 if (WARN_ON(!state))
3537 return 0;
3538
Matt Roperc107acf2016-05-12 07:06:01 -07003539 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003540 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003541 return 0;
3542 }
3543
Matt Ropera6d3460e2016-05-12 07:06:04 -07003544 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003545 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003546 if (alloc_size == 0) {
3547 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003548 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003549 }
3550
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003551 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003552
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003553 /*
3554 * 1. Allocate the mininum required blocks for each active plane
3555 * and allocate the cursor, it doesn't require extra allocation
3556 * proportional to the data rate.
3557 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003558
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003559 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3560 alloc_size -= minimum[plane_id];
3561 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003562 }
3563
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003564 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3565 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3566
Damien Lespiaub9cec072014-11-04 17:06:43 +00003567 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003568 * 2. Distribute the remaining space in proportion to the amount of
3569 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003570 *
3571 * FIXME: we may not allocate every single block here.
3572 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003573 total_data_rate = skl_get_total_relative_data_rate(cstate,
3574 plane_data_rate,
3575 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003576 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003577 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003578
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003579 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003580 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003581 unsigned int data_rate, y_data_rate;
3582 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003583
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003584 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003585 continue;
3586
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003587 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003588
3589 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003590 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003591 * promote the expression to 64 bits to avoid overflowing, the
3592 * result is < available as data_rate / total_data_rate < 1
3593 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003594 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003595 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3596 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003597
Matt Roperc107acf2016-05-12 07:06:01 -07003598 /* Leave disabled planes at (0,0) */
3599 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003600 ddb->plane[pipe][plane_id].start = start;
3601 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003602 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003603
3604 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003605
3606 /*
3607 * allocation for y_plane part of planar format:
3608 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003609 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003610
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003611 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003612 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3613 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003614
Matt Roperc107acf2016-05-12 07:06:01 -07003615 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003616 ddb->y_plane[pipe][plane_id].start = start;
3617 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003618 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003619
Matt Ropera1de91e2016-05-12 07:05:57 -07003620 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003621 }
3622
Matt Roperc107acf2016-05-12 07:06:01 -07003623 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003624}
3625
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003626/*
3627 * 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 +02003628 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003629 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3630 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3631*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303632static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3633 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003634{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303635 uint32_t wm_intermediate_val;
3636 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003637
3638 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303639 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003640
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303641 wm_intermediate_val = latency * pixel_rate * cpp;
3642 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003643 return ret;
3644}
3645
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303646static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3647 uint32_t pipe_htotal,
3648 uint32_t latency,
3649 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003650{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003651 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303652 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003653
3654 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303655 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003656
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003657 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303658 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3659 pipe_htotal * 1000);
3660 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003661 return ret;
3662}
3663
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003664static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3665 struct intel_plane_state *pstate)
3666{
3667 uint64_t adjusted_pixel_rate;
3668 uint64_t downscale_amount;
3669 uint64_t pixel_rate;
3670
3671 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003672 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003673 return 0;
3674
3675 /*
3676 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3677 * with additional adjustments for plane-specific scaling.
3678 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003679 adjusted_pixel_rate = cstate->pixel_rate;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003680 downscale_amount = skl_plane_downscale_amount(pstate);
3681
3682 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3683 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3684
3685 return pixel_rate;
3686}
3687
Matt Roper55994c22016-05-12 07:06:08 -07003688static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3689 struct intel_crtc_state *cstate,
3690 struct intel_plane_state *intel_pstate,
3691 uint16_t ddb_allocation,
3692 int level,
3693 uint16_t *out_blocks, /* out */
3694 uint8_t *out_lines, /* out */
3695 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003696{
Matt Roper33815fa2016-05-12 07:06:05 -07003697 struct drm_plane_state *pstate = &intel_pstate->base;
3698 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003699 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303700 uint_fixed_16_16_t method1, method2;
3701 uint_fixed_16_16_t plane_blocks_per_line;
3702 uint_fixed_16_16_t selected_result;
3703 uint32_t interm_pbpl;
3704 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003705 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003706 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003707 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003708 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303709 uint_fixed_16_16_t y_tile_minimum;
3710 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003711 struct intel_atomic_state *state =
3712 to_intel_atomic_state(cstate->base.state);
3713 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303714 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003715
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003716 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003717 *enabled = false;
3718 return 0;
3719 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003720
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303721 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3722 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3723 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3724
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303725 /* Display WA #1141: kbl. */
3726 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3727 latency += 4;
3728
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303729 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003730 latency += 15;
3731
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003732 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3733 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003734
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003735 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003736 swap(width, height);
3737
Ville Syrjälä353c8592016-12-14 23:30:57 +02003738 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003739 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3740
Dave Airlie61d0a042016-10-25 16:35:20 +10003741 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003742 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003743 fb->format->cpp[1] :
3744 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003745
3746 switch (cpp) {
3747 case 1:
3748 y_min_scanlines = 16;
3749 break;
3750 case 2:
3751 y_min_scanlines = 8;
3752 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003753 case 4:
3754 y_min_scanlines = 4;
3755 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003756 default:
3757 MISSING_CASE(cpp);
3758 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003759 }
3760 } else {
3761 y_min_scanlines = 4;
3762 }
3763
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003764 if (apply_memory_bw_wa)
3765 y_min_scanlines *= 2;
3766
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003767 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303768 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303769 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3770 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003771 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303772 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303773 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303774 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3775 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303776 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303777 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3778 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003779 }
3780
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003781 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3782 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003783 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003784 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003785 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003786
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303787 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3788 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003789
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303790 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303791 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003792 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003793 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3794 (plane_bytes_per_line / 512 < 1))
3795 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303796 else if ((ddb_allocation /
3797 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3798 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003799 else
3800 selected_result = method1;
3801 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003802
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303803 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3804 res_lines = DIV_ROUND_UP(selected_result.val,
3805 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003806
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003807 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303808 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303809 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003810 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003811 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003812 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003813 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003814 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003815
Matt Roper55994c22016-05-12 07:06:08 -07003816 if (res_blocks >= ddb_allocation || res_lines > 31) {
3817 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003818
3819 /*
3820 * If there are no valid level 0 watermarks, then we can't
3821 * support this display configuration.
3822 */
3823 if (level) {
3824 return 0;
3825 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003826 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003827
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003828 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3829 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3830 plane->base.id, plane->name,
3831 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003832 return -EINVAL;
3833 }
Matt Roper55994c22016-05-12 07:06:08 -07003834 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003835
3836 *out_blocks = res_blocks;
3837 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003838 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003839
Matt Roper55994c22016-05-12 07:06:08 -07003840 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003841}
3842
Matt Roperf4a96752016-05-12 07:06:06 -07003843static int
3844skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3845 struct skl_ddb_allocation *ddb,
3846 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003847 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003848 int level,
3849 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003850{
Matt Roperf4a96752016-05-12 07:06:06 -07003851 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003852 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003853 struct drm_plane *plane = &intel_plane->base;
3854 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003855 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003856 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003857 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003858
3859 if (state)
3860 intel_pstate =
3861 intel_atomic_get_existing_plane_state(state,
3862 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003863
Matt Roperf4a96752016-05-12 07:06:06 -07003864 /*
Lyudea62163e2016-10-04 14:28:20 -04003865 * Note: If we start supporting multiple pending atomic commits against
3866 * the same planes/CRTC's in the future, plane->state will no longer be
3867 * the correct pre-state to use for the calculations here and we'll
3868 * need to change where we get the 'unchanged' plane data from.
3869 *
3870 * For now this is fine because we only allow one queued commit against
3871 * a CRTC. Even if the plane isn't modified by this transaction and we
3872 * don't have a plane lock, we still have the CRTC's lock, so we know
3873 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003874 */
Lyudea62163e2016-10-04 14:28:20 -04003875 if (!intel_pstate)
3876 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003877
Lyudea62163e2016-10-04 14:28:20 -04003878 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003879
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003880 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003881
Lyudea62163e2016-10-04 14:28:20 -04003882 ret = skl_compute_plane_wm(dev_priv,
3883 cstate,
3884 intel_pstate,
3885 ddb_blocks,
3886 level,
3887 &result->plane_res_b,
3888 &result->plane_res_l,
3889 &result->plane_en);
3890 if (ret)
3891 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003892
3893 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003894}
3895
Damien Lespiau407b50f2014-11-04 17:06:57 +00003896static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003897skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003898{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303899 struct drm_atomic_state *state = cstate->base.state;
3900 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003901 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303902 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003903
Matt Roper024c9042015-09-24 15:53:11 -07003904 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003905 return 0;
3906
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02003907 pixel_rate = cstate->pixel_rate;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003908
3909 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003910 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003911
Mahesh Kumara3a89862016-12-01 21:19:34 +05303912 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3913 1000, pixel_rate);
3914
3915 /* Display WA #1135: bxt. */
3916 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3917 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3918
3919 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003920}
3921
Matt Roper024c9042015-09-24 15:53:11 -07003922static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003923 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003924{
Matt Roper024c9042015-09-24 15:53:11 -07003925 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003926 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003927
3928 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003929 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003930}
3931
Matt Roper55994c22016-05-12 07:06:08 -07003932static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3933 struct skl_ddb_allocation *ddb,
3934 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003935{
Matt Roper024c9042015-09-24 15:53:11 -07003936 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003937 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003938 struct intel_plane *intel_plane;
3939 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003940 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003941 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003942
Lyudea62163e2016-10-04 14:28:20 -04003943 /*
3944 * We'll only calculate watermarks for planes that are actually
3945 * enabled, so make sure all other planes are set as disabled.
3946 */
3947 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3948
3949 for_each_intel_plane_mask(&dev_priv->drm,
3950 intel_plane,
3951 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003952 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003953
3954 for (level = 0; level <= max_level; level++) {
3955 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3956 intel_plane, level,
3957 &wm->wm[level]);
3958 if (ret)
3959 return ret;
3960 }
3961 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003962 }
Matt Roper024c9042015-09-24 15:53:11 -07003963 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003964
Matt Roper55994c22016-05-12 07:06:08 -07003965 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003966}
3967
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003968static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3969 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003970 const struct skl_ddb_entry *entry)
3971{
3972 if (entry->end)
3973 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3974 else
3975 I915_WRITE(reg, 0);
3976}
3977
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003978static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3979 i915_reg_t reg,
3980 const struct skl_wm_level *level)
3981{
3982 uint32_t val = 0;
3983
3984 if (level->plane_en) {
3985 val |= PLANE_WM_EN;
3986 val |= level->plane_res_b;
3987 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3988 }
3989
3990 I915_WRITE(reg, val);
3991}
3992
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003993static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3994 const struct skl_plane_wm *wm,
3995 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003996 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003997{
3998 struct drm_crtc *crtc = &intel_crtc->base;
3999 struct drm_device *dev = crtc->dev;
4000 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004001 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004002 enum pipe pipe = intel_crtc->pipe;
4003
4004 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004005 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004006 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004007 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004008 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004009 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004010
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004011 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4012 &ddb->plane[pipe][plane_id]);
4013 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4014 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004015}
4016
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004017static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4018 const struct skl_plane_wm *wm,
4019 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004020{
4021 struct drm_crtc *crtc = &intel_crtc->base;
4022 struct drm_device *dev = crtc->dev;
4023 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004024 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004025 enum pipe pipe = intel_crtc->pipe;
4026
4027 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004028 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4029 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004030 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004031 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004032
4033 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004034 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004035}
4036
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004037bool skl_wm_level_equals(const struct skl_wm_level *l1,
4038 const struct skl_wm_level *l2)
4039{
4040 if (l1->plane_en != l2->plane_en)
4041 return false;
4042
4043 /* If both planes aren't enabled, the rest shouldn't matter */
4044 if (!l1->plane_en)
4045 return true;
4046
4047 return (l1->plane_res_l == l2->plane_res_l &&
4048 l1->plane_res_b == l2->plane_res_b);
4049}
4050
Lyude27082492016-08-24 07:48:10 +02004051static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4052 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004053{
Lyude27082492016-08-24 07:48:10 +02004054 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004055}
4056
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004057bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
4058 const struct skl_ddb_entry *ddb,
4059 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004060{
Lyudece0ba282016-09-15 10:46:35 -04004061 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004062
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004063 for (i = 0; i < I915_MAX_PIPES; i++)
4064 if (i != ignore && entries[i] &&
4065 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02004066 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004067
Lyude27082492016-08-24 07:48:10 +02004068 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004069}
4070
Matt Roper55994c22016-05-12 07:06:08 -07004071static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004072 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004073 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004074 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004075 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004076{
Matt Roperf4a96752016-05-12 07:06:06 -07004077 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004078 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004079
Matt Roper55994c22016-05-12 07:06:08 -07004080 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4081 if (ret)
4082 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004083
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004084 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004085 *changed = false;
4086 else
4087 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004088
Matt Roper55994c22016-05-12 07:06:08 -07004089 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004090}
4091
Matt Roper9b613022016-06-27 16:42:44 -07004092static uint32_t
4093pipes_modified(struct drm_atomic_state *state)
4094{
4095 struct drm_crtc *crtc;
4096 struct drm_crtc_state *cstate;
4097 uint32_t i, ret = 0;
4098
4099 for_each_crtc_in_state(state, crtc, cstate, i)
4100 ret |= drm_crtc_mask(crtc);
4101
4102 return ret;
4103}
4104
Jani Nikulabb7791b2016-10-04 12:29:17 +03004105static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004106skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4107{
4108 struct drm_atomic_state *state = cstate->base.state;
4109 struct drm_device *dev = state->dev;
4110 struct drm_crtc *crtc = cstate->base.crtc;
4111 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4112 struct drm_i915_private *dev_priv = to_i915(dev);
4113 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4114 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4115 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4116 struct drm_plane_state *plane_state;
4117 struct drm_plane *plane;
4118 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004119
4120 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4121
Maarten Lankhorst220b0962016-10-26 15:41:30 +02004122 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004123 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004124
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004125 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4126 &new_ddb->plane[pipe][plane_id]) &&
4127 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4128 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004129 continue;
4130
4131 plane_state = drm_atomic_get_plane_state(state, plane);
4132 if (IS_ERR(plane_state))
4133 return PTR_ERR(plane_state);
4134 }
4135
4136 return 0;
4137}
4138
Matt Roper98d39492016-05-12 07:06:03 -07004139static int
4140skl_compute_ddb(struct drm_atomic_state *state)
4141{
4142 struct drm_device *dev = state->dev;
4143 struct drm_i915_private *dev_priv = to_i915(dev);
4144 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4145 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004146 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004147 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004148 int ret;
4149
4150 /*
4151 * If this is our first atomic update following hardware readout,
4152 * we can't trust the DDB that the BIOS programmed for us. Let's
4153 * pretend that all pipes switched active status so that we'll
4154 * ensure a full DDB recompute.
4155 */
Matt Roper1b54a882016-06-17 13:42:18 -07004156 if (dev_priv->wm.distrust_bios_wm) {
4157 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4158 state->acquire_ctx);
4159 if (ret)
4160 return ret;
4161
Matt Roper98d39492016-05-12 07:06:03 -07004162 intel_state->active_pipe_changes = ~0;
4163
Matt Roper1b54a882016-06-17 13:42:18 -07004164 /*
4165 * We usually only initialize intel_state->active_crtcs if we
4166 * we're doing a modeset; make sure this field is always
4167 * initialized during the sanitization process that happens
4168 * on the first commit too.
4169 */
4170 if (!intel_state->modeset)
4171 intel_state->active_crtcs = dev_priv->active_crtcs;
4172 }
4173
Matt Roper98d39492016-05-12 07:06:03 -07004174 /*
4175 * If the modeset changes which CRTC's are active, we need to
4176 * recompute the DDB allocation for *all* active pipes, even
4177 * those that weren't otherwise being modified in any way by this
4178 * atomic commit. Due to the shrinking of the per-pipe allocations
4179 * when new active CRTC's are added, it's possible for a pipe that
4180 * we were already using and aren't changing at all here to suddenly
4181 * become invalid if its DDB needs exceeds its new allocation.
4182 *
4183 * Note that if we wind up doing a full DDB recompute, we can't let
4184 * any other display updates race with this transaction, so we need
4185 * to grab the lock on *all* CRTC's.
4186 */
Matt Roper734fa012016-05-12 15:11:40 -07004187 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004188 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004189 intel_state->wm_results.dirty_pipes = ~0;
4190 }
Matt Roper98d39492016-05-12 07:06:03 -07004191
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004192 /*
4193 * We're not recomputing for the pipes not included in the commit, so
4194 * make sure we start with the current state.
4195 */
4196 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4197
Matt Roper98d39492016-05-12 07:06:03 -07004198 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4199 struct intel_crtc_state *cstate;
4200
4201 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4202 if (IS_ERR(cstate))
4203 return PTR_ERR(cstate);
4204
Matt Roper734fa012016-05-12 15:11:40 -07004205 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004206 if (ret)
4207 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004208
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004209 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004210 if (ret)
4211 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004212 }
4213
4214 return 0;
4215}
4216
Matt Roper2722efb2016-08-17 15:55:55 -04004217static void
4218skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4219 struct skl_wm_values *src,
4220 enum pipe pipe)
4221{
Matt Roper2722efb2016-08-17 15:55:55 -04004222 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4223 sizeof(dst->ddb.y_plane[pipe]));
4224 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4225 sizeof(dst->ddb.plane[pipe]));
4226}
4227
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004228static void
4229skl_print_wm_changes(const struct drm_atomic_state *state)
4230{
4231 const struct drm_device *dev = state->dev;
4232 const struct drm_i915_private *dev_priv = to_i915(dev);
4233 const struct intel_atomic_state *intel_state =
4234 to_intel_atomic_state(state);
4235 const struct drm_crtc *crtc;
4236 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004237 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004238 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4239 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004240 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004241
4242 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004243 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4244 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004245
Maarten Lankhorst75704982016-11-01 12:04:10 +01004246 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004247 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004248 const struct skl_ddb_entry *old, *new;
4249
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004250 old = &old_ddb->plane[pipe][plane_id];
4251 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004252
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004253 if (skl_ddb_entry_equal(old, new))
4254 continue;
4255
Maarten Lankhorst75704982016-11-01 12:04:10 +01004256 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4257 intel_plane->base.base.id,
4258 intel_plane->base.name,
4259 old->start, old->end,
4260 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004261 }
4262 }
4263}
4264
Matt Roper98d39492016-05-12 07:06:03 -07004265static int
4266skl_compute_wm(struct drm_atomic_state *state)
4267{
4268 struct drm_crtc *crtc;
4269 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004270 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4271 struct skl_wm_values *results = &intel_state->wm_results;
4272 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004273 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004274 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004275
4276 /*
4277 * If this transaction isn't actually touching any CRTC's, don't
4278 * bother with watermark calculation. Note that if we pass this
4279 * test, we're guaranteed to hold at least one CRTC state mutex,
4280 * which means we can safely use values like dev_priv->active_crtcs
4281 * since any racing commits that want to update them would need to
4282 * hold _all_ CRTC state mutexes.
4283 */
4284 for_each_crtc_in_state(state, crtc, cstate, i)
4285 changed = true;
4286 if (!changed)
4287 return 0;
4288
Matt Roper734fa012016-05-12 15:11:40 -07004289 /* Clear all dirty flags */
4290 results->dirty_pipes = 0;
4291
Matt Roper98d39492016-05-12 07:06:03 -07004292 ret = skl_compute_ddb(state);
4293 if (ret)
4294 return ret;
4295
Matt Roper734fa012016-05-12 15:11:40 -07004296 /*
4297 * Calculate WM's for all pipes that are part of this transaction.
4298 * Note that the DDB allocation above may have added more CRTC's that
4299 * weren't otherwise being modified (and set bits in dirty_pipes) if
4300 * pipe allocations had to change.
4301 *
4302 * FIXME: Now that we're doing this in the atomic check phase, we
4303 * should allow skl_update_pipe_wm() to return failure in cases where
4304 * no suitable watermark values can be found.
4305 */
4306 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004307 struct intel_crtc_state *intel_cstate =
4308 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004309 const struct skl_pipe_wm *old_pipe_wm =
4310 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004311
4312 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004313 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4314 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004315 if (ret)
4316 return ret;
4317
4318 if (changed)
4319 results->dirty_pipes |= drm_crtc_mask(crtc);
4320
4321 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4322 /* This pipe's WM's did not change */
4323 continue;
4324
4325 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004326 }
4327
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004328 skl_print_wm_changes(state);
4329
Matt Roper98d39492016-05-12 07:06:03 -07004330 return 0;
4331}
4332
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004333static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4334 struct intel_crtc_state *cstate)
4335{
4336 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4337 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4338 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004339 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004340 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004341 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004342
4343 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4344 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004345
4346 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004347
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004348 for_each_plane_id_on_crtc(crtc, plane_id) {
4349 if (plane_id != PLANE_CURSOR)
4350 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4351 ddb, plane_id);
4352 else
4353 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4354 ddb);
4355 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004356}
4357
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004358static void skl_initial_wm(struct intel_atomic_state *state,
4359 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004360{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004361 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004362 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004363 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004364 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004365 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004366 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004367
Ville Syrjälä432081b2016-10-31 22:37:03 +02004368 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004369 return;
4370
Matt Roper734fa012016-05-12 15:11:40 -07004371 mutex_lock(&dev_priv->wm.wm_mutex);
4372
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004373 if (cstate->base.active_changed)
4374 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004375
4376 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004377
4378 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004379}
4380
Ville Syrjäläd8905652016-01-14 14:53:35 +02004381static void ilk_compute_wm_config(struct drm_device *dev,
4382 struct intel_wm_config *config)
4383{
4384 struct intel_crtc *crtc;
4385
4386 /* Compute the currently _active_ config */
4387 for_each_intel_crtc(dev, crtc) {
4388 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4389
4390 if (!wm->pipe_enabled)
4391 continue;
4392
4393 config->sprites_enabled |= wm->sprites_enabled;
4394 config->sprites_scaled |= wm->sprites_scaled;
4395 config->num_pipes_active++;
4396 }
4397}
4398
Matt Ropered4a6a72016-02-23 17:20:13 -08004399static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004400{
Chris Wilson91c8a322016-07-05 10:40:23 +01004401 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004402 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004403 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004404 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004405 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004406 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004407
Ville Syrjäläd8905652016-01-14 14:53:35 +02004408 ilk_compute_wm_config(dev, &config);
4409
4410 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4411 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004412
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004413 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004414 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004415 config.num_pipes_active == 1 && config.sprites_enabled) {
4416 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4417 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004418
Imre Deak820c1982013-12-17 14:46:36 +02004419 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004420 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004421 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004422 }
4423
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004424 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004425 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004426
Imre Deak820c1982013-12-17 14:46:36 +02004427 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004428
Imre Deak820c1982013-12-17 14:46:36 +02004429 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004430}
4431
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004432static void ilk_initial_watermarks(struct intel_atomic_state *state,
4433 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004434{
Matt Ropered4a6a72016-02-23 17:20:13 -08004435 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4436 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004437
Matt Ropered4a6a72016-02-23 17:20:13 -08004438 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004439 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004440 ilk_program_watermarks(dev_priv);
4441 mutex_unlock(&dev_priv->wm.wm_mutex);
4442}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004443
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004444static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4445 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004446{
4447 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4448 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4449
4450 mutex_lock(&dev_priv->wm.wm_mutex);
4451 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004452 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004453 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004454 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004455 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004456}
4457
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004458static inline void skl_wm_level_from_reg_val(uint32_t val,
4459 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004460{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004461 level->plane_en = val & PLANE_WM_EN;
4462 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4463 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4464 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004465}
4466
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004467void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4468 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004469{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004470 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004471 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004472 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004473 int level, max_level;
4474 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004475 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004476
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004477 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004478
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004479 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4480 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004481
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004482 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004483 if (plane_id != PLANE_CURSOR)
4484 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004485 else
4486 val = I915_READ(CUR_WM(pipe, level));
4487
4488 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4489 }
4490
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004491 if (plane_id != PLANE_CURSOR)
4492 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004493 else
4494 val = I915_READ(CUR_WM_TRANS(pipe));
4495
4496 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4497 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004498
Matt Roper3ef00282015-03-09 10:19:24 -07004499 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004500 return;
4501
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004502 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004503}
4504
4505void skl_wm_get_hw_state(struct drm_device *dev)
4506{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004507 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004508 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004509 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004510 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004511 struct intel_crtc *intel_crtc;
4512 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004513
Damien Lespiaua269c582014-11-04 17:06:49 +00004514 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004515 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4516 intel_crtc = to_intel_crtc(crtc);
4517 cstate = to_intel_crtc_state(crtc->state);
4518
4519 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4520
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004521 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004522 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004523 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004524
Matt Roper279e99d2016-05-12 07:06:02 -07004525 if (dev_priv->active_crtcs) {
4526 /* Fully recompute DDB on first atomic commit */
4527 dev_priv->wm.distrust_bios_wm = true;
4528 } else {
4529 /* Easy/common case; just sanitize DDB now if everything off */
4530 memset(ddb, 0, sizeof(*ddb));
4531 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004532}
4533
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004534static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4535{
4536 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004537 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004538 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004539 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004540 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004541 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004542 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004543 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004544 [PIPE_A] = WM0_PIPEA_ILK,
4545 [PIPE_B] = WM0_PIPEB_ILK,
4546 [PIPE_C] = WM0_PIPEC_IVB,
4547 };
4548
4549 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004550 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004551 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004552
Ville Syrjälä15606532016-05-13 17:55:17 +03004553 memset(active, 0, sizeof(*active));
4554
Matt Roper3ef00282015-03-09 10:19:24 -07004555 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004556
4557 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004558 u32 tmp = hw->wm_pipe[pipe];
4559
4560 /*
4561 * For active pipes LP0 watermark is marked as
4562 * enabled, and LP1+ watermaks as disabled since
4563 * we can't really reverse compute them in case
4564 * multiple pipes are active.
4565 */
4566 active->wm[0].enable = true;
4567 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4568 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4569 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4570 active->linetime = hw->wm_linetime[pipe];
4571 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004572 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004573
4574 /*
4575 * For inactive pipes, all watermark levels
4576 * should be marked as enabled but zeroed,
4577 * which is what we'd compute them to.
4578 */
4579 for (level = 0; level <= max_level; level++)
4580 active->wm[level].enable = true;
4581 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004582
4583 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004584}
4585
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004586#define _FW_WM(value, plane) \
4587 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4588#define _FW_WM_VLV(value, plane) \
4589 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4590
4591static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4592 struct vlv_wm_values *wm)
4593{
4594 enum pipe pipe;
4595 uint32_t tmp;
4596
4597 for_each_pipe(dev_priv, pipe) {
4598 tmp = I915_READ(VLV_DDL(pipe));
4599
Ville Syrjälä1b313892016-11-28 19:37:08 +02004600 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004601 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004602 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004603 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004604 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004605 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004606 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004607 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4608 }
4609
4610 tmp = I915_READ(DSPFW1);
4611 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004612 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4613 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4614 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004615
4616 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004617 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4618 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4619 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004620
4621 tmp = I915_READ(DSPFW3);
4622 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4623
4624 if (IS_CHERRYVIEW(dev_priv)) {
4625 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004626 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4627 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004628
4629 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004630 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4631 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004632
4633 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004634 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4635 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004636
4637 tmp = I915_READ(DSPHOWM);
4638 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004639 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4640 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4641 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4642 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4643 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4644 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4645 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4646 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4647 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004648 } else {
4649 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004650 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4651 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004652
4653 tmp = I915_READ(DSPHOWM);
4654 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004655 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4656 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4657 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4658 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4659 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4660 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004661 }
4662}
4663
4664#undef _FW_WM
4665#undef _FW_WM_VLV
4666
4667void vlv_wm_get_hw_state(struct drm_device *dev)
4668{
4669 struct drm_i915_private *dev_priv = to_i915(dev);
4670 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02004671 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004672 u32 val;
4673
4674 vlv_read_wm_values(dev_priv, wm);
4675
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004676 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4677 wm->level = VLV_WM_LEVEL_PM2;
4678
4679 if (IS_CHERRYVIEW(dev_priv)) {
4680 mutex_lock(&dev_priv->rps.hw_lock);
4681
4682 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4683 if (val & DSP_MAXFIFO_PM5_ENABLE)
4684 wm->level = VLV_WM_LEVEL_PM5;
4685
Ville Syrjälä58590c12015-09-08 21:05:12 +03004686 /*
4687 * If DDR DVFS is disabled in the BIOS, Punit
4688 * will never ack the request. So if that happens
4689 * assume we don't have to enable/disable DDR DVFS
4690 * dynamically. To test that just set the REQ_ACK
4691 * bit to poke the Punit, but don't change the
4692 * HIGH/LOW bits so that we don't actually change
4693 * the current state.
4694 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004695 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004696 val |= FORCE_DDR_FREQ_REQ_ACK;
4697 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4698
4699 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4700 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4701 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4702 "assuming DDR DVFS is disabled\n");
4703 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4704 } else {
4705 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4706 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4707 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4708 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004709
4710 mutex_unlock(&dev_priv->rps.hw_lock);
4711 }
4712
Ville Syrjäläff32c542017-03-02 19:14:57 +02004713 for_each_intel_crtc(dev, crtc) {
4714 struct intel_crtc_state *crtc_state =
4715 to_intel_crtc_state(crtc->base.state);
4716 struct vlv_wm_state *active = &crtc->wm.active.vlv;
4717 const struct vlv_fifo_state *fifo_state =
4718 &crtc_state->wm.vlv.fifo_state;
4719 enum pipe pipe = crtc->pipe;
4720 enum plane_id plane_id;
4721 int level;
4722
4723 vlv_get_fifo_size(crtc_state);
4724
4725 active->num_levels = wm->level + 1;
4726 active->cxsr = wm->cxsr;
4727
4728 /* FIXME sanitize things more */
4729 for (level = 0; level < active->num_levels; level++) {
4730 struct vlv_pipe_wm *raw =
4731 &crtc_state->wm.vlv.raw[level];
4732
4733 active->sr[level].plane = wm->sr.plane;
4734 active->sr[level].cursor = wm->sr.cursor;
4735
4736 for_each_plane_id_on_crtc(crtc, plane_id) {
4737 active->wm[level].plane[plane_id] =
4738 wm->pipe[pipe].plane[plane_id];
4739
4740 raw->plane[plane_id] =
4741 vlv_invert_wm_value(active->wm[level].plane[plane_id],
4742 fifo_state->plane[plane_id]);
4743 }
4744 }
4745
4746 for_each_plane_id_on_crtc(crtc, plane_id)
4747 vlv_raw_plane_wm_set(crtc_state, level,
4748 plane_id, USHRT_MAX);
4749 vlv_invalidate_wms(crtc, active, level);
4750
4751 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02004752 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02004753
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004754 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 +02004755 pipe_name(pipe),
4756 wm->pipe[pipe].plane[PLANE_PRIMARY],
4757 wm->pipe[pipe].plane[PLANE_CURSOR],
4758 wm->pipe[pipe].plane[PLANE_SPRITE0],
4759 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02004760 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004761
4762 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4763 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4764}
4765
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004766void ilk_wm_get_hw_state(struct drm_device *dev)
4767{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004768 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004769 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004770 struct drm_crtc *crtc;
4771
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004772 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004773 ilk_pipe_wm_get_hw_state(crtc);
4774
4775 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4776 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4777 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4778
4779 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004780 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004781 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4782 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4783 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004784
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004785 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004786 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4787 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004788 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004789 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4790 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004791
4792 hw->enable_fbc_wm =
4793 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4794}
4795
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004796/**
4797 * intel_update_watermarks - update FIFO watermark values based on current modes
4798 *
4799 * Calculate watermark values for the various WM regs based on current mode
4800 * and plane configuration.
4801 *
4802 * There are several cases to deal with here:
4803 * - normal (i.e. non-self-refresh)
4804 * - self-refresh (SR) mode
4805 * - lines are large relative to FIFO size (buffer can hold up to 2)
4806 * - lines are small relative to FIFO size (buffer can hold more than 2
4807 * lines), so need to account for TLB latency
4808 *
4809 * The normal calculation is:
4810 * watermark = dotclock * bytes per pixel * latency
4811 * where latency is platform & configuration dependent (we assume pessimal
4812 * values here).
4813 *
4814 * The SR calculation is:
4815 * watermark = (trunc(latency/line time)+1) * surface width *
4816 * bytes per pixel
4817 * where
4818 * line time = htotal / dotclock
4819 * surface width = hdisplay for normal plane and 64 for cursor
4820 * and latency is assumed to be high, as above.
4821 *
4822 * The final value programmed to the register should always be rounded up,
4823 * and include an extra 2 entries to account for clock crossings.
4824 *
4825 * We don't use the sprite, so we can ignore that. And on Crestline we have
4826 * to set the non-SR watermarks to 8.
4827 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004828void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004829{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004830 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004831
4832 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004833 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004834}
4835
Jani Nikulae2828912016-01-18 09:19:47 +02004836/*
Daniel Vetter92703882012-08-09 16:46:01 +02004837 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004838 */
4839DEFINE_SPINLOCK(mchdev_lock);
4840
4841/* Global for IPS driver to get at the current i915 device. Protected by
4842 * mchdev_lock. */
4843static struct drm_i915_private *i915_mch_dev;
4844
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004845bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004846{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004847 u16 rgvswctl;
4848
Chris Wilson67520412017-03-02 13:28:01 +00004849 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02004850
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004851 rgvswctl = I915_READ16(MEMSWCTL);
4852 if (rgvswctl & MEMCTL_CMD_STS) {
4853 DRM_DEBUG("gpu busy, RCS change rejected\n");
4854 return false; /* still busy with another command */
4855 }
4856
4857 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4858 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4859 I915_WRITE16(MEMSWCTL, rgvswctl);
4860 POSTING_READ16(MEMSWCTL);
4861
4862 rgvswctl |= MEMCTL_CMD_STS;
4863 I915_WRITE16(MEMSWCTL, rgvswctl);
4864
4865 return true;
4866}
4867
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004868static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004869{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004870 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004871 u8 fmax, fmin, fstart, vstart;
4872
Daniel Vetter92703882012-08-09 16:46:01 +02004873 spin_lock_irq(&mchdev_lock);
4874
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004875 rgvmodectl = I915_READ(MEMMODECTL);
4876
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004877 /* Enable temp reporting */
4878 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4879 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4880
4881 /* 100ms RC evaluation intervals */
4882 I915_WRITE(RCUPEI, 100000);
4883 I915_WRITE(RCDNEI, 100000);
4884
4885 /* Set max/min thresholds to 90ms and 80ms respectively */
4886 I915_WRITE(RCBMAXAVG, 90000);
4887 I915_WRITE(RCBMINAVG, 80000);
4888
4889 I915_WRITE(MEMIHYST, 1);
4890
4891 /* Set up min, max, and cur for interrupt handling */
4892 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4893 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4894 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4895 MEMMODE_FSTART_SHIFT;
4896
Ville Syrjälä616847e2015-09-18 20:03:19 +03004897 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004898 PXVFREQ_PX_SHIFT;
4899
Daniel Vetter20e4d402012-08-08 23:35:39 +02004900 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4901 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004902
Daniel Vetter20e4d402012-08-08 23:35:39 +02004903 dev_priv->ips.max_delay = fstart;
4904 dev_priv->ips.min_delay = fmin;
4905 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004906
4907 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4908 fmax, fmin, fstart);
4909
4910 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4911
4912 /*
4913 * Interrupts will be enabled in ironlake_irq_postinstall
4914 */
4915
4916 I915_WRITE(VIDSTART, vstart);
4917 POSTING_READ(VIDSTART);
4918
4919 rgvmodectl |= MEMMODE_SWMODE_EN;
4920 I915_WRITE(MEMMODECTL, rgvmodectl);
4921
Daniel Vetter92703882012-08-09 16:46:01 +02004922 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004923 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004924 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004925
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004926 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004927
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004928 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4929 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004930 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004931 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004932 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004933
4934 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004935}
4936
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004937static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004938{
Daniel Vetter92703882012-08-09 16:46:01 +02004939 u16 rgvswctl;
4940
4941 spin_lock_irq(&mchdev_lock);
4942
4943 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004944
4945 /* Ack interrupts, disable EFC interrupt */
4946 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4947 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4948 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4949 I915_WRITE(DEIIR, DE_PCU_EVENT);
4950 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4951
4952 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004953 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004954 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004955 rgvswctl |= MEMCTL_CMD_STS;
4956 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004957 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004958
Daniel Vetter92703882012-08-09 16:46:01 +02004959 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004960}
4961
Daniel Vetteracbe9472012-07-26 11:50:05 +02004962/* There's a funny hw issue where the hw returns all 0 when reading from
4963 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4964 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4965 * all limits and the gpu stuck at whatever frequency it is at atm).
4966 */
Akash Goel74ef1172015-03-06 11:07:19 +05304967static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004968{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004969 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004970
Daniel Vetter20b46e52012-07-26 11:16:14 +02004971 /* Only set the down limit when we've reached the lowest level to avoid
4972 * getting more interrupts, otherwise leave this clear. This prevents a
4973 * race in the hw when coming out of rc6: There's a tiny window where
4974 * the hw runs at the minimal clock before selecting the desired
4975 * frequency, if the down threshold expires in that window we will not
4976 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004977 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304978 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4979 if (val <= dev_priv->rps.min_freq_softlimit)
4980 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4981 } else {
4982 limits = dev_priv->rps.max_freq_softlimit << 24;
4983 if (val <= dev_priv->rps.min_freq_softlimit)
4984 limits |= dev_priv->rps.min_freq_softlimit << 16;
4985 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004986
4987 return limits;
4988}
4989
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004990static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4991{
4992 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304993 u32 threshold_up = 0, threshold_down = 0; /* in % */
4994 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004995
4996 new_power = dev_priv->rps.power;
4997 switch (dev_priv->rps.power) {
4998 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004999 if (val > dev_priv->rps.efficient_freq + 1 &&
5000 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005001 new_power = BETWEEN;
5002 break;
5003
5004 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01005005 if (val <= dev_priv->rps.efficient_freq &&
5006 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005007 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01005008 else if (val >= dev_priv->rps.rp0_freq &&
5009 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005010 new_power = HIGH_POWER;
5011 break;
5012
5013 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01005014 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
5015 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005016 new_power = BETWEEN;
5017 break;
5018 }
5019 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00005020 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005021 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00005022 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005023 new_power = HIGH_POWER;
5024 if (new_power == dev_priv->rps.power)
5025 return;
5026
5027 /* Note the units here are not exactly 1us, but 1280ns. */
5028 switch (new_power) {
5029 case LOW_POWER:
5030 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05305031 ei_up = 16000;
5032 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005033
5034 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05305035 ei_down = 32000;
5036 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005037 break;
5038
5039 case BETWEEN:
5040 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05305041 ei_up = 13000;
5042 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005043
5044 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05305045 ei_down = 32000;
5046 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005047 break;
5048
5049 case HIGH_POWER:
5050 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05305051 ei_up = 10000;
5052 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005053
5054 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05305055 ei_down = 32000;
5056 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005057 break;
5058 }
5059
Mika Kuoppala6067a272017-02-15 15:52:59 +02005060 /* When byt can survive without system hang with dynamic
5061 * sw freq adjustments, this restriction can be lifted.
5062 */
5063 if (IS_VALLEYVIEW(dev_priv))
5064 goto skip_hw_write;
5065
Akash Goel8a586432015-03-06 11:07:18 +05305066 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01005067 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05305068 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01005069 GT_INTERVAL_FROM_US(dev_priv,
5070 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05305071
5072 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01005073 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05305074 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01005075 GT_INTERVAL_FROM_US(dev_priv,
5076 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05305077
Chris Wilsona72b5622016-07-02 15:35:59 +01005078 I915_WRITE(GEN6_RP_CONTROL,
5079 GEN6_RP_MEDIA_TURBO |
5080 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5081 GEN6_RP_MEDIA_IS_GFX |
5082 GEN6_RP_ENABLE |
5083 GEN6_RP_UP_BUSY_AVG |
5084 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05305085
Mika Kuoppala6067a272017-02-15 15:52:59 +02005086skip_hw_write:
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005087 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01005088 dev_priv->rps.up_threshold = threshold_up;
5089 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005090 dev_priv->rps.last_adj = 0;
5091}
5092
Chris Wilson2876ce72014-03-28 08:03:34 +00005093static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
5094{
5095 u32 mask = 0;
5096
5097 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00005098 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00005099 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00005100 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00005101
Chris Wilson7b3c29f2014-07-10 20:31:19 +01005102 mask &= dev_priv->pm_rps_events;
5103
Imre Deak59d02a12014-12-19 19:33:26 +02005104 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00005105}
5106
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06005107/* gen6_set_rps is called to update the frequency request, but should also be
5108 * called when the range (min_delay and max_delay) is modified so that we can
5109 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005110static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02005111{
Chris Wilsoneb64cad2014-03-27 08:24:20 +00005112 /* min/max delay may still have been modified so be sure to
5113 * write the limits value.
5114 */
5115 if (val != dev_priv->rps.cur_freq) {
5116 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06005117
Chris Wilsondc979972016-05-10 14:10:04 +01005118 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05305119 I915_WRITE(GEN6_RPNSWREQ,
5120 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01005121 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00005122 I915_WRITE(GEN6_RPNSWREQ,
5123 HSW_FREQUENCY(val));
5124 else
5125 I915_WRITE(GEN6_RPNSWREQ,
5126 GEN6_FREQUENCY(val) |
5127 GEN6_OFFSET(0) |
5128 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06005129 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005130
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005131 /* Make sure we continue to get interrupts
5132 * until we hit the minimum or maximum frequencies.
5133 */
Akash Goel74ef1172015-03-06 11:07:19 +05305134 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00005135 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005136
Ben Widawskyb39fb292014-03-19 18:31:11 -07005137 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02005138 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005139
5140 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005141}
5142
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005143static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005144{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005145 int err;
5146
Chris Wilsondc979972016-05-10 14:10:04 +01005147 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005148 "Odd GPU freq value\n"))
5149 val &= ~1;
5150
Deepak Scd25dd52015-07-10 18:31:40 +05305151 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
5152
Chris Wilson8fb55192015-04-07 16:20:28 +01005153 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005154 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
5155 if (err)
5156 return err;
5157
Chris Wilsondb4c5e02017-02-10 15:03:46 +00005158 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01005159 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005160
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005161 dev_priv->rps.cur_freq = val;
5162 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005163
5164 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005165}
5166
Deepak Sa7f6e232015-05-09 18:04:44 +05305167/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05305168 *
5169 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05305170 * 1. Forcewake Media well.
5171 * 2. Request idle freq.
5172 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05305173*/
5174static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
5175{
Chris Wilsonaed242f2015-03-18 09:48:21 +00005176 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005177 int err;
Deepak S5549d252014-06-28 11:26:11 +05305178
Chris Wilsonaed242f2015-03-18 09:48:21 +00005179 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05305180 return;
5181
Chris Wilsonc9efef72017-01-02 15:28:45 +00005182 /* The punit delays the write of the frequency and voltage until it
5183 * determines the GPU is awake. During normal usage we don't want to
5184 * waste power changing the frequency if the GPU is sleeping (rc6).
5185 * However, the GPU and driver is now idle and we do not want to delay
5186 * switching to minimum voltage (reducing power whilst idle) as we do
5187 * not expect to be woken in the near future and so must flush the
5188 * change by waking the device.
5189 *
5190 * We choose to take the media powerwell (either would do to trick the
5191 * punit into committing the voltage change) as that takes a lot less
5192 * power than the render powerwell.
5193 */
Deepak Sa7f6e232015-05-09 18:04:44 +05305194 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005195 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305196 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005197
5198 if (err)
5199 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305200}
5201
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005202void gen6_rps_busy(struct drm_i915_private *dev_priv)
5203{
5204 mutex_lock(&dev_priv->rps.hw_lock);
5205 if (dev_priv->rps.enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00005206 u8 freq;
5207
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005208 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5209 gen6_rps_reset_ei(dev_priv);
5210 I915_WRITE(GEN6_PMINTRMSK,
5211 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005212
Chris Wilsonc33d2472016-07-04 08:08:36 +01005213 gen6_enable_rps_interrupts(dev_priv);
5214
Chris Wilsonbd648182017-02-10 15:03:48 +00005215 /* Use the user's desired frequency as a guide, but for better
5216 * performance, jump directly to RPe as our starting frequency.
5217 */
5218 freq = max(dev_priv->rps.cur_freq,
5219 dev_priv->rps.efficient_freq);
5220
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005221 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00005222 clamp(freq,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005223 dev_priv->rps.min_freq_softlimit,
5224 dev_priv->rps.max_freq_softlimit)))
5225 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005226 }
5227 mutex_unlock(&dev_priv->rps.hw_lock);
5228}
5229
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005230void gen6_rps_idle(struct drm_i915_private *dev_priv)
5231{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005232 /* Flush our bottom-half so that it does not race with us
5233 * setting the idle frequency and so that it is bounded by
5234 * our rpm wakeref. And then disable the interrupts to stop any
5235 * futher RPS reclocking whilst we are asleep.
5236 */
5237 gen6_disable_rps_interrupts(dev_priv);
5238
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005239 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005240 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005241 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305242 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005243 else
Chris Wilsondc979972016-05-10 14:10:04 +01005244 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005245 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005246 I915_WRITE(GEN6_PMINTRMSK,
5247 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005248 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005249 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005250
Chris Wilson8d3afd72015-05-21 21:01:47 +01005251 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005252 while (!list_empty(&dev_priv->rps.clients))
5253 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005254 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005255}
5256
Chris Wilson1854d5c2015-04-07 16:20:32 +01005257void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005258 struct intel_rps_client *rps,
5259 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005260{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005261 /* This is intentionally racy! We peek at the state here, then
5262 * validate inside the RPS worker.
5263 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005264 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005265 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005266 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005267 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005268
Chris Wilsone61b9952015-04-27 13:41:24 +01005269 /* Force a RPS boost (and don't count it against the client) if
5270 * the GPU is severely congested.
5271 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005272 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005273 rps = NULL;
5274
Chris Wilson8d3afd72015-05-21 21:01:47 +01005275 spin_lock(&dev_priv->rps.client_lock);
5276 if (rps == NULL || list_empty(&rps->link)) {
5277 spin_lock_irq(&dev_priv->irq_lock);
5278 if (dev_priv->rps.interrupts_enabled) {
5279 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005280 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005281 }
5282 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005283
Chris Wilson2e1b8732015-04-27 13:41:22 +01005284 if (rps != NULL) {
5285 list_add(&rps->link, &dev_priv->rps.clients);
5286 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005287 } else
5288 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005289 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005290 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005291}
5292
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005293int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005294{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005295 int err;
5296
Chris Wilsoncfd1c482017-02-20 09:47:07 +00005297 lockdep_assert_held(&dev_priv->rps.hw_lock);
5298 GEM_BUG_ON(val > dev_priv->rps.max_freq);
5299 GEM_BUG_ON(val < dev_priv->rps.min_freq);
5300
Chris Wilson76e4e4b2017-02-20 09:47:08 +00005301 if (!dev_priv->rps.enabled) {
5302 dev_priv->rps.cur_freq = val;
5303 return 0;
5304 }
5305
Chris Wilsondc979972016-05-10 14:10:04 +01005306 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005307 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005308 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005309 err = gen6_set_rps(dev_priv, val);
5310
5311 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005312}
5313
Chris Wilsondc979972016-05-10 14:10:04 +01005314static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005315{
Zhe Wang20e49362014-11-04 17:07:05 +00005316 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005317 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005318}
5319
Chris Wilsondc979972016-05-10 14:10:04 +01005320static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305321{
Akash Goel2030d682016-04-23 00:05:45 +05305322 I915_WRITE(GEN6_RP_CONTROL, 0);
5323}
5324
Chris Wilsondc979972016-05-10 14:10:04 +01005325static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005326{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005327 I915_WRITE(GEN6_RC_CONTROL, 0);
5328 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305329 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005330}
5331
Chris Wilsondc979972016-05-10 14:10:04 +01005332static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305333{
Deepak S38807742014-05-23 21:00:15 +05305334 I915_WRITE(GEN6_RC_CONTROL, 0);
5335}
5336
Chris Wilsondc979972016-05-10 14:10:04 +01005337static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005338{
Deepak S98a2e5f2014-08-18 10:35:27 -07005339 /* we're doing forcewake before Disabling RC6,
5340 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005341 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005342
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005343 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005344
Mika Kuoppala59bad942015-01-16 11:34:40 +02005345 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005346}
5347
Chris Wilsondc979972016-05-10 14:10:04 +01005348static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005349{
Chris Wilsondc979972016-05-10 14:10:04 +01005350 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005351 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5352 mode = GEN6_RC_CTL_RC6_ENABLE;
5353 else
5354 mode = 0;
5355 }
Chris Wilsondc979972016-05-10 14:10:04 +01005356 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005357 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5358 "RC6 %s RC6p %s RC6pp %s\n",
5359 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5360 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5361 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005362
5363 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005364 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5365 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005366}
5367
Chris Wilsondc979972016-05-10 14:10:04 +01005368static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305369{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005370 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305371 bool enable_rc6 = true;
5372 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005373 u32 rc_ctl;
5374 int rc_sw_target;
5375
5376 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5377 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5378 RC_SW_TARGET_STATE_SHIFT;
5379 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5380 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5381 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5382 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5383 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305384
5385 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005386 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305387 enable_rc6 = false;
5388 }
5389
5390 /*
5391 * The exact context size is not known for BXT, so assume a page size
5392 * for this check.
5393 */
5394 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005395 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5396 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5397 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005398 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305399 enable_rc6 = false;
5400 }
5401
5402 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5403 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5404 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5405 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005406 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305407 enable_rc6 = false;
5408 }
5409
Imre Deakfc619842016-06-29 19:13:55 +03005410 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5411 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5412 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5413 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5414 enable_rc6 = false;
5415 }
5416
5417 if (!I915_READ(GEN6_GFXPAUSE)) {
5418 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5419 enable_rc6 = false;
5420 }
5421
5422 if (!I915_READ(GEN8_MISC_CTRL0)) {
5423 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305424 enable_rc6 = false;
5425 }
5426
5427 return enable_rc6;
5428}
5429
Chris Wilsondc979972016-05-10 14:10:04 +01005430int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005431{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005432 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005433 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005434 return 0;
5435
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305436 if (!enable_rc6)
5437 return 0;
5438
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005439 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305440 DRM_INFO("RC6 disabled by BIOS\n");
5441 return 0;
5442 }
5443
Daniel Vetter456470e2012-08-08 23:35:40 +02005444 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005445 if (enable_rc6 >= 0) {
5446 int mask;
5447
Chris Wilsondc979972016-05-10 14:10:04 +01005448 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005449 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5450 INTEL_RC6pp_ENABLE;
5451 else
5452 mask = INTEL_RC6_ENABLE;
5453
5454 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005455 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5456 "(requested %d, valid %d)\n",
5457 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005458
5459 return enable_rc6 & mask;
5460 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005461
Chris Wilsondc979972016-05-10 14:10:04 +01005462 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005463 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005464
5465 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005466}
5467
Chris Wilsondc979972016-05-10 14:10:04 +01005468static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005469{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005470 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005471
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005472 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005473 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005474 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005475 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5476 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5477 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5478 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005479 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005480 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5481 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5482 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5483 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005484 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005485 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005486
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005487 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005488 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005489 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005490 u32 ddcc_status = 0;
5491
5492 if (sandybridge_pcode_read(dev_priv,
5493 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5494 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005495 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005496 clamp_t(u8,
5497 ((ddcc_status >> 8) & 0xff),
5498 dev_priv->rps.min_freq,
5499 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005500 }
5501
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005502 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305503 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005504 * the natural hardware unit for SKL
5505 */
Akash Goelc5e06882015-06-29 14:50:19 +05305506 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5507 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5508 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5509 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5510 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5511 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005512}
5513
Chris Wilson3a45b052016-07-13 09:10:32 +01005514static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005515 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005516{
5517 u8 freq = dev_priv->rps.cur_freq;
5518
5519 /* force a reset */
5520 dev_priv->rps.power = -1;
5521 dev_priv->rps.cur_freq = -1;
5522
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005523 if (set(dev_priv, freq))
5524 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005525}
5526
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005527/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005528static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005529{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005530 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5531
Akash Goel0beb0592015-03-06 11:07:20 +05305532 /* Program defaults and thresholds for RPS*/
5533 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5534 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005535
Akash Goel0beb0592015-03-06 11:07:20 +05305536 /* 1 second timeout*/
5537 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5538 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5539
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005540 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005541
Akash Goel0beb0592015-03-06 11:07:20 +05305542 /* Leaning on the below call to gen6_set_rps to program/setup the
5543 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5544 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005545 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005546
5547 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5548}
5549
Chris Wilsondc979972016-05-10 14:10:04 +01005550static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005551{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005552 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305553 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005554 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005555
5556 /* 1a: Software RC state - RC0 */
5557 I915_WRITE(GEN6_RC_STATE, 0);
5558
5559 /* 1b: Get forcewake during program sequence. Although the driver
5560 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005561 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005562
5563 /* 2a: Disable RC states. */
5564 I915_WRITE(GEN6_RC_CONTROL, 0);
5565
5566 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305567
5568 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005569 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305570 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5571 else
5572 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005573 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5574 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305575 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005576 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305577
Dave Gordon1a3d1892016-05-13 15:36:30 +01005578 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305579 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5580
Zhe Wang20e49362014-11-04 17:07:05 +00005581 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005582
Zhe Wang38c23522015-01-20 12:23:04 +00005583 /* 2c: Program Coarse Power Gating Policies. */
5584 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5585 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5586
Zhe Wang20e49362014-11-04 17:07:05 +00005587 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005588 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005589 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005590 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005591 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5592 I915_WRITE(GEN6_RC_CONTROL,
5593 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005594
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305595 /*
5596 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305597 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305598 */
Chris Wilsondc979972016-05-10 14:10:04 +01005599 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305600 I915_WRITE(GEN9_PG_ENABLE, 0);
5601 else
5602 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5603 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005604
Mika Kuoppala59bad942015-01-16 11:34:40 +02005605 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005606}
5607
Chris Wilsondc979972016-05-10 14:10:04 +01005608static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005609{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005610 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305611 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005612 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005613
5614 /* 1a: Software RC state - RC0 */
5615 I915_WRITE(GEN6_RC_STATE, 0);
5616
5617 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5618 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005619 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005620
5621 /* 2a: Disable RC states. */
5622 I915_WRITE(GEN6_RC_CONTROL, 0);
5623
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005624 /* 2b: Program RC6 thresholds.*/
5625 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5626 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5627 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305628 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005629 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005630 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005631 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005632 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5633 else
5634 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005635
5636 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005637 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005638 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005639 intel_print_rc6_info(dev_priv, rc6_mask);
5640 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005641 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5642 GEN7_RC_CTL_TO_MODE |
5643 rc6_mask);
5644 else
5645 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5646 GEN6_RC_CTL_EI_MODE(1) |
5647 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005648
5649 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005650 I915_WRITE(GEN6_RPNSWREQ,
5651 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5652 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5653 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005654 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5655 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005656
Daniel Vetter7526ed72014-09-29 15:07:19 +02005657 /* Docs recommend 900MHz, and 300 MHz respectively */
5658 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5659 dev_priv->rps.max_freq_softlimit << 24 |
5660 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005661
Daniel Vetter7526ed72014-09-29 15:07:19 +02005662 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5663 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5664 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5665 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005666
Daniel Vetter7526ed72014-09-29 15:07:19 +02005667 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005668
5669 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005670 I915_WRITE(GEN6_RP_CONTROL,
5671 GEN6_RP_MEDIA_TURBO |
5672 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5673 GEN6_RP_MEDIA_IS_GFX |
5674 GEN6_RP_ENABLE |
5675 GEN6_RP_UP_BUSY_AVG |
5676 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005677
Daniel Vetter7526ed72014-09-29 15:07:19 +02005678 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005679
Chris Wilson3a45b052016-07-13 09:10:32 +01005680 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005681
Mika Kuoppala59bad942015-01-16 11:34:40 +02005682 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005683}
5684
Chris Wilsondc979972016-05-10 14:10:04 +01005685static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005686{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005687 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305688 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005689 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005690 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005691 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005692 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005693
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005694 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005695
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005696 /* Here begins a magic sequence of register writes to enable
5697 * auto-downclocking.
5698 *
5699 * Perhaps there might be some value in exposing these to
5700 * userspace...
5701 */
5702 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005703
5704 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005705 gtfifodbg = I915_READ(GTFIFODBG);
5706 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005707 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5708 I915_WRITE(GTFIFODBG, gtfifodbg);
5709 }
5710
Mika Kuoppala59bad942015-01-16 11:34:40 +02005711 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005712
5713 /* disable the counters and set deterministic thresholds */
5714 I915_WRITE(GEN6_RC_CONTROL, 0);
5715
5716 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5717 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5718 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5719 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5720 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5721
Akash Goel3b3f1652016-10-13 22:44:48 +05305722 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005723 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005724
5725 I915_WRITE(GEN6_RC_SLEEP, 0);
5726 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005727 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005728 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5729 else
5730 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005731 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005732 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5733
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005734 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005735 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005736 if (rc6_mode & INTEL_RC6_ENABLE)
5737 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5738
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005739 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005740 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005741 if (rc6_mode & INTEL_RC6p_ENABLE)
5742 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005743
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005744 if (rc6_mode & INTEL_RC6pp_ENABLE)
5745 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5746 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005747
Chris Wilsondc979972016-05-10 14:10:04 +01005748 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005749
5750 I915_WRITE(GEN6_RC_CONTROL,
5751 rc6_mask |
5752 GEN6_RC_CTL_EI_MODE(1) |
5753 GEN6_RC_CTL_HW_ENABLE);
5754
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005755 /* Power down if completely idle for over 50ms */
5756 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005757 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005758
Chris Wilson3a45b052016-07-13 09:10:32 +01005759 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005760
Ben Widawsky31643d52012-09-26 10:34:01 -07005761 rc6vids = 0;
5762 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005763 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005764 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005765 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005766 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5767 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5768 rc6vids &= 0xffff00;
5769 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5770 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5771 if (ret)
5772 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5773 }
5774
Mika Kuoppala59bad942015-01-16 11:34:40 +02005775 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005776}
5777
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005778static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005779{
5780 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005781 unsigned int gpu_freq;
5782 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305783 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005784 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005785 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005786
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005787 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005788
Ben Widawskyeda79642013-10-07 17:15:48 -03005789 policy = cpufreq_cpu_get(0);
5790 if (policy) {
5791 max_ia_freq = policy->cpuinfo.max_freq;
5792 cpufreq_cpu_put(policy);
5793 } else {
5794 /*
5795 * Default to measured freq if none found, PCU will ensure we
5796 * don't go over
5797 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005798 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005799 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005800
5801 /* Convert from kHz to MHz */
5802 max_ia_freq /= 1000;
5803
Ben Widawsky153b4b952013-10-22 22:05:09 -07005804 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005805 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5806 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005807
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005808 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305809 /* Convert GT frequency to 50 HZ units */
5810 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5811 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5812 } else {
5813 min_gpu_freq = dev_priv->rps.min_freq;
5814 max_gpu_freq = dev_priv->rps.max_freq;
5815 }
5816
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005817 /*
5818 * For each potential GPU frequency, load a ring frequency we'd like
5819 * to use for memory access. We do this by specifying the IA frequency
5820 * the PCU should use as a reference to determine the ring frequency.
5821 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305822 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5823 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005824 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005825
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005826 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305827 /*
5828 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5829 * No floor required for ring frequency on SKL.
5830 */
5831 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005832 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005833 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5834 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005835 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005836 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005837 ring_freq = max(min_ring_freq, ring_freq);
5838 /* leave ia_freq as the default, chosen by cpufreq */
5839 } else {
5840 /* On older processors, there is no separate ring
5841 * clock domain, so in order to boost the bandwidth
5842 * of the ring, we need to upclock the CPU (ia_freq).
5843 *
5844 * For GPU frequencies less than 750MHz,
5845 * just use the lowest ring freq.
5846 */
5847 if (gpu_freq < min_freq)
5848 ia_freq = 800;
5849 else
5850 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5851 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5852 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005853
Ben Widawsky42c05262012-09-26 10:34:00 -07005854 sandybridge_pcode_write(dev_priv,
5855 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005856 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5857 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5858 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005859 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005860}
5861
Ville Syrjälä03af2042014-06-28 02:03:53 +03005862static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305863{
5864 u32 val, rp0;
5865
Jani Nikula5b5929c2015-10-07 11:17:46 +03005866 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305867
Imre Deak43b67992016-08-31 19:13:02 +03005868 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005869 case 8:
5870 /* (2 * 4) config */
5871 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5872 break;
5873 case 12:
5874 /* (2 * 6) config */
5875 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5876 break;
5877 case 16:
5878 /* (2 * 8) config */
5879 default:
5880 /* Setting (2 * 8) Min RP0 for any other combination */
5881 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5882 break;
Deepak S095acd52015-01-17 11:05:59 +05305883 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005884
5885 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5886
Deepak S2b6b3a02014-05-27 15:59:30 +05305887 return rp0;
5888}
5889
5890static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5891{
5892 u32 val, rpe;
5893
5894 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5895 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5896
5897 return rpe;
5898}
5899
Deepak S7707df42014-07-12 18:46:14 +05305900static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5901{
5902 u32 val, rp1;
5903
Jani Nikula5b5929c2015-10-07 11:17:46 +03005904 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5905 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5906
Deepak S7707df42014-07-12 18:46:14 +05305907 return rp1;
5908}
5909
Deepak S96676fe2016-08-12 18:46:41 +05305910static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
5911{
5912 u32 val, rpn;
5913
5914 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
5915 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
5916 FB_GFX_FREQ_FUSE_MASK);
5917
5918 return rpn;
5919}
5920
Deepak Sf8f2b002014-07-10 13:16:21 +05305921static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5922{
5923 u32 val, rp1;
5924
5925 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5926
5927 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5928
5929 return rp1;
5930}
5931
Ville Syrjälä03af2042014-06-28 02:03:53 +03005932static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005933{
5934 u32 val, rp0;
5935
Jani Nikula64936252013-05-22 15:36:20 +03005936 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005937
5938 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5939 /* Clamp to max */
5940 rp0 = min_t(u32, rp0, 0xea);
5941
5942 return rp0;
5943}
5944
5945static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5946{
5947 u32 val, rpe;
5948
Jani Nikula64936252013-05-22 15:36:20 +03005949 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005950 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005951 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005952 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5953
5954 return rpe;
5955}
5956
Ville Syrjälä03af2042014-06-28 02:03:53 +03005957static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005958{
Imre Deak36146032014-12-04 18:39:35 +02005959 u32 val;
5960
5961 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5962 /*
5963 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5964 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5965 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5966 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5967 * to make sure it matches what Punit accepts.
5968 */
5969 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005970}
5971
Imre Deakae484342014-03-31 15:10:44 +03005972/* Check that the pctx buffer wasn't move under us. */
5973static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5974{
5975 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5976
5977 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5978 dev_priv->vlv_pctx->stolen->start);
5979}
5980
Deepak S38807742014-05-23 21:00:15 +05305981
5982/* Check that the pcbr address is not empty. */
5983static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5984{
5985 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5986
5987 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5988}
5989
Chris Wilsondc979972016-05-10 14:10:04 +01005990static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305991{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005992 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005993 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305994 u32 pcbr;
5995 int pctx_size = 32*1024;
5996
Deepak S38807742014-05-23 21:00:15 +05305997 pcbr = I915_READ(VLV_PCBR);
5998 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005999 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05306000 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02006001 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05306002
6003 pctx_paddr = (paddr & (~4095));
6004 I915_WRITE(VLV_PCBR, pctx_paddr);
6005 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006006
6007 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05306008}
6009
Chris Wilsondc979972016-05-10 14:10:04 +01006010static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006011{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006012 struct drm_i915_gem_object *pctx;
6013 unsigned long pctx_paddr;
6014 u32 pcbr;
6015 int pctx_size = 24*1024;
6016
6017 pcbr = I915_READ(VLV_PCBR);
6018 if (pcbr) {
6019 /* BIOS set it up already, grab the pre-alloc'd space */
6020 int pcbr_offset;
6021
6022 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00006023 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006024 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02006025 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006026 pctx_size);
6027 goto out;
6028 }
6029
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006030 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
6031
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006032 /*
6033 * From the Gunit register HAS:
6034 * The Gfx driver is expected to program this register and ensure
6035 * proper allocation within Gfx stolen memory. For example, this
6036 * register should be programmed such than the PCBR range does not
6037 * overlap with other ranges, such as the frame buffer, protected
6038 * memory, or any other relevant ranges.
6039 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00006040 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006041 if (!pctx) {
6042 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00006043 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006044 }
6045
6046 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
6047 I915_WRITE(VLV_PCBR, pctx_paddr);
6048
6049out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02006050 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07006051 dev_priv->vlv_pctx = pctx;
6052}
6053
Chris Wilsondc979972016-05-10 14:10:04 +01006054static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006055{
Imre Deakae484342014-03-31 15:10:44 +03006056 if (WARN_ON(!dev_priv->vlv_pctx))
6057 return;
6058
Chris Wilsonf0cd5182016-10-28 13:58:43 +01006059 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03006060 dev_priv->vlv_pctx = NULL;
6061}
6062
Ville Syrjäläc30fec62016-03-04 21:43:02 +02006063static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
6064{
6065 dev_priv->rps.gpll_ref_freq =
6066 vlv_get_cck_clock(dev_priv, "GPLL ref",
6067 CCK_GPLL_CLOCK_CONTROL,
6068 dev_priv->czclk_freq);
6069
6070 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
6071 dev_priv->rps.gpll_ref_freq);
6072}
6073
Chris Wilsondc979972016-05-10 14:10:04 +01006074static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03006075{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006076 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03006077
Chris Wilsondc979972016-05-10 14:10:04 +01006078 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03006079
Ville Syrjäläc30fec62016-03-04 21:43:02 +02006080 vlv_init_gpll_ref_freq(dev_priv);
6081
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006082 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6083 switch ((val >> 6) & 3) {
6084 case 0:
6085 case 1:
6086 dev_priv->mem_freq = 800;
6087 break;
6088 case 2:
6089 dev_priv->mem_freq = 1066;
6090 break;
6091 case 3:
6092 dev_priv->mem_freq = 1333;
6093 break;
6094 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02006095 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006096
Imre Deak4e805192014-04-14 20:24:41 +03006097 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
6098 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
6099 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006100 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03006101 dev_priv->rps.max_freq);
6102
6103 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
6104 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006105 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03006106 dev_priv->rps.efficient_freq);
6107
Deepak Sf8f2b002014-07-10 13:16:21 +05306108 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
6109 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006110 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05306111 dev_priv->rps.rp1_freq);
6112
Imre Deak4e805192014-04-14 20:24:41 +03006113 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
6114 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006115 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03006116 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03006117}
6118
Chris Wilsondc979972016-05-10 14:10:04 +01006119static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306120{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006121 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05306122
Chris Wilsondc979972016-05-10 14:10:04 +01006123 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05306124
Ville Syrjäläc30fec62016-03-04 21:43:02 +02006125 vlv_init_gpll_ref_freq(dev_priv);
6126
Ville Syrjäläa5805162015-05-26 20:42:30 +03006127 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02006128 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03006129 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02006130
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006131 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006132 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006133 dev_priv->mem_freq = 2000;
6134 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03006135 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006136 dev_priv->mem_freq = 1600;
6137 break;
6138 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02006139 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03006140
Deepak S2b6b3a02014-05-27 15:59:30 +05306141 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
6142 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
6143 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006144 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05306145 dev_priv->rps.max_freq);
6146
6147 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
6148 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006149 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05306150 dev_priv->rps.efficient_freq);
6151
Deepak S7707df42014-07-12 18:46:14 +05306152 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
6153 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006154 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05306155 dev_priv->rps.rp1_freq);
6156
Deepak S96676fe2016-08-12 18:46:41 +05306157 dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05306158 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02006159 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05306160 dev_priv->rps.min_freq);
6161
Ville Syrjälä1c147622014-08-18 14:42:43 +03006162 WARN_ONCE((dev_priv->rps.max_freq |
6163 dev_priv->rps.efficient_freq |
6164 dev_priv->rps.rp1_freq |
6165 dev_priv->rps.min_freq) & 1,
6166 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05306167}
6168
Chris Wilsondc979972016-05-10 14:10:04 +01006169static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03006170{
Chris Wilsondc979972016-05-10 14:10:04 +01006171 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03006172}
6173
Chris Wilsondc979972016-05-10 14:10:04 +01006174static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306175{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006176 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306177 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05306178 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05306179
6180 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6181
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006182 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
6183 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05306184 if (gtfifodbg) {
6185 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6186 gtfifodbg);
6187 I915_WRITE(GTFIFODBG, gtfifodbg);
6188 }
6189
6190 cherryview_check_pctx(dev_priv);
6191
6192 /* 1a & 1b: Get forcewake during program sequence. Although the driver
6193 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006194 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306195
Ville Syrjälä160614a2015-01-19 13:50:47 +02006196 /* Disable RC states. */
6197 I915_WRITE(GEN6_RC_CONTROL, 0);
6198
Deepak S38807742014-05-23 21:00:15 +05306199 /* 2a: Program RC6 thresholds.*/
6200 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6201 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6202 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6203
Akash Goel3b3f1652016-10-13 22:44:48 +05306204 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006205 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306206 I915_WRITE(GEN6_RC_SLEEP, 0);
6207
Deepak Sf4f71c72015-03-28 15:23:35 +05306208 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6209 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306210
6211 /* allows RC6 residency counter to work */
6212 I915_WRITE(VLV_COUNTER_CONTROL,
6213 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6214 VLV_MEDIA_RC6_COUNT_EN |
6215 VLV_RENDER_RC6_COUNT_EN));
6216
6217 /* For now we assume BIOS is allocating and populating the PCBR */
6218 pcbr = I915_READ(VLV_PCBR);
6219
Deepak S38807742014-05-23 21:00:15 +05306220 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006221 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6222 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006223 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306224
6225 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6226
Deepak S2b6b3a02014-05-27 15:59:30 +05306227 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006228 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306229 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6230 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6231 I915_WRITE(GEN6_RP_UP_EI, 66000);
6232 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6233
6234 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6235
6236 /* 5: Enable RPS */
6237 I915_WRITE(GEN6_RP_CONTROL,
6238 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006239 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306240 GEN6_RP_ENABLE |
6241 GEN6_RP_UP_BUSY_AVG |
6242 GEN6_RP_DOWN_IDLE_AVG);
6243
Deepak S3ef62342015-04-29 08:36:24 +05306244 /* Setting Fixed Bias */
6245 val = VLV_OVERRIDE_EN |
6246 VLV_SOC_TDP_EN |
6247 CHV_BIAS_CPU_50_SOC_50;
6248 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6249
Deepak S2b6b3a02014-05-27 15:59:30 +05306250 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6251
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006252 /* RPS code assumes GPLL is used */
6253 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6254
Jani Nikula742f4912015-09-03 11:16:09 +03006255 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306256 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6257
Chris Wilson3a45b052016-07-13 09:10:32 +01006258 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306259
Mika Kuoppala59bad942015-01-16 11:34:40 +02006260 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306261}
6262
Chris Wilsondc979972016-05-10 14:10:04 +01006263static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006264{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006265 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306266 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006267 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006268
6269 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6270
Imre Deakae484342014-03-31 15:10:44 +03006271 valleyview_check_pctx(dev_priv);
6272
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006273 gtfifodbg = I915_READ(GTFIFODBG);
6274 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006275 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6276 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006277 I915_WRITE(GTFIFODBG, gtfifodbg);
6278 }
6279
Deepak Sc8d9a592013-11-23 14:55:42 +05306280 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006281 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006282
Ville Syrjälä160614a2015-01-19 13:50:47 +02006283 /* Disable RC states. */
6284 I915_WRITE(GEN6_RC_CONTROL, 0);
6285
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006286 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006287 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6288 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6289 I915_WRITE(GEN6_RP_UP_EI, 66000);
6290 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6291
6292 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6293
6294 I915_WRITE(GEN6_RP_CONTROL,
6295 GEN6_RP_MEDIA_TURBO |
6296 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6297 GEN6_RP_MEDIA_IS_GFX |
6298 GEN6_RP_ENABLE |
6299 GEN6_RP_UP_BUSY_AVG |
6300 GEN6_RP_DOWN_IDLE_CONT);
6301
6302 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6303 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6304 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6305
Akash Goel3b3f1652016-10-13 22:44:48 +05306306 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006307 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006308
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006309 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006310
6311 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006312 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006313 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6314 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006315 VLV_MEDIA_RC6_COUNT_EN |
6316 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006317
Chris Wilsondc979972016-05-10 14:10:04 +01006318 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006319 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006320
Chris Wilsondc979972016-05-10 14:10:04 +01006321 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006322
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006323 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006324
Deepak S3ef62342015-04-29 08:36:24 +05306325 /* Setting Fixed Bias */
6326 val = VLV_OVERRIDE_EN |
6327 VLV_SOC_TDP_EN |
6328 VLV_BIAS_CPU_125_SOC_875;
6329 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6330
Jani Nikula64936252013-05-22 15:36:20 +03006331 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006332
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006333 /* RPS code assumes GPLL is used */
6334 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6335
Jani Nikula742f4912015-09-03 11:16:09 +03006336 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006337 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6338
Chris Wilson3a45b052016-07-13 09:10:32 +01006339 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006340
Mika Kuoppala59bad942015-01-16 11:34:40 +02006341 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006342}
6343
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006344static unsigned long intel_pxfreq(u32 vidfreq)
6345{
6346 unsigned long freq;
6347 int div = (vidfreq & 0x3f0000) >> 16;
6348 int post = (vidfreq & 0x3000) >> 12;
6349 int pre = (vidfreq & 0x7);
6350
6351 if (!pre)
6352 return 0;
6353
6354 freq = ((div * 133333) / ((1<<post) * pre));
6355
6356 return freq;
6357}
6358
Daniel Vettereb48eb02012-04-26 23:28:12 +02006359static const struct cparams {
6360 u16 i;
6361 u16 t;
6362 u16 m;
6363 u16 c;
6364} cparams[] = {
6365 { 1, 1333, 301, 28664 },
6366 { 1, 1066, 294, 24460 },
6367 { 1, 800, 294, 25192 },
6368 { 0, 1333, 276, 27605 },
6369 { 0, 1066, 276, 27605 },
6370 { 0, 800, 231, 23784 },
6371};
6372
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006373static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006374{
6375 u64 total_count, diff, ret;
6376 u32 count1, count2, count3, m = 0, c = 0;
6377 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6378 int i;
6379
Chris Wilson67520412017-03-02 13:28:01 +00006380 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006381
Daniel Vetter20e4d402012-08-08 23:35:39 +02006382 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006383
6384 /* Prevent division-by-zero if we are asking too fast.
6385 * Also, we don't get interesting results if we are polling
6386 * faster than once in 10ms, so just return the saved value
6387 * in such cases.
6388 */
6389 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006390 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006391
6392 count1 = I915_READ(DMIEC);
6393 count2 = I915_READ(DDREC);
6394 count3 = I915_READ(CSIEC);
6395
6396 total_count = count1 + count2 + count3;
6397
6398 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006399 if (total_count < dev_priv->ips.last_count1) {
6400 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006401 diff += total_count;
6402 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006403 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006404 }
6405
6406 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006407 if (cparams[i].i == dev_priv->ips.c_m &&
6408 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006409 m = cparams[i].m;
6410 c = cparams[i].c;
6411 break;
6412 }
6413 }
6414
6415 diff = div_u64(diff, diff1);
6416 ret = ((m * diff) + c);
6417 ret = div_u64(ret, 10);
6418
Daniel Vetter20e4d402012-08-08 23:35:39 +02006419 dev_priv->ips.last_count1 = total_count;
6420 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006421
Daniel Vetter20e4d402012-08-08 23:35:39 +02006422 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006423
6424 return ret;
6425}
6426
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006427unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6428{
6429 unsigned long val;
6430
Chris Wilsondc979972016-05-10 14:10:04 +01006431 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006432 return 0;
6433
6434 spin_lock_irq(&mchdev_lock);
6435
6436 val = __i915_chipset_val(dev_priv);
6437
6438 spin_unlock_irq(&mchdev_lock);
6439
6440 return val;
6441}
6442
Daniel Vettereb48eb02012-04-26 23:28:12 +02006443unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6444{
6445 unsigned long m, x, b;
6446 u32 tsfs;
6447
6448 tsfs = I915_READ(TSFS);
6449
6450 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6451 x = I915_READ8(TR1);
6452
6453 b = tsfs & TSFS_INTR_MASK;
6454
6455 return ((m * x) / 127) - b;
6456}
6457
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006458static int _pxvid_to_vd(u8 pxvid)
6459{
6460 if (pxvid == 0)
6461 return 0;
6462
6463 if (pxvid >= 8 && pxvid < 31)
6464 pxvid = 31;
6465
6466 return (pxvid + 2) * 125;
6467}
6468
6469static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006470{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006471 const int vd = _pxvid_to_vd(pxvid);
6472 const int vm = vd - 1125;
6473
Chris Wilsondc979972016-05-10 14:10:04 +01006474 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006475 return vm > 0 ? vm : 0;
6476
6477 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006478}
6479
Daniel Vetter02d71952012-08-09 16:44:54 +02006480static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006481{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006482 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006483 u32 count;
6484
Chris Wilson67520412017-03-02 13:28:01 +00006485 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006486
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006487 now = ktime_get_raw_ns();
6488 diffms = now - dev_priv->ips.last_time2;
6489 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006490
6491 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006492 if (!diffms)
6493 return;
6494
6495 count = I915_READ(GFXEC);
6496
Daniel Vetter20e4d402012-08-08 23:35:39 +02006497 if (count < dev_priv->ips.last_count2) {
6498 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006499 diff += count;
6500 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006501 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006502 }
6503
Daniel Vetter20e4d402012-08-08 23:35:39 +02006504 dev_priv->ips.last_count2 = count;
6505 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006506
6507 /* More magic constants... */
6508 diff = diff * 1181;
6509 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006510 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006511}
6512
Daniel Vetter02d71952012-08-09 16:44:54 +02006513void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6514{
Chris Wilsondc979972016-05-10 14:10:04 +01006515 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006516 return;
6517
Daniel Vetter92703882012-08-09 16:46:01 +02006518 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006519
6520 __i915_update_gfx_val(dev_priv);
6521
Daniel Vetter92703882012-08-09 16:46:01 +02006522 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006523}
6524
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006525static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006526{
6527 unsigned long t, corr, state1, corr2, state2;
6528 u32 pxvid, ext_v;
6529
Chris Wilson67520412017-03-02 13:28:01 +00006530 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006531
Ville Syrjälä616847e2015-09-18 20:03:19 +03006532 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006533 pxvid = (pxvid >> 24) & 0x7f;
6534 ext_v = pvid_to_extvid(dev_priv, pxvid);
6535
6536 state1 = ext_v;
6537
6538 t = i915_mch_val(dev_priv);
6539
6540 /* Revel in the empirically derived constants */
6541
6542 /* Correction factor in 1/100000 units */
6543 if (t > 80)
6544 corr = ((t * 2349) + 135940);
6545 else if (t >= 50)
6546 corr = ((t * 964) + 29317);
6547 else /* < 50 */
6548 corr = ((t * 301) + 1004);
6549
6550 corr = corr * ((150142 * state1) / 10000 - 78642);
6551 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006552 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006553
6554 state2 = (corr2 * state1) / 10000;
6555 state2 /= 100; /* convert to mW */
6556
Daniel Vetter02d71952012-08-09 16:44:54 +02006557 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006558
Daniel Vetter20e4d402012-08-08 23:35:39 +02006559 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006560}
6561
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006562unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6563{
6564 unsigned long val;
6565
Chris Wilsondc979972016-05-10 14:10:04 +01006566 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006567 return 0;
6568
6569 spin_lock_irq(&mchdev_lock);
6570
6571 val = __i915_gfx_val(dev_priv);
6572
6573 spin_unlock_irq(&mchdev_lock);
6574
6575 return val;
6576}
6577
Daniel Vettereb48eb02012-04-26 23:28:12 +02006578/**
6579 * i915_read_mch_val - return value for IPS use
6580 *
6581 * Calculate and return a value for the IPS driver to use when deciding whether
6582 * we have thermal and power headroom to increase CPU or GPU power budget.
6583 */
6584unsigned long i915_read_mch_val(void)
6585{
6586 struct drm_i915_private *dev_priv;
6587 unsigned long chipset_val, graphics_val, ret = 0;
6588
Daniel Vetter92703882012-08-09 16:46:01 +02006589 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006590 if (!i915_mch_dev)
6591 goto out_unlock;
6592 dev_priv = i915_mch_dev;
6593
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006594 chipset_val = __i915_chipset_val(dev_priv);
6595 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006596
6597 ret = chipset_val + graphics_val;
6598
6599out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006600 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006601
6602 return ret;
6603}
6604EXPORT_SYMBOL_GPL(i915_read_mch_val);
6605
6606/**
6607 * i915_gpu_raise - raise GPU frequency limit
6608 *
6609 * Raise the limit; IPS indicates we have thermal headroom.
6610 */
6611bool i915_gpu_raise(void)
6612{
6613 struct drm_i915_private *dev_priv;
6614 bool ret = true;
6615
Daniel Vetter92703882012-08-09 16:46:01 +02006616 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006617 if (!i915_mch_dev) {
6618 ret = false;
6619 goto out_unlock;
6620 }
6621 dev_priv = i915_mch_dev;
6622
Daniel Vetter20e4d402012-08-08 23:35:39 +02006623 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6624 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006625
6626out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006627 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006628
6629 return ret;
6630}
6631EXPORT_SYMBOL_GPL(i915_gpu_raise);
6632
6633/**
6634 * i915_gpu_lower - lower GPU frequency limit
6635 *
6636 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6637 * frequency maximum.
6638 */
6639bool i915_gpu_lower(void)
6640{
6641 struct drm_i915_private *dev_priv;
6642 bool ret = true;
6643
Daniel Vetter92703882012-08-09 16:46:01 +02006644 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006645 if (!i915_mch_dev) {
6646 ret = false;
6647 goto out_unlock;
6648 }
6649 dev_priv = i915_mch_dev;
6650
Daniel Vetter20e4d402012-08-08 23:35:39 +02006651 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6652 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006653
6654out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006655 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006656
6657 return ret;
6658}
6659EXPORT_SYMBOL_GPL(i915_gpu_lower);
6660
6661/**
6662 * i915_gpu_busy - indicate GPU business to IPS
6663 *
6664 * Tell the IPS driver whether or not the GPU is busy.
6665 */
6666bool i915_gpu_busy(void)
6667{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006668 bool ret = false;
6669
Daniel Vetter92703882012-08-09 16:46:01 +02006670 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006671 if (i915_mch_dev)
6672 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006673 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006674
6675 return ret;
6676}
6677EXPORT_SYMBOL_GPL(i915_gpu_busy);
6678
6679/**
6680 * i915_gpu_turbo_disable - disable graphics turbo
6681 *
6682 * Disable graphics turbo by resetting the max frequency and setting the
6683 * current frequency to the default.
6684 */
6685bool i915_gpu_turbo_disable(void)
6686{
6687 struct drm_i915_private *dev_priv;
6688 bool ret = true;
6689
Daniel Vetter92703882012-08-09 16:46:01 +02006690 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006691 if (!i915_mch_dev) {
6692 ret = false;
6693 goto out_unlock;
6694 }
6695 dev_priv = i915_mch_dev;
6696
Daniel Vetter20e4d402012-08-08 23:35:39 +02006697 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006698
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006699 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006700 ret = false;
6701
6702out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006703 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006704
6705 return ret;
6706}
6707EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6708
6709/**
6710 * Tells the intel_ips driver that the i915 driver is now loaded, if
6711 * IPS got loaded first.
6712 *
6713 * This awkward dance is so that neither module has to depend on the
6714 * other in order for IPS to do the appropriate communication of
6715 * GPU turbo limits to i915.
6716 */
6717static void
6718ips_ping_for_i915_load(void)
6719{
6720 void (*link)(void);
6721
6722 link = symbol_get(ips_link_to_i915_driver);
6723 if (link) {
6724 link();
6725 symbol_put(ips_link_to_i915_driver);
6726 }
6727}
6728
6729void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6730{
Daniel Vetter02d71952012-08-09 16:44:54 +02006731 /* We only register the i915 ips part with intel-ips once everything is
6732 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006733 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006734 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006735 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006736
6737 ips_ping_for_i915_load();
6738}
6739
6740void intel_gpu_ips_teardown(void)
6741{
Daniel Vetter92703882012-08-09 16:46:01 +02006742 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006743 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006744 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006745}
Deepak S76c3552f2014-01-30 23:08:16 +05306746
Chris Wilsondc979972016-05-10 14:10:04 +01006747static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006748{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006749 u32 lcfuse;
6750 u8 pxw[16];
6751 int i;
6752
6753 /* Disable to program */
6754 I915_WRITE(ECR, 0);
6755 POSTING_READ(ECR);
6756
6757 /* Program energy weights for various events */
6758 I915_WRITE(SDEW, 0x15040d00);
6759 I915_WRITE(CSIEW0, 0x007f0000);
6760 I915_WRITE(CSIEW1, 0x1e220004);
6761 I915_WRITE(CSIEW2, 0x04000004);
6762
6763 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006764 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006765 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006766 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006767
6768 /* Program P-state weights to account for frequency power adjustment */
6769 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006770 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006771 unsigned long freq = intel_pxfreq(pxvidfreq);
6772 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6773 PXVFREQ_PX_SHIFT;
6774 unsigned long val;
6775
6776 val = vid * vid;
6777 val *= (freq / 1000);
6778 val *= 255;
6779 val /= (127*127*900);
6780 if (val > 0xff)
6781 DRM_ERROR("bad pxval: %ld\n", val);
6782 pxw[i] = val;
6783 }
6784 /* Render standby states get 0 weight */
6785 pxw[14] = 0;
6786 pxw[15] = 0;
6787
6788 for (i = 0; i < 4; i++) {
6789 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6790 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006791 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006792 }
6793
6794 /* Adjust magic regs to magic values (more experimental results) */
6795 I915_WRITE(OGW0, 0);
6796 I915_WRITE(OGW1, 0);
6797 I915_WRITE(EG0, 0x00007f00);
6798 I915_WRITE(EG1, 0x0000000e);
6799 I915_WRITE(EG2, 0x000e0000);
6800 I915_WRITE(EG3, 0x68000300);
6801 I915_WRITE(EG4, 0x42000000);
6802 I915_WRITE(EG5, 0x00140031);
6803 I915_WRITE(EG6, 0);
6804 I915_WRITE(EG7, 0);
6805
6806 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006807 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006808
6809 /* Enable PMON + select events */
6810 I915_WRITE(ECR, 0x80000019);
6811
6812 lcfuse = I915_READ(LCFUSE02);
6813
Daniel Vetter20e4d402012-08-08 23:35:39 +02006814 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006815}
6816
Chris Wilsondc979972016-05-10 14:10:04 +01006817void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006818{
Imre Deakb268c692015-12-15 20:10:31 +02006819 /*
6820 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6821 * requirement.
6822 */
6823 if (!i915.enable_rc6) {
6824 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6825 intel_runtime_pm_get(dev_priv);
6826 }
Imre Deake6069ca2014-04-18 16:01:02 +03006827
Chris Wilsonb5163db2016-08-10 13:58:24 +01006828 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006829 mutex_lock(&dev_priv->rps.hw_lock);
6830
6831 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006832 if (IS_CHERRYVIEW(dev_priv))
6833 cherryview_init_gt_powersave(dev_priv);
6834 else if (IS_VALLEYVIEW(dev_priv))
6835 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006836 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006837 gen6_init_rps_frequencies(dev_priv);
6838
6839 /* Derive initial user preferences/limits from the hardware limits */
6840 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6841 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6842
6843 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6844 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6845
6846 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6847 dev_priv->rps.min_freq_softlimit =
6848 max_t(int,
6849 dev_priv->rps.efficient_freq,
6850 intel_freq_opcode(dev_priv, 450));
6851
Chris Wilson99ac9612016-07-13 09:10:34 +01006852 /* After setting max-softlimit, find the overclock max freq */
6853 if (IS_GEN6(dev_priv) ||
6854 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6855 u32 params = 0;
6856
6857 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6858 if (params & BIT(31)) { /* OC supported */
6859 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6860 (dev_priv->rps.max_freq & 0xff) * 50,
6861 (params & 0xff) * 50);
6862 dev_priv->rps.max_freq = params & 0xff;
6863 }
6864 }
6865
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006866 /* Finally allow us to boost to max by default */
6867 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6868
Chris Wilson773ea9a2016-07-13 09:10:33 +01006869 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006870 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006871
6872 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006873}
6874
Chris Wilsondc979972016-05-10 14:10:04 +01006875void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006876{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006877 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006878 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006879
6880 if (!i915.enable_rc6)
6881 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006882}
6883
Chris Wilson54b4f682016-07-21 21:16:19 +01006884/**
6885 * intel_suspend_gt_powersave - suspend PM work and helper threads
6886 * @dev_priv: i915 device
6887 *
6888 * We don't want to disable RC6 or other features here, we just want
6889 * to make sure any work we've queued has finished and won't bother
6890 * us while we're suspended.
6891 */
6892void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6893{
6894 if (INTEL_GEN(dev_priv) < 6)
6895 return;
6896
6897 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6898 intel_runtime_pm_put(dev_priv);
6899
6900 /* gen6_rps_idle() will be called later to disable interrupts */
6901}
6902
Chris Wilsonb7137e02016-07-13 09:10:37 +01006903void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6904{
6905 dev_priv->rps.enabled = true; /* force disabling */
6906 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006907
6908 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006909}
6910
Chris Wilsondc979972016-05-10 14:10:04 +01006911void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006912{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006913 if (!READ_ONCE(dev_priv->rps.enabled))
6914 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006915
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006916 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006917
Chris Wilsonb7137e02016-07-13 09:10:37 +01006918 if (INTEL_GEN(dev_priv) >= 9) {
6919 gen9_disable_rc6(dev_priv);
6920 gen9_disable_rps(dev_priv);
6921 } else if (IS_CHERRYVIEW(dev_priv)) {
6922 cherryview_disable_rps(dev_priv);
6923 } else if (IS_VALLEYVIEW(dev_priv)) {
6924 valleyview_disable_rps(dev_priv);
6925 } else if (INTEL_GEN(dev_priv) >= 6) {
6926 gen6_disable_rps(dev_priv);
6927 } else if (IS_IRONLAKE_M(dev_priv)) {
6928 ironlake_disable_drps(dev_priv);
6929 }
6930
6931 dev_priv->rps.enabled = false;
6932 mutex_unlock(&dev_priv->rps.hw_lock);
6933}
6934
6935void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6936{
Chris Wilson54b4f682016-07-21 21:16:19 +01006937 /* We shouldn't be disabling as we submit, so this should be less
6938 * racy than it appears!
6939 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006940 if (READ_ONCE(dev_priv->rps.enabled))
6941 return;
6942
6943 /* Powersaving is controlled by the host when inside a VM */
6944 if (intel_vgpu_active(dev_priv))
6945 return;
6946
6947 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006948
Chris Wilsondc979972016-05-10 14:10:04 +01006949 if (IS_CHERRYVIEW(dev_priv)) {
6950 cherryview_enable_rps(dev_priv);
6951 } else if (IS_VALLEYVIEW(dev_priv)) {
6952 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006953 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006954 gen9_enable_rc6(dev_priv);
6955 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08006956 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006957 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006958 } else if (IS_BROADWELL(dev_priv)) {
6959 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006960 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006961 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006962 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006963 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006964 } else if (IS_IRONLAKE_M(dev_priv)) {
6965 ironlake_enable_drps(dev_priv);
6966 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006967 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006968
6969 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6970 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6971
6972 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6973 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6974
Chris Wilson54b4f682016-07-21 21:16:19 +01006975 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006976 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006977}
Imre Deakc6df39b2014-04-14 20:24:29 +03006978
Chris Wilson54b4f682016-07-21 21:16:19 +01006979static void __intel_autoenable_gt_powersave(struct work_struct *work)
6980{
6981 struct drm_i915_private *dev_priv =
6982 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6983 struct intel_engine_cs *rcs;
6984 struct drm_i915_gem_request *req;
6985
6986 if (READ_ONCE(dev_priv->rps.enabled))
6987 goto out;
6988
Akash Goel3b3f1652016-10-13 22:44:48 +05306989 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00006990 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01006991 goto out;
6992
6993 if (!rcs->init_context)
6994 goto out;
6995
6996 mutex_lock(&dev_priv->drm.struct_mutex);
6997
6998 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6999 if (IS_ERR(req))
7000 goto unlock;
7001
7002 if (!i915.enable_execlists && i915_switch_context(req) == 0)
7003 rcs->init_context(req);
7004
7005 /* Mark the device busy, calling intel_enable_gt_powersave() */
7006 i915_add_request_no_flush(req);
7007
7008unlock:
7009 mutex_unlock(&dev_priv->drm.struct_mutex);
7010out:
7011 intel_runtime_pm_put(dev_priv);
7012}
7013
7014void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
7015{
7016 if (READ_ONCE(dev_priv->rps.enabled))
7017 return;
7018
7019 if (IS_IRONLAKE_M(dev_priv)) {
7020 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007021 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007022 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
7023 /*
7024 * PCU communication is slow and this doesn't need to be
7025 * done at any specific time, so do this out of our fast path
7026 * to make resume and init faster.
7027 *
7028 * We depend on the HW RC6 power context save/restore
7029 * mechanism when entering D3 through runtime PM suspend. So
7030 * disable RPM until RPS/RC6 is properly setup. We can only
7031 * get here via the driver load/system resume/runtime resume
7032 * paths, so the _noresume version is enough (and in case of
7033 * runtime resume it's necessary).
7034 */
7035 if (queue_delayed_work(dev_priv->wq,
7036 &dev_priv->rps.autoenable_work,
7037 round_jiffies_up_relative(HZ)))
7038 intel_runtime_pm_get_noresume(dev_priv);
7039 }
7040}
7041
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007042static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01007043{
Daniel Vetter3107bd42012-10-31 22:52:31 +01007044 /*
7045 * On Ibex Peak and Cougar Point, we need to disable clock
7046 * gating for the panel power sequencer or it will fail to
7047 * start up when no ports are active.
7048 */
7049 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
7050}
7051
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007052static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007053{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03007054 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007055
Damien Lespiau055e3932014-08-18 13:49:10 +01007056 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007057 I915_WRITE(DSPCNTR(pipe),
7058 I915_READ(DSPCNTR(pipe)) |
7059 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03007060
7061 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
7062 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03007063 }
7064}
7065
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007066static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02007067{
Ville Syrjälä017636c2013-12-05 15:51:37 +02007068 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
7069 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
7070 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
7071
7072 /*
7073 * Don't touch WM1S_LP_EN here.
7074 * Doing so could cause underruns.
7075 */
7076}
7077
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007078static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007079{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007080 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007081
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01007082 /*
7083 * Required for FBC
7084 * WaFbcDisableDpfcClockGating:ilk
7085 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01007086 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
7087 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
7088 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007089
7090 I915_WRITE(PCH_3DCGDIS0,
7091 MARIUNIT_CLOCK_GATE_DISABLE |
7092 SVSMUNIT_CLOCK_GATE_DISABLE);
7093 I915_WRITE(PCH_3DCGDIS1,
7094 VFMUNIT_CLOCK_GATE_DISABLE);
7095
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007096 /*
7097 * According to the spec the following bits should be set in
7098 * order to enable memory self-refresh
7099 * The bit 22/21 of 0x42004
7100 * The bit 5 of 0x42020
7101 * The bit 15 of 0x45000
7102 */
7103 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7104 (I915_READ(ILK_DISPLAY_CHICKEN2) |
7105 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01007106 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007107 I915_WRITE(DISP_ARB_CTL,
7108 (I915_READ(DISP_ARB_CTL) |
7109 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02007110
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007111 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007112
7113 /*
7114 * Based on the document from hardware guys the following bits
7115 * should be set unconditionally in order to enable FBC.
7116 * The bit 22 of 0x42000
7117 * The bit 22 of 0x42004
7118 * The bit 7,8,9 of 0x42020.
7119 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007120 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01007121 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007122 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7123 I915_READ(ILK_DISPLAY_CHICKEN1) |
7124 ILK_FBCQ_DIS);
7125 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7126 I915_READ(ILK_DISPLAY_CHICKEN2) |
7127 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007128 }
7129
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01007130 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
7131
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007132 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7133 I915_READ(ILK_DISPLAY_CHICKEN2) |
7134 ILK_ELPIN_409_SELECT);
7135 I915_WRITE(_3D_CHICKEN2,
7136 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
7137 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02007138
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007139 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02007140 I915_WRITE(CACHE_MODE_0,
7141 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01007142
Akash Goel4e046322014-04-04 17:14:38 +05307143 /* WaDisable_RenderCache_OperationalFlush:ilk */
7144 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7145
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007146 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03007147
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007148 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007149}
7150
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007151static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01007152{
Daniel Vetter3107bd42012-10-31 22:52:31 +01007153 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007154 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01007155
7156 /*
7157 * On Ibex Peak and Cougar Point, we need to disable clock
7158 * gating for the panel power sequencer or it will fail to
7159 * start up when no ports are active.
7160 */
Jesse Barnescd664072013-10-02 10:34:19 -07007161 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
7162 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
7163 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007164 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
7165 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01007166 /* The below fixes the weird display corruption, a few pixels shifted
7167 * downward, on (only) LVDS of some HP laptops with IVY.
7168 */
Damien Lespiau055e3932014-08-18 13:49:10 +01007169 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03007170 val = I915_READ(TRANS_CHICKEN2(pipe));
7171 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
7172 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03007173 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007174 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03007175 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
7176 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
7177 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007178 I915_WRITE(TRANS_CHICKEN2(pipe), val);
7179 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01007180 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01007181 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01007182 I915_WRITE(TRANS_CHICKEN1(pipe),
7183 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
7184 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007185}
7186
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007187static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007188{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007189 uint32_t tmp;
7190
7191 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02007192 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
7193 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7194 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007195}
7196
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007197static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007198{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007199 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007200
Damien Lespiau231e54f2012-10-19 17:55:41 +01007201 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007202
7203 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7204 I915_READ(ILK_DISPLAY_CHICKEN2) |
7205 ILK_ELPIN_409_SELECT);
7206
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007207 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007208 I915_WRITE(_3D_CHICKEN,
7209 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7210
Akash Goel4e046322014-04-04 17:14:38 +05307211 /* WaDisable_RenderCache_OperationalFlush:snb */
7212 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7213
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007214 /*
7215 * BSpec recoomends 8x4 when MSAA is used,
7216 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007217 *
7218 * Note that PS/WM thread counts depend on the WIZ hashing
7219 * disable bit, which we don't touch here, but it's good
7220 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007221 */
7222 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007223 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007224
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007225 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007226
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007227 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007228 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007229
7230 I915_WRITE(GEN6_UCGCTL1,
7231 I915_READ(GEN6_UCGCTL1) |
7232 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7233 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7234
7235 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7236 * gating disable must be set. Failure to set it results in
7237 * flickering pixels due to Z write ordering failures after
7238 * some amount of runtime in the Mesa "fire" demo, and Unigine
7239 * Sanctuary and Tropics, and apparently anything else with
7240 * alpha test or pixel discard.
7241 *
7242 * According to the spec, bit 11 (RCCUNIT) must also be set,
7243 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007244 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007245 * WaDisableRCCUnitClockGating:snb
7246 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007247 */
7248 I915_WRITE(GEN6_UCGCTL2,
7249 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7250 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7251
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007252 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007253 I915_WRITE(_3D_CHICKEN3,
7254 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007255
7256 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007257 * Bspec says:
7258 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7259 * 3DSTATE_SF number of SF output attributes is more than 16."
7260 */
7261 I915_WRITE(_3D_CHICKEN3,
7262 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7263
7264 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007265 * According to the spec the following bits should be
7266 * set in order to enable memory self-refresh and fbc:
7267 * The bit21 and bit22 of 0x42000
7268 * The bit21 and bit22 of 0x42004
7269 * The bit5 and bit7 of 0x42020
7270 * The bit14 of 0x70180
7271 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007272 *
7273 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007274 */
7275 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7276 I915_READ(ILK_DISPLAY_CHICKEN1) |
7277 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7278 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7279 I915_READ(ILK_DISPLAY_CHICKEN2) |
7280 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007281 I915_WRITE(ILK_DSPCLK_GATE_D,
7282 I915_READ(ILK_DSPCLK_GATE_D) |
7283 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7284 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007285
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007286 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007287
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007288 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007289
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007290 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007291}
7292
7293static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7294{
7295 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7296
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007297 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007298 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007299 *
7300 * This actually overrides the dispatch
7301 * mode for all thread types.
7302 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007303 reg &= ~GEN7_FF_SCHED_MASK;
7304 reg |= GEN7_FF_TS_SCHED_HW;
7305 reg |= GEN7_FF_VS_SCHED_HW;
7306 reg |= GEN7_FF_DS_SCHED_HW;
7307
7308 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7309}
7310
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007311static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007312{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007313 /*
7314 * TODO: this bit should only be enabled when really needed, then
7315 * disabled when not needed anymore in order to save power.
7316 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007317 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007318 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7319 I915_READ(SOUTH_DSPCLK_GATE_D) |
7320 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007321
7322 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007323 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7324 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007325 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007326}
7327
Ville Syrjälä712bf362016-10-31 22:37:23 +02007328static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007329{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007330 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007331 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7332
7333 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7334 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7335 }
7336}
7337
Imre Deak450174f2016-05-03 15:54:21 +03007338static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7339 int general_prio_credits,
7340 int high_prio_credits)
7341{
7342 u32 misccpctl;
7343
7344 /* WaTempDisableDOPClkGating:bdw */
7345 misccpctl = I915_READ(GEN7_MISCCPCTL);
7346 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7347
7348 I915_WRITE(GEN8_L3SQCREG1,
7349 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7350 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7351
7352 /*
7353 * Wait at least 100 clocks before re-enabling clock gating.
7354 * See the definition of L3SQCREG1 in BSpec.
7355 */
7356 POSTING_READ(GEN8_L3SQCREG1);
7357 udelay(1);
7358 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7359}
7360
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007361static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007362{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007363 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007364
7365 /* WaDisableSDEUnitClockGating:kbl */
7366 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7367 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7368 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007369
7370 /* WaDisableGamClockGating:kbl */
7371 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7372 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7373 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007374
7375 /* WaFbcNukeOnHostModify:kbl */
7376 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7377 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007378}
7379
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007380static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007381{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007382 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007383
7384 /* WAC6entrylatency:skl */
7385 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7386 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007387
7388 /* WaFbcNukeOnHostModify:skl */
7389 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7390 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007391}
7392
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007393static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007394{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007395 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007396
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007397 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007398
Ben Widawskyab57fff2013-12-12 15:28:04 -08007399 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007400 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007401
Ben Widawskyab57fff2013-12-12 15:28:04 -08007402 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007403 I915_WRITE(CHICKEN_PAR1_1,
7404 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7405
Ben Widawskyab57fff2013-12-12 15:28:04 -08007406 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007407 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007408 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007409 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007410 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007411 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007412
Ben Widawskyab57fff2013-12-12 15:28:04 -08007413 /* WaVSRefCountFullforceMissDisable:bdw */
7414 /* WaDSRefCountFullforceMissDisable:bdw */
7415 I915_WRITE(GEN7_FF_THREAD_MODE,
7416 I915_READ(GEN7_FF_THREAD_MODE) &
7417 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007418
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007419 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7420 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007421
7422 /* WaDisableSDEUnitClockGating:bdw */
7423 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7424 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007425
Imre Deak450174f2016-05-03 15:54:21 +03007426 /* WaProgramL3SqcReg1Default:bdw */
7427 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007428
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007429 /*
7430 * WaGttCachingOffByDefault:bdw
7431 * GTT cache may not work with big pages, so if those
7432 * are ever enabled GTT cache may need to be disabled.
7433 */
7434 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7435
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007436 /* WaKVMNotificationOnConfigChange:bdw */
7437 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7438 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7439
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007440 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007441
7442 /* WaDisableDopClockGating:bdw
7443 *
7444 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7445 * clock gating.
7446 */
7447 I915_WRITE(GEN6_UCGCTL1,
7448 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007449}
7450
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007451static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007452{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007453 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007454
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007455 /* L3 caching of data atomics doesn't work -- disable it. */
7456 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7457 I915_WRITE(HSW_ROW_CHICKEN3,
7458 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7459
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007460 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007461 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7462 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7463 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7464
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007465 /* WaVSRefCountFullforceMissDisable:hsw */
7466 I915_WRITE(GEN7_FF_THREAD_MODE,
7467 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007468
Akash Goel4e046322014-04-04 17:14:38 +05307469 /* WaDisable_RenderCache_OperationalFlush:hsw */
7470 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7471
Chia-I Wufe27c602014-01-28 13:29:33 +08007472 /* enable HiZ Raw Stall Optimization */
7473 I915_WRITE(CACHE_MODE_0_GEN7,
7474 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7475
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007476 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007477 I915_WRITE(CACHE_MODE_1,
7478 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007479
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007480 /*
7481 * BSpec recommends 8x4 when MSAA is used,
7482 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007483 *
7484 * Note that PS/WM thread counts depend on the WIZ hashing
7485 * disable bit, which we don't touch here, but it's good
7486 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007487 */
7488 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007489 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007490
Kenneth Graunke94411592014-12-31 16:23:00 -08007491 /* WaSampleCChickenBitEnable:hsw */
7492 I915_WRITE(HALF_SLICE_CHICKEN3,
7493 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7494
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007495 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007496 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7497
Paulo Zanoni90a88642013-05-03 17:23:45 -03007498 /* WaRsPkgCStateDisplayPMReq:hsw */
7499 I915_WRITE(CHICKEN_PAR1_1,
7500 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007501
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007502 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007503}
7504
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007505static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007506{
Ben Widawsky20848222012-05-04 18:58:59 -07007507 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007508
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007509 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007510
Damien Lespiau231e54f2012-10-19 17:55:41 +01007511 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007512
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007513 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007514 I915_WRITE(_3D_CHICKEN3,
7515 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7516
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007517 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007518 I915_WRITE(IVB_CHICKEN3,
7519 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7520 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7521
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007522 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007523 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007524 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7525 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007526
Akash Goel4e046322014-04-04 17:14:38 +05307527 /* WaDisable_RenderCache_OperationalFlush:ivb */
7528 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7529
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007530 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007531 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7532 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7533
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007534 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007535 I915_WRITE(GEN7_L3CNTLREG1,
7536 GEN7_WA_FOR_GEN7_L3_CONTROL);
7537 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007538 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007539 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007540 I915_WRITE(GEN7_ROW_CHICKEN2,
7541 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007542 else {
7543 /* must write both registers */
7544 I915_WRITE(GEN7_ROW_CHICKEN2,
7545 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007546 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7547 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007548 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007549
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007550 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007551 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7552 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7553
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007554 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007555 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007556 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007557 */
7558 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007559 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007560
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007561 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007562 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7563 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7564 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7565
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007566 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007567
7568 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007569
Chris Wilson22721342014-03-04 09:41:43 +00007570 if (0) { /* causes HiZ corruption on ivb:gt1 */
7571 /* enable HiZ Raw Stall Optimization */
7572 I915_WRITE(CACHE_MODE_0_GEN7,
7573 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7574 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007575
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007576 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007577 I915_WRITE(CACHE_MODE_1,
7578 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007579
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007580 /*
7581 * BSpec recommends 8x4 when MSAA is used,
7582 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007583 *
7584 * Note that PS/WM thread counts depend on the WIZ hashing
7585 * disable bit, which we don't touch here, but it's good
7586 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007587 */
7588 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007589 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007590
Ben Widawsky20848222012-05-04 18:58:59 -07007591 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7592 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7593 snpcr |= GEN6_MBC_SNPCR_MED;
7594 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007595
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007596 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007597 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007598
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007599 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007600}
7601
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007602static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007603{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007604 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007605 I915_WRITE(_3D_CHICKEN3,
7606 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7607
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007608 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007609 I915_WRITE(IVB_CHICKEN3,
7610 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7611 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7612
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007613 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007614 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007615 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007616 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7617 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007618
Akash Goel4e046322014-04-04 17:14:38 +05307619 /* WaDisable_RenderCache_OperationalFlush:vlv */
7620 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7621
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007622 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007623 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7624 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7625
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007626 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007627 I915_WRITE(GEN7_ROW_CHICKEN2,
7628 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7629
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007630 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007631 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7632 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7633 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7634
Ville Syrjälä46680e02014-01-22 21:33:01 +02007635 gen7_setup_fixed_func_scheduler(dev_priv);
7636
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007637 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007638 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007639 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007640 */
7641 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007642 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007643
Akash Goelc98f5062014-03-24 23:00:07 +05307644 /* WaDisableL3Bank2xClockGate:vlv
7645 * Disabling L3 clock gating- MMIO 940c[25] = 1
7646 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7647 I915_WRITE(GEN7_UCGCTL4,
7648 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007649
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007650 /*
7651 * BSpec says this must be set, even though
7652 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7653 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007654 I915_WRITE(CACHE_MODE_1,
7655 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007656
7657 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007658 * BSpec recommends 8x4 when MSAA is used,
7659 * however in practice 16x4 seems fastest.
7660 *
7661 * Note that PS/WM thread counts depend on the WIZ hashing
7662 * disable bit, which we don't touch here, but it's good
7663 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7664 */
7665 I915_WRITE(GEN7_GT_MODE,
7666 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7667
7668 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007669 * WaIncreaseL3CreditsForVLVB0:vlv
7670 * This is the hardware default actually.
7671 */
7672 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7673
7674 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007675 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007676 * Disable clock gating on th GCFG unit to prevent a delay
7677 * in the reporting of vblank events.
7678 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007679 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007680}
7681
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007682static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007683{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007684 /* WaVSRefCountFullforceMissDisable:chv */
7685 /* WaDSRefCountFullforceMissDisable:chv */
7686 I915_WRITE(GEN7_FF_THREAD_MODE,
7687 I915_READ(GEN7_FF_THREAD_MODE) &
7688 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007689
7690 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7691 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7692 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007693
7694 /* WaDisableCSUnitClockGating:chv */
7695 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7696 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007697
7698 /* WaDisableSDEUnitClockGating:chv */
7699 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7700 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007701
7702 /*
Imre Deak450174f2016-05-03 15:54:21 +03007703 * WaProgramL3SqcReg1Default:chv
7704 * See gfxspecs/Related Documents/Performance Guide/
7705 * LSQC Setting Recommendations.
7706 */
7707 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7708
7709 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007710 * GTT cache may not work with big pages, so if those
7711 * are ever enabled GTT cache may need to be disabled.
7712 */
7713 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007714}
7715
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007716static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007717{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007718 uint32_t dspclk_gate;
7719
7720 I915_WRITE(RENCLK_GATE_D1, 0);
7721 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7722 GS_UNIT_CLOCK_GATE_DISABLE |
7723 CL_UNIT_CLOCK_GATE_DISABLE);
7724 I915_WRITE(RAMCLK_GATE_D, 0);
7725 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7726 OVRUNIT_CLOCK_GATE_DISABLE |
7727 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007728 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007729 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7730 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007731
7732 /* WaDisableRenderCachePipelinedFlush */
7733 I915_WRITE(CACHE_MODE_0,
7734 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007735
Akash Goel4e046322014-04-04 17:14:38 +05307736 /* WaDisable_RenderCache_OperationalFlush:g4x */
7737 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7738
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007739 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007740}
7741
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007742static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007743{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007744 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7745 I915_WRITE(RENCLK_GATE_D2, 0);
7746 I915_WRITE(DSPCLK_GATE_D, 0);
7747 I915_WRITE(RAMCLK_GATE_D, 0);
7748 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007749 I915_WRITE(MI_ARB_STATE,
7750 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307751
7752 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7753 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007754}
7755
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007756static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007757{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007758 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7759 I965_RCC_CLOCK_GATE_DISABLE |
7760 I965_RCPB_CLOCK_GATE_DISABLE |
7761 I965_ISC_CLOCK_GATE_DISABLE |
7762 I965_FBC_CLOCK_GATE_DISABLE);
7763 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007764 I915_WRITE(MI_ARB_STATE,
7765 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307766
7767 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7768 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007769}
7770
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007771static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007772{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007773 u32 dstate = I915_READ(D_STATE);
7774
7775 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7776 DSTATE_DOT_CLOCK_GATING;
7777 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007778
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007779 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007780 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007781
7782 /* IIR "flip pending" means done if this bit is set */
7783 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007784
7785 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007786 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007787
7788 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7789 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007790
7791 I915_WRITE(MI_ARB_STATE,
7792 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007793}
7794
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007795static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007796{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007797 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007798
7799 /* interrupts should cause a wake up from C3 */
7800 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7801 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007802
7803 I915_WRITE(MEM_MODE,
7804 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007805}
7806
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007807static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007808{
Ville Syrjälä10383922014-08-15 01:21:54 +03007809 I915_WRITE(MEM_MODE,
7810 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7811 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007812}
7813
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007814void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007815{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007816 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007817}
7818
Ville Syrjälä712bf362016-10-31 22:37:23 +02007819void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007820{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007821 if (HAS_PCH_LPT(dev_priv))
7822 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007823}
7824
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007825static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007826{
7827 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7828}
7829
7830/**
7831 * intel_init_clock_gating_hooks - setup the clock gating hooks
7832 * @dev_priv: device private
7833 *
7834 * Setup the hooks that configure which clocks of a given platform can be
7835 * gated and also apply various GT and display specific workarounds for these
7836 * platforms. Note that some GT specific workarounds are applied separately
7837 * when GPU contexts or batchbuffers start their execution.
7838 */
7839void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7840{
7841 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007842 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007843 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007844 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007845 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007846 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007847 else if (IS_GEMINILAKE(dev_priv))
7848 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007849 else if (IS_BROADWELL(dev_priv))
7850 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7851 else if (IS_CHERRYVIEW(dev_priv))
7852 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7853 else if (IS_HASWELL(dev_priv))
7854 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7855 else if (IS_IVYBRIDGE(dev_priv))
7856 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7857 else if (IS_VALLEYVIEW(dev_priv))
7858 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7859 else if (IS_GEN6(dev_priv))
7860 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7861 else if (IS_GEN5(dev_priv))
7862 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7863 else if (IS_G4X(dev_priv))
7864 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007865 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007866 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007867 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007868 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7869 else if (IS_GEN3(dev_priv))
7870 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7871 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7872 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7873 else if (IS_GEN2(dev_priv))
7874 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7875 else {
7876 MISSING_CASE(INTEL_DEVID(dev_priv));
7877 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7878 }
7879}
7880
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007881/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007882void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007883{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007884 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007885
Daniel Vetterc921aba2012-04-26 23:28:17 +02007886 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007887 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007888 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007889 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007890 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007891
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007892 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007893 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007894 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007895 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007896 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007897 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007898 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007899 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007900
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007901 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007902 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007903 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007904 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007905 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007906 dev_priv->display.compute_intermediate_wm =
7907 ilk_compute_intermediate_wm;
7908 dev_priv->display.initial_watermarks =
7909 ilk_initial_watermarks;
7910 dev_priv->display.optimize_watermarks =
7911 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007912 } else {
7913 DRM_DEBUG_KMS("Failed to read display plane latency. "
7914 "Disable CxSR\n");
7915 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007916 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007917 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02007918 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007919 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007920 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007921 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007922 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007923 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007924 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007925 dev_priv->is_ddr3,
7926 dev_priv->fsb_freq,
7927 dev_priv->mem_freq)) {
7928 DRM_INFO("failed to find known CxSR latency "
7929 "(found ddr%s fsb freq %d, mem freq %d), "
7930 "disabling CxSR\n",
7931 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7932 dev_priv->fsb_freq, dev_priv->mem_freq);
7933 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007934 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007935 dev_priv->display.update_wm = NULL;
7936 } else
7937 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007938 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007939 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007940 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007941 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007942 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007943 dev_priv->display.update_wm = i9xx_update_wm;
7944 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007945 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007946 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007947 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007948 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007949 } else {
7950 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007951 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007952 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007953 } else {
7954 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007955 }
7956}
7957
Lyude87660502016-08-17 15:55:53 -04007958static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7959{
7960 uint32_t flags =
7961 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7962
7963 switch (flags) {
7964 case GEN6_PCODE_SUCCESS:
7965 return 0;
7966 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7967 case GEN6_PCODE_ILLEGAL_CMD:
7968 return -ENXIO;
7969 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007970 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007971 return -EOVERFLOW;
7972 case GEN6_PCODE_TIMEOUT:
7973 return -ETIMEDOUT;
7974 default:
7975 MISSING_CASE(flags)
7976 return 0;
7977 }
7978}
7979
7980static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7981{
7982 uint32_t flags =
7983 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7984
7985 switch (flags) {
7986 case GEN6_PCODE_SUCCESS:
7987 return 0;
7988 case GEN6_PCODE_ILLEGAL_CMD:
7989 return -ENXIO;
7990 case GEN7_PCODE_TIMEOUT:
7991 return -ETIMEDOUT;
7992 case GEN7_PCODE_ILLEGAL_DATA:
7993 return -EINVAL;
7994 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7995 return -EOVERFLOW;
7996 default:
7997 MISSING_CASE(flags);
7998 return 0;
7999 }
8000}
8001
Tom O'Rourke151a49d2014-11-13 18:50:10 -08008002int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07008003{
Lyude87660502016-08-17 15:55:53 -04008004 int status;
8005
Jesse Barnes4fc688c2012-11-02 11:14:01 -07008006 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07008007
Chris Wilson3f5582d2016-06-30 15:32:45 +01008008 /* GEN6_PCODE_* are outside of the forcewake domain, we can
8009 * use te fw I915_READ variants to reduce the amount of work
8010 * required when reading/writing.
8011 */
8012
8013 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008014 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
8015 return -EAGAIN;
8016 }
8017
Chris Wilson3f5582d2016-06-30 15:32:45 +01008018 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
8019 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
8020 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07008021
Chris Wilson3f5582d2016-06-30 15:32:45 +01008022 if (intel_wait_for_register_fw(dev_priv,
8023 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
8024 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008025 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
8026 return -ETIMEDOUT;
8027 }
8028
Chris Wilson3f5582d2016-06-30 15:32:45 +01008029 *val = I915_READ_FW(GEN6_PCODE_DATA);
8030 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07008031
Lyude87660502016-08-17 15:55:53 -04008032 if (INTEL_GEN(dev_priv) > 6)
8033 status = gen7_check_mailbox_status(dev_priv);
8034 else
8035 status = gen6_check_mailbox_status(dev_priv);
8036
8037 if (status) {
8038 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
8039 status);
8040 return status;
8041 }
8042
Ben Widawsky42c05262012-09-26 10:34:00 -07008043 return 0;
8044}
8045
Chris Wilson3f5582d2016-06-30 15:32:45 +01008046int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04008047 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07008048{
Lyude87660502016-08-17 15:55:53 -04008049 int status;
8050
Jesse Barnes4fc688c2012-11-02 11:14:01 -07008051 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07008052
Chris Wilson3f5582d2016-06-30 15:32:45 +01008053 /* GEN6_PCODE_* are outside of the forcewake domain, we can
8054 * use te fw I915_READ variants to reduce the amount of work
8055 * required when reading/writing.
8056 */
8057
8058 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008059 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
8060 return -EAGAIN;
8061 }
8062
Chris Wilson3f5582d2016-06-30 15:32:45 +01008063 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02008064 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01008065 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07008066
Chris Wilson3f5582d2016-06-30 15:32:45 +01008067 if (intel_wait_for_register_fw(dev_priv,
8068 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
8069 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07008070 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
8071 return -ETIMEDOUT;
8072 }
8073
Chris Wilson3f5582d2016-06-30 15:32:45 +01008074 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07008075
Lyude87660502016-08-17 15:55:53 -04008076 if (INTEL_GEN(dev_priv) > 6)
8077 status = gen7_check_mailbox_status(dev_priv);
8078 else
8079 status = gen6_check_mailbox_status(dev_priv);
8080
8081 if (status) {
8082 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
8083 status);
8084 return status;
8085 }
8086
Ben Widawsky42c05262012-09-26 10:34:00 -07008087 return 0;
8088}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07008089
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008090static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
8091 u32 request, u32 reply_mask, u32 reply,
8092 u32 *status)
8093{
8094 u32 val = request;
8095
8096 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
8097
8098 return *status || ((val & reply_mask) == reply);
8099}
8100
8101/**
8102 * skl_pcode_request - send PCODE request until acknowledgment
8103 * @dev_priv: device private
8104 * @mbox: PCODE mailbox ID the request is targeted for
8105 * @request: request ID
8106 * @reply_mask: mask used to check for request acknowledgment
8107 * @reply: value used to check for request acknowledgment
8108 * @timeout_base_ms: timeout for polling with preemption enabled
8109 *
8110 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02008111 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008112 * The request is acknowledged once the PCODE reply dword equals @reply after
8113 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02008114 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008115 * preemption disabled.
8116 *
8117 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
8118 * other error as reported by PCODE.
8119 */
8120int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
8121 u32 reply_mask, u32 reply, int timeout_base_ms)
8122{
8123 u32 status;
8124 int ret;
8125
8126 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
8127
8128#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
8129 &status)
8130
8131 /*
8132 * Prime the PCODE by doing a request first. Normally it guarantees
8133 * that a subsequent request, at most @timeout_base_ms later, succeeds.
8134 * _wait_for() doesn't guarantee when its passed condition is evaluated
8135 * first, so send the first request explicitly.
8136 */
8137 if (COND) {
8138 ret = 0;
8139 goto out;
8140 }
8141 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
8142 if (!ret)
8143 goto out;
8144
8145 /*
8146 * The above can time out if the number of requests was low (2 in the
8147 * worst case) _and_ PCODE was busy for some reason even after a
8148 * (queued) request and @timeout_base_ms delay. As a workaround retry
8149 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02008150 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008151 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02008152 * requests, and for any quirks of the PCODE firmware that delays
8153 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008154 */
8155 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
8156 WARN_ON_ONCE(timeout_base_ms > 3);
8157 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02008158 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02008159 preempt_enable();
8160
8161out:
8162 return ret ? ret : status;
8163#undef COND
8164}
8165
Ville Syrjälädd06f882014-11-10 22:55:12 +02008166static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
8167{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008168 /*
8169 * N = val - 0xb7
8170 * Slow = Fast = GPLL ref * N
8171 */
8172 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008173}
8174
Fengguang Wub55dd642014-07-12 11:21:39 +02008175static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008176{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008177 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07008178}
8179
Fengguang Wub55dd642014-07-12 11:21:39 +02008180static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308181{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008182 /*
8183 * N = val / 2
8184 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
8185 */
8186 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05308187}
8188
Fengguang Wub55dd642014-07-12 11:21:39 +02008189static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308190{
Ville Syrjälä1c147622014-08-18 14:42:43 +03008191 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008192 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05308193}
8194
Ville Syrjälä616bc822015-01-23 21:04:25 +02008195int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
8196{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008197 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008198 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
8199 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008200 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008201 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008202 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008203 return byt_gpu_freq(dev_priv, val);
8204 else
8205 return val * GT_FREQUENCY_MULTIPLIER;
8206}
8207
Ville Syrjälä616bc822015-01-23 21:04:25 +02008208int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
8209{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008210 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008211 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
8212 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008213 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008214 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008215 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008216 return byt_freq_opcode(dev_priv, val);
8217 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008218 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308219}
8220
Chris Wilson6ad790c2015-04-07 16:20:31 +01008221struct request_boost {
8222 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008223 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008224};
8225
8226static void __intel_rps_boost_work(struct work_struct *work)
8227{
8228 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008229 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008230
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008231 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008232 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008233
Chris Wilsone8a261e2016-07-20 13:31:49 +01008234 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008235 kfree(boost);
8236}
8237
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008238void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008239{
8240 struct request_boost *boost;
8241
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008242 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008243 return;
8244
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008245 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008246 return;
8247
Chris Wilson6ad790c2015-04-07 16:20:31 +01008248 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8249 if (boost == NULL)
8250 return;
8251
Chris Wilsone8a261e2016-07-20 13:31:49 +01008252 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008253
8254 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008255 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008256}
8257
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008258void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008259{
Daniel Vetterf742a552013-12-06 10:17:53 +01008260 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008261 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008262
Chris Wilson54b4f682016-07-21 21:16:19 +01008263 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8264 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008265 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008266
Paulo Zanoni33688d92014-03-07 20:08:19 -03008267 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008268 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008269}