blob: ec16f3d6dd2e980a2172eadf693ec6d76e18c7f2 [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 */
102 if (IS_BXT_REVID(dev_priv, BXT_REVID_B0, REVID_FOREVER))
103 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
104 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200105}
106
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200107static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
108{
109 gen9_init_clock_gating(dev_priv);
110
111 /*
112 * WaDisablePWMClockGating:glk
113 * Backlight PWM may stop in the asserted state, causing backlight
114 * to stay fully on.
115 */
116 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
117 PWM1_GATING_DIS | PWM2_GATING_DIS);
118}
119
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200120static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200121{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200122 u32 tmp;
123
124 tmp = I915_READ(CLKCFG);
125
126 switch (tmp & CLKCFG_FSB_MASK) {
127 case CLKCFG_FSB_533:
128 dev_priv->fsb_freq = 533; /* 133*4 */
129 break;
130 case CLKCFG_FSB_800:
131 dev_priv->fsb_freq = 800; /* 200*4 */
132 break;
133 case CLKCFG_FSB_667:
134 dev_priv->fsb_freq = 667; /* 167*4 */
135 break;
136 case CLKCFG_FSB_400:
137 dev_priv->fsb_freq = 400; /* 100*4 */
138 break;
139 }
140
141 switch (tmp & CLKCFG_MEM_MASK) {
142 case CLKCFG_MEM_533:
143 dev_priv->mem_freq = 533;
144 break;
145 case CLKCFG_MEM_667:
146 dev_priv->mem_freq = 667;
147 break;
148 case CLKCFG_MEM_800:
149 dev_priv->mem_freq = 800;
150 break;
151 }
152
153 /* detect pineview DDR3 setting */
154 tmp = I915_READ(CSHRDDR3CTL);
155 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
156}
157
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200158static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200159{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200160 u16 ddrpll, csipll;
161
162 ddrpll = I915_READ16(DDRMPLL1);
163 csipll = I915_READ16(CSIPLL0);
164
165 switch (ddrpll & 0xff) {
166 case 0xc:
167 dev_priv->mem_freq = 800;
168 break;
169 case 0x10:
170 dev_priv->mem_freq = 1066;
171 break;
172 case 0x14:
173 dev_priv->mem_freq = 1333;
174 break;
175 case 0x18:
176 dev_priv->mem_freq = 1600;
177 break;
178 default:
179 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
180 ddrpll & 0xff);
181 dev_priv->mem_freq = 0;
182 break;
183 }
184
Daniel Vetter20e4d402012-08-08 23:35:39 +0200185 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200186
187 switch (csipll & 0x3ff) {
188 case 0x00c:
189 dev_priv->fsb_freq = 3200;
190 break;
191 case 0x00e:
192 dev_priv->fsb_freq = 3733;
193 break;
194 case 0x010:
195 dev_priv->fsb_freq = 4266;
196 break;
197 case 0x012:
198 dev_priv->fsb_freq = 4800;
199 break;
200 case 0x014:
201 dev_priv->fsb_freq = 5333;
202 break;
203 case 0x016:
204 dev_priv->fsb_freq = 5866;
205 break;
206 case 0x018:
207 dev_priv->fsb_freq = 6400;
208 break;
209 default:
210 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
211 csipll & 0x3ff);
212 dev_priv->fsb_freq = 0;
213 break;
214 }
215
216 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200217 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200218 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200219 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200220 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200221 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200222 }
223}
224
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300225static const struct cxsr_latency cxsr_latency_table[] = {
226 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
227 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
228 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
229 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
230 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
231
232 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
233 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
234 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
235 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
236 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
237
238 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
239 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
240 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
241 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
242 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
243
244 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
245 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
246 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
247 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
248 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
249
250 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
251 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
252 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
253 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
254 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
255
256 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
257 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
258 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
259 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
260 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
261};
262
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100263static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
264 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300265 int fsb,
266 int mem)
267{
268 const struct cxsr_latency *latency;
269 int i;
270
271 if (fsb == 0 || mem == 0)
272 return NULL;
273
274 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
275 latency = &cxsr_latency_table[i];
276 if (is_desktop == latency->is_desktop &&
277 is_ddr3 == latency->is_ddr3 &&
278 fsb == latency->fsb_freq && mem == latency->mem_freq)
279 return latency;
280 }
281
282 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
283
284 return NULL;
285}
286
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200287static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
288{
289 u32 val;
290
291 mutex_lock(&dev_priv->rps.hw_lock);
292
293 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
294 if (enable)
295 val &= ~FORCE_DDR_HIGH_FREQ;
296 else
297 val |= FORCE_DDR_HIGH_FREQ;
298 val &= ~FORCE_DDR_LOW_FREQ;
299 val |= FORCE_DDR_FREQ_REQ_ACK;
300 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
301
302 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
303 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
304 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
305
306 mutex_unlock(&dev_priv->rps.hw_lock);
307}
308
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200309static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
310{
311 u32 val;
312
313 mutex_lock(&dev_priv->rps.hw_lock);
314
315 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
316 if (enable)
317 val |= DSP_MAXFIFO_PM5_ENABLE;
318 else
319 val &= ~DSP_MAXFIFO_PM5_ENABLE;
320 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
321
322 mutex_unlock(&dev_priv->rps.hw_lock);
323}
324
Ville Syrjäläf4998962015-03-10 17:02:21 +0200325#define FW_WM(value, plane) \
326 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
327
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200328static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300329{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200330 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300331 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300332
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100333 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200334 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300335 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300336 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200337 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200338 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300339 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300340 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200341 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200342 val = I915_READ(DSPFW3);
343 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
344 if (enable)
345 val |= PINEVIEW_SELF_REFRESH_EN;
346 else
347 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300348 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300349 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100350 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200351 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300352 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
353 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
354 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300355 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100356 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300357 /*
358 * FIXME can't find a bit like this for 915G, and
359 * and yet it does have the related watermark in
360 * FW_BLC_SELF. What's going on?
361 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200362 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300363 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
364 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
365 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300366 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300367 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200368 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300369 }
370
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200371 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
372 enableddisabled(enable),
373 enableddisabled(was_enabled));
374
375 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300376}
377
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200378bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200379{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200380 bool ret;
381
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200382 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200383 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200384 dev_priv->wm.vlv.cxsr = enable;
385 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200386
387 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200388}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200389
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300390/*
391 * Latency for FIFO fetches is dependent on several factors:
392 * - memory configuration (speed, channels)
393 * - chipset
394 * - current MCH state
395 * It can be fairly high in some situations, so here we assume a fairly
396 * pessimal value. It's a tradeoff between extra memory fetches (if we
397 * set this value too high, the FIFO will fetch frequently to stay full)
398 * and power consumption (set it too low to save power and we might see
399 * FIFO underruns and display "flicker").
400 *
401 * A value of 5us seems to be a good balance; safe for very low end
402 * platforms but not overly aggressive on lower latency configs.
403 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100404static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300405
Ville Syrjäläb5004722015-03-05 21:19:47 +0200406#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
407 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
408
Ville Syrjälä49845a22016-11-22 18:02:01 +0200409static int vlv_get_fifo_size(struct intel_plane *plane)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200410{
Ville Syrjälä49845a22016-11-22 18:02:01 +0200411 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200412 int sprite0_start, sprite1_start, size;
413
Ville Syrjälä49845a22016-11-22 18:02:01 +0200414 if (plane->id == PLANE_CURSOR)
415 return 63;
416
417 switch (plane->pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200418 uint32_t dsparb, dsparb2, dsparb3;
419 case PIPE_A:
420 dsparb = I915_READ(DSPARB);
421 dsparb2 = I915_READ(DSPARB2);
422 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
423 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
424 break;
425 case PIPE_B:
426 dsparb = I915_READ(DSPARB);
427 dsparb2 = I915_READ(DSPARB2);
428 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
429 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
430 break;
431 case PIPE_C:
432 dsparb2 = I915_READ(DSPARB2);
433 dsparb3 = I915_READ(DSPARB3);
434 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
435 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
436 break;
437 default:
438 return 0;
439 }
440
Ville Syrjälä49845a22016-11-22 18:02:01 +0200441 switch (plane->id) {
442 case PLANE_PRIMARY:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200443 size = sprite0_start;
444 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200445 case PLANE_SPRITE0:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200446 size = sprite1_start - sprite0_start;
447 break;
Ville Syrjälä49845a22016-11-22 18:02:01 +0200448 case PLANE_SPRITE1:
Ville Syrjäläb5004722015-03-05 21:19:47 +0200449 size = 512 - 1 - sprite1_start;
450 break;
451 default:
452 return 0;
453 }
454
Ville Syrjälä49845a22016-11-22 18:02:01 +0200455 DRM_DEBUG_KMS("%s FIFO size: %d\n", plane->base.name, size);
Ville Syrjäläb5004722015-03-05 21:19:47 +0200456
457 return size;
458}
459
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200460static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300461{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300462 uint32_t dsparb = I915_READ(DSPARB);
463 int size;
464
465 size = dsparb & 0x7f;
466 if (plane)
467 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
468
469 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
470 plane ? "B" : "A", size);
471
472 return size;
473}
474
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200475static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300476{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300477 uint32_t dsparb = I915_READ(DSPARB);
478 int size;
479
480 size = dsparb & 0x1ff;
481 if (plane)
482 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
483 size >>= 1; /* Convert to cachelines */
484
485 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
486 plane ? "B" : "A", size);
487
488 return size;
489}
490
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200491static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300492{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300493 uint32_t dsparb = I915_READ(DSPARB);
494 int size;
495
496 size = dsparb & 0x7f;
497 size >>= 2; /* Convert to cachelines */
498
499 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
500 plane ? "B" : "A",
501 size);
502
503 return size;
504}
505
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506/* Pineview has different values for various configs */
507static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300508 .fifo_size = PINEVIEW_DISPLAY_FIFO,
509 .max_wm = PINEVIEW_MAX_WM,
510 .default_wm = PINEVIEW_DFT_WM,
511 .guard_size = PINEVIEW_GUARD_WM,
512 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300513};
514static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300515 .fifo_size = PINEVIEW_DISPLAY_FIFO,
516 .max_wm = PINEVIEW_MAX_WM,
517 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
518 .guard_size = PINEVIEW_GUARD_WM,
519 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300520};
521static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300522 .fifo_size = PINEVIEW_CURSOR_FIFO,
523 .max_wm = PINEVIEW_CURSOR_MAX_WM,
524 .default_wm = PINEVIEW_CURSOR_DFT_WM,
525 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
526 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300527};
528static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300529 .fifo_size = PINEVIEW_CURSOR_FIFO,
530 .max_wm = PINEVIEW_CURSOR_MAX_WM,
531 .default_wm = PINEVIEW_CURSOR_DFT_WM,
532 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
533 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300534};
535static const struct intel_watermark_params g4x_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300536 .fifo_size = G4X_FIFO_SIZE,
537 .max_wm = G4X_MAX_WM,
538 .default_wm = G4X_MAX_WM,
539 .guard_size = 2,
540 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541};
542static const struct intel_watermark_params g4x_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300543 .fifo_size = I965_CURSOR_FIFO,
544 .max_wm = I965_CURSOR_MAX_WM,
545 .default_wm = I965_CURSOR_DFT_WM,
546 .guard_size = 2,
547 .cacheline_size = G4X_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300549static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300550 .fifo_size = I965_CURSOR_FIFO,
551 .max_wm = I965_CURSOR_MAX_WM,
552 .default_wm = I965_CURSOR_DFT_WM,
553 .guard_size = 2,
554 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300555};
556static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300557 .fifo_size = I945_FIFO_SIZE,
558 .max_wm = I915_MAX_WM,
559 .default_wm = 1,
560 .guard_size = 2,
561 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300562};
563static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300564 .fifo_size = I915_FIFO_SIZE,
565 .max_wm = I915_MAX_WM,
566 .default_wm = 1,
567 .guard_size = 2,
568 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300569};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300570static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300571 .fifo_size = I855GM_FIFO_SIZE,
572 .max_wm = I915_MAX_WM,
573 .default_wm = 1,
574 .guard_size = 2,
575 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300576};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300577static const struct intel_watermark_params i830_bc_wm_info = {
578 .fifo_size = I855GM_FIFO_SIZE,
579 .max_wm = I915_MAX_WM/2,
580 .default_wm = 1,
581 .guard_size = 2,
582 .cacheline_size = I830_FIFO_LINE_SIZE,
583};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200584static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300585 .fifo_size = I830_FIFO_SIZE,
586 .max_wm = I915_MAX_WM,
587 .default_wm = 1,
588 .guard_size = 2,
589 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300590};
591
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300592/**
593 * intel_calculate_wm - calculate watermark level
594 * @clock_in_khz: pixel clock
595 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200596 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300597 * @latency_ns: memory latency for the platform
598 *
599 * Calculate the watermark level (the level at which the display plane will
600 * start fetching from memory again). Each chip has a different display
601 * FIFO size and allocation, so the caller needs to figure that out and pass
602 * in the correct intel_watermark_params structure.
603 *
604 * As the pixel clock runs, the FIFO will be drained at a rate that depends
605 * on the pixel size. When it reaches the watermark level, it'll start
606 * fetching FIFO line sized based chunks from memory until the FIFO fills
607 * past the watermark point. If the FIFO drains completely, a FIFO underrun
608 * will occur, and a display engine hang could result.
609 */
610static unsigned long intel_calculate_wm(unsigned long clock_in_khz,
611 const struct intel_watermark_params *wm,
Ville Syrjäläac484962016-01-20 21:05:26 +0200612 int fifo_size, int cpp,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300613 unsigned long latency_ns)
614{
615 long entries_required, wm_size;
616
617 /*
618 * Note: we need to make sure we don't overflow for various clock &
619 * latency values.
620 * clocks go from a few thousand to several hundred thousand.
621 * latency is usually a few thousand
622 */
Ville Syrjäläac484962016-01-20 21:05:26 +0200623 entries_required = ((clock_in_khz / 1000) * cpp * latency_ns) /
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300624 1000;
625 entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size);
626
627 DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required);
628
629 wm_size = fifo_size - (entries_required + wm->guard_size);
630
631 DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size);
632
633 /* Don't promote wm_size to unsigned... */
634 if (wm_size > (long)wm->max_wm)
635 wm_size = wm->max_wm;
636 if (wm_size <= 0)
637 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300638
639 /*
640 * Bspec seems to indicate that the value shouldn't be lower than
641 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
642 * Lets go for 8 which is the burst size since certain platforms
643 * already use a hardcoded 8 (which is what the spec says should be
644 * done).
645 */
646 if (wm_size <= 8)
647 wm_size = 8;
648
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300649 return wm_size;
650}
651
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200652static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300653{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200654 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300655
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200656 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200657 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300658 if (enabled)
659 return NULL;
660 enabled = crtc;
661 }
662 }
663
664 return enabled;
665}
666
Ville Syrjälä432081b2016-10-31 22:37:03 +0200667static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300668{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200669 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200670 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300671 const struct cxsr_latency *latency;
672 u32 reg;
673 unsigned long wm;
674
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100675 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
676 dev_priv->is_ddr3,
677 dev_priv->fsb_freq,
678 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300679 if (!latency) {
680 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300681 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300682 return;
683 }
684
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200685 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300686 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200687 const struct drm_display_mode *adjusted_mode =
688 &crtc->config->base.adjusted_mode;
689 const struct drm_framebuffer *fb =
690 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200691 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300692 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300693
694 /* Display SR */
695 wm = intel_calculate_wm(clock, &pineview_display_wm,
696 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200697 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300698 reg = I915_READ(DSPFW1);
699 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200700 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300701 I915_WRITE(DSPFW1, reg);
702 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
703
704 /* cursor SR */
705 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
706 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200707 cpp, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300708 reg = I915_READ(DSPFW3);
709 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200710 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300711 I915_WRITE(DSPFW3, reg);
712
713 /* Display HPLL off SR */
714 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
715 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200716 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300717 reg = I915_READ(DSPFW3);
718 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200719 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300720 I915_WRITE(DSPFW3, reg);
721
722 /* cursor HPLL off SR */
723 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
724 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200725 cpp, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300726 reg = I915_READ(DSPFW3);
727 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200728 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300729 I915_WRITE(DSPFW3, reg);
730 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
731
Imre Deak5209b1f2014-07-01 12:36:17 +0300732 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300733 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300734 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 }
736}
737
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200738static bool g4x_compute_wm0(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 int plane,
740 const struct intel_watermark_params *display,
741 int display_latency_ns,
742 const struct intel_watermark_params *cursor,
743 int cursor_latency_ns,
744 int *plane_wm,
745 int *cursor_wm)
746{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200747 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300748 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200749 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200750 int htotal, hdisplay, clock, cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300751 int line_time_us, line_count;
752 int entries, tlb_miss;
753
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200754 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200755 if (!intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300756 *cursor_wm = cursor->guard_size;
757 *plane_wm = display->guard_size;
758 return false;
759 }
760
Ville Syrjäläefc26112016-10-31 22:37:04 +0200761 adjusted_mode = &crtc->config->base.adjusted_mode;
762 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100763 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800764 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200765 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200766 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300767
768 /* Use the small buffer method to calculate plane watermark */
Ville Syrjäläac484962016-01-20 21:05:26 +0200769 entries = ((clock * cpp / 1000) * display_latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300770 tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8;
771 if (tlb_miss > 0)
772 entries += tlb_miss;
773 entries = DIV_ROUND_UP(entries, display->cacheline_size);
774 *plane_wm = entries + display->guard_size;
775 if (*plane_wm > (int)display->max_wm)
776 *plane_wm = display->max_wm;
777
778 /* Use the large buffer method to calculate cursor watermark */
Ville Syrjälä922044c2014-02-14 14:18:57 +0200779 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300780 line_count = (cursor_latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200781 entries = line_count * crtc->base.cursor->state->crtc_w * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300782 tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8;
783 if (tlb_miss > 0)
784 entries += tlb_miss;
785 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
786 *cursor_wm = entries + cursor->guard_size;
787 if (*cursor_wm > (int)cursor->max_wm)
788 *cursor_wm = (int)cursor->max_wm;
789
790 return true;
791}
792
793/*
794 * Check the wm result.
795 *
796 * If any calculated watermark values is larger than the maximum value that
797 * can be programmed into the associated watermark register, that watermark
798 * must be disabled.
799 */
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200800static bool g4x_check_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300801 int display_wm, int cursor_wm,
802 const struct intel_watermark_params *display,
803 const struct intel_watermark_params *cursor)
804{
805 DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n",
806 display_wm, cursor_wm);
807
808 if (display_wm > display->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100809 DRM_DEBUG_KMS("display watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300810 display_wm, display->max_wm);
811 return false;
812 }
813
814 if (cursor_wm > cursor->max_wm) {
Tvrtko Ursulinae9400c2016-10-13 11:09:25 +0100815 DRM_DEBUG_KMS("cursor watermark is too large(%d/%u), disabling\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300816 cursor_wm, cursor->max_wm);
817 return false;
818 }
819
820 if (!(display_wm || cursor_wm)) {
821 DRM_DEBUG_KMS("SR latency is 0, disabling\n");
822 return false;
823 }
824
825 return true;
826}
827
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200828static bool g4x_compute_srwm(struct drm_i915_private *dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300829 int plane,
830 int latency_ns,
831 const struct intel_watermark_params *display,
832 const struct intel_watermark_params *cursor,
833 int *display_wm, int *cursor_wm)
834{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200835 struct intel_crtc *crtc;
Ville Syrjälä4fe85902013-09-04 18:25:22 +0300836 const struct drm_display_mode *adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200837 const struct drm_framebuffer *fb;
Ville Syrjäläac484962016-01-20 21:05:26 +0200838 int hdisplay, htotal, cpp, clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300839 unsigned long line_time_us;
840 int line_count, line_size;
841 int small, large;
842 int entries;
843
844 if (!latency_ns) {
845 *display_wm = *cursor_wm = 0;
846 return false;
847 }
848
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +0200849 crtc = intel_get_crtc_for_plane(dev_priv, plane);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200850 adjusted_mode = &crtc->config->base.adjusted_mode;
851 fb = crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100852 clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -0800853 htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200854 hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200855 cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300856
Ville Syrjälä922044c2014-02-14 14:18:57 +0200857 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300858 line_count = (latency_ns / line_time_us + 1000) / 1000;
Ville Syrjäläac484962016-01-20 21:05:26 +0200859 line_size = hdisplay * cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300860
861 /* Use the minimum of the small and large buffer method for primary */
Ville Syrjäläac484962016-01-20 21:05:26 +0200862 small = ((clock * cpp / 1000) * latency_ns) / 1000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300863 large = line_count * line_size;
864
865 entries = DIV_ROUND_UP(min(small, large), display->cacheline_size);
866 *display_wm = entries + display->guard_size;
867
868 /* calculate the self-refresh watermark for display cursor */
Ville Syrjäläefc26112016-10-31 22:37:04 +0200869 entries = line_count * cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300870 entries = DIV_ROUND_UP(entries, cursor->cacheline_size);
871 *cursor_wm = entries + cursor->guard_size;
872
Ville Syrjäläf0ce2312016-10-31 22:37:08 +0200873 return g4x_check_srwm(dev_priv,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300874 *display_wm, *cursor_wm,
875 display, cursor);
876}
877
Ville Syrjälä15665972015-03-10 16:16:28 +0200878#define FW_WM_VLV(value, plane) \
879 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
880
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200881static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200882 const struct vlv_wm_values *wm)
883{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200884 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200885
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200886 for_each_pipe(dev_priv, pipe) {
887 I915_WRITE(VLV_DDL(pipe),
888 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
889 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
890 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
891 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
892 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200893
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200894 /*
895 * Zero the (unused) WM1 watermarks, and also clear all the
896 * high order bits so that there are no out of bounds values
897 * present in the registers during the reprogramming.
898 */
899 I915_WRITE(DSPHOWM, 0);
900 I915_WRITE(DSPHOWM1, 0);
901 I915_WRITE(DSPFW4, 0);
902 I915_WRITE(DSPFW5, 0);
903 I915_WRITE(DSPFW6, 0);
904
Ville Syrjäläae801522015-03-05 21:19:49 +0200905 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200906 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200907 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
908 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
909 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200910 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200911 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
912 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
913 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200914 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200915 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200916
917 if (IS_CHERRYVIEW(dev_priv)) {
918 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200919 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
920 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200921 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200922 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
923 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +0200924 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200925 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
926 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200927 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200928 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200929 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
930 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
931 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
932 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
933 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
934 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
935 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
936 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
937 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200938 } else {
939 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200940 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
941 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +0200942 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +0200943 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200944 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
945 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
946 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
947 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
948 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
949 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +0200950 }
951
952 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200953}
954
Ville Syrjälä15665972015-03-10 16:16:28 +0200955#undef FW_WM_VLV
956
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300957enum vlv_wm_level {
958 VLV_WM_LEVEL_PM2,
959 VLV_WM_LEVEL_PM5,
960 VLV_WM_LEVEL_DDR_DVFS,
Ville Syrjälä6eb1a682015-06-24 22:00:03 +0300961};
962
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300963/* latency must be in 0.1us units. */
964static unsigned int vlv_wm_method2(unsigned int pixel_rate,
965 unsigned int pipe_htotal,
966 unsigned int horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +0200967 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300968 unsigned int latency)
969{
970 unsigned int ret;
971
972 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +0200973 ret = (ret + 1) * horiz_pixels * cpp;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300974 ret = DIV_ROUND_UP(ret, 64);
975
976 return ret;
977}
978
Ville Syrjäläbb726512016-10-31 22:37:24 +0200979static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300980{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300981 /* all latencies in usec */
982 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
983
Ville Syrjälä58590c12015-09-08 21:05:12 +0300984 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
985
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300986 if (IS_CHERRYVIEW(dev_priv)) {
987 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
988 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +0300989
990 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300991 }
992}
993
Ville Syrjäläe339d672016-11-28 19:37:17 +0200994static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
995 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300996 int level)
997{
Ville Syrjäläe339d672016-11-28 19:37:17 +0200998 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +0300999 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001000 const struct drm_display_mode *adjusted_mode =
1001 &crtc_state->base.adjusted_mode;
Ville Syrjäläac484962016-01-20 21:05:26 +02001002 int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001003
1004 if (dev_priv->wm.pri_latency[level] == 0)
1005 return USHRT_MAX;
1006
Ville Syrjäläe339d672016-11-28 19:37:17 +02001007 if (!plane_state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001008 return 0;
1009
Daniel Vetteref426c12017-01-04 11:41:10 +01001010 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001011 clock = adjusted_mode->crtc_clock;
1012 htotal = adjusted_mode->crtc_htotal;
1013 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001014 if (WARN_ON(htotal == 0))
1015 htotal = 1;
1016
1017 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1018 /*
1019 * FIXME the formula gives values that are
1020 * too big for the cursor FIFO, and hence we
1021 * would never be able to use cursors. For
1022 * now just hardcode the watermark.
1023 */
1024 wm = 63;
1025 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001026 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001027 dev_priv->wm.pri_latency[level] * 10);
1028 }
1029
1030 return min_t(int, wm, USHRT_MAX);
1031}
1032
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001033static void vlv_compute_fifo(struct intel_crtc *crtc)
1034{
1035 struct drm_device *dev = crtc->base.dev;
1036 struct vlv_wm_state *wm_state = &crtc->wm_state;
1037 struct intel_plane *plane;
1038 unsigned int total_rate = 0;
1039 const int fifo_size = 512 - 1;
1040 int fifo_extra, fifo_left = fifo_size;
1041
1042 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1043 struct intel_plane_state *state =
1044 to_intel_plane_state(plane->base.state);
1045
1046 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1047 continue;
1048
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001049 if (state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001050 wm_state->num_active_planes++;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001051 total_rate += state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001052 }
1053 }
1054
1055 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1056 struct intel_plane_state *state =
1057 to_intel_plane_state(plane->base.state);
1058 unsigned int rate;
1059
1060 if (plane->base.type == DRM_PLANE_TYPE_CURSOR) {
1061 plane->wm.fifo_size = 63;
1062 continue;
1063 }
1064
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001065 if (!state->base.visible) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001066 plane->wm.fifo_size = 0;
1067 continue;
1068 }
1069
Ville Syrjälä353c8592016-12-14 23:30:57 +02001070 rate = state->base.fb->format->cpp[0];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001071 plane->wm.fifo_size = fifo_size * rate / total_rate;
1072 fifo_left -= plane->wm.fifo_size;
1073 }
1074
1075 fifo_extra = DIV_ROUND_UP(fifo_left, wm_state->num_active_planes ?: 1);
1076
1077 /* spread the remainder evenly */
1078 for_each_intel_plane_on_crtc(dev, crtc, plane) {
1079 int plane_extra;
1080
1081 if (fifo_left == 0)
1082 break;
1083
1084 if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
1085 continue;
1086
1087 /* give it all to the first plane if none are active */
1088 if (plane->wm.fifo_size == 0 &&
1089 wm_state->num_active_planes)
1090 continue;
1091
1092 plane_extra = min(fifo_extra, fifo_left);
1093 plane->wm.fifo_size += plane_extra;
1094 fifo_left -= plane_extra;
1095 }
1096
1097 WARN_ON(fifo_left != 0);
1098}
1099
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001100static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1101{
1102 if (wm > fifo_size)
1103 return USHRT_MAX;
1104 else
1105 return fifo_size - wm;
1106}
1107
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001108static void vlv_invert_wms(struct intel_crtc *crtc)
1109{
1110 struct vlv_wm_state *wm_state = &crtc->wm_state;
1111 int level;
1112
1113 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001114 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001115 const int sr_fifo_size =
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001116 INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001117 struct intel_plane *plane;
1118
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001119 wm_state->sr[level].plane =
1120 vlv_invert_wm_value(wm_state->sr[level].plane,
1121 sr_fifo_size);
1122 wm_state->sr[level].cursor =
1123 vlv_invert_wm_value(wm_state->sr[level].cursor,
1124 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001125
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001126 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001127 wm_state->wm[level].plane[plane->id] =
1128 vlv_invert_wm_value(wm_state->wm[level].plane[plane->id],
1129 plane->wm.fifo_size);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001130 }
1131 }
1132}
1133
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03001134static void vlv_compute_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001135{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001136 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001137 struct vlv_wm_state *wm_state = &crtc->wm_state;
1138 struct intel_plane *plane;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001139 int level;
1140
1141 memset(wm_state, 0, sizeof(*wm_state));
1142
Ville Syrjälä852eb002015-06-24 22:00:07 +03001143 wm_state->cxsr = crtc->pipe != PIPE_C && crtc->wm.cxsr_allowed;
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001144 wm_state->num_levels = dev_priv->wm.max_level + 1;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001145
1146 wm_state->num_active_planes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001147
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001148 vlv_compute_fifo(crtc);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001149
1150 if (wm_state->num_active_planes != 1)
1151 wm_state->cxsr = false;
1152
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001153 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001154 struct intel_plane_state *state =
1155 to_intel_plane_state(plane->base.state);
Ville Syrjälä1b313892016-11-28 19:37:08 +02001156 int level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001157
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001158 if (!state->base.visible)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001159 continue;
1160
1161 /* normal watermarks */
1162 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjäläe339d672016-11-28 19:37:17 +02001163 int wm = vlv_compute_wm_level(crtc->config, state, level);
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001164 int max_wm = plane->wm.fifo_size;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001165
1166 /* hack */
1167 if (WARN_ON(level == 0 && wm > max_wm))
1168 wm = max_wm;
1169
Ville Syrjälä1be4d372016-11-28 19:37:05 +02001170 if (wm > max_wm)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001171 break;
1172
Ville Syrjälä1b313892016-11-28 19:37:08 +02001173 wm_state->wm[level].plane[plane->id] = wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001174 }
1175
1176 wm_state->num_levels = level;
1177
1178 if (!wm_state->cxsr)
1179 continue;
1180
1181 /* maxfifo watermarks */
Ville Syrjälä1b313892016-11-28 19:37:08 +02001182 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001183 for (level = 0; level < wm_state->num_levels; level++)
1184 wm_state->sr[level].cursor =
Ville Syrjälä1b313892016-11-28 19:37:08 +02001185 wm_state->wm[level].plane[PLANE_CURSOR];
1186 } else {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001187 for (level = 0; level < wm_state->num_levels; level++)
1188 wm_state->sr[level].plane =
Ville Syrjälä50a9dd32016-11-28 19:37:06 +02001189 max(wm_state->sr[level].plane,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001190 wm_state->wm[level].plane[plane->id]);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001191 }
1192 }
1193
1194 /* clear any (partially) filled invalid levels */
Tvrtko Ursulinb7f05d42016-11-09 11:30:45 +00001195 for (level = wm_state->num_levels; level < dev_priv->wm.max_level + 1; level++) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001196 memset(&wm_state->wm[level], 0, sizeof(wm_state->wm[level]));
1197 memset(&wm_state->sr[level], 0, sizeof(wm_state->sr[level]));
1198 }
1199
1200 vlv_invert_wms(crtc);
1201}
1202
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001203#define VLV_FIFO(plane, value) \
1204 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1205
1206static void vlv_pipe_set_fifo_size(struct intel_crtc *crtc)
1207{
1208 struct drm_device *dev = crtc->base.dev;
1209 struct drm_i915_private *dev_priv = to_i915(dev);
1210 struct intel_plane *plane;
1211 int sprite0_start = 0, sprite1_start = 0, fifo_size = 0;
1212
1213 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjälä49845a22016-11-22 18:02:01 +02001214 switch (plane->id) {
1215 case PLANE_PRIMARY:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001216 sprite0_start = plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001217 break;
1218 case PLANE_SPRITE0:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001219 sprite1_start = sprite0_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001220 break;
1221 case PLANE_SPRITE1:
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001222 fifo_size = sprite1_start + plane->wm.fifo_size;
Ville Syrjälä49845a22016-11-22 18:02:01 +02001223 break;
1224 case PLANE_CURSOR:
1225 WARN_ON(plane->wm.fifo_size != 63);
1226 break;
1227 default:
1228 MISSING_CASE(plane->id);
1229 break;
1230 }
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001231 }
1232
1233 WARN_ON(fifo_size != 512 - 1);
1234
1235 DRM_DEBUG_KMS("Pipe %c FIFO split %d / %d / %d\n",
1236 pipe_name(crtc->pipe), sprite0_start,
1237 sprite1_start, fifo_size);
1238
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001239 spin_lock(&dev_priv->wm.dsparb_lock);
1240
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001241 switch (crtc->pipe) {
1242 uint32_t dsparb, dsparb2, dsparb3;
1243 case PIPE_A:
1244 dsparb = I915_READ(DSPARB);
1245 dsparb2 = I915_READ(DSPARB2);
1246
1247 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1248 VLV_FIFO(SPRITEB, 0xff));
1249 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1250 VLV_FIFO(SPRITEB, sprite1_start));
1251
1252 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1253 VLV_FIFO(SPRITEB_HI, 0x1));
1254 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1255 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1256
1257 I915_WRITE(DSPARB, dsparb);
1258 I915_WRITE(DSPARB2, dsparb2);
1259 break;
1260 case PIPE_B:
1261 dsparb = I915_READ(DSPARB);
1262 dsparb2 = I915_READ(DSPARB2);
1263
1264 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1265 VLV_FIFO(SPRITED, 0xff));
1266 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1267 VLV_FIFO(SPRITED, sprite1_start));
1268
1269 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1270 VLV_FIFO(SPRITED_HI, 0xff));
1271 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1272 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1273
1274 I915_WRITE(DSPARB, dsparb);
1275 I915_WRITE(DSPARB2, dsparb2);
1276 break;
1277 case PIPE_C:
1278 dsparb3 = I915_READ(DSPARB3);
1279 dsparb2 = I915_READ(DSPARB2);
1280
1281 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
1282 VLV_FIFO(SPRITEF, 0xff));
1283 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
1284 VLV_FIFO(SPRITEF, sprite1_start));
1285
1286 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
1287 VLV_FIFO(SPRITEF_HI, 0xff));
1288 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
1289 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
1290
1291 I915_WRITE(DSPARB3, dsparb3);
1292 I915_WRITE(DSPARB2, dsparb2);
1293 break;
1294 default:
1295 break;
1296 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001297
1298 POSTING_READ(DSPARB);
1299
1300 spin_unlock(&dev_priv->wm.dsparb_lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001301}
1302
1303#undef VLV_FIFO
1304
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001305static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001306 struct vlv_wm_values *wm)
1307{
1308 struct intel_crtc *crtc;
1309 int num_active_crtcs = 0;
1310
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001311 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001312 wm->cxsr = true;
1313
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001314 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001315 const struct vlv_wm_state *wm_state = &crtc->wm_state;
1316
1317 if (!crtc->active)
1318 continue;
1319
1320 if (!wm_state->cxsr)
1321 wm->cxsr = false;
1322
1323 num_active_crtcs++;
1324 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
1325 }
1326
1327 if (num_active_crtcs != 1)
1328 wm->cxsr = false;
1329
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03001330 if (num_active_crtcs > 1)
1331 wm->level = VLV_WM_LEVEL_PM2;
1332
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001333 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001334 struct vlv_wm_state *wm_state = &crtc->wm_state;
1335 enum pipe pipe = crtc->pipe;
1336
1337 if (!crtc->active)
1338 continue;
1339
1340 wm->pipe[pipe] = wm_state->wm[wm->level];
1341 if (wm->cxsr)
1342 wm->sr = wm_state->sr[wm->level];
1343
Ville Syrjälä1b313892016-11-28 19:37:08 +02001344 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
1345 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
1346 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
1347 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001348 }
1349}
1350
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001351static bool is_disabling(int old, int new, int threshold)
1352{
1353 return old >= threshold && new < threshold;
1354}
1355
1356static bool is_enabling(int old, int new, int threshold)
1357{
1358 return old < threshold && new >= threshold;
1359}
1360
Ville Syrjälä432081b2016-10-31 22:37:03 +02001361static void vlv_update_wm(struct intel_crtc *crtc)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001362{
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001363 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä432081b2016-10-31 22:37:03 +02001364 enum pipe pipe = crtc->pipe;
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001365 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
1366 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001367
Ville Syrjälä432081b2016-10-31 22:37:03 +02001368 vlv_compute_wm(crtc);
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001369 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001370
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001371 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001372 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001373 vlv_pipe_set_fifo_size(crtc);
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001374
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001375 return;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001376 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001377
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001378 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001379 chv_set_memory_dvfs(dev_priv, false);
1380
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001381 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001382 chv_set_memory_pm5(dev_priv, false);
1383
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001384 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001385 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001386
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001387 /* FIXME should be part of crtc atomic commit */
Ville Syrjälä432081b2016-10-31 22:37:03 +02001388 vlv_pipe_set_fifo_size(crtc);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001389
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001390 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001391
1392 DRM_DEBUG_KMS("Setting FIFO watermarks - %c: plane=%d, cursor=%d, "
1393 "sprite0=%d, sprite1=%d, SR: plane=%d, cursor=%d level=%d cxsr=%d\n",
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001394 pipe_name(pipe), new_wm.pipe[pipe].plane[PLANE_PRIMARY], new_wm.pipe[pipe].plane[PLANE_CURSOR],
1395 new_wm.pipe[pipe].plane[PLANE_SPRITE0], new_wm.pipe[pipe].plane[PLANE_SPRITE1],
1396 new_wm.sr.plane, new_wm.sr.cursor, new_wm.level, new_wm.cxsr);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001397
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001398 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02001399 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001400
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001401 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001402 chv_set_memory_pm5(dev_priv, true);
1403
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001404 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001405 chv_set_memory_dvfs(dev_priv, true);
1406
Ville Syrjäläfa292a42016-11-28 19:37:16 +02001407 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03001408}
1409
Ville Syrjäläae801522015-03-05 21:19:49 +02001410#define single_plane_enabled(mask) is_power_of_2(mask)
1411
Ville Syrjälä432081b2016-10-31 22:37:03 +02001412static void g4x_update_wm(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001413{
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001414 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001415 static const int sr_latency_ns = 12000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001416 int planea_wm, planeb_wm, cursora_wm, cursorb_wm;
1417 int plane_sr, cursor_sr;
1418 unsigned int enabled = 0;
Imre Deak98584252014-06-13 14:54:20 +03001419 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001420
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001421 if (g4x_compute_wm0(dev_priv, PIPE_A,
Chris Wilson5aef6002014-09-03 11:56:07 +01001422 &g4x_wm_info, pessimal_latency_ns,
1423 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001424 &planea_wm, &cursora_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001425 enabled |= 1 << PIPE_A;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001426
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001427 if (g4x_compute_wm0(dev_priv, PIPE_B,
Chris Wilson5aef6002014-09-03 11:56:07 +01001428 &g4x_wm_info, pessimal_latency_ns,
1429 &g4x_cursor_wm_info, pessimal_latency_ns,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001430 &planeb_wm, &cursorb_wm))
Ville Syrjälä51cea1f2013-03-21 13:10:44 +02001431 enabled |= 1 << PIPE_B;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001432
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001433 if (single_plane_enabled(enabled) &&
Ville Syrjäläf0ce2312016-10-31 22:37:08 +02001434 g4x_compute_srwm(dev_priv, ffs(enabled) - 1,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001435 sr_latency_ns,
1436 &g4x_wm_info,
1437 &g4x_cursor_wm_info,
Chris Wilson52bd02d2012-12-07 10:43:24 +00001438 &plane_sr, &cursor_sr)) {
Imre Deak98584252014-06-13 14:54:20 +03001439 cxsr_enabled = true;
Chris Wilson52bd02d2012-12-07 10:43:24 +00001440 } else {
Imre Deak98584252014-06-13 14:54:20 +03001441 cxsr_enabled = false;
Imre Deak5209b1f2014-07-01 12:36:17 +03001442 intel_set_memory_cxsr(dev_priv, false);
Chris Wilson52bd02d2012-12-07 10:43:24 +00001443 plane_sr = cursor_sr = 0;
1444 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001445
Ville Syrjäläa5043452014-06-28 02:04:18 +03001446 DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, "
1447 "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n",
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001448 planea_wm, cursora_wm,
1449 planeb_wm, cursorb_wm,
1450 plane_sr, cursor_sr);
1451
1452 I915_WRITE(DSPFW1,
Ville Syrjäläf4998962015-03-10 17:02:21 +02001453 FW_WM(plane_sr, SR) |
1454 FW_WM(cursorb_wm, CURSORB) |
1455 FW_WM(planeb_wm, PLANEB) |
1456 FW_WM(planea_wm, PLANEA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001457 I915_WRITE(DSPFW2,
Chris Wilson8c919b22012-12-04 16:33:19 +00001458 (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001459 FW_WM(cursora_wm, CURSORA));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001460 /* HPLL off in SR has some issues on G4x... disable it */
1461 I915_WRITE(DSPFW3,
Chris Wilson8c919b22012-12-04 16:33:19 +00001462 (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) |
Ville Syrjäläf4998962015-03-10 17:02:21 +02001463 FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001464
1465 if (cxsr_enabled)
1466 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001467}
1468
Ville Syrjälä432081b2016-10-31 22:37:03 +02001469static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001470{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001471 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001472 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001473 int srwm = 1;
1474 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03001475 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001476
1477 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001478 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001479 if (crtc) {
1480 /* self-refresh has much higher latency */
1481 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001482 const struct drm_display_mode *adjusted_mode =
1483 &crtc->config->base.adjusted_mode;
1484 const struct drm_framebuffer *fb =
1485 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001486 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001487 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001488 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02001489 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001490 unsigned long line_time_us;
1491 int entries;
1492
Ville Syrjälä922044c2014-02-14 14:18:57 +02001493 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001494
1495 /* Use ns/us then divide to preserve precision */
1496 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001497 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001498 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
1499 srwm = I965_FIFO_SIZE - entries;
1500 if (srwm < 0)
1501 srwm = 1;
1502 srwm &= 0x1ff;
1503 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
1504 entries, srwm);
1505
1506 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläefc26112016-10-31 22:37:04 +02001507 cpp * crtc->base.cursor->state->crtc_w;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001508 entries = DIV_ROUND_UP(entries,
1509 i965_cursor_wm_info.cacheline_size);
1510 cursor_sr = i965_cursor_wm_info.fifo_size -
1511 (entries + i965_cursor_wm_info.guard_size);
1512
1513 if (cursor_sr > i965_cursor_wm_info.max_wm)
1514 cursor_sr = i965_cursor_wm_info.max_wm;
1515
1516 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
1517 "cursor %d\n", srwm, cursor_sr);
1518
Imre Deak98584252014-06-13 14:54:20 +03001519 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001520 } else {
Imre Deak98584252014-06-13 14:54:20 +03001521 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001522 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03001523 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001524 }
1525
1526 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
1527 srwm);
1528
1529 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001530 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
1531 FW_WM(8, CURSORB) |
1532 FW_WM(8, PLANEB) |
1533 FW_WM(8, PLANEA));
1534 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
1535 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001536 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02001537 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03001538
1539 if (cxsr_enabled)
1540 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001541}
1542
Ville Syrjäläf4998962015-03-10 17:02:21 +02001543#undef FW_WM
1544
Ville Syrjälä432081b2016-10-31 22:37:03 +02001545static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001546{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001547 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001548 const struct intel_watermark_params *wm_info;
1549 uint32_t fwater_lo;
1550 uint32_t fwater_hi;
1551 int cwm, srwm = 1;
1552 int fifo_size;
1553 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001554 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001555
Ville Syrjäläa9097be2016-10-31 22:37:20 +02001556 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001557 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001558 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001559 wm_info = &i915_wm_info;
1560 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03001561 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001562
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001563 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001564 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001565 if (intel_crtc_active(crtc)) {
1566 const struct drm_display_mode *adjusted_mode =
1567 &crtc->config->base.adjusted_mode;
1568 const struct drm_framebuffer *fb =
1569 crtc->base.primary->state->fb;
1570 int cpp;
1571
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001572 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001573 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001574 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001575 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001576
Damien Lespiau241bfc32013-09-25 16:45:37 +01001577 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001578 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001579 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001580 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001581 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001582 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001583 if (planea_wm > (long)wm_info->max_wm)
1584 planea_wm = wm_info->max_wm;
1585 }
1586
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001587 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03001588 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001589
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001590 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02001591 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001592 if (intel_crtc_active(crtc)) {
1593 const struct drm_display_mode *adjusted_mode =
1594 &crtc->config->base.adjusted_mode;
1595 const struct drm_framebuffer *fb =
1596 crtc->base.primary->state->fb;
1597 int cpp;
1598
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01001599 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001600 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001601 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001602 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001603
Damien Lespiau241bfc32013-09-25 16:45:37 +01001604 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01001605 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01001606 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001607 if (enabled == NULL)
1608 enabled = crtc;
1609 else
1610 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001611 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001612 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03001613 if (planeb_wm > (long)wm_info->max_wm)
1614 planeb_wm = wm_info->max_wm;
1615 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001616
1617 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
1618
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001619 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07001620 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001621
Ville Syrjäläefc26112016-10-31 22:37:04 +02001622 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001623
1624 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01001625 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02001626 enabled = NULL;
1627 }
1628
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001629 /*
1630 * Overlay gets an aggressive default since video jitter is bad.
1631 */
1632 cwm = 2;
1633
1634 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03001635 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001636
1637 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02001638 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001639 /* self-refresh has much higher latency */
1640 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001641 const struct drm_display_mode *adjusted_mode =
1642 &enabled->config->base.adjusted_mode;
1643 const struct drm_framebuffer *fb =
1644 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001645 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08001646 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001647 int hdisplay = enabled->config->pipe_src_w;
1648 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001649 unsigned long line_time_us;
1650 int entries;
1651
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001652 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001653 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02001654 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02001655 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03001656
Ville Syrjälä922044c2014-02-14 14:18:57 +02001657 line_time_us = max(htotal * 1000 / clock, 1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001658
1659 /* Use ns/us then divide to preserve precision */
1660 entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) *
Ville Syrjäläac484962016-01-20 21:05:26 +02001661 cpp * hdisplay;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001662 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
1663 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
1664 srwm = wm_info->fifo_size - entries;
1665 if (srwm < 0)
1666 srwm = 1;
1667
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001668 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001669 I915_WRITE(FW_BLC_SELF,
1670 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03001671 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001672 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
1673 }
1674
1675 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
1676 planea_wm, planeb_wm, cwm, srwm);
1677
1678 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
1679 fwater_hi = (cwm & 0x1f);
1680
1681 /* Set request length to 8 cachelines per fetch */
1682 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
1683 fwater_hi = fwater_hi | (1 << 8);
1684
1685 I915_WRITE(FW_BLC, fwater_lo);
1686 I915_WRITE(FW_BLC2, fwater_hi);
1687
Imre Deak5209b1f2014-07-01 12:36:17 +03001688 if (enabled)
1689 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001690}
1691
Ville Syrjälä432081b2016-10-31 22:37:03 +02001692static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001693{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001694 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02001695 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001696 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001697 uint32_t fwater_lo;
1698 int planea_wm;
1699
Ville Syrjäläffc7a762016-10-31 22:37:21 +02001700 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001701 if (crtc == NULL)
1702 return;
1703
Ville Syrjäläefc26112016-10-31 22:37:04 +02001704 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01001705 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02001706 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02001707 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01001708 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03001709 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
1710 fwater_lo |= (3<<8) | planea_wm;
1711
1712 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
1713
1714 I915_WRITE(FW_BLC, fwater_lo);
1715}
1716
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001717uint32_t ilk_pipe_pixel_rate(const struct intel_crtc_state *pipe_config)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001718{
Chris Wilsonfd4daa92013-08-27 17:04:17 +01001719 uint32_t pixel_rate;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001720
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001721 pixel_rate = pipe_config->base.adjusted_mode.crtc_clock;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001722
1723 /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to
1724 * adjust the pixel_rate here. */
1725
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001726 if (pipe_config->pch_pfit.enabled) {
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001727 uint64_t pipe_w, pipe_h, pfit_w, pfit_h;
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001728 uint32_t pfit_size = pipe_config->pch_pfit.size;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001729
Ville Syrjälä8cfb3402015-06-03 15:45:11 +03001730 pipe_w = pipe_config->pipe_src_w;
1731 pipe_h = pipe_config->pipe_src_h;
1732
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001733 pfit_w = (pfit_size >> 16) & 0xFFFF;
1734 pfit_h = pfit_size & 0xFFFF;
1735 if (pipe_w < pfit_w)
1736 pipe_w = pfit_w;
1737 if (pipe_h < pfit_h)
1738 pipe_h = pfit_h;
1739
Matt Roper15126882015-12-03 11:37:40 -08001740 if (WARN_ON(!pfit_w || !pfit_h))
1741 return pixel_rate;
1742
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001743 pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h,
1744 pfit_w * pfit_h);
1745 }
1746
1747 return pixel_rate;
1748}
1749
Ville Syrjälä37126462013-08-01 16:18:55 +03001750/* latency must be in 0.1us units. */
Ville Syrjäläac484962016-01-20 21:05:26 +02001751static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t cpp, uint32_t latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001752{
1753 uint64_t ret;
1754
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001755 if (WARN(latency == 0, "Latency value missing\n"))
1756 return UINT_MAX;
1757
Ville Syrjäläac484962016-01-20 21:05:26 +02001758 ret = (uint64_t) pixel_rate * cpp * latency;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001759 ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2;
1760
1761 return ret;
1762}
1763
Ville Syrjälä37126462013-08-01 16:18:55 +03001764/* latency must be in 0.1us units. */
Ville Syrjälä23297042013-07-05 11:57:17 +03001765static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal,
Ville Syrjäläac484962016-01-20 21:05:26 +02001766 uint32_t horiz_pixels, uint8_t cpp,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001767 uint32_t latency)
1768{
1769 uint32_t ret;
1770
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001771 if (WARN(latency == 0, "Latency value missing\n"))
1772 return UINT_MAX;
Matt Roper15126882015-12-03 11:37:40 -08001773 if (WARN_ON(!pipe_htotal))
1774 return UINT_MAX;
Ville Syrjälä3312ba62013-08-01 16:18:53 +03001775
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001776 ret = (latency * pixel_rate) / (pipe_htotal * 10000);
Ville Syrjäläac484962016-01-20 21:05:26 +02001777 ret = (ret + 1) * horiz_pixels * cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001778 ret = DIV_ROUND_UP(ret, 64) + 2;
1779 return ret;
1780}
1781
Ville Syrjälä23297042013-07-05 11:57:17 +03001782static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02001783 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001784{
Matt Roper15126882015-12-03 11:37:40 -08001785 /*
1786 * Neither of these should be possible since this function shouldn't be
1787 * called if the CRTC is off or the plane is invisible. But let's be
1788 * extra paranoid to avoid a potential divide-by-zero if we screw up
1789 * elsewhere in the driver.
1790 */
Ville Syrjäläac484962016-01-20 21:05:26 +02001791 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08001792 return 0;
1793 if (WARN_ON(!horiz_pixels))
1794 return 0;
1795
Ville Syrjäläac484962016-01-20 21:05:26 +02001796 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001797}
1798
Imre Deak820c1982013-12-17 14:46:36 +02001799struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03001800 uint16_t pri;
1801 uint16_t spr;
1802 uint16_t cur;
1803 uint16_t fbc;
1804};
1805
Ville Syrjälä37126462013-08-01 16:18:55 +03001806/*
1807 * For both WM_PIPE and WM_LP.
1808 * mem_value must be in 0.1us units.
1809 */
Matt Roper7221fc32015-09-24 15:53:08 -07001810static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001811 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03001812 uint32_t mem_value,
1813 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001814{
Paulo Zanonicca32e92013-05-31 11:45:06 -03001815 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001816 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03001817
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001818 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001819 return 0;
1820
Ville Syrjälä353c8592016-12-14 23:30:57 +02001821 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001822
Ville Syrjäläac484962016-01-20 21:05:26 +02001823 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001824
1825 if (!is_lp)
1826 return method1;
1827
Matt Roper7221fc32015-09-24 15:53:08 -07001828 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1829 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001830 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001831 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001832
1833 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001834}
1835
Ville Syrjälä37126462013-08-01 16:18:55 +03001836/*
1837 * For both WM_PIPE and WM_LP.
1838 * mem_value must be in 0.1us units.
1839 */
Matt Roper7221fc32015-09-24 15:53:08 -07001840static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001841 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001842 uint32_t mem_value)
1843{
1844 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02001845 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001846
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001847 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001848 return 0;
1849
Ville Syrjälä353c8592016-12-14 23:30:57 +02001850 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001851
Ville Syrjäläac484962016-01-20 21:05:26 +02001852 method1 = ilk_wm_method1(ilk_pipe_pixel_rate(cstate), cpp, mem_value);
Matt Roper7221fc32015-09-24 15:53:08 -07001853 method2 = ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1854 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001855 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02001856 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001857 return min(method1, method2);
1858}
1859
Ville Syrjälä37126462013-08-01 16:18:55 +03001860/*
1861 * For both WM_PIPE and WM_LP.
1862 * mem_value must be in 0.1us units.
1863 */
Matt Roper7221fc32015-09-24 15:53:08 -07001864static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001865 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001866 uint32_t mem_value)
1867{
Matt Roperb2435692016-02-02 22:06:51 -08001868 /*
1869 * We treat the cursor plane as always-on for the purposes of watermark
1870 * calculation. Until we have two-stage watermark programming merged,
1871 * this is necessary to avoid flickering.
1872 */
1873 int cpp = 4;
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001874 int width = pstate->base.visible ? pstate->base.crtc_w : 64;
Matt Roper43d59ed2015-09-24 15:53:07 -07001875
Matt Roperb2435692016-02-02 22:06:51 -08001876 if (!cstate->base.active)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001877 return 0;
1878
Matt Roper7221fc32015-09-24 15:53:08 -07001879 return ilk_wm_method2(ilk_pipe_pixel_rate(cstate),
1880 cstate->base.adjusted_mode.crtc_htotal,
Matt Roperb2435692016-02-02 22:06:51 -08001881 width, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03001882}
1883
Paulo Zanonicca32e92013-05-31 11:45:06 -03001884/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07001885static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07001886 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03001887 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001888{
Ville Syrjälä83054942016-11-18 21:53:00 +02001889 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07001890
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001891 if (!cstate->base.active || !pstate->base.visible)
Paulo Zanonicca32e92013-05-31 11:45:06 -03001892 return 0;
1893
Ville Syrjälä353c8592016-12-14 23:30:57 +02001894 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02001895
Ville Syrjälä936e71e2016-07-26 19:06:59 +03001896 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03001897}
1898
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001899static unsigned int
1900ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001901{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001902 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07001903 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001904 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001905 return 768;
1906 else
1907 return 512;
1908}
1909
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001910static unsigned int
1911ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
1912 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001913{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001914 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001915 /* BDW primary/sprite plane watermarks */
1916 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001917 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001918 /* IVB/HSW primary/sprite plane watermarks */
1919 return level == 0 ? 127 : 1023;
1920 else if (!is_sprite)
1921 /* ILK/SNB primary plane watermarks */
1922 return level == 0 ? 127 : 511;
1923 else
1924 /* ILK/SNB sprite plane watermarks */
1925 return level == 0 ? 63 : 255;
1926}
1927
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001928static unsigned int
1929ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001930{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001931 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001932 return level == 0 ? 63 : 255;
1933 else
1934 return level == 0 ? 31 : 63;
1935}
1936
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001937static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001938{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001939 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02001940 return 31;
1941 else
1942 return 15;
1943}
1944
Ville Syrjälä158ae642013-08-07 13:28:19 +03001945/* Calculate the maximum primary/sprite plane watermark */
1946static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
1947 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001948 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03001949 enum intel_ddb_partitioning ddb_partitioning,
1950 bool is_sprite)
1951{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001952 struct drm_i915_private *dev_priv = to_i915(dev);
1953 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001954
1955 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001956 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001957 return 0;
1958
1959 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001960 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001961 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03001962
1963 /*
1964 * For some reason the non self refresh
1965 * FIFO size is only half of the self
1966 * refresh FIFO size on ILK/SNB.
1967 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001968 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001969 fifo_size /= 2;
1970 }
1971
Ville Syrjälä240264f2013-08-07 13:29:12 +03001972 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03001973 /* level 0 is always calculated with 1:1 split */
1974 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
1975 if (is_sprite)
1976 fifo_size *= 5;
1977 fifo_size /= 6;
1978 } else {
1979 fifo_size /= 2;
1980 }
1981 }
1982
1983 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001984 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03001985}
1986
1987/* Calculate the maximum cursor plane watermark */
1988static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03001989 int level,
1990 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001991{
1992 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03001993 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03001994 return 64;
1995
1996 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00001997 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03001998}
1999
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002000static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002001 int level,
2002 const struct intel_wm_config *config,
2003 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002004 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002005{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002006 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2007 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2008 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002009 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002010}
2011
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002012static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002013 int level,
2014 struct ilk_wm_maximums *max)
2015{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002016 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2017 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2018 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2019 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002020}
2021
Ville Syrjäläd9395652013-10-09 19:18:10 +03002022static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002023 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002024 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002025{
2026 bool ret;
2027
2028 /* already determined to be invalid? */
2029 if (!result->enable)
2030 return false;
2031
2032 result->enable = result->pri_val <= max->pri &&
2033 result->spr_val <= max->spr &&
2034 result->cur_val <= max->cur;
2035
2036 ret = result->enable;
2037
2038 /*
2039 * HACK until we can pre-compute everything,
2040 * and thus fail gracefully if LP0 watermarks
2041 * are exceeded...
2042 */
2043 if (level == 0 && !result->enable) {
2044 if (result->pri_val > max->pri)
2045 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2046 level, result->pri_val, max->pri);
2047 if (result->spr_val > max->spr)
2048 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2049 level, result->spr_val, max->spr);
2050 if (result->cur_val > max->cur)
2051 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2052 level, result->cur_val, max->cur);
2053
2054 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2055 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2056 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2057 result->enable = true;
2058 }
2059
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002060 return ret;
2061}
2062
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002063static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002064 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002065 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002066 struct intel_crtc_state *cstate,
Matt Roper86c8bbb2015-09-24 15:53:16 -07002067 struct intel_plane_state *pristate,
2068 struct intel_plane_state *sprstate,
2069 struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002070 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002071{
2072 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2073 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2074 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2075
2076 /* WM1+ latency values stored in 0.5us units */
2077 if (level > 0) {
2078 pri_latency *= 5;
2079 spr_latency *= 5;
2080 cur_latency *= 5;
2081 }
2082
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002083 if (pristate) {
2084 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2085 pri_latency, level);
2086 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2087 }
2088
2089 if (sprstate)
2090 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2091
2092 if (curstate)
2093 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2094
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002095 result->enable = true;
2096}
2097
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002098static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002099hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002100{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002101 const struct intel_atomic_state *intel_state =
2102 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002103 const struct drm_display_mode *adjusted_mode =
2104 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002105 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002106
Matt Roperee91a152015-12-03 11:37:39 -08002107 if (!cstate->base.active)
2108 return 0;
2109 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2110 return 0;
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002111 if (WARN_ON(intel_state->cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002112 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002113
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002114 /* The WM are computed with base on how long it takes to fill a single
2115 * row at the given clock rate, multiplied by 8.
2116 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002117 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2118 adjusted_mode->crtc_clock);
2119 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002120 intel_state->cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002121
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002122 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2123 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002124}
2125
Ville Syrjäläbb726512016-10-31 22:37:24 +02002126static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2127 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002128{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002129 if (IS_GEN9(dev_priv)) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002130 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002131 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002132 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002133
2134 /* read the first set of memory latencies[0:3] */
2135 val = 0; /* data0 to be programmed to 0 for first set */
2136 mutex_lock(&dev_priv->rps.hw_lock);
2137 ret = sandybridge_pcode_read(dev_priv,
2138 GEN9_PCODE_READ_MEM_LATENCY,
2139 &val);
2140 mutex_unlock(&dev_priv->rps.hw_lock);
2141
2142 if (ret) {
2143 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2144 return;
2145 }
2146
2147 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2148 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2149 GEN9_MEM_LATENCY_LEVEL_MASK;
2150 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2151 GEN9_MEM_LATENCY_LEVEL_MASK;
2152 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2153 GEN9_MEM_LATENCY_LEVEL_MASK;
2154
2155 /* read the second set of memory latencies[4:7] */
2156 val = 1; /* data0 to be programmed to 1 for second set */
2157 mutex_lock(&dev_priv->rps.hw_lock);
2158 ret = sandybridge_pcode_read(dev_priv,
2159 GEN9_PCODE_READ_MEM_LATENCY,
2160 &val);
2161 mutex_unlock(&dev_priv->rps.hw_lock);
2162 if (ret) {
2163 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2164 return;
2165 }
2166
2167 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2168 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2169 GEN9_MEM_LATENCY_LEVEL_MASK;
2170 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2171 GEN9_MEM_LATENCY_LEVEL_MASK;
2172 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2173 GEN9_MEM_LATENCY_LEVEL_MASK;
2174
Vandana Kannan367294b2014-11-04 17:06:46 +00002175 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002176 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2177 * need to be disabled. We make sure to sanitize the values out
2178 * of the punit to satisfy this requirement.
2179 */
2180 for (level = 1; level <= max_level; level++) {
2181 if (wm[level] == 0) {
2182 for (i = level + 1; i <= max_level; i++)
2183 wm[i] = 0;
2184 break;
2185 }
2186 }
2187
2188 /*
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02002189 * WaWmMemoryReadLatency:skl,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002190 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002191 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002192 * to add 2us to the various latency levels we retrieve from the
2193 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002194 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002195 if (wm[0] == 0) {
2196 wm[0] += 2;
2197 for (level = 1; level <= max_level; level++) {
2198 if (wm[level] == 0)
2199 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002200 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002201 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002202 }
2203
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002204 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002205 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2206
2207 wm[0] = (sskpd >> 56) & 0xFF;
2208 if (wm[0] == 0)
2209 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002210 wm[1] = (sskpd >> 4) & 0xFF;
2211 wm[2] = (sskpd >> 12) & 0xFF;
2212 wm[3] = (sskpd >> 20) & 0x1FF;
2213 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002214 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002215 uint32_t sskpd = I915_READ(MCH_SSKPD);
2216
2217 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2218 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2219 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2220 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002221 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002222 uint32_t mltr = I915_READ(MLTR_ILK);
2223
2224 /* ILK primary LP0 latency is 700 ns */
2225 wm[0] = 7;
2226 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2227 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002228 }
2229}
2230
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002231static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2232 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002233{
2234 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002235 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002236 wm[0] = 13;
2237}
2238
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002239static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2240 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002241{
2242 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002243 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002244 wm[0] = 13;
2245
2246 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002247 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002248 wm[3] *= 2;
2249}
2250
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002251int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002252{
2253 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002254 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002255 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002256 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002257 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002258 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002259 return 3;
2260 else
2261 return 2;
2262}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002263
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002264static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002265 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002266 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002267{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002268 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002269
2270 for (level = 0; level <= max_level; level++) {
2271 unsigned int latency = wm[level];
2272
2273 if (latency == 0) {
2274 DRM_ERROR("%s WM%d latency not provided\n",
2275 name, level);
2276 continue;
2277 }
2278
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002279 /*
2280 * - latencies are in us on gen9.
2281 * - before then, WM1+ latency values are in 0.5us units
2282 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002283 if (IS_GEN9(dev_priv))
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002284 latency *= 10;
2285 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002286 latency *= 5;
2287
2288 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2289 name, level, wm[level],
2290 latency / 10, latency % 10);
2291 }
2292}
2293
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002294static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2295 uint16_t wm[5], uint16_t min)
2296{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002297 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002298
2299 if (wm[0] >= min)
2300 return false;
2301
2302 wm[0] = max(wm[0], min);
2303 for (level = 1; level <= max_level; level++)
2304 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2305
2306 return true;
2307}
2308
Ville Syrjäläbb726512016-10-31 22:37:24 +02002309static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002310{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002311 bool changed;
2312
2313 /*
2314 * The BIOS provided WM memory latency values are often
2315 * inadequate for high resolution displays. Adjust them.
2316 */
2317 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2318 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2319 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2320
2321 if (!changed)
2322 return;
2323
2324 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002325 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2326 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2327 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002328}
2329
Ville Syrjäläbb726512016-10-31 22:37:24 +02002330static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002331{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002332 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002333
2334 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2335 sizeof(dev_priv->wm.pri_latency));
2336 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2337 sizeof(dev_priv->wm.pri_latency));
2338
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002339 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002340 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002341
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002342 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2343 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2344 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002345
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002346 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02002347 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002348}
2349
Ville Syrjäläbb726512016-10-31 22:37:24 +02002350static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002351{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002352 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002353 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002354}
2355
Matt Ropered4a6a72016-02-23 17:20:13 -08002356static bool ilk_validate_pipe_wm(struct drm_device *dev,
2357 struct intel_pipe_wm *pipe_wm)
2358{
2359 /* LP0 watermark maximums depend on this pipe alone */
2360 const struct intel_wm_config config = {
2361 .num_pipes_active = 1,
2362 .sprites_enabled = pipe_wm->sprites_enabled,
2363 .sprites_scaled = pipe_wm->sprites_scaled,
2364 };
2365 struct ilk_wm_maximums max;
2366
2367 /* LP0 watermarks always use 1/2 DDB partitioning */
2368 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
2369
2370 /* At least LP0 must be valid */
2371 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
2372 DRM_DEBUG_KMS("LP0 watermark invalid\n");
2373 return false;
2374 }
2375
2376 return true;
2377}
2378
Matt Roper261a27d2015-10-08 15:28:25 -07002379/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002380static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07002381{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002382 struct drm_atomic_state *state = cstate->base.state;
2383 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07002384 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002385 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01002386 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper43d59ed2015-09-24 15:53:07 -07002387 struct intel_plane *intel_plane;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002388 struct intel_plane_state *pristate = NULL;
Matt Roper43d59ed2015-09-24 15:53:07 -07002389 struct intel_plane_state *sprstate = NULL;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002390 struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002391 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02002392 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002393
Matt Ropere8f1f022016-05-12 07:05:55 -07002394 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002395
Matt Roper43d59ed2015-09-24 15:53:07 -07002396 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002397 struct intel_plane_state *ps;
2398
2399 ps = intel_atomic_get_existing_plane_state(state,
2400 intel_plane);
2401 if (!ps)
2402 continue;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002403
2404 if (intel_plane->base.type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002405 pristate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002406 else if (intel_plane->base.type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002407 sprstate = ps;
Matt Roper86c8bbb2015-09-24 15:53:16 -07002408 else if (intel_plane->base.type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002409 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07002410 }
2411
Matt Ropered4a6a72016-02-23 17:20:13 -08002412 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002413 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002414 pipe_wm->sprites_enabled = sprstate->base.visible;
2415 pipe_wm->sprites_scaled = sprstate->base.visible &&
2416 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
2417 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002418 }
2419
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002420 usable_level = max_level;
2421
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002422 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002423 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002424 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002425
2426 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08002427 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002428 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02002429
Matt Roper86c8bbb2015-09-24 15:53:16 -07002430 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002431 pristate, sprstate, curstate, &pipe_wm->raw_wm[0]);
2432
2433 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
2434 pipe_wm->wm[0] = pipe_wm->raw_wm[0];
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002435
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002436 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002437 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002438
Matt Ropered4a6a72016-02-23 17:20:13 -08002439 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01002440 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002441
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002442 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002443
2444 for (level = 1; level <= max_level; level++) {
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002445 struct intel_wm_level *wm = &pipe_wm->raw_wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002446
Matt Roper86c8bbb2015-09-24 15:53:16 -07002447 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002448 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002449
2450 /*
2451 * Disable any watermark level that exceeds the
2452 * register maximums since such watermarks are
2453 * always invalid.
2454 */
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01002455 if (level > usable_level)
2456 continue;
2457
2458 if (ilk_validate_wm_level(level, &max, wm))
2459 pipe_wm->wm[level] = *wm;
2460 else
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01002461 usable_level = level;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002462 }
2463
Matt Roper86c8bbb2015-09-24 15:53:16 -07002464 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002465}
2466
2467/*
Matt Ropered4a6a72016-02-23 17:20:13 -08002468 * Build a set of 'intermediate' watermark values that satisfy both the old
2469 * state and the new state. These can be programmed to the hardware
2470 * immediately.
2471 */
2472static int ilk_compute_intermediate_wm(struct drm_device *dev,
2473 struct intel_crtc *intel_crtc,
2474 struct intel_crtc_state *newstate)
2475{
Matt Ropere8f1f022016-05-12 07:05:55 -07002476 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08002477 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002478 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08002479
2480 /*
2481 * Start with the final, target watermarks, then combine with the
2482 * currently active watermarks to get values that are safe both before
2483 * and after the vblank.
2484 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002485 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08002486 a->pipe_enabled |= b->pipe_enabled;
2487 a->sprites_enabled |= b->sprites_enabled;
2488 a->sprites_scaled |= b->sprites_scaled;
2489
2490 for (level = 0; level <= max_level; level++) {
2491 struct intel_wm_level *a_wm = &a->wm[level];
2492 const struct intel_wm_level *b_wm = &b->wm[level];
2493
2494 a_wm->enable &= b_wm->enable;
2495 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
2496 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
2497 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
2498 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
2499 }
2500
2501 /*
2502 * We need to make sure that these merged watermark values are
2503 * actually a valid configuration themselves. If they're not,
2504 * there's no safe way to transition from the old state to
2505 * the new state, so we need to fail the atomic transaction.
2506 */
2507 if (!ilk_validate_pipe_wm(dev, a))
2508 return -EINVAL;
2509
2510 /*
2511 * If our intermediate WM are identical to the final WM, then we can
2512 * omit the post-vblank programming; only update if it's different.
2513 */
Matt Ropere8f1f022016-05-12 07:05:55 -07002514 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) == 0)
Matt Ropered4a6a72016-02-23 17:20:13 -08002515 newstate->wm.need_postvbl_update = false;
2516
2517 return 0;
2518}
2519
2520/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002521 * Merge the watermarks from all active pipes for a specific level.
2522 */
2523static void ilk_merge_wm_level(struct drm_device *dev,
2524 int level,
2525 struct intel_wm_level *ret_wm)
2526{
2527 const struct intel_crtc *intel_crtc;
2528
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002529 ret_wm->enable = true;
2530
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002531 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08002532 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02002533 const struct intel_wm_level *wm = &active->wm[level];
2534
2535 if (!active->pipe_enabled)
2536 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002537
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002538 /*
2539 * The watermark values may have been used in the past,
2540 * so we must maintain them in the registers for some
2541 * time even if the level is now disabled.
2542 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002543 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002544 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002545
2546 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
2547 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
2548 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
2549 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
2550 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002551}
2552
2553/*
2554 * Merge all low power watermarks for all active pipes.
2555 */
2556static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002557 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02002558 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002559 struct intel_pipe_wm *merged)
2560{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002561 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002562 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002563 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002564
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002565 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002566 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002567 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03002568 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02002569
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002570 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002571 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002572
2573 /* merge each WM1+ level */
2574 for (level = 1; level <= max_level; level++) {
2575 struct intel_wm_level *wm = &merged->wm[level];
2576
2577 ilk_merge_wm_level(dev, level, wm);
2578
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002579 if (level > last_enabled_level)
2580 wm->enable = false;
2581 else if (!ilk_validate_wm_level(level, max, wm))
2582 /* make sure all following levels get disabled */
2583 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002584
2585 /*
2586 * The spec says it is preferred to disable
2587 * FBC WMs instead of disabling a WM level.
2588 */
2589 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002590 if (wm->enable)
2591 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002592 wm->fbc_val = 0;
2593 }
2594 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002595
2596 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
2597 /*
2598 * FIXME this is racy. FBC might get enabled later.
2599 * What we should check here is whether FBC can be
2600 * enabled sometime later.
2601 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002602 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03002603 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02002604 for (level = 2; level <= max_level; level++) {
2605 struct intel_wm_level *wm = &merged->wm[level];
2606
2607 wm->enable = false;
2608 }
2609 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002610}
2611
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002612static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
2613{
2614 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
2615 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
2616}
2617
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002618/* The value we need to program into the WM_LPx latency field */
2619static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
2620{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002621 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002622
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002623 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002624 return 2 * level;
2625 else
2626 return dev_priv->wm.pri_latency[level];
2627}
2628
Imre Deak820c1982013-12-17 14:46:36 +02002629static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03002630 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03002631 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002632 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002633{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002634 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002635 struct intel_crtc *intel_crtc;
2636 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002637
Ville Syrjälä0362c782013-10-09 19:17:57 +03002638 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03002639 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002640
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002641 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03002642 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002643 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002644
Ville Syrjäläb380ca32013-10-09 19:18:01 +03002645 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002646
Ville Syrjälä0362c782013-10-09 19:17:57 +03002647 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03002648
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002649 /*
2650 * Maintain the watermark values even if the level is
2651 * disabled. Doing otherwise could cause underruns.
2652 */
2653 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02002654 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07002655 (r->pri_val << WM1_LP_SR_SHIFT) |
2656 r->cur_val;
2657
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002658 if (r->enable)
2659 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
2660
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002661 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002662 results->wm_lp[wm_lp - 1] |=
2663 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
2664 else
2665 results->wm_lp[wm_lp - 1] |=
2666 r->fbc_val << WM1_LP_FBC_SHIFT;
2667
Ville Syrjäläd52fea52014-04-28 15:44:57 +03002668 /*
2669 * Always set WM1S_LP_EN when spr_val != 0, even if the
2670 * level is disabled. Doing otherwise could cause underruns.
2671 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002672 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002673 WARN_ON(wm_lp != 1);
2674 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
2675 } else
2676 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002677 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002678
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002679 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01002680 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002681 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08002682 const struct intel_wm_level *r =
2683 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002684
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002685 if (WARN_ON(!r->enable))
2686 continue;
2687
Matt Ropered4a6a72016-02-23 17:20:13 -08002688 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03002689
2690 results->wm_pipe[pipe] =
2691 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
2692 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
2693 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002694 }
2695}
2696
Paulo Zanoni861f3382013-05-31 10:19:21 -03002697/* Find the result with the highest level enabled. Check for enable_fbc_wm in
2698 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02002699static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002700 struct intel_pipe_wm *r1,
2701 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002702{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002703 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002704 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002705
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002706 for (level = 1; level <= max_level; level++) {
2707 if (r1->wm[level].enable)
2708 level1 = level;
2709 if (r2->wm[level].enable)
2710 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03002711 }
2712
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002713 if (level1 == level2) {
2714 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03002715 return r2;
2716 else
2717 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03002718 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03002719 return r1;
2720 } else {
2721 return r2;
2722 }
2723}
2724
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002725/* dirty bits used to track which watermarks need changes */
2726#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
2727#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
2728#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
2729#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
2730#define WM_DIRTY_FBC (1 << 24)
2731#define WM_DIRTY_DDB (1 << 25)
2732
Damien Lespiau055e3932014-08-18 13:49:10 +01002733static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02002734 const struct ilk_wm_values *old,
2735 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002736{
2737 unsigned int dirty = 0;
2738 enum pipe pipe;
2739 int wm_lp;
2740
Damien Lespiau055e3932014-08-18 13:49:10 +01002741 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002742 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
2743 dirty |= WM_DIRTY_LINETIME(pipe);
2744 /* Must disable LP1+ watermarks too */
2745 dirty |= WM_DIRTY_LP_ALL;
2746 }
2747
2748 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
2749 dirty |= WM_DIRTY_PIPE(pipe);
2750 /* Must disable LP1+ watermarks too */
2751 dirty |= WM_DIRTY_LP_ALL;
2752 }
2753 }
2754
2755 if (old->enable_fbc_wm != new->enable_fbc_wm) {
2756 dirty |= WM_DIRTY_FBC;
2757 /* Must disable LP1+ watermarks too */
2758 dirty |= WM_DIRTY_LP_ALL;
2759 }
2760
2761 if (old->partitioning != new->partitioning) {
2762 dirty |= WM_DIRTY_DDB;
2763 /* Must disable LP1+ watermarks too */
2764 dirty |= WM_DIRTY_LP_ALL;
2765 }
2766
2767 /* LP1+ watermarks already deemed dirty, no need to continue */
2768 if (dirty & WM_DIRTY_LP_ALL)
2769 return dirty;
2770
2771 /* Find the lowest numbered LP1+ watermark in need of an update... */
2772 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
2773 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
2774 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
2775 break;
2776 }
2777
2778 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
2779 for (; wm_lp <= 3; wm_lp++)
2780 dirty |= WM_DIRTY_LP(wm_lp);
2781
2782 return dirty;
2783}
2784
Ville Syrjälä8553c182013-12-05 15:51:39 +02002785static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
2786 unsigned int dirty)
2787{
Imre Deak820c1982013-12-17 14:46:36 +02002788 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02002789 bool changed = false;
2790
2791 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
2792 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
2793 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
2794 changed = true;
2795 }
2796 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
2797 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
2798 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
2799 changed = true;
2800 }
2801 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
2802 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
2803 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
2804 changed = true;
2805 }
2806
2807 /*
2808 * Don't touch WM1S_LP_EN here.
2809 * Doing so could cause underruns.
2810 */
2811
2812 return changed;
2813}
2814
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002815/*
2816 * The spec says we shouldn't write when we don't need, because every write
2817 * causes WMs to be re-evaluated, expending some power.
2818 */
Imre Deak820c1982013-12-17 14:46:36 +02002819static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
2820 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002821{
Imre Deak820c1982013-12-17 14:46:36 +02002822 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002823 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002824 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002825
Damien Lespiau055e3932014-08-18 13:49:10 +01002826 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002827 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002828 return;
2829
Ville Syrjälä8553c182013-12-05 15:51:39 +02002830 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002831
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002832 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002833 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002834 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002835 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002836 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002837 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
2838
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002839 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002840 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002841 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002842 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002843 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002844 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
2845
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002846 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002847 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02002848 val = I915_READ(WM_MISC);
2849 if (results->partitioning == INTEL_DDB_PART_1_2)
2850 val &= ~WM_MISC_DATA_PARTITION_5_6;
2851 else
2852 val |= WM_MISC_DATA_PARTITION_5_6;
2853 I915_WRITE(WM_MISC, val);
2854 } else {
2855 val = I915_READ(DISP_ARB_CTL2);
2856 if (results->partitioning == INTEL_DDB_PART_1_2)
2857 val &= ~DISP_DATA_PARTITION_5_6;
2858 else
2859 val |= DISP_DATA_PARTITION_5_6;
2860 I915_WRITE(DISP_ARB_CTL2, val);
2861 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002862 }
2863
Ville Syrjälä49a687c2013-10-11 19:39:52 +03002864 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002865 val = I915_READ(DISP_ARB_CTL);
2866 if (results->enable_fbc_wm)
2867 val &= ~DISP_FBC_WM_DIS;
2868 else
2869 val |= DISP_FBC_WM_DIS;
2870 I915_WRITE(DISP_ARB_CTL, val);
2871 }
2872
Imre Deak954911e2013-12-17 14:46:34 +02002873 if (dirty & WM_DIRTY_LP(1) &&
2874 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
2875 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
2876
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002877 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02002878 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
2879 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
2880 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
2881 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
2882 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002883
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002884 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002885 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002886 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002887 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02002888 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002889 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03002890
2891 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002892}
2893
Matt Ropered4a6a72016-02-23 17:20:13 -08002894bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02002895{
Chris Wilsonfac5e232016-07-04 11:34:36 +01002896 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02002897
2898 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
2899}
2900
Lyude656d1b82016-08-17 15:55:54 -04002901#define SKL_SAGV_BLOCK_TIME 30 /* µs */
Damien Lespiaub9cec072014-11-04 17:06:43 +00002902
Matt Roper024c9042015-09-24 15:53:11 -07002903/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002904 * FIXME: We still don't have the proper code detect if we need to apply the WA,
2905 * so assume we'll always need it in order to avoid underruns.
2906 */
2907static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
2908{
2909 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
2910
Rodrigo Vivib976dc52017-01-23 10:32:37 -08002911 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03002912 return true;
2913
2914 return false;
2915}
2916
Paulo Zanoni56feca92016-09-22 18:00:28 -03002917static bool
2918intel_has_sagv(struct drm_i915_private *dev_priv)
2919{
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002920 if (IS_KABYLAKE(dev_priv))
2921 return true;
2922
2923 if (IS_SKYLAKE(dev_priv) &&
2924 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
2925 return true;
2926
2927 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03002928}
2929
Lyude656d1b82016-08-17 15:55:54 -04002930/*
2931 * SAGV dynamically adjusts the system agent voltage and clock frequencies
2932 * depending on power and performance requirements. The display engine access
2933 * to system memory is blocked during the adjustment time. Because of the
2934 * blocking time, having this enabled can cause full system hangs and/or pipe
2935 * underruns if we don't meet all of the following requirements:
2936 *
2937 * - <= 1 pipe enabled
2938 * - All planes can enable watermarks for latencies >= SAGV engine block time
2939 * - We're not using an interlaced display configuration
2940 */
2941int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002942intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002943{
2944 int ret;
2945
Paulo Zanoni56feca92016-09-22 18:00:28 -03002946 if (!intel_has_sagv(dev_priv))
2947 return 0;
2948
2949 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04002950 return 0;
2951
2952 DRM_DEBUG_KMS("Enabling the SAGV\n");
2953 mutex_lock(&dev_priv->rps.hw_lock);
2954
2955 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2956 GEN9_SAGV_ENABLE);
2957
2958 /* We don't need to wait for the SAGV when enabling */
2959 mutex_unlock(&dev_priv->rps.hw_lock);
2960
2961 /*
2962 * Some skl systems, pre-release machines in particular,
2963 * don't actually have an SAGV.
2964 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03002965 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04002966 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002967 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04002968 return 0;
2969 } else if (ret < 0) {
2970 DRM_ERROR("Failed to enable the SAGV\n");
2971 return ret;
2972 }
2973
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002974 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04002975 return 0;
2976}
2977
Lyude656d1b82016-08-17 15:55:54 -04002978int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03002979intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04002980{
Imre Deakb3b8e992016-12-05 18:27:38 +02002981 int ret;
Lyude656d1b82016-08-17 15:55:54 -04002982
Paulo Zanoni56feca92016-09-22 18:00:28 -03002983 if (!intel_has_sagv(dev_priv))
2984 return 0;
2985
2986 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04002987 return 0;
2988
2989 DRM_DEBUG_KMS("Disabling the SAGV\n");
2990 mutex_lock(&dev_priv->rps.hw_lock);
2991
2992 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02002993 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
2994 GEN9_SAGV_DISABLE,
2995 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
2996 1);
Lyude656d1b82016-08-17 15:55:54 -04002997 mutex_unlock(&dev_priv->rps.hw_lock);
2998
Lyude656d1b82016-08-17 15:55:54 -04002999 /*
3000 * Some skl systems, pre-release machines in particular,
3001 * don't actually have an SAGV.
3002 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003003 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003004 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003005 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003006 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003007 } else if (ret < 0) {
3008 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3009 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003010 }
3011
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003012 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003013 return 0;
3014}
3015
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003016bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003017{
3018 struct drm_device *dev = state->dev;
3019 struct drm_i915_private *dev_priv = to_i915(dev);
3020 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003021 struct intel_crtc *crtc;
3022 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003023 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003024 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003025 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003026
Paulo Zanoni56feca92016-09-22 18:00:28 -03003027 if (!intel_has_sagv(dev_priv))
3028 return false;
3029
Lyude656d1b82016-08-17 15:55:54 -04003030 /*
3031 * SKL workaround: bspec recommends we disable the SAGV when we have
3032 * more then one pipe enabled
3033 *
3034 * If there are no active CRTCs, no additional checks need be performed
3035 */
3036 if (hweight32(intel_state->active_crtcs) == 0)
3037 return true;
3038 else if (hweight32(intel_state->active_crtcs) > 1)
3039 return false;
3040
3041 /* Since we're now guaranteed to only have one active CRTC... */
3042 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003043 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003044 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003045
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003046 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003047 return false;
3048
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003049 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003050 struct skl_plane_wm *wm =
3051 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003052
Lyude656d1b82016-08-17 15:55:54 -04003053 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003054 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003055 continue;
3056
3057 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003058 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003059 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003060 { }
3061
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003062 latency = dev_priv->wm.skl_latency[level];
3063
3064 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003065 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003066 I915_FORMAT_MOD_X_TILED)
3067 latency += 15;
3068
Lyude656d1b82016-08-17 15:55:54 -04003069 /*
3070 * If any of the planes on this pipe don't enable wm levels
3071 * that incur memory latencies higher then 30µs we can't enable
3072 * the SAGV
3073 */
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003074 if (latency < SKL_SAGV_BLOCK_TIME)
Lyude656d1b82016-08-17 15:55:54 -04003075 return false;
3076 }
3077
3078 return true;
3079}
3080
Damien Lespiaub9cec072014-11-04 17:06:43 +00003081static void
3082skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003083 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003084 struct skl_ddb_entry *alloc, /* out */
3085 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003086{
Matt Roperc107acf2016-05-12 07:06:01 -07003087 struct drm_atomic_state *state = cstate->base.state;
3088 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3089 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003090 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003091 unsigned int pipe_size, ddb_size;
3092 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003093
Matt Ropera6d3460e2016-05-12 07:06:04 -07003094 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003095 alloc->start = 0;
3096 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003097 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003098 return;
3099 }
3100
Matt Ropera6d3460e2016-05-12 07:06:04 -07003101 if (intel_state->active_pipe_changes)
3102 *num_active = hweight32(intel_state->active_crtcs);
3103 else
3104 *num_active = hweight32(dev_priv->active_crtcs);
3105
Deepak M6f3fff62016-09-15 15:01:10 +05303106 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3107 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003108
3109 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3110
Matt Roperc107acf2016-05-12 07:06:01 -07003111 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003112 * If the state doesn't change the active CRTC's, then there's
3113 * no need to recalculate; the existing pipe allocation limits
3114 * should remain unchanged. Note that we're safe from racing
3115 * commits since any racing commit that changes the active CRTC
3116 * list would need to grab _all_ crtc locks, including the one
3117 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003118 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003119 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003120 /*
3121 * alloc may be cleared by clear_intel_crtc_state,
3122 * copy from old state to be sure
3123 */
3124 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003125 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003126 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003127
3128 nth_active_pipe = hweight32(intel_state->active_crtcs &
3129 (drm_crtc_mask(for_crtc) - 1));
3130 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3131 alloc->start = nth_active_pipe * ddb_size / *num_active;
3132 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003133}
3134
Matt Roperc107acf2016-05-12 07:06:01 -07003135static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003136{
Matt Roperc107acf2016-05-12 07:06:01 -07003137 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003138 return 32;
3139
3140 return 8;
3141}
3142
Damien Lespiaua269c582014-11-04 17:06:49 +00003143static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3144{
3145 entry->start = reg & 0x3ff;
3146 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003147 if (entry->end)
3148 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003149}
3150
Damien Lespiau08db6652014-11-04 17:06:52 +00003151void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3152 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003153{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003154 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003155
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003156 memset(ddb, 0, sizeof(*ddb));
3157
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003158 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003159 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003160 enum plane_id plane_id;
3161 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003162
3163 power_domain = POWER_DOMAIN_PIPE(pipe);
3164 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003165 continue;
3166
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003167 for_each_plane_id_on_crtc(crtc, plane_id) {
3168 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003169
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003170 if (plane_id != PLANE_CURSOR)
3171 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3172 else
3173 val = I915_READ(CUR_BUF_CFG(pipe));
3174
3175 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3176 }
Imre Deak4d800032016-02-17 16:31:29 +02003177
3178 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003179 }
3180}
3181
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003182/*
3183 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3184 * The bspec defines downscale amount as:
3185 *
3186 * """
3187 * Horizontal down scale amount = maximum[1, Horizontal source size /
3188 * Horizontal destination size]
3189 * Vertical down scale amount = maximum[1, Vertical source size /
3190 * Vertical destination size]
3191 * Total down scale amount = Horizontal down scale amount *
3192 * Vertical down scale amount
3193 * """
3194 *
3195 * Return value is provided in 16.16 fixed point form to retain fractional part.
3196 * Caller should take care of dividing & rounding off the value.
3197 */
3198static uint32_t
3199skl_plane_downscale_amount(const struct intel_plane_state *pstate)
3200{
3201 uint32_t downscale_h, downscale_w;
3202 uint32_t src_w, src_h, dst_w, dst_h;
3203
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003204 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003205 return DRM_PLANE_HELPER_NO_SCALING;
3206
3207 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003208 src_w = drm_rect_width(&pstate->base.src);
3209 src_h = drm_rect_height(&pstate->base.src);
3210 dst_w = drm_rect_width(&pstate->base.dst);
3211 dst_h = drm_rect_height(&pstate->base.dst);
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003212 if (drm_rotation_90_or_270(pstate->base.rotation))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003213 swap(dst_w, dst_h);
3214
3215 downscale_h = max(src_h / dst_h, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3216 downscale_w = max(src_w / dst_w, (uint32_t)DRM_PLANE_HELPER_NO_SCALING);
3217
3218 /* Provide result in 16.16 fixed point */
3219 return (uint64_t)downscale_w * downscale_h >> 16;
3220}
3221
Damien Lespiaub9cec072014-11-04 17:06:43 +00003222static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003223skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3224 const struct drm_plane_state *pstate,
3225 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003226{
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003227 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003228 uint32_t down_scale_amount, data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003229 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003230 struct drm_framebuffer *fb;
3231 u32 format;
Matt Ropera1de91e2016-05-12 07:05:57 -07003232
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003233 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003234 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003235
3236 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003237 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02003238
Matt Ropera1de91e2016-05-12 07:05:57 -07003239 if (pstate->plane->type == DRM_PLANE_TYPE_CURSOR)
3240 return 0;
3241 if (y && format != DRM_FORMAT_NV12)
3242 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003243
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003244 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3245 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003246
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003247 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003248 swap(width, height);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003249
3250 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07003251 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003252 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003253 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003254 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003255 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003256 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02003257 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003258 } else {
3259 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02003260 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003261 }
3262
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07003263 down_scale_amount = skl_plane_downscale_amount(intel_pstate);
3264
3265 return (uint64_t)data_rate * down_scale_amount >> 16;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003266}
3267
3268/*
3269 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
3270 * a 8192x4096@32bpp framebuffer:
3271 * 3 * 4096 * 8192 * 4 < 2^32
3272 */
3273static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003274skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
3275 unsigned *plane_data_rate,
3276 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003277{
Matt Roper9c74d822016-05-12 07:05:58 -07003278 struct drm_crtc_state *cstate = &intel_cstate->base;
3279 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003280 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003281 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003282 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003283
3284 if (WARN_ON(!state))
3285 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003286
Matt Ropera1de91e2016-05-12 07:05:57 -07003287 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02003288 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003289 enum plane_id plane_id = to_intel_plane(plane)->id;
3290 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07003291
Matt Ropera6d3460e2016-05-12 07:06:04 -07003292 /* packed/uv */
3293 rate = skl_plane_relative_data_rate(intel_cstate,
3294 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003295 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003296
3297 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07003298
Matt Ropera6d3460e2016-05-12 07:06:04 -07003299 /* y-plane */
3300 rate = skl_plane_relative_data_rate(intel_cstate,
3301 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003302 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07003303
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003304 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003305 }
3306
3307 return total_data_rate;
3308}
3309
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003310static uint16_t
3311skl_ddb_min_alloc(const struct drm_plane_state *pstate,
3312 const int y)
3313{
3314 struct drm_framebuffer *fb = pstate->fb;
3315 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
3316 uint32_t src_w, src_h;
3317 uint32_t min_scanlines = 8;
3318 uint8_t plane_bpp;
3319
3320 if (WARN_ON(!fb))
3321 return 0;
3322
3323 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003324 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003325 return 0;
3326
3327 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003328 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
3329 fb->modifier != I915_FORMAT_MOD_Yf_TILED)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003330 return 8;
3331
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003332 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
3333 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003334
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003335 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003336 swap(src_w, src_h);
3337
3338 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003339 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003340 src_w /= 2;
3341 src_h /= 2;
3342 }
3343
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003344 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02003345 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003346 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02003347 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003348
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003349 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07003350 switch (plane_bpp) {
3351 case 1:
3352 min_scanlines = 32;
3353 break;
3354 case 2:
3355 min_scanlines = 16;
3356 break;
3357 case 4:
3358 min_scanlines = 8;
3359 break;
3360 case 8:
3361 min_scanlines = 4;
3362 break;
3363 default:
3364 WARN(1, "Unsupported pixel depth %u for rotation",
3365 plane_bpp);
3366 min_scanlines = 32;
3367 }
3368 }
3369
3370 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
3371}
3372
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003373static void
3374skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
3375 uint16_t *minimum, uint16_t *y_minimum)
3376{
3377 const struct drm_plane_state *pstate;
3378 struct drm_plane *plane;
3379
3380 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003381 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003382
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003383 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003384 continue;
3385
3386 if (!pstate->visible)
3387 continue;
3388
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003389 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
3390 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003391 }
3392
3393 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
3394}
3395
Matt Roperc107acf2016-05-12 07:06:01 -07003396static int
Matt Roper024c9042015-09-24 15:53:11 -07003397skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00003398 struct skl_ddb_allocation *ddb /* out */)
3399{
Matt Roperc107acf2016-05-12 07:06:01 -07003400 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003401 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003402 struct drm_device *dev = crtc->dev;
3403 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3404 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04003405 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003406 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02003407 uint16_t minimum[I915_MAX_PLANES] = {};
3408 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003409 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003410 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07003411 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003412 unsigned plane_data_rate[I915_MAX_PLANES] = {};
3413 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00003414
Paulo Zanoni5a920b82016-10-04 14:37:32 -03003415 /* Clear the partitioning for disabled planes. */
3416 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
3417 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
3418
Matt Ropera6d3460e2016-05-12 07:06:04 -07003419 if (WARN_ON(!state))
3420 return 0;
3421
Matt Roperc107acf2016-05-12 07:06:01 -07003422 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04003423 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07003424 return 0;
3425 }
3426
Matt Ropera6d3460e2016-05-12 07:06:04 -07003427 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003428 alloc_size = skl_ddb_entry_size(alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003429 if (alloc_size == 0) {
3430 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
Matt Roperc107acf2016-05-12 07:06:01 -07003431 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003432 }
3433
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003434 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003435
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003436 /*
3437 * 1. Allocate the mininum required blocks for each active plane
3438 * and allocate the cursor, it doesn't require extra allocation
3439 * proportional to the data rate.
3440 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00003441
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003442 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
3443 alloc_size -= minimum[plane_id];
3444 alloc_size -= y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003445 }
3446
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003447 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
3448 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
3449
Damien Lespiaub9cec072014-11-04 17:06:43 +00003450 /*
Damien Lespiau80958152015-02-09 13:35:10 +00003451 * 2. Distribute the remaining space in proportion to the amount of
3452 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00003453 *
3454 * FIXME: we may not allocate every single block here.
3455 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02003456 total_data_rate = skl_get_total_relative_data_rate(cstate,
3457 plane_data_rate,
3458 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07003459 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07003460 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003461
Damien Lespiau34bb56a2014-11-04 17:07:01 +00003462 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003463 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003464 unsigned int data_rate, y_data_rate;
3465 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003466
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003467 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02003468 continue;
3469
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003470 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00003471
3472 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003473 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00003474 * promote the expression to 64 bits to avoid overflowing, the
3475 * result is < available as data_rate / total_data_rate < 1
3476 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003477 plane_blocks = minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00003478 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
3479 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003480
Matt Roperc107acf2016-05-12 07:06:01 -07003481 /* Leave disabled planes at (0,0) */
3482 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003483 ddb->plane[pipe][plane_id].start = start;
3484 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003485 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00003486
3487 start += plane_blocks;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003488
3489 /*
3490 * allocation for y_plane part of planar format:
3491 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003492 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003493
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003494 y_plane_blocks = y_minimum[plane_id];
Matt Ropera1de91e2016-05-12 07:05:57 -07003495 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
3496 total_data_rate);
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003497
Matt Roperc107acf2016-05-12 07:06:01 -07003498 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003499 ddb->y_plane[pipe][plane_id].start = start;
3500 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07003501 }
Chandra Konduru2cd601c2015-04-27 15:47:37 -07003502
Matt Ropera1de91e2016-05-12 07:05:57 -07003503 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003504 }
3505
Matt Roperc107acf2016-05-12 07:06:01 -07003506 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003507}
3508
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003509/*
3510 * 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 +02003511 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003512 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
3513 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
3514*/
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303515static uint_fixed_16_16_t skl_wm_method1(uint32_t pixel_rate, uint8_t cpp,
3516 uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003517{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303518 uint32_t wm_intermediate_val;
3519 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003520
3521 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303522 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003523
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303524 wm_intermediate_val = latency * pixel_rate * cpp;
3525 ret = fixed_16_16_div_round_up_u64(wm_intermediate_val, 1000 * 512);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003526 return ret;
3527}
3528
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303529static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
3530 uint32_t pipe_htotal,
3531 uint32_t latency,
3532 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003533{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003534 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303535 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003536
3537 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303538 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003539
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003540 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303541 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
3542 pipe_htotal * 1000);
3543 ret = mul_u32_fixed_16_16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003544 return ret;
3545}
3546
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003547static uint32_t skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
3548 struct intel_plane_state *pstate)
3549{
3550 uint64_t adjusted_pixel_rate;
3551 uint64_t downscale_amount;
3552 uint64_t pixel_rate;
3553
3554 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003555 if (WARN_ON(!pstate->base.visible))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003556 return 0;
3557
3558 /*
3559 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
3560 * with additional adjustments for plane-specific scaling.
3561 */
Paulo Zanonicfd7e3a2016-10-07 17:28:57 -03003562 adjusted_pixel_rate = ilk_pipe_pixel_rate(cstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003563 downscale_amount = skl_plane_downscale_amount(pstate);
3564
3565 pixel_rate = adjusted_pixel_rate * downscale_amount >> 16;
3566 WARN_ON(pixel_rate != clamp_t(uint32_t, pixel_rate, 0, ~0));
3567
3568 return pixel_rate;
3569}
3570
Matt Roper55994c22016-05-12 07:06:08 -07003571static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
3572 struct intel_crtc_state *cstate,
3573 struct intel_plane_state *intel_pstate,
3574 uint16_t ddb_allocation,
3575 int level,
3576 uint16_t *out_blocks, /* out */
3577 uint8_t *out_lines, /* out */
3578 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003579{
Matt Roper33815fa2016-05-12 07:06:05 -07003580 struct drm_plane_state *pstate = &intel_pstate->base;
3581 struct drm_framebuffer *fb = pstate->fb;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003582 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303583 uint_fixed_16_16_t method1, method2;
3584 uint_fixed_16_16_t plane_blocks_per_line;
3585 uint_fixed_16_16_t selected_result;
3586 uint32_t interm_pbpl;
3587 uint32_t plane_bytes_per_line;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003588 uint32_t res_blocks, res_lines;
Ville Syrjäläac484962016-01-20 21:05:26 +02003589 uint8_t cpp;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003590 uint32_t width = 0, height = 0;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003591 uint32_t plane_pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303592 uint_fixed_16_16_t y_tile_minimum;
3593 uint32_t y_min_scanlines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003594 struct intel_atomic_state *state =
3595 to_intel_atomic_state(cstate->base.state);
3596 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303597 bool y_tiled, x_tiled;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003598
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003599 if (latency == 0 || !cstate->base.active || !intel_pstate->base.visible) {
Matt Roper55994c22016-05-12 07:06:08 -07003600 *enabled = false;
3601 return 0;
3602 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003603
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303604 y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
3605 fb->modifier == I915_FORMAT_MOD_Yf_TILED;
3606 x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
3607
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05303608 /* Display WA #1141: kbl. */
3609 if (IS_KABYLAKE(dev_priv) && dev_priv->ipc_enabled)
3610 latency += 4;
3611
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303612 if (apply_memory_bw_wa && x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003613 latency += 15;
3614
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003615 width = drm_rect_width(&intel_pstate->base.src) >> 16;
3616 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003617
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03003618 if (drm_rotation_90_or_270(pstate->rotation))
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003619 swap(width, height);
3620
Ville Syrjälä353c8592016-12-14 23:30:57 +02003621 cpp = fb->format->cpp[0];
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003622 plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate, intel_pstate);
3623
Dave Airlie61d0a042016-10-25 16:35:20 +10003624 if (drm_rotation_90_or_270(pstate->rotation)) {
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003625 int cpp = (fb->format->format == DRM_FORMAT_NV12) ?
Ville Syrjälä353c8592016-12-14 23:30:57 +02003626 fb->format->cpp[1] :
3627 fb->format->cpp[0];
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003628
3629 switch (cpp) {
3630 case 1:
3631 y_min_scanlines = 16;
3632 break;
3633 case 2:
3634 y_min_scanlines = 8;
3635 break;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003636 case 4:
3637 y_min_scanlines = 4;
3638 break;
Paulo Zanoni86a462b2016-09-22 18:00:35 -03003639 default:
3640 MISSING_CASE(cpp);
3641 return -EINVAL;
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003642 }
3643 } else {
3644 y_min_scanlines = 4;
3645 }
3646
Paulo Zanoni2ef32de2016-11-08 18:22:11 -02003647 if (apply_memory_bw_wa)
3648 y_min_scanlines *= 2;
3649
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003650 plane_bytes_per_line = width * cpp;
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303651 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303652 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line *
3653 y_min_scanlines, 512);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003654 plane_blocks_per_line =
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303655 fixed_16_16_div_round_up(interm_pbpl, y_min_scanlines);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303656 } else if (x_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303657 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512);
3658 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303659 } else {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303660 interm_pbpl = DIV_ROUND_UP(plane_bytes_per_line, 512) + 1;
3661 plane_blocks_per_line = u32_to_fixed_16_16(interm_pbpl);
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003662 }
3663
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003664 method1 = skl_wm_method1(plane_pixel_rate, cpp, latency);
3665 method2 = skl_wm_method2(plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07003666 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003667 latency,
Paulo Zanoni7a1a8ae2016-09-22 18:00:32 -03003668 plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003669
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303670 y_tile_minimum = mul_u32_fixed_16_16(y_min_scanlines,
3671 plane_blocks_per_line);
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003672
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303673 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303674 selected_result = max_fixed_16_16(method2, y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003675 } else {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03003676 if ((cpp * cstate->base.adjusted_mode.crtc_htotal / 512 < 1) &&
3677 (plane_bytes_per_line / 512 < 1))
3678 selected_result = method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303679 else if ((ddb_allocation /
3680 fixed_16_16_to_u32_round_up(plane_blocks_per_line)) >= 1)
3681 selected_result = min_fixed_16_16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003682 else
3683 selected_result = method1;
3684 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003685
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303686 res_blocks = fixed_16_16_to_u32_round_up(selected_result) + 1;
3687 res_lines = DIV_ROUND_UP(selected_result.val,
3688 plane_blocks_per_line.val);
Damien Lespiaue6d66172014-11-04 17:06:55 +00003689
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003690 if (level >= 1 && level <= 7) {
Mahesh Kumaref8a4fb2016-12-01 21:19:33 +05303691 if (y_tiled) {
Mahesh Kumarb95320b2016-12-01 21:19:37 +05303692 res_blocks += fixed_16_16_to_u32_round_up(y_tile_minimum);
Paulo Zanoni1186fa82016-09-22 18:00:31 -03003693 res_lines += y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003694 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003695 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03003696 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00003697 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00003698
Matt Roper55994c22016-05-12 07:06:08 -07003699 if (res_blocks >= ddb_allocation || res_lines > 31) {
3700 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07003701
3702 /*
3703 * If there are no valid level 0 watermarks, then we can't
3704 * support this display configuration.
3705 */
3706 if (level) {
3707 return 0;
3708 } else {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003709 struct drm_plane *plane = pstate->plane;
Matt Roper6b6bada2016-05-12 07:06:10 -07003710
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003711 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
3712 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
3713 plane->base.id, plane->name,
3714 res_blocks, ddb_allocation, res_lines);
Matt Roper6b6bada2016-05-12 07:06:10 -07003715 return -EINVAL;
3716 }
Matt Roper55994c22016-05-12 07:06:08 -07003717 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00003718
3719 *out_blocks = res_blocks;
3720 *out_lines = res_lines;
Matt Roper55994c22016-05-12 07:06:08 -07003721 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003722
Matt Roper55994c22016-05-12 07:06:08 -07003723 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003724}
3725
Matt Roperf4a96752016-05-12 07:06:06 -07003726static int
3727skl_compute_wm_level(const struct drm_i915_private *dev_priv,
3728 struct skl_ddb_allocation *ddb,
3729 struct intel_crtc_state *cstate,
Lyudea62163e2016-10-04 14:28:20 -04003730 struct intel_plane *intel_plane,
Matt Roperf4a96752016-05-12 07:06:06 -07003731 int level,
3732 struct skl_wm_level *result)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003733{
Matt Roperf4a96752016-05-12 07:06:06 -07003734 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07003735 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Lyudea62163e2016-10-04 14:28:20 -04003736 struct drm_plane *plane = &intel_plane->base;
3737 struct intel_plane_state *intel_pstate = NULL;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003738 uint16_t ddb_blocks;
Matt Roper024c9042015-09-24 15:53:11 -07003739 enum pipe pipe = intel_crtc->pipe;
Matt Roper55994c22016-05-12 07:06:08 -07003740 int ret;
Lyudea62163e2016-10-04 14:28:20 -04003741
3742 if (state)
3743 intel_pstate =
3744 intel_atomic_get_existing_plane_state(state,
3745 intel_plane);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003746
Matt Roperf4a96752016-05-12 07:06:06 -07003747 /*
Lyudea62163e2016-10-04 14:28:20 -04003748 * Note: If we start supporting multiple pending atomic commits against
3749 * the same planes/CRTC's in the future, plane->state will no longer be
3750 * the correct pre-state to use for the calculations here and we'll
3751 * need to change where we get the 'unchanged' plane data from.
3752 *
3753 * For now this is fine because we only allow one queued commit against
3754 * a CRTC. Even if the plane isn't modified by this transaction and we
3755 * don't have a plane lock, we still have the CRTC's lock, so we know
3756 * that no other transactions are racing with us to update it.
Matt Roperf4a96752016-05-12 07:06:06 -07003757 */
Lyudea62163e2016-10-04 14:28:20 -04003758 if (!intel_pstate)
3759 intel_pstate = to_intel_plane_state(plane->state);
Matt Roperf4a96752016-05-12 07:06:06 -07003760
Lyudea62163e2016-10-04 14:28:20 -04003761 WARN_ON(!intel_pstate->base.fb);
Matt Roper024c9042015-09-24 15:53:11 -07003762
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003763 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
Matt Roperf4a96752016-05-12 07:06:06 -07003764
Lyudea62163e2016-10-04 14:28:20 -04003765 ret = skl_compute_plane_wm(dev_priv,
3766 cstate,
3767 intel_pstate,
3768 ddb_blocks,
3769 level,
3770 &result->plane_res_b,
3771 &result->plane_res_l,
3772 &result->plane_en);
3773 if (ret)
3774 return ret;
Matt Roperf4a96752016-05-12 07:06:06 -07003775
3776 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003777}
3778
Damien Lespiau407b50f2014-11-04 17:06:57 +00003779static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07003780skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003781{
Mahesh Kumara3a89862016-12-01 21:19:34 +05303782 struct drm_atomic_state *state = cstate->base.state;
3783 struct drm_i915_private *dev_priv = to_i915(state->dev);
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003784 uint32_t pixel_rate;
Mahesh Kumara3a89862016-12-01 21:19:34 +05303785 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003786
Matt Roper024c9042015-09-24 15:53:11 -07003787 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003788 return 0;
3789
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03003790 pixel_rate = ilk_pipe_pixel_rate(cstate);
3791
3792 if (WARN_ON(pixel_rate == 0))
Mika Kuoppala661abfc2015-07-16 19:36:51 +03003793 return 0;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003794
Mahesh Kumara3a89862016-12-01 21:19:34 +05303795 linetime_wm = DIV_ROUND_UP(8 * cstate->base.adjusted_mode.crtc_htotal *
3796 1000, pixel_rate);
3797
3798 /* Display WA #1135: bxt. */
3799 if (IS_BROXTON(dev_priv) && dev_priv->ipc_enabled)
3800 linetime_wm = DIV_ROUND_UP(linetime_wm, 2);
3801
3802 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003803}
3804
Matt Roper024c9042015-09-24 15:53:11 -07003805static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Damien Lespiau9414f562014-11-04 17:06:58 +00003806 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003807{
Matt Roper024c9042015-09-24 15:53:11 -07003808 if (!cstate->base.active)
Damien Lespiau407b50f2014-11-04 17:06:57 +00003809 return;
Damien Lespiau9414f562014-11-04 17:06:58 +00003810
3811 /* Until we know more, just disable transition WMs */
Lyudea62163e2016-10-04 14:28:20 -04003812 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00003813}
3814
Matt Roper55994c22016-05-12 07:06:08 -07003815static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
3816 struct skl_ddb_allocation *ddb,
3817 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003818{
Matt Roper024c9042015-09-24 15:53:11 -07003819 struct drm_device *dev = cstate->base.crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003820 const struct drm_i915_private *dev_priv = to_i915(dev);
Lyudea62163e2016-10-04 14:28:20 -04003821 struct intel_plane *intel_plane;
3822 struct skl_plane_wm *wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003823 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07003824 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003825
Lyudea62163e2016-10-04 14:28:20 -04003826 /*
3827 * We'll only calculate watermarks for planes that are actually
3828 * enabled, so make sure all other planes are set as disabled.
3829 */
3830 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
3831
3832 for_each_intel_plane_mask(&dev_priv->drm,
3833 intel_plane,
3834 cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003835 wm = &pipe_wm->planes[intel_plane->id];
Lyudea62163e2016-10-04 14:28:20 -04003836
3837 for (level = 0; level <= max_level; level++) {
3838 ret = skl_compute_wm_level(dev_priv, ddb, cstate,
3839 intel_plane, level,
3840 &wm->wm[level]);
3841 if (ret)
3842 return ret;
3843 }
3844 skl_compute_transition_wm(cstate, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003845 }
Matt Roper024c9042015-09-24 15:53:11 -07003846 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003847
Matt Roper55994c22016-05-12 07:06:08 -07003848 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003849}
3850
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02003851static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
3852 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00003853 const struct skl_ddb_entry *entry)
3854{
3855 if (entry->end)
3856 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
3857 else
3858 I915_WRITE(reg, 0);
3859}
3860
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003861static void skl_write_wm_level(struct drm_i915_private *dev_priv,
3862 i915_reg_t reg,
3863 const struct skl_wm_level *level)
3864{
3865 uint32_t val = 0;
3866
3867 if (level->plane_en) {
3868 val |= PLANE_WM_EN;
3869 val |= level->plane_res_b;
3870 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
3871 }
3872
3873 I915_WRITE(reg, val);
3874}
3875
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003876static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
3877 const struct skl_plane_wm *wm,
3878 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003879 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04003880{
3881 struct drm_crtc *crtc = &intel_crtc->base;
3882 struct drm_device *dev = crtc->dev;
3883 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003884 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003885 enum pipe pipe = intel_crtc->pipe;
3886
3887 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003888 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003889 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003890 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003891 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003892 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003893
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003894 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
3895 &ddb->plane[pipe][plane_id]);
3896 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
3897 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04003898}
3899
Ville Syrjäläd9348de2016-11-22 22:21:53 +02003900static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
3901 const struct skl_plane_wm *wm,
3902 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04003903{
3904 struct drm_crtc *crtc = &intel_crtc->base;
3905 struct drm_device *dev = crtc->dev;
3906 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003907 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04003908 enum pipe pipe = intel_crtc->pipe;
3909
3910 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003911 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
3912 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04003913 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003914 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02003915
3916 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003917 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04003918}
3919
cpaul@redhat.com45ece232016-10-14 17:31:56 -04003920bool skl_wm_level_equals(const struct skl_wm_level *l1,
3921 const struct skl_wm_level *l2)
3922{
3923 if (l1->plane_en != l2->plane_en)
3924 return false;
3925
3926 /* If both planes aren't enabled, the rest shouldn't matter */
3927 if (!l1->plane_en)
3928 return true;
3929
3930 return (l1->plane_res_l == l2->plane_res_l &&
3931 l1->plane_res_b == l2->plane_res_b);
3932}
3933
Lyude27082492016-08-24 07:48:10 +02003934static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
3935 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003936{
Lyude27082492016-08-24 07:48:10 +02003937 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003938}
3939
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003940bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry **entries,
3941 const struct skl_ddb_entry *ddb,
3942 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003943{
Lyudece0ba282016-09-15 10:46:35 -04003944 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003945
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01003946 for (i = 0; i < I915_MAX_PIPES; i++)
3947 if (i != ignore && entries[i] &&
3948 skl_ddb_entries_overlap(ddb, entries[i]))
Lyude27082492016-08-24 07:48:10 +02003949 return true;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003950
Lyude27082492016-08-24 07:48:10 +02003951 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00003952}
3953
Matt Roper55994c22016-05-12 07:06:08 -07003954static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003955 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07003956 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003957 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07003958 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003959{
Matt Roperf4a96752016-05-12 07:06:06 -07003960 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07003961 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003962
Matt Roper55994c22016-05-12 07:06:08 -07003963 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
3964 if (ret)
3965 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003966
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02003967 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07003968 *changed = false;
3969 else
3970 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003971
Matt Roper55994c22016-05-12 07:06:08 -07003972 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00003973}
3974
Matt Roper9b613022016-06-27 16:42:44 -07003975static uint32_t
3976pipes_modified(struct drm_atomic_state *state)
3977{
3978 struct drm_crtc *crtc;
3979 struct drm_crtc_state *cstate;
3980 uint32_t i, ret = 0;
3981
3982 for_each_crtc_in_state(state, crtc, cstate, i)
3983 ret |= drm_crtc_mask(crtc);
3984
3985 return ret;
3986}
3987
Jani Nikulabb7791b2016-10-04 12:29:17 +03003988static int
Paulo Zanoni7f60e202016-09-29 16:36:48 -03003989skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
3990{
3991 struct drm_atomic_state *state = cstate->base.state;
3992 struct drm_device *dev = state->dev;
3993 struct drm_crtc *crtc = cstate->base.crtc;
3994 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
3995 struct drm_i915_private *dev_priv = to_i915(dev);
3996 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3997 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
3998 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
3999 struct drm_plane_state *plane_state;
4000 struct drm_plane *plane;
4001 enum pipe pipe = intel_crtc->pipe;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004002
4003 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4004
Maarten Lankhorst220b0962016-10-26 15:41:30 +02004005 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004006 enum plane_id plane_id = to_intel_plane(plane)->id;
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004007
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004008 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4009 &new_ddb->plane[pipe][plane_id]) &&
4010 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4011 &new_ddb->y_plane[pipe][plane_id]))
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004012 continue;
4013
4014 plane_state = drm_atomic_get_plane_state(state, plane);
4015 if (IS_ERR(plane_state))
4016 return PTR_ERR(plane_state);
4017 }
4018
4019 return 0;
4020}
4021
Matt Roper98d39492016-05-12 07:06:03 -07004022static int
4023skl_compute_ddb(struct drm_atomic_state *state)
4024{
4025 struct drm_device *dev = state->dev;
4026 struct drm_i915_private *dev_priv = to_i915(dev);
4027 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4028 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004029 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004030 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004031 int ret;
4032
4033 /*
4034 * If this is our first atomic update following hardware readout,
4035 * we can't trust the DDB that the BIOS programmed for us. Let's
4036 * pretend that all pipes switched active status so that we'll
4037 * ensure a full DDB recompute.
4038 */
Matt Roper1b54a882016-06-17 13:42:18 -07004039 if (dev_priv->wm.distrust_bios_wm) {
4040 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4041 state->acquire_ctx);
4042 if (ret)
4043 return ret;
4044
Matt Roper98d39492016-05-12 07:06:03 -07004045 intel_state->active_pipe_changes = ~0;
4046
Matt Roper1b54a882016-06-17 13:42:18 -07004047 /*
4048 * We usually only initialize intel_state->active_crtcs if we
4049 * we're doing a modeset; make sure this field is always
4050 * initialized during the sanitization process that happens
4051 * on the first commit too.
4052 */
4053 if (!intel_state->modeset)
4054 intel_state->active_crtcs = dev_priv->active_crtcs;
4055 }
4056
Matt Roper98d39492016-05-12 07:06:03 -07004057 /*
4058 * If the modeset changes which CRTC's are active, we need to
4059 * recompute the DDB allocation for *all* active pipes, even
4060 * those that weren't otherwise being modified in any way by this
4061 * atomic commit. Due to the shrinking of the per-pipe allocations
4062 * when new active CRTC's are added, it's possible for a pipe that
4063 * we were already using and aren't changing at all here to suddenly
4064 * become invalid if its DDB needs exceeds its new allocation.
4065 *
4066 * Note that if we wind up doing a full DDB recompute, we can't let
4067 * any other display updates race with this transaction, so we need
4068 * to grab the lock on *all* CRTC's.
4069 */
Matt Roper734fa012016-05-12 15:11:40 -07004070 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004071 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004072 intel_state->wm_results.dirty_pipes = ~0;
4073 }
Matt Roper98d39492016-05-12 07:06:03 -07004074
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004075 /*
4076 * We're not recomputing for the pipes not included in the commit, so
4077 * make sure we start with the current state.
4078 */
4079 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4080
Matt Roper98d39492016-05-12 07:06:03 -07004081 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4082 struct intel_crtc_state *cstate;
4083
4084 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4085 if (IS_ERR(cstate))
4086 return PTR_ERR(cstate);
4087
Matt Roper734fa012016-05-12 15:11:40 -07004088 ret = skl_allocate_pipe_ddb(cstate, ddb);
Matt Roper98d39492016-05-12 07:06:03 -07004089 if (ret)
4090 return ret;
Lyude05a76d32016-08-17 15:55:57 -04004091
Paulo Zanoni7f60e202016-09-29 16:36:48 -03004092 ret = skl_ddb_add_affected_planes(cstate);
Lyude05a76d32016-08-17 15:55:57 -04004093 if (ret)
4094 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004095 }
4096
4097 return 0;
4098}
4099
Matt Roper2722efb2016-08-17 15:55:55 -04004100static void
4101skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4102 struct skl_wm_values *src,
4103 enum pipe pipe)
4104{
Matt Roper2722efb2016-08-17 15:55:55 -04004105 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4106 sizeof(dst->ddb.y_plane[pipe]));
4107 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4108 sizeof(dst->ddb.plane[pipe]));
4109}
4110
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004111static void
4112skl_print_wm_changes(const struct drm_atomic_state *state)
4113{
4114 const struct drm_device *dev = state->dev;
4115 const struct drm_i915_private *dev_priv = to_i915(dev);
4116 const struct intel_atomic_state *intel_state =
4117 to_intel_atomic_state(state);
4118 const struct drm_crtc *crtc;
4119 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004120 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004121 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4122 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01004123 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004124
4125 for_each_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01004126 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4127 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004128
Maarten Lankhorst75704982016-11-01 12:04:10 +01004129 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004130 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004131 const struct skl_ddb_entry *old, *new;
4132
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004133 old = &old_ddb->plane[pipe][plane_id];
4134 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004135
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004136 if (skl_ddb_entry_equal(old, new))
4137 continue;
4138
Maarten Lankhorst75704982016-11-01 12:04:10 +01004139 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
4140 intel_plane->base.base.id,
4141 intel_plane->base.name,
4142 old->start, old->end,
4143 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004144 }
4145 }
4146}
4147
Matt Roper98d39492016-05-12 07:06:03 -07004148static int
4149skl_compute_wm(struct drm_atomic_state *state)
4150{
4151 struct drm_crtc *crtc;
4152 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07004153 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4154 struct skl_wm_values *results = &intel_state->wm_results;
4155 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07004156 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07004157 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07004158
4159 /*
4160 * If this transaction isn't actually touching any CRTC's, don't
4161 * bother with watermark calculation. Note that if we pass this
4162 * test, we're guaranteed to hold at least one CRTC state mutex,
4163 * which means we can safely use values like dev_priv->active_crtcs
4164 * since any racing commits that want to update them would need to
4165 * hold _all_ CRTC state mutexes.
4166 */
4167 for_each_crtc_in_state(state, crtc, cstate, i)
4168 changed = true;
4169 if (!changed)
4170 return 0;
4171
Matt Roper734fa012016-05-12 15:11:40 -07004172 /* Clear all dirty flags */
4173 results->dirty_pipes = 0;
4174
Matt Roper98d39492016-05-12 07:06:03 -07004175 ret = skl_compute_ddb(state);
4176 if (ret)
4177 return ret;
4178
Matt Roper734fa012016-05-12 15:11:40 -07004179 /*
4180 * Calculate WM's for all pipes that are part of this transaction.
4181 * Note that the DDB allocation above may have added more CRTC's that
4182 * weren't otherwise being modified (and set bits in dirty_pipes) if
4183 * pipe allocations had to change.
4184 *
4185 * FIXME: Now that we're doing this in the atomic check phase, we
4186 * should allow skl_update_pipe_wm() to return failure in cases where
4187 * no suitable watermark values can be found.
4188 */
4189 for_each_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07004190 struct intel_crtc_state *intel_cstate =
4191 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004192 const struct skl_pipe_wm *old_pipe_wm =
4193 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07004194
4195 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004196 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
4197 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07004198 if (ret)
4199 return ret;
4200
4201 if (changed)
4202 results->dirty_pipes |= drm_crtc_mask(crtc);
4203
4204 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
4205 /* This pipe's WM's did not change */
4206 continue;
4207
4208 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07004209 }
4210
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004211 skl_print_wm_changes(state);
4212
Matt Roper98d39492016-05-12 07:06:03 -07004213 return 0;
4214}
4215
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004216static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
4217 struct intel_crtc_state *cstate)
4218{
4219 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
4220 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
4221 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004222 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004223 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004224 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004225
4226 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
4227 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004228
4229 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004230
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004231 for_each_plane_id_on_crtc(crtc, plane_id) {
4232 if (plane_id != PLANE_CURSOR)
4233 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
4234 ddb, plane_id);
4235 else
4236 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
4237 ddb);
4238 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004239}
4240
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004241static void skl_initial_wm(struct intel_atomic_state *state,
4242 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004243{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004244 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02004245 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004246 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004247 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04004248 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02004249 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07004250
Ville Syrjälä432081b2016-10-31 22:37:03 +02004251 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004252 return;
4253
Matt Roper734fa012016-05-12 15:11:40 -07004254 mutex_lock(&dev_priv->wm.wm_mutex);
4255
Maarten Lankhorste62929b2016-11-08 13:55:33 +01004256 if (cstate->base.active_changed)
4257 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02004258
4259 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07004260
4261 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004262}
4263
Ville Syrjäläd8905652016-01-14 14:53:35 +02004264static void ilk_compute_wm_config(struct drm_device *dev,
4265 struct intel_wm_config *config)
4266{
4267 struct intel_crtc *crtc;
4268
4269 /* Compute the currently _active_ config */
4270 for_each_intel_crtc(dev, crtc) {
4271 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
4272
4273 if (!wm->pipe_enabled)
4274 continue;
4275
4276 config->sprites_enabled |= wm->sprites_enabled;
4277 config->sprites_scaled |= wm->sprites_scaled;
4278 config->num_pipes_active++;
4279 }
4280}
4281
Matt Ropered4a6a72016-02-23 17:20:13 -08004282static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03004283{
Chris Wilson91c8a322016-07-05 10:40:23 +01004284 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004285 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02004286 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02004287 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02004288 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004289 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07004290
Ville Syrjäläd8905652016-01-14 14:53:35 +02004291 ilk_compute_wm_config(dev, &config);
4292
4293 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
4294 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03004295
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004296 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004297 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02004298 config.num_pipes_active == 1 && config.sprites_enabled) {
4299 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
4300 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03004301
Imre Deak820c1982013-12-17 14:46:36 +02004302 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03004303 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004304 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004305 }
4306
Ville Syrjälä198a1e92013-10-09 19:17:58 +03004307 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03004308 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03004309
Imre Deak820c1982013-12-17 14:46:36 +02004310 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03004311
Imre Deak820c1982013-12-17 14:46:36 +02004312 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03004313}
4314
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004315static void ilk_initial_watermarks(struct intel_atomic_state *state,
4316 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004317{
Matt Ropered4a6a72016-02-23 17:20:13 -08004318 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4319 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004320
Matt Ropered4a6a72016-02-23 17:20:13 -08004321 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07004322 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08004323 ilk_program_watermarks(dev_priv);
4324 mutex_unlock(&dev_priv->wm.wm_mutex);
4325}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004326
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01004327static void ilk_optimize_watermarks(struct intel_atomic_state *state,
4328 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08004329{
4330 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
4331 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4332
4333 mutex_lock(&dev_priv->wm.wm_mutex);
4334 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07004335 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08004336 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004337 }
Matt Ropered4a6a72016-02-23 17:20:13 -08004338 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07004339}
4340
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004341static inline void skl_wm_level_from_reg_val(uint32_t val,
4342 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00004343{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004344 level->plane_en = val & PLANE_WM_EN;
4345 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
4346 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
4347 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00004348}
4349
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004350void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
4351 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00004352{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004353 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00004354 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00004355 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004356 int level, max_level;
4357 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004358 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00004359
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004360 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00004361
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004362 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
4363 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00004364
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004365 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004366 if (plane_id != PLANE_CURSOR)
4367 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004368 else
4369 val = I915_READ(CUR_WM(pipe, level));
4370
4371 skl_wm_level_from_reg_val(val, &wm->wm[level]);
4372 }
4373
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004374 if (plane_id != PLANE_CURSOR)
4375 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004376 else
4377 val = I915_READ(CUR_WM_TRANS(pipe));
4378
4379 skl_wm_level_from_reg_val(val, &wm->trans_wm);
4380 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004381
Matt Roper3ef00282015-03-09 10:19:24 -07004382 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00004383 return;
4384
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004385 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00004386}
4387
4388void skl_wm_get_hw_state(struct drm_device *dev)
4389{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004390 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004391 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00004392 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00004393 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004394 struct intel_crtc *intel_crtc;
4395 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00004396
Damien Lespiaua269c582014-11-04 17:06:49 +00004397 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004398 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
4399 intel_crtc = to_intel_crtc(crtc);
4400 cstate = to_intel_crtc_state(crtc->state);
4401
4402 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
4403
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004404 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004405 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04004406 }
Matt Ropera1de91e2016-05-12 07:05:57 -07004407
Matt Roper279e99d2016-05-12 07:06:02 -07004408 if (dev_priv->active_crtcs) {
4409 /* Fully recompute DDB on first atomic commit */
4410 dev_priv->wm.distrust_bios_wm = true;
4411 } else {
4412 /* Easy/common case; just sanitize DDB now if everything off */
4413 memset(ddb, 0, sizeof(*ddb));
4414 }
Pradeep Bhat30789992014-11-04 17:06:45 +00004415}
4416
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004417static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
4418{
4419 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004420 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004421 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004422 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07004423 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07004424 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004425 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004426 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004427 [PIPE_A] = WM0_PIPEA_ILK,
4428 [PIPE_B] = WM0_PIPEB_ILK,
4429 [PIPE_C] = WM0_PIPEC_IVB,
4430 };
4431
4432 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004433 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02004434 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004435
Ville Syrjälä15606532016-05-13 17:55:17 +03004436 memset(active, 0, sizeof(*active));
4437
Matt Roper3ef00282015-03-09 10:19:24 -07004438 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02004439
4440 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004441 u32 tmp = hw->wm_pipe[pipe];
4442
4443 /*
4444 * For active pipes LP0 watermark is marked as
4445 * enabled, and LP1+ watermaks as disabled since
4446 * we can't really reverse compute them in case
4447 * multiple pipes are active.
4448 */
4449 active->wm[0].enable = true;
4450 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
4451 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
4452 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
4453 active->linetime = hw->wm_linetime[pipe];
4454 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004455 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004456
4457 /*
4458 * For inactive pipes, all watermark levels
4459 * should be marked as enabled but zeroed,
4460 * which is what we'd compute them to.
4461 */
4462 for (level = 0; level <= max_level; level++)
4463 active->wm[level].enable = true;
4464 }
Matt Roper4e0963c2015-09-24 15:53:15 -07004465
4466 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004467}
4468
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004469#define _FW_WM(value, plane) \
4470 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
4471#define _FW_WM_VLV(value, plane) \
4472 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
4473
4474static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
4475 struct vlv_wm_values *wm)
4476{
4477 enum pipe pipe;
4478 uint32_t tmp;
4479
4480 for_each_pipe(dev_priv, pipe) {
4481 tmp = I915_READ(VLV_DDL(pipe));
4482
Ville Syrjälä1b313892016-11-28 19:37:08 +02004483 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004484 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004485 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004486 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004487 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004488 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004489 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004490 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
4491 }
4492
4493 tmp = I915_READ(DSPFW1);
4494 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004495 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
4496 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
4497 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004498
4499 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004500 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
4501 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
4502 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004503
4504 tmp = I915_READ(DSPFW3);
4505 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
4506
4507 if (IS_CHERRYVIEW(dev_priv)) {
4508 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004509 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4510 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004511
4512 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004513 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
4514 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004515
4516 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004517 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
4518 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004519
4520 tmp = I915_READ(DSPHOWM);
4521 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004522 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
4523 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
4524 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
4525 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4526 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4527 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4528 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4529 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4530 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004531 } else {
4532 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02004533 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
4534 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004535
4536 tmp = I915_READ(DSPHOWM);
4537 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02004538 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
4539 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
4540 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
4541 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
4542 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
4543 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004544 }
4545}
4546
4547#undef _FW_WM
4548#undef _FW_WM_VLV
4549
4550void vlv_wm_get_hw_state(struct drm_device *dev)
4551{
4552 struct drm_i915_private *dev_priv = to_i915(dev);
4553 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
4554 struct intel_plane *plane;
4555 enum pipe pipe;
4556 u32 val;
4557
4558 vlv_read_wm_values(dev_priv, wm);
4559
Ville Syrjälä49845a22016-11-22 18:02:01 +02004560 for_each_intel_plane(dev, plane)
4561 plane->wm.fifo_size = vlv_get_fifo_size(plane);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004562
4563 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
4564 wm->level = VLV_WM_LEVEL_PM2;
4565
4566 if (IS_CHERRYVIEW(dev_priv)) {
4567 mutex_lock(&dev_priv->rps.hw_lock);
4568
4569 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
4570 if (val & DSP_MAXFIFO_PM5_ENABLE)
4571 wm->level = VLV_WM_LEVEL_PM5;
4572
Ville Syrjälä58590c12015-09-08 21:05:12 +03004573 /*
4574 * If DDR DVFS is disabled in the BIOS, Punit
4575 * will never ack the request. So if that happens
4576 * assume we don't have to enable/disable DDR DVFS
4577 * dynamically. To test that just set the REQ_ACK
4578 * bit to poke the Punit, but don't change the
4579 * HIGH/LOW bits so that we don't actually change
4580 * the current state.
4581 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004582 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03004583 val |= FORCE_DDR_FREQ_REQ_ACK;
4584 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
4585
4586 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
4587 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
4588 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
4589 "assuming DDR DVFS is disabled\n");
4590 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
4591 } else {
4592 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
4593 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
4594 wm->level = VLV_WM_LEVEL_DDR_DVFS;
4595 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004596
4597 mutex_unlock(&dev_priv->rps.hw_lock);
4598 }
4599
4600 for_each_pipe(dev_priv, pipe)
4601 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 +02004602 pipe_name(pipe),
4603 wm->pipe[pipe].plane[PLANE_PRIMARY],
4604 wm->pipe[pipe].plane[PLANE_CURSOR],
4605 wm->pipe[pipe].plane[PLANE_SPRITE0],
4606 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03004607
4608 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
4609 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
4610}
4611
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004612void ilk_wm_get_hw_state(struct drm_device *dev)
4613{
Chris Wilsonfac5e232016-07-04 11:34:36 +01004614 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02004615 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004616 struct drm_crtc *crtc;
4617
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01004618 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004619 ilk_pipe_wm_get_hw_state(crtc);
4620
4621 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
4622 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
4623 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
4624
4625 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00004626 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02004627 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
4628 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
4629 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004630
Tvrtko Ursulin86527442016-10-13 11:03:00 +01004631 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004632 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
4633 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01004634 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02004635 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
4636 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03004637
4638 hw->enable_fbc_wm =
4639 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
4640}
4641
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004642/**
4643 * intel_update_watermarks - update FIFO watermark values based on current modes
4644 *
4645 * Calculate watermark values for the various WM regs based on current mode
4646 * and plane configuration.
4647 *
4648 * There are several cases to deal with here:
4649 * - normal (i.e. non-self-refresh)
4650 * - self-refresh (SR) mode
4651 * - lines are large relative to FIFO size (buffer can hold up to 2)
4652 * - lines are small relative to FIFO size (buffer can hold more than 2
4653 * lines), so need to account for TLB latency
4654 *
4655 * The normal calculation is:
4656 * watermark = dotclock * bytes per pixel * latency
4657 * where latency is platform & configuration dependent (we assume pessimal
4658 * values here).
4659 *
4660 * The SR calculation is:
4661 * watermark = (trunc(latency/line time)+1) * surface width *
4662 * bytes per pixel
4663 * where
4664 * line time = htotal / dotclock
4665 * surface width = hdisplay for normal plane and 64 for cursor
4666 * and latency is assumed to be high, as above.
4667 *
4668 * The final value programmed to the register should always be rounded up,
4669 * and include an extra 2 entries to account for clock crossings.
4670 *
4671 * We don't use the sprite, so we can ignore that. And on Crestline we have
4672 * to set the non-SR watermarks to 8.
4673 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02004674void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004675{
Ville Syrjälä432081b2016-10-31 22:37:03 +02004676 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004677
4678 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03004679 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03004680}
4681
Jani Nikulae2828912016-01-18 09:19:47 +02004682/*
Daniel Vetter92703882012-08-09 16:46:01 +02004683 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02004684 */
4685DEFINE_SPINLOCK(mchdev_lock);
4686
4687/* Global for IPS driver to get at the current i915 device. Protected by
4688 * mchdev_lock. */
4689static struct drm_i915_private *i915_mch_dev;
4690
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004691bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004692{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004693 u16 rgvswctl;
4694
Daniel Vetter92703882012-08-09 16:46:01 +02004695 assert_spin_locked(&mchdev_lock);
4696
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004697 rgvswctl = I915_READ16(MEMSWCTL);
4698 if (rgvswctl & MEMCTL_CMD_STS) {
4699 DRM_DEBUG("gpu busy, RCS change rejected\n");
4700 return false; /* still busy with another command */
4701 }
4702
4703 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
4704 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
4705 I915_WRITE16(MEMSWCTL, rgvswctl);
4706 POSTING_READ16(MEMSWCTL);
4707
4708 rgvswctl |= MEMCTL_CMD_STS;
4709 I915_WRITE16(MEMSWCTL, rgvswctl);
4710
4711 return true;
4712}
4713
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004714static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004715{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004716 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004717 u8 fmax, fmin, fstart, vstart;
4718
Daniel Vetter92703882012-08-09 16:46:01 +02004719 spin_lock_irq(&mchdev_lock);
4720
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00004721 rgvmodectl = I915_READ(MEMMODECTL);
4722
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004723 /* Enable temp reporting */
4724 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
4725 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
4726
4727 /* 100ms RC evaluation intervals */
4728 I915_WRITE(RCUPEI, 100000);
4729 I915_WRITE(RCDNEI, 100000);
4730
4731 /* Set max/min thresholds to 90ms and 80ms respectively */
4732 I915_WRITE(RCBMAXAVG, 90000);
4733 I915_WRITE(RCBMINAVG, 80000);
4734
4735 I915_WRITE(MEMIHYST, 1);
4736
4737 /* Set up min, max, and cur for interrupt handling */
4738 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
4739 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
4740 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
4741 MEMMODE_FSTART_SHIFT;
4742
Ville Syrjälä616847e2015-09-18 20:03:19 +03004743 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004744 PXVFREQ_PX_SHIFT;
4745
Daniel Vetter20e4d402012-08-08 23:35:39 +02004746 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
4747 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004748
Daniel Vetter20e4d402012-08-08 23:35:39 +02004749 dev_priv->ips.max_delay = fstart;
4750 dev_priv->ips.min_delay = fmin;
4751 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004752
4753 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
4754 fmax, fmin, fstart);
4755
4756 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
4757
4758 /*
4759 * Interrupts will be enabled in ironlake_irq_postinstall
4760 */
4761
4762 I915_WRITE(VIDSTART, vstart);
4763 POSTING_READ(VIDSTART);
4764
4765 rgvmodectl |= MEMMODE_SWMODE_EN;
4766 I915_WRITE(MEMMODECTL, rgvmodectl);
4767
Daniel Vetter92703882012-08-09 16:46:01 +02004768 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004769 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004770 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004771
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004772 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004773
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004774 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
4775 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02004776 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03004777 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00004778 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02004779
4780 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004781}
4782
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004783static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004784{
Daniel Vetter92703882012-08-09 16:46:01 +02004785 u16 rgvswctl;
4786
4787 spin_lock_irq(&mchdev_lock);
4788
4789 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004790
4791 /* Ack interrupts, disable EFC interrupt */
4792 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
4793 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
4794 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
4795 I915_WRITE(DEIIR, DE_PCU_EVENT);
4796 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
4797
4798 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01004799 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004800 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004801 rgvswctl |= MEMCTL_CMD_STS;
4802 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02004803 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004804
Daniel Vetter92703882012-08-09 16:46:01 +02004805 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004806}
4807
Daniel Vetteracbe9472012-07-26 11:50:05 +02004808/* There's a funny hw issue where the hw returns all 0 when reading from
4809 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
4810 * ourselves, instead of doing a rmw cycle (which might result in us clearing
4811 * all limits and the gpu stuck at whatever frequency it is at atm).
4812 */
Akash Goel74ef1172015-03-06 11:07:19 +05304813static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004814{
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004815 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004816
Daniel Vetter20b46e52012-07-26 11:16:14 +02004817 /* Only set the down limit when we've reached the lowest level to avoid
4818 * getting more interrupts, otherwise leave this clear. This prevents a
4819 * race in the hw when coming out of rc6: There's a tiny window where
4820 * the hw runs at the minimal clock before selecting the desired
4821 * frequency, if the down threshold expires in that window we will not
4822 * receive a down interrupt. */
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03004823 if (IS_GEN9(dev_priv)) {
Akash Goel74ef1172015-03-06 11:07:19 +05304824 limits = (dev_priv->rps.max_freq_softlimit) << 23;
4825 if (val <= dev_priv->rps.min_freq_softlimit)
4826 limits |= (dev_priv->rps.min_freq_softlimit) << 14;
4827 } else {
4828 limits = dev_priv->rps.max_freq_softlimit << 24;
4829 if (val <= dev_priv->rps.min_freq_softlimit)
4830 limits |= dev_priv->rps.min_freq_softlimit << 16;
4831 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02004832
4833 return limits;
4834}
4835
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004836static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
4837{
4838 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05304839 u32 threshold_up = 0, threshold_down = 0; /* in % */
4840 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004841
4842 new_power = dev_priv->rps.power;
4843 switch (dev_priv->rps.power) {
4844 case LOW_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004845 if (val > dev_priv->rps.efficient_freq + 1 &&
4846 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004847 new_power = BETWEEN;
4848 break;
4849
4850 case BETWEEN:
Chris Wilsona72b5622016-07-02 15:35:59 +01004851 if (val <= dev_priv->rps.efficient_freq &&
4852 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004853 new_power = LOW_POWER;
Chris Wilsona72b5622016-07-02 15:35:59 +01004854 else if (val >= dev_priv->rps.rp0_freq &&
4855 val > dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004856 new_power = HIGH_POWER;
4857 break;
4858
4859 case HIGH_POWER:
Chris Wilsona72b5622016-07-02 15:35:59 +01004860 if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 &&
4861 val < dev_priv->rps.cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004862 new_power = BETWEEN;
4863 break;
4864 }
4865 /* Max/min bins are special */
Chris Wilsonaed242f2015-03-18 09:48:21 +00004866 if (val <= dev_priv->rps.min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004867 new_power = LOW_POWER;
Chris Wilsonaed242f2015-03-18 09:48:21 +00004868 if (val >= dev_priv->rps.max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004869 new_power = HIGH_POWER;
4870 if (new_power == dev_priv->rps.power)
4871 return;
4872
4873 /* Note the units here are not exactly 1us, but 1280ns. */
4874 switch (new_power) {
4875 case LOW_POWER:
4876 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05304877 ei_up = 16000;
4878 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004879
4880 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304881 ei_down = 32000;
4882 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004883 break;
4884
4885 case BETWEEN:
4886 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05304887 ei_up = 13000;
4888 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004889
4890 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304891 ei_down = 32000;
4892 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004893 break;
4894
4895 case HIGH_POWER:
4896 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05304897 ei_up = 10000;
4898 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004899
4900 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05304901 ei_down = 32000;
4902 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004903 break;
4904 }
4905
Akash Goel8a586432015-03-06 11:07:18 +05304906 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004907 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05304908 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004909 GT_INTERVAL_FROM_US(dev_priv,
4910 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304911
4912 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01004913 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05304914 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01004915 GT_INTERVAL_FROM_US(dev_priv,
4916 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05304917
Chris Wilsona72b5622016-07-02 15:35:59 +01004918 I915_WRITE(GEN6_RP_CONTROL,
4919 GEN6_RP_MEDIA_TURBO |
4920 GEN6_RP_MEDIA_HW_NORMAL_MODE |
4921 GEN6_RP_MEDIA_IS_GFX |
4922 GEN6_RP_ENABLE |
4923 GEN6_RP_UP_BUSY_AVG |
4924 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05304925
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004926 dev_priv->rps.power = new_power;
Chris Wilson8fb55192015-04-07 16:20:28 +01004927 dev_priv->rps.up_threshold = threshold_up;
4928 dev_priv->rps.down_threshold = threshold_down;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01004929 dev_priv->rps.last_adj = 0;
4930}
4931
Chris Wilson2876ce72014-03-28 08:03:34 +00004932static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
4933{
4934 u32 mask = 0;
4935
4936 if (val > dev_priv->rps.min_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004937 mask |= GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Chris Wilson2876ce72014-03-28 08:03:34 +00004938 if (val < dev_priv->rps.max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00004939 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00004940
Chris Wilson7b3c29f2014-07-10 20:31:19 +01004941 mask &= dev_priv->pm_rps_events;
4942
Imre Deak59d02a12014-12-19 19:33:26 +02004943 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00004944}
4945
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004946/* gen6_set_rps is called to update the frequency request, but should also be
4947 * called when the range (min_delay and max_delay) is modified so that we can
4948 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004949static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02004950{
Jesse Barnes4fc688c2012-11-02 11:14:01 -07004951 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004952 WARN_ON(val > dev_priv->rps.max_freq);
4953 WARN_ON(val < dev_priv->rps.min_freq);
Daniel Vetter004777c2012-08-09 15:07:01 +02004954
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004955 /* min/max delay may still have been modified so be sure to
4956 * write the limits value.
4957 */
4958 if (val != dev_priv->rps.cur_freq) {
4959 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004960
Chris Wilsondc979972016-05-10 14:10:04 +01004961 if (IS_GEN9(dev_priv))
Akash Goel57041952015-03-06 11:07:17 +05304962 I915_WRITE(GEN6_RPNSWREQ,
4963 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01004964 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00004965 I915_WRITE(GEN6_RPNSWREQ,
4966 HSW_FREQUENCY(val));
4967 else
4968 I915_WRITE(GEN6_RPNSWREQ,
4969 GEN6_FREQUENCY(val) |
4970 GEN6_OFFSET(0) |
4971 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06004972 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004973
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004974 /* Make sure we continue to get interrupts
4975 * until we hit the minimum or maximum frequencies.
4976 */
Akash Goel74ef1172015-03-06 11:07:19 +05304977 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00004978 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01004979
Ben Widawskyd5570a72012-09-07 19:43:41 -07004980 POSTING_READ(GEN6_RPNSWREQ);
4981
Ben Widawskyb39fb292014-03-19 18:31:11 -07004982 dev_priv->rps.cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02004983 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004984
4985 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03004986}
4987
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004988static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004989{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00004990 int err;
4991
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004992 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Chris Wilsonaed242f2015-03-18 09:48:21 +00004993 WARN_ON(val > dev_priv->rps.max_freq);
4994 WARN_ON(val < dev_priv->rps.min_freq);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004995
Chris Wilsondc979972016-05-10 14:10:04 +01004996 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02004997 "Odd GPU freq value\n"))
4998 val &= ~1;
4999
Deepak Scd25dd52015-07-10 18:31:40 +05305000 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
5001
Chris Wilson8fb55192015-04-07 16:20:28 +01005002 if (val != dev_priv->rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005003 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
5004 if (err)
5005 return err;
5006
Chris Wilson8fb55192015-04-07 16:20:28 +01005007 if (!IS_CHERRYVIEW(dev_priv))
5008 gen6_set_rps_thresholds(dev_priv, val);
5009 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005010
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005011 dev_priv->rps.cur_freq = val;
5012 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005013
5014 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005015}
5016
Deepak Sa7f6e232015-05-09 18:04:44 +05305017/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05305018 *
5019 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05305020 * 1. Forcewake Media well.
5021 * 2. Request idle freq.
5022 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05305023*/
5024static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
5025{
Chris Wilsonaed242f2015-03-18 09:48:21 +00005026 u32 val = dev_priv->rps.idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005027 int err;
Deepak S5549d252014-06-28 11:26:11 +05305028
Chris Wilsonaed242f2015-03-18 09:48:21 +00005029 if (dev_priv->rps.cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05305030 return;
5031
Chris Wilsonc9efef72017-01-02 15:28:45 +00005032 /* The punit delays the write of the frequency and voltage until it
5033 * determines the GPU is awake. During normal usage we don't want to
5034 * waste power changing the frequency if the GPU is sleeping (rc6).
5035 * However, the GPU and driver is now idle and we do not want to delay
5036 * switching to minimum voltage (reducing power whilst idle) as we do
5037 * not expect to be woken in the near future and so must flush the
5038 * change by waking the device.
5039 *
5040 * We choose to take the media powerwell (either would do to trick the
5041 * punit into committing the voltage change) as that takes a lot less
5042 * power than the render powerwell.
5043 */
Deepak Sa7f6e232015-05-09 18:04:44 +05305044 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005045 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05305046 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005047
5048 if (err)
5049 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05305050}
5051
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005052void gen6_rps_busy(struct drm_i915_private *dev_priv)
5053{
5054 mutex_lock(&dev_priv->rps.hw_lock);
5055 if (dev_priv->rps.enabled) {
5056 if (dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED))
5057 gen6_rps_reset_ei(dev_priv);
5058 I915_WRITE(GEN6_PMINTRMSK,
5059 gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005060
Chris Wilsonc33d2472016-07-04 08:08:36 +01005061 gen6_enable_rps_interrupts(dev_priv);
5062
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02005063 /* Ensure we start at the user's desired frequency */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005064 if (intel_set_rps(dev_priv,
5065 clamp(dev_priv->rps.cur_freq,
5066 dev_priv->rps.min_freq_softlimit,
5067 dev_priv->rps.max_freq_softlimit)))
5068 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005069 }
5070 mutex_unlock(&dev_priv->rps.hw_lock);
5071}
5072
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005073void gen6_rps_idle(struct drm_i915_private *dev_priv)
5074{
Chris Wilsonc33d2472016-07-04 08:08:36 +01005075 /* Flush our bottom-half so that it does not race with us
5076 * setting the idle frequency and so that it is bounded by
5077 * our rpm wakeref. And then disable the interrupts to stop any
5078 * futher RPS reclocking whilst we are asleep.
5079 */
5080 gen6_disable_rps_interrupts(dev_priv);
5081
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005082 mutex_lock(&dev_priv->rps.hw_lock);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005083 if (dev_priv->rps.enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01005084 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05305085 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005086 else
Chris Wilsondc979972016-05-10 14:10:04 +01005087 gen6_set_rps(dev_priv, dev_priv->rps.idle_freq);
Chris Wilsonc0951f02013-10-10 21:58:50 +01005088 dev_priv->rps.last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03005089 I915_WRITE(GEN6_PMINTRMSK,
5090 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01005091 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005092 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005093
Chris Wilson8d3afd72015-05-21 21:01:47 +01005094 spin_lock(&dev_priv->rps.client_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005095 while (!list_empty(&dev_priv->rps.clients))
5096 list_del_init(dev_priv->rps.clients.next);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005097 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005098}
5099
Chris Wilson1854d5c2015-04-07 16:20:32 +01005100void gen6_rps_boost(struct drm_i915_private *dev_priv,
Chris Wilsone61b9952015-04-27 13:41:24 +01005101 struct intel_rps_client *rps,
5102 unsigned long submitted)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005103{
Chris Wilson8d3afd72015-05-21 21:01:47 +01005104 /* This is intentionally racy! We peek at the state here, then
5105 * validate inside the RPS worker.
5106 */
Chris Wilson67d97da2016-07-04 08:08:31 +01005107 if (!(dev_priv->gt.awake &&
Chris Wilson8d3afd72015-05-21 21:01:47 +01005108 dev_priv->rps.enabled &&
Chris Wilson29ecd78d2016-07-13 09:10:35 +01005109 dev_priv->rps.cur_freq < dev_priv->rps.boost_freq))
Chris Wilson8d3afd72015-05-21 21:01:47 +01005110 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00005111
Chris Wilsone61b9952015-04-27 13:41:24 +01005112 /* Force a RPS boost (and don't count it against the client) if
5113 * the GPU is severely congested.
5114 */
Chris Wilsond0bc54f2015-05-21 21:01:48 +01005115 if (rps && time_after(jiffies, submitted + DRM_I915_THROTTLE_JIFFIES))
Chris Wilsone61b9952015-04-27 13:41:24 +01005116 rps = NULL;
5117
Chris Wilson8d3afd72015-05-21 21:01:47 +01005118 spin_lock(&dev_priv->rps.client_lock);
5119 if (rps == NULL || list_empty(&rps->link)) {
5120 spin_lock_irq(&dev_priv->irq_lock);
5121 if (dev_priv->rps.interrupts_enabled) {
5122 dev_priv->rps.client_boost = true;
Chris Wilsonc33d2472016-07-04 08:08:36 +01005123 schedule_work(&dev_priv->rps.work);
Chris Wilson8d3afd72015-05-21 21:01:47 +01005124 }
5125 spin_unlock_irq(&dev_priv->irq_lock);
Chris Wilson1854d5c2015-04-07 16:20:32 +01005126
Chris Wilson2e1b8732015-04-27 13:41:22 +01005127 if (rps != NULL) {
5128 list_add(&rps->link, &dev_priv->rps.clients);
5129 rps->boosts++;
Chris Wilson1854d5c2015-04-07 16:20:32 +01005130 } else
5131 dev_priv->rps.boosts++;
Chris Wilsonc0951f02013-10-10 21:58:50 +01005132 }
Chris Wilson8d3afd72015-05-21 21:01:47 +01005133 spin_unlock(&dev_priv->rps.client_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01005134}
5135
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005136int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005137{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005138 int err;
5139
Chris Wilsondc979972016-05-10 14:10:04 +01005140 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005141 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02005142 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005143 err = gen6_set_rps(dev_priv, val);
5144
5145 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07005146}
5147
Chris Wilsondc979972016-05-10 14:10:04 +01005148static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005149{
Zhe Wang20e49362014-11-04 17:07:05 +00005150 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005151 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005152}
5153
Chris Wilsondc979972016-05-10 14:10:04 +01005154static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05305155{
Akash Goel2030d682016-04-23 00:05:45 +05305156 I915_WRITE(GEN6_RP_CONTROL, 0);
5157}
5158
Chris Wilsondc979972016-05-10 14:10:04 +01005159static void gen6_disable_rps(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005160{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005161 I915_WRITE(GEN6_RC_CONTROL, 0);
5162 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05305163 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02005164}
5165
Chris Wilsondc979972016-05-10 14:10:04 +01005166static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305167{
Deepak S38807742014-05-23 21:00:15 +05305168 I915_WRITE(GEN6_RC_CONTROL, 0);
5169}
5170
Chris Wilsondc979972016-05-10 14:10:04 +01005171static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005172{
Deepak S98a2e5f2014-08-18 10:35:27 -07005173 /* we're doing forcewake before Disabling RC6,
5174 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02005175 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07005176
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005177 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005178
Mika Kuoppala59bad942015-01-16 11:34:40 +02005179 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07005180}
5181
Chris Wilsondc979972016-05-10 14:10:04 +01005182static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07005183{
Chris Wilsondc979972016-05-10 14:10:04 +01005184 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03005185 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
5186 mode = GEN6_RC_CTL_RC6_ENABLE;
5187 else
5188 mode = 0;
5189 }
Chris Wilsondc979972016-05-10 14:10:04 +01005190 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03005191 DRM_DEBUG_DRIVER("Enabling RC6 states: "
5192 "RC6 %s RC6p %s RC6pp %s\n",
5193 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
5194 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
5195 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07005196
5197 else
Imre Deakb99d49c2016-06-29 19:13:54 +03005198 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
5199 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07005200}
5201
Chris Wilsondc979972016-05-10 14:10:04 +01005202static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305203{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005204 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305205 bool enable_rc6 = true;
5206 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03005207 u32 rc_ctl;
5208 int rc_sw_target;
5209
5210 rc_ctl = I915_READ(GEN6_RC_CONTROL);
5211 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
5212 RC_SW_TARGET_STATE_SHIFT;
5213 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
5214 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
5215 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
5216 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
5217 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305218
5219 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005220 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305221 enable_rc6 = false;
5222 }
5223
5224 /*
5225 * The exact context size is not known for BXT, so assume a page size
5226 * for this check.
5227 */
5228 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005229 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
5230 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
5231 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005232 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305233 enable_rc6 = false;
5234 }
5235
5236 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
5237 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
5238 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
5239 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03005240 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305241 enable_rc6 = false;
5242 }
5243
Imre Deakfc619842016-06-29 19:13:55 +03005244 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
5245 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
5246 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
5247 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
5248 enable_rc6 = false;
5249 }
5250
5251 if (!I915_READ(GEN6_GFXPAUSE)) {
5252 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
5253 enable_rc6 = false;
5254 }
5255
5256 if (!I915_READ(GEN8_MISC_CTRL0)) {
5257 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305258 enable_rc6 = false;
5259 }
5260
5261 return enable_rc6;
5262}
5263
Chris Wilsondc979972016-05-10 14:10:04 +01005264int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005265{
Daniel Vettere7d66d82015-06-15 23:23:54 +02005266 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01005267 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03005268 return 0;
5269
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305270 if (!enable_rc6)
5271 return 0;
5272
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005273 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05305274 DRM_INFO("RC6 disabled by BIOS\n");
5275 return 0;
5276 }
5277
Daniel Vetter456470e2012-08-08 23:35:40 +02005278 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03005279 if (enable_rc6 >= 0) {
5280 int mask;
5281
Chris Wilsondc979972016-05-10 14:10:04 +01005282 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03005283 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
5284 INTEL_RC6pp_ENABLE;
5285 else
5286 mask = INTEL_RC6_ENABLE;
5287
5288 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03005289 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
5290 "(requested %d, valid %d)\n",
5291 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03005292
5293 return enable_rc6 & mask;
5294 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005295
Chris Wilsondc979972016-05-10 14:10:04 +01005296 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08005297 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08005298
5299 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005300}
5301
Chris Wilsondc979972016-05-10 14:10:04 +01005302static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03005303{
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005304 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005305
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005306 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02005307 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005308 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005309 dev_priv->rps.rp0_freq = (rp_state_cap >> 16) & 0xff;
5310 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5311 dev_priv->rps.min_freq = (rp_state_cap >> 0) & 0xff;
5312 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005313 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Bob Paauwe35040562015-06-25 14:54:07 -07005314 dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff;
5315 dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff;
5316 dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff;
5317 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005318 /* hw_max = RP0 until we check for overclocking */
Chris Wilson773ea9a2016-07-13 09:10:33 +01005319 dev_priv->rps.max_freq = dev_priv->rps.rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005320
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005321 dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005322 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005323 IS_GEN9_BC(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01005324 u32 ddcc_status = 0;
5325
5326 if (sandybridge_pcode_read(dev_priv,
5327 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
5328 &ddcc_status) == 0)
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005329 dev_priv->rps.efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08005330 clamp_t(u8,
5331 ((ddcc_status >> 8) & 0xff),
5332 dev_priv->rps.min_freq,
5333 dev_priv->rps.max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005334 }
5335
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005336 if (IS_GEN9_BC(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05305337 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01005338 * the natural hardware unit for SKL
5339 */
Akash Goelc5e06882015-06-29 14:50:19 +05305340 dev_priv->rps.rp0_freq *= GEN9_FREQ_SCALER;
5341 dev_priv->rps.rp1_freq *= GEN9_FREQ_SCALER;
5342 dev_priv->rps.min_freq *= GEN9_FREQ_SCALER;
5343 dev_priv->rps.max_freq *= GEN9_FREQ_SCALER;
5344 dev_priv->rps.efficient_freq *= GEN9_FREQ_SCALER;
5345 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07005346}
5347
Chris Wilson3a45b052016-07-13 09:10:32 +01005348static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005349 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01005350{
5351 u8 freq = dev_priv->rps.cur_freq;
5352
5353 /* force a reset */
5354 dev_priv->rps.power = -1;
5355 dev_priv->rps.cur_freq = -1;
5356
Chris Wilson9fcee2f2017-01-26 10:19:19 +00005357 if (set(dev_priv, freq))
5358 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01005359}
5360
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005361/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01005362static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00005363{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005364 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
5365
Akash Goel0beb0592015-03-06 11:07:20 +05305366 /* Program defaults and thresholds for RPS*/
5367 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5368 GEN9_FREQUENCY(dev_priv->rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005369
Akash Goel0beb0592015-03-06 11:07:20 +05305370 /* 1 second timeout*/
5371 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
5372 GT_INTERVAL_FROM_US(dev_priv, 1000000));
5373
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005374 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005375
Akash Goel0beb0592015-03-06 11:07:20 +05305376 /* Leaning on the below call to gen6_set_rps to program/setup the
5377 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
5378 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01005379 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005380
5381 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
5382}
5383
Chris Wilsondc979972016-05-10 14:10:04 +01005384static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00005385{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005386 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305387 enum intel_engine_id id;
Zhe Wang20e49362014-11-04 17:07:05 +00005388 uint32_t rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00005389
5390 /* 1a: Software RC state - RC0 */
5391 I915_WRITE(GEN6_RC_STATE, 0);
5392
5393 /* 1b: Get forcewake during program sequence. Although the driver
5394 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005395 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005396
5397 /* 2a: Disable RC states. */
5398 I915_WRITE(GEN6_RC_CONTROL, 0);
5399
5400 /* 2b: Program RC6 thresholds.*/
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305401
5402 /* WaRsDoubleRc6WrlWithCoarsePowerGating: Doubling WRL only when CPG is enabled */
Chris Wilsondc979972016-05-10 14:10:04 +01005403 if (IS_SKYLAKE(dev_priv))
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05305404 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
5405 else
5406 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Zhe Wang20e49362014-11-04 17:07:05 +00005407 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5408 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305409 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005410 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305411
Dave Gordon1a3d1892016-05-13 15:36:30 +01005412 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05305413 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
5414
Zhe Wang20e49362014-11-04 17:07:05 +00005415 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00005416
Zhe Wang38c23522015-01-20 12:23:04 +00005417 /* 2c: Program Coarse Power Gating Policies. */
5418 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
5419 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
5420
Zhe Wang20e49362014-11-04 17:07:05 +00005421 /* 3a: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005422 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00005423 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02005424 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00005425 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
5426 I915_WRITE(GEN6_RC_CONTROL,
5427 GEN6_RC_CTL_HW_ENABLE | GEN6_RC_CTL_EI_MODE(1) | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00005428
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305429 /*
5430 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305431 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05305432 */
Chris Wilsondc979972016-05-10 14:10:04 +01005433 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05305434 I915_WRITE(GEN9_PG_ENABLE, 0);
5435 else
5436 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
5437 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00005438
Mika Kuoppala59bad942015-01-16 11:34:40 +02005439 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00005440}
5441
Chris Wilsondc979972016-05-10 14:10:04 +01005442static void gen8_enable_rps(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005443{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005444 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305445 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08005446 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005447
5448 /* 1a: Software RC state - RC0 */
5449 I915_WRITE(GEN6_RC_STATE, 0);
5450
5451 /* 1c & 1d: Get forcewake during program sequence. Although the driver
5452 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02005453 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005454
5455 /* 2a: Disable RC states. */
5456 I915_WRITE(GEN6_RC_CONTROL, 0);
5457
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005458 /* 2b: Program RC6 thresholds.*/
5459 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
5460 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
5461 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05305462 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005463 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005464 I915_WRITE(GEN6_RC_SLEEP, 0);
Chris Wilsondc979972016-05-10 14:10:04 +01005465 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005466 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
5467 else
5468 I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005469
5470 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005471 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005472 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01005473 intel_print_rc6_info(dev_priv, rc6_mask);
5474 if (IS_BROADWELL(dev_priv))
Tom O'Rourke0d68b252014-04-09 11:44:06 -07005475 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5476 GEN7_RC_CTL_TO_MODE |
5477 rc6_mask);
5478 else
5479 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
5480 GEN6_RC_CTL_EI_MODE(1) |
5481 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005482
5483 /* 4 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07005484 I915_WRITE(GEN6_RPNSWREQ,
5485 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
5486 I915_WRITE(GEN6_RC_VIDEO_FREQ,
5487 HSW_FREQUENCY(dev_priv->rps.rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02005488 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
5489 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005490
Daniel Vetter7526ed72014-09-29 15:07:19 +02005491 /* Docs recommend 900MHz, and 300 MHz respectively */
5492 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
5493 dev_priv->rps.max_freq_softlimit << 24 |
5494 dev_priv->rps.min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005495
Daniel Vetter7526ed72014-09-29 15:07:19 +02005496 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
5497 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
5498 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
5499 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005500
Daniel Vetter7526ed72014-09-29 15:07:19 +02005501 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005502
5503 /* 5: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02005504 I915_WRITE(GEN6_RP_CONTROL,
5505 GEN6_RP_MEDIA_TURBO |
5506 GEN6_RP_MEDIA_HW_NORMAL_MODE |
5507 GEN6_RP_MEDIA_IS_GFX |
5508 GEN6_RP_ENABLE |
5509 GEN6_RP_UP_BUSY_AVG |
5510 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005511
Daniel Vetter7526ed72014-09-29 15:07:19 +02005512 /* 6: Ring frequency + overclocking (our driver does this later */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005513
Chris Wilson3a45b052016-07-13 09:10:32 +01005514 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02005515
Mika Kuoppala59bad942015-01-16 11:34:40 +02005516 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07005517}
5518
Chris Wilsondc979972016-05-10 14:10:04 +01005519static void gen6_enable_rps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005520{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005521 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05305522 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01005523 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005524 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005525 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00005526 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005527
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005528 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005529
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005530 /* Here begins a magic sequence of register writes to enable
5531 * auto-downclocking.
5532 *
5533 * Perhaps there might be some value in exposing these to
5534 * userspace...
5535 */
5536 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005537
5538 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03005539 gtfifodbg = I915_READ(GTFIFODBG);
5540 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005541 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
5542 I915_WRITE(GTFIFODBG, gtfifodbg);
5543 }
5544
Mika Kuoppala59bad942015-01-16 11:34:40 +02005545 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005546
5547 /* disable the counters and set deterministic thresholds */
5548 I915_WRITE(GEN6_RC_CONTROL, 0);
5549
5550 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
5551 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
5552 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
5553 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
5554 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
5555
Akash Goel3b3f1652016-10-13 22:44:48 +05305556 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00005557 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005558
5559 I915_WRITE(GEN6_RC_SLEEP, 0);
5560 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01005561 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07005562 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
5563 else
5564 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08005565 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005566 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
5567
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005568 /* Check if we are enabling RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01005569 rc6_mode = intel_enable_rc6();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005570 if (rc6_mode & INTEL_RC6_ENABLE)
5571 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
5572
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005573 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01005574 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005575 if (rc6_mode & INTEL_RC6p_ENABLE)
5576 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005577
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03005578 if (rc6_mode & INTEL_RC6pp_ENABLE)
5579 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
5580 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005581
Chris Wilsondc979972016-05-10 14:10:04 +01005582 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005583
5584 I915_WRITE(GEN6_RC_CONTROL,
5585 rc6_mask |
5586 GEN6_RC_CTL_EI_MODE(1) |
5587 GEN6_RC_CTL_HW_ENABLE);
5588
Chris Wilsondd75fdc2013-09-25 17:34:57 +01005589 /* Power down if completely idle for over 50ms */
5590 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005591 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005592
Chris Wilson3a45b052016-07-13 09:10:32 +01005593 reset_rps(dev_priv, gen6_set_rps);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005594
Ben Widawsky31643d52012-09-26 10:34:01 -07005595 rc6vids = 0;
5596 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01005597 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005598 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01005599 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07005600 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
5601 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
5602 rc6vids &= 0xffff00;
5603 rc6vids |= GEN6_ENCODE_RC6_VID(450);
5604 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
5605 if (ret)
5606 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
5607 }
5608
Mika Kuoppala59bad942015-01-16 11:34:40 +02005609 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005610}
5611
Chris Wilsonfb7404e2016-07-13 09:10:38 +01005612static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005613{
5614 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005615 unsigned int gpu_freq;
5616 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05305617 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005618 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03005619 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005620
Jesse Barnes4fc688c2012-11-02 11:14:01 -07005621 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02005622
Ben Widawskyeda79642013-10-07 17:15:48 -03005623 policy = cpufreq_cpu_get(0);
5624 if (policy) {
5625 max_ia_freq = policy->cpuinfo.max_freq;
5626 cpufreq_cpu_put(policy);
5627 } else {
5628 /*
5629 * Default to measured freq if none found, PCU will ensure we
5630 * don't go over
5631 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005632 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03005633 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005634
5635 /* Convert from kHz to MHz */
5636 max_ia_freq /= 1000;
5637
Ben Widawsky153b4b952013-10-22 22:05:09 -07005638 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07005639 /* convert DDR frequency from units of 266.6MHz to bandwidth */
5640 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005641
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005642 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305643 /* Convert GT frequency to 50 HZ units */
5644 min_gpu_freq = dev_priv->rps.min_freq / GEN9_FREQ_SCALER;
5645 max_gpu_freq = dev_priv->rps.max_freq / GEN9_FREQ_SCALER;
5646 } else {
5647 min_gpu_freq = dev_priv->rps.min_freq;
5648 max_gpu_freq = dev_priv->rps.max_freq;
5649 }
5650
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005651 /*
5652 * For each potential GPU frequency, load a ring frequency we'd like
5653 * to use for memory access. We do this by specifying the IA frequency
5654 * the PCU should use as a reference to determine the ring frequency.
5655 */
Akash Goel4c8c7742015-06-29 14:50:20 +05305656 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
5657 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01005658 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005659
Rodrigo Vivib976dc52017-01-23 10:32:37 -08005660 if (IS_GEN9_BC(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05305661 /*
5662 * ring_freq = 2 * GT. ring_freq is in 100MHz units
5663 * No floor required for ring frequency on SKL.
5664 */
5665 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01005666 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07005667 /* max(2 * GT, DDR). NB: GT is 50MHz units */
5668 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01005669 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07005670 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01005671 ring_freq = max(min_ring_freq, ring_freq);
5672 /* leave ia_freq as the default, chosen by cpufreq */
5673 } else {
5674 /* On older processors, there is no separate ring
5675 * clock domain, so in order to boost the bandwidth
5676 * of the ring, we need to upclock the CPU (ia_freq).
5677 *
5678 * For GPU frequencies less than 750MHz,
5679 * just use the lowest ring freq.
5680 */
5681 if (gpu_freq < min_freq)
5682 ia_freq = 800;
5683 else
5684 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
5685 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
5686 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005687
Ben Widawsky42c05262012-09-26 10:34:00 -07005688 sandybridge_pcode_write(dev_priv,
5689 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01005690 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
5691 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
5692 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005693 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005694}
5695
Ville Syrjälä03af2042014-06-28 02:03:53 +03005696static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05305697{
5698 u32 val, rp0;
5699
Jani Nikula5b5929c2015-10-07 11:17:46 +03005700 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05305701
Imre Deak43b67992016-08-31 19:13:02 +03005702 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03005703 case 8:
5704 /* (2 * 4) config */
5705 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
5706 break;
5707 case 12:
5708 /* (2 * 6) config */
5709 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
5710 break;
5711 case 16:
5712 /* (2 * 8) config */
5713 default:
5714 /* Setting (2 * 8) Min RP0 for any other combination */
5715 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
5716 break;
Deepak S095acd52015-01-17 11:05:59 +05305717 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03005718
5719 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
5720
Deepak S2b6b3a02014-05-27 15:59:30 +05305721 return rp0;
5722}
5723
5724static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5725{
5726 u32 val, rpe;
5727
5728 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
5729 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
5730
5731 return rpe;
5732}
5733
Deepak S7707df42014-07-12 18:46:14 +05305734static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
5735{
5736 u32 val, rp1;
5737
Jani Nikula5b5929c2015-10-07 11:17:46 +03005738 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
5739 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
5740
Deepak S7707df42014-07-12 18:46:14 +05305741 return rp1;
5742}
5743
Deepak Sf8f2b002014-07-10 13:16:21 +05305744static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
5745{
5746 u32 val, rp1;
5747
5748 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
5749
5750 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
5751
5752 return rp1;
5753}
5754
Ville Syrjälä03af2042014-06-28 02:03:53 +03005755static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005756{
5757 u32 val, rp0;
5758
Jani Nikula64936252013-05-22 15:36:20 +03005759 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005760
5761 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
5762 /* Clamp to max */
5763 rp0 = min_t(u32, rp0, 0xea);
5764
5765 return rp0;
5766}
5767
5768static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
5769{
5770 u32 val, rpe;
5771
Jani Nikula64936252013-05-22 15:36:20 +03005772 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005773 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03005774 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005775 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
5776
5777 return rpe;
5778}
5779
Ville Syrjälä03af2042014-06-28 02:03:53 +03005780static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07005781{
Imre Deak36146032014-12-04 18:39:35 +02005782 u32 val;
5783
5784 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
5785 /*
5786 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
5787 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
5788 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
5789 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
5790 * to make sure it matches what Punit accepts.
5791 */
5792 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07005793}
5794
Imre Deakae484342014-03-31 15:10:44 +03005795/* Check that the pctx buffer wasn't move under us. */
5796static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
5797{
5798 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5799
5800 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
5801 dev_priv->vlv_pctx->stolen->start);
5802}
5803
Deepak S38807742014-05-23 21:00:15 +05305804
5805/* Check that the pcbr address is not empty. */
5806static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
5807{
5808 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
5809
5810 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
5811}
5812
Chris Wilsondc979972016-05-10 14:10:04 +01005813static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305814{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005815 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03005816 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05305817 u32 pcbr;
5818 int pctx_size = 32*1024;
5819
Deepak S38807742014-05-23 21:00:15 +05305820 pcbr = I915_READ(VLV_PCBR);
5821 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005822 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05305823 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02005824 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05305825
5826 pctx_paddr = (paddr & (~4095));
5827 I915_WRITE(VLV_PCBR, pctx_paddr);
5828 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005829
5830 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05305831}
5832
Chris Wilsondc979972016-05-10 14:10:04 +01005833static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005834{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005835 struct drm_i915_gem_object *pctx;
5836 unsigned long pctx_paddr;
5837 u32 pcbr;
5838 int pctx_size = 24*1024;
5839
5840 pcbr = I915_READ(VLV_PCBR);
5841 if (pcbr) {
5842 /* BIOS set it up already, grab the pre-alloc'd space */
5843 int pcbr_offset;
5844
5845 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005846 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005847 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02005848 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005849 pctx_size);
5850 goto out;
5851 }
5852
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005853 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
5854
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005855 /*
5856 * From the Gunit register HAS:
5857 * The Gfx driver is expected to program this register and ensure
5858 * proper allocation within Gfx stolen memory. For example, this
5859 * register should be programmed such than the PCBR range does not
5860 * overlap with other ranges, such as the frame buffer, protected
5861 * memory, or any other relevant ranges.
5862 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00005863 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005864 if (!pctx) {
5865 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00005866 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005867 }
5868
5869 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
5870 I915_WRITE(VLV_PCBR, pctx_paddr);
5871
5872out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02005873 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07005874 dev_priv->vlv_pctx = pctx;
5875}
5876
Chris Wilsondc979972016-05-10 14:10:04 +01005877static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03005878{
Imre Deakae484342014-03-31 15:10:44 +03005879 if (WARN_ON(!dev_priv->vlv_pctx))
5880 return;
5881
Chris Wilsonf0cd5182016-10-28 13:58:43 +01005882 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03005883 dev_priv->vlv_pctx = NULL;
5884}
5885
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005886static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
5887{
5888 dev_priv->rps.gpll_ref_freq =
5889 vlv_get_cck_clock(dev_priv, "GPLL ref",
5890 CCK_GPLL_CLOCK_CONTROL,
5891 dev_priv->czclk_freq);
5892
5893 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
5894 dev_priv->rps.gpll_ref_freq);
5895}
5896
Chris Wilsondc979972016-05-10 14:10:04 +01005897static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005898{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005899 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03005900
Chris Wilsondc979972016-05-10 14:10:04 +01005901 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005902
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005903 vlv_init_gpll_ref_freq(dev_priv);
5904
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005905 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
5906 switch ((val >> 6) & 3) {
5907 case 0:
5908 case 1:
5909 dev_priv->mem_freq = 800;
5910 break;
5911 case 2:
5912 dev_priv->mem_freq = 1066;
5913 break;
5914 case 3:
5915 dev_priv->mem_freq = 1333;
5916 break;
5917 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005918 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005919
Imre Deak4e805192014-04-14 20:24:41 +03005920 dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv);
5921 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5922 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005923 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005924 dev_priv->rps.max_freq);
5925
5926 dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv);
5927 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005928 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005929 dev_priv->rps.efficient_freq);
5930
Deepak Sf8f2b002014-07-10 13:16:21 +05305931 dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv);
5932 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005933 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak Sf8f2b002014-07-10 13:16:21 +05305934 dev_priv->rps.rp1_freq);
5935
Imre Deak4e805192014-04-14 20:24:41 +03005936 dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv);
5937 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005938 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Imre Deak4e805192014-04-14 20:24:41 +03005939 dev_priv->rps.min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03005940}
5941
Chris Wilsondc979972016-05-10 14:10:04 +01005942static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305943{
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005944 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05305945
Chris Wilsondc979972016-05-10 14:10:04 +01005946 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05305947
Ville Syrjäläc30fec62016-03-04 21:43:02 +02005948 vlv_init_gpll_ref_freq(dev_priv);
5949
Ville Syrjäläa5805162015-05-26 20:42:30 +03005950 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005951 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03005952 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02005953
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005954 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005955 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005956 dev_priv->mem_freq = 2000;
5957 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03005958 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005959 dev_priv->mem_freq = 1600;
5960 break;
5961 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02005962 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03005963
Deepak S2b6b3a02014-05-27 15:59:30 +05305964 dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv);
5965 dev_priv->rps.rp0_freq = dev_priv->rps.max_freq;
5966 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005967 intel_gpu_freq(dev_priv, dev_priv->rps.max_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305968 dev_priv->rps.max_freq);
5969
5970 dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv);
5971 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005972 intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305973 dev_priv->rps.efficient_freq);
5974
Deepak S7707df42014-07-12 18:46:14 +05305975 dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv);
5976 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005977 intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq),
Deepak S7707df42014-07-12 18:46:14 +05305978 dev_priv->rps.rp1_freq);
5979
Deepak S5b7c91b2015-05-09 18:15:46 +05305980 /* PUnit validated range is only [RPe, RP0] */
5981 dev_priv->rps.min_freq = dev_priv->rps.efficient_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05305982 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Ville Syrjälä7c59a9c12015-01-23 21:04:26 +02005983 intel_gpu_freq(dev_priv, dev_priv->rps.min_freq),
Deepak S2b6b3a02014-05-27 15:59:30 +05305984 dev_priv->rps.min_freq);
5985
Ville Syrjälä1c147622014-08-18 14:42:43 +03005986 WARN_ONCE((dev_priv->rps.max_freq |
5987 dev_priv->rps.efficient_freq |
5988 dev_priv->rps.rp1_freq |
5989 dev_priv->rps.min_freq) & 1,
5990 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05305991}
5992
Chris Wilsondc979972016-05-10 14:10:04 +01005993static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03005994{
Chris Wilsondc979972016-05-10 14:10:04 +01005995 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03005996}
5997
Chris Wilsondc979972016-05-10 14:10:04 +01005998static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05305999{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006000 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306001 enum intel_engine_id id;
Deepak S2b6b3a02014-05-27 15:59:30 +05306002 u32 gtfifodbg, val, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05306003
6004 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6005
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006006 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
6007 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05306008 if (gtfifodbg) {
6009 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6010 gtfifodbg);
6011 I915_WRITE(GTFIFODBG, gtfifodbg);
6012 }
6013
6014 cherryview_check_pctx(dev_priv);
6015
6016 /* 1a & 1b: Get forcewake during program sequence. Although the driver
6017 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006018 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306019
Ville Syrjälä160614a2015-01-19 13:50:47 +02006020 /* Disable RC states. */
6021 I915_WRITE(GEN6_RC_CONTROL, 0);
6022
Deepak S38807742014-05-23 21:00:15 +05306023 /* 2a: Program RC6 thresholds.*/
6024 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6025 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6026 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
6027
Akash Goel3b3f1652016-10-13 22:44:48 +05306028 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006029 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05306030 I915_WRITE(GEN6_RC_SLEEP, 0);
6031
Deepak Sf4f71c72015-03-28 15:23:35 +05306032 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
6033 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05306034
6035 /* allows RC6 residency counter to work */
6036 I915_WRITE(VLV_COUNTER_CONTROL,
6037 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
6038 VLV_MEDIA_RC6_COUNT_EN |
6039 VLV_RENDER_RC6_COUNT_EN));
6040
6041 /* For now we assume BIOS is allocating and populating the PCBR */
6042 pcbr = I915_READ(VLV_PCBR);
6043
Deepak S38807742014-05-23 21:00:15 +05306044 /* 3: Enable RC6 */
Chris Wilsondc979972016-05-10 14:10:04 +01006045 if ((intel_enable_rc6() & INTEL_RC6_ENABLE) &&
6046 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02006047 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05306048
6049 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
6050
Deepak S2b6b3a02014-05-27 15:59:30 +05306051 /* 4 Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02006052 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05306053 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6054 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6055 I915_WRITE(GEN6_RP_UP_EI, 66000);
6056 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6057
6058 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6059
6060 /* 5: Enable RPS */
6061 I915_WRITE(GEN6_RP_CONTROL,
6062 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02006063 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05306064 GEN6_RP_ENABLE |
6065 GEN6_RP_UP_BUSY_AVG |
6066 GEN6_RP_DOWN_IDLE_AVG);
6067
Deepak S3ef62342015-04-29 08:36:24 +05306068 /* Setting Fixed Bias */
6069 val = VLV_OVERRIDE_EN |
6070 VLV_SOC_TDP_EN |
6071 CHV_BIAS_CPU_50_SOC_50;
6072 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6073
Deepak S2b6b3a02014-05-27 15:59:30 +05306074 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
6075
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006076 /* RPS code assumes GPLL is used */
6077 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6078
Jani Nikula742f4912015-09-03 11:16:09 +03006079 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05306080 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6081
Chris Wilson3a45b052016-07-13 09:10:32 +01006082 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05306083
Mika Kuoppala59bad942015-01-16 11:34:40 +02006084 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05306085}
6086
Chris Wilsondc979972016-05-10 14:10:04 +01006087static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006088{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006089 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306090 enum intel_engine_id id;
Ben Widawsky2a5913a2014-03-19 18:31:13 -07006091 u32 gtfifodbg, val, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006092
6093 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
6094
Imre Deakae484342014-03-31 15:10:44 +03006095 valleyview_check_pctx(dev_priv);
6096
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006097 gtfifodbg = I915_READ(GTFIFODBG);
6098 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07006099 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
6100 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006101 I915_WRITE(GTFIFODBG, gtfifodbg);
6102 }
6103
Deepak Sc8d9a592013-11-23 14:55:42 +05306104 /* If VLV, Forcewake all wells, else re-direct to regular path */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006105 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006106
Ville Syrjälä160614a2015-01-19 13:50:47 +02006107 /* Disable RC states. */
6108 I915_WRITE(GEN6_RC_CONTROL, 0);
6109
Ville Syrjäläcad725f2015-01-19 13:50:48 +02006110 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006111 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
6112 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
6113 I915_WRITE(GEN6_RP_UP_EI, 66000);
6114 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
6115
6116 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6117
6118 I915_WRITE(GEN6_RP_CONTROL,
6119 GEN6_RP_MEDIA_TURBO |
6120 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6121 GEN6_RP_MEDIA_IS_GFX |
6122 GEN6_RP_ENABLE |
6123 GEN6_RP_UP_BUSY_AVG |
6124 GEN6_RP_DOWN_IDLE_CONT);
6125
6126 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
6127 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6128 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6129
Akash Goel3b3f1652016-10-13 22:44:48 +05306130 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006131 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006132
Jesse Barnes2f0aa3042013-11-15 09:32:11 -08006133 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006134
6135 /* allows RC6 residency counter to work */
Jesse Barnes49798eb2013-09-26 17:55:57 -07006136 I915_WRITE(VLV_COUNTER_CONTROL,
Deepak S31685c22014-07-03 17:33:01 -04006137 _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN |
6138 VLV_RENDER_RC0_COUNT_EN |
Jesse Barnes49798eb2013-09-26 17:55:57 -07006139 VLV_MEDIA_RC6_COUNT_EN |
6140 VLV_RENDER_RC6_COUNT_EN));
Deepak S31685c22014-07-03 17:33:01 -04006141
Chris Wilsondc979972016-05-10 14:10:04 +01006142 if (intel_enable_rc6() & INTEL_RC6_ENABLE)
Jesse Barnes6b88f292013-11-15 09:32:12 -08006143 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
Ben Widawskydc39fff2013-10-18 12:32:07 -07006144
Chris Wilsondc979972016-05-10 14:10:04 +01006145 intel_print_rc6_info(dev_priv, rc6_mode);
Ben Widawskydc39fff2013-10-18 12:32:07 -07006146
Jesse Barnesa2b23fe2013-09-19 09:33:13 -07006147 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006148
Deepak S3ef62342015-04-29 08:36:24 +05306149 /* Setting Fixed Bias */
6150 val = VLV_OVERRIDE_EN |
6151 VLV_SOC_TDP_EN |
6152 VLV_BIAS_CPU_125_SOC_875;
6153 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
6154
Jani Nikula64936252013-05-22 15:36:20 +03006155 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006156
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02006157 /* RPS code assumes GPLL is used */
6158 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
6159
Jani Nikula742f4912015-09-03 11:16:09 +03006160 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07006161 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
6162
Chris Wilson3a45b052016-07-13 09:10:32 +01006163 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006164
Mika Kuoppala59bad942015-01-16 11:34:40 +02006165 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006166}
6167
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006168static unsigned long intel_pxfreq(u32 vidfreq)
6169{
6170 unsigned long freq;
6171 int div = (vidfreq & 0x3f0000) >> 16;
6172 int post = (vidfreq & 0x3000) >> 12;
6173 int pre = (vidfreq & 0x7);
6174
6175 if (!pre)
6176 return 0;
6177
6178 freq = ((div * 133333) / ((1<<post) * pre));
6179
6180 return freq;
6181}
6182
Daniel Vettereb48eb02012-04-26 23:28:12 +02006183static const struct cparams {
6184 u16 i;
6185 u16 t;
6186 u16 m;
6187 u16 c;
6188} cparams[] = {
6189 { 1, 1333, 301, 28664 },
6190 { 1, 1066, 294, 24460 },
6191 { 1, 800, 294, 25192 },
6192 { 0, 1333, 276, 27605 },
6193 { 0, 1066, 276, 27605 },
6194 { 0, 800, 231, 23784 },
6195};
6196
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006197static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006198{
6199 u64 total_count, diff, ret;
6200 u32 count1, count2, count3, m = 0, c = 0;
6201 unsigned long now = jiffies_to_msecs(jiffies), diff1;
6202 int i;
6203
Daniel Vetter02d71952012-08-09 16:44:54 +02006204 assert_spin_locked(&mchdev_lock);
6205
Daniel Vetter20e4d402012-08-08 23:35:39 +02006206 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006207
6208 /* Prevent division-by-zero if we are asking too fast.
6209 * Also, we don't get interesting results if we are polling
6210 * faster than once in 10ms, so just return the saved value
6211 * in such cases.
6212 */
6213 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02006214 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006215
6216 count1 = I915_READ(DMIEC);
6217 count2 = I915_READ(DDREC);
6218 count3 = I915_READ(CSIEC);
6219
6220 total_count = count1 + count2 + count3;
6221
6222 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02006223 if (total_count < dev_priv->ips.last_count1) {
6224 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006225 diff += total_count;
6226 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006227 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006228 }
6229
6230 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006231 if (cparams[i].i == dev_priv->ips.c_m &&
6232 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02006233 m = cparams[i].m;
6234 c = cparams[i].c;
6235 break;
6236 }
6237 }
6238
6239 diff = div_u64(diff, diff1);
6240 ret = ((m * diff) + c);
6241 ret = div_u64(ret, 10);
6242
Daniel Vetter20e4d402012-08-08 23:35:39 +02006243 dev_priv->ips.last_count1 = total_count;
6244 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006245
Daniel Vetter20e4d402012-08-08 23:35:39 +02006246 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006247
6248 return ret;
6249}
6250
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006251unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
6252{
6253 unsigned long val;
6254
Chris Wilsondc979972016-05-10 14:10:04 +01006255 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006256 return 0;
6257
6258 spin_lock_irq(&mchdev_lock);
6259
6260 val = __i915_chipset_val(dev_priv);
6261
6262 spin_unlock_irq(&mchdev_lock);
6263
6264 return val;
6265}
6266
Daniel Vettereb48eb02012-04-26 23:28:12 +02006267unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
6268{
6269 unsigned long m, x, b;
6270 u32 tsfs;
6271
6272 tsfs = I915_READ(TSFS);
6273
6274 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
6275 x = I915_READ8(TR1);
6276
6277 b = tsfs & TSFS_INTR_MASK;
6278
6279 return ((m * x) / 127) - b;
6280}
6281
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006282static int _pxvid_to_vd(u8 pxvid)
6283{
6284 if (pxvid == 0)
6285 return 0;
6286
6287 if (pxvid >= 8 && pxvid < 31)
6288 pxvid = 31;
6289
6290 return (pxvid + 2) * 125;
6291}
6292
6293static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006294{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006295 const int vd = _pxvid_to_vd(pxvid);
6296 const int vm = vd - 1125;
6297
Chris Wilsondc979972016-05-10 14:10:04 +01006298 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02006299 return vm > 0 ? vm : 0;
6300
6301 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006302}
6303
Daniel Vetter02d71952012-08-09 16:44:54 +02006304static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006305{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006306 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006307 u32 count;
6308
Daniel Vetter02d71952012-08-09 16:44:54 +02006309 assert_spin_locked(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006310
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006311 now = ktime_get_raw_ns();
6312 diffms = now - dev_priv->ips.last_time2;
6313 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006314
6315 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02006316 if (!diffms)
6317 return;
6318
6319 count = I915_READ(GFXEC);
6320
Daniel Vetter20e4d402012-08-08 23:35:39 +02006321 if (count < dev_priv->ips.last_count2) {
6322 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006323 diff += count;
6324 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02006325 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006326 }
6327
Daniel Vetter20e4d402012-08-08 23:35:39 +02006328 dev_priv->ips.last_count2 = count;
6329 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006330
6331 /* More magic constants... */
6332 diff = diff * 1181;
6333 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006334 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006335}
6336
Daniel Vetter02d71952012-08-09 16:44:54 +02006337void i915_update_gfx_val(struct drm_i915_private *dev_priv)
6338{
Chris Wilsondc979972016-05-10 14:10:04 +01006339 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02006340 return;
6341
Daniel Vetter92703882012-08-09 16:46:01 +02006342 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006343
6344 __i915_update_gfx_val(dev_priv);
6345
Daniel Vetter92703882012-08-09 16:46:01 +02006346 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02006347}
6348
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006349static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02006350{
6351 unsigned long t, corr, state1, corr2, state2;
6352 u32 pxvid, ext_v;
6353
Daniel Vetter02d71952012-08-09 16:44:54 +02006354 assert_spin_locked(&mchdev_lock);
6355
Ville Syrjälä616847e2015-09-18 20:03:19 +03006356 pxvid = I915_READ(PXVFREQ(dev_priv->rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02006357 pxvid = (pxvid >> 24) & 0x7f;
6358 ext_v = pvid_to_extvid(dev_priv, pxvid);
6359
6360 state1 = ext_v;
6361
6362 t = i915_mch_val(dev_priv);
6363
6364 /* Revel in the empirically derived constants */
6365
6366 /* Correction factor in 1/100000 units */
6367 if (t > 80)
6368 corr = ((t * 2349) + 135940);
6369 else if (t >= 50)
6370 corr = ((t * 964) + 29317);
6371 else /* < 50 */
6372 corr = ((t * 301) + 1004);
6373
6374 corr = corr * ((150142 * state1) / 10000 - 78642);
6375 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02006376 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006377
6378 state2 = (corr2 * state1) / 10000;
6379 state2 /= 100; /* convert to mW */
6380
Daniel Vetter02d71952012-08-09 16:44:54 +02006381 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006382
Daniel Vetter20e4d402012-08-08 23:35:39 +02006383 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006384}
6385
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006386unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
6387{
6388 unsigned long val;
6389
Chris Wilsondc979972016-05-10 14:10:04 +01006390 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006391 return 0;
6392
6393 spin_lock_irq(&mchdev_lock);
6394
6395 val = __i915_gfx_val(dev_priv);
6396
6397 spin_unlock_irq(&mchdev_lock);
6398
6399 return val;
6400}
6401
Daniel Vettereb48eb02012-04-26 23:28:12 +02006402/**
6403 * i915_read_mch_val - return value for IPS use
6404 *
6405 * Calculate and return a value for the IPS driver to use when deciding whether
6406 * we have thermal and power headroom to increase CPU or GPU power budget.
6407 */
6408unsigned long i915_read_mch_val(void)
6409{
6410 struct drm_i915_private *dev_priv;
6411 unsigned long chipset_val, graphics_val, ret = 0;
6412
Daniel Vetter92703882012-08-09 16:46:01 +02006413 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006414 if (!i915_mch_dev)
6415 goto out_unlock;
6416 dev_priv = i915_mch_dev;
6417
Chris Wilsonf531dcb22012-09-25 10:16:12 +01006418 chipset_val = __i915_chipset_val(dev_priv);
6419 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006420
6421 ret = chipset_val + graphics_val;
6422
6423out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006424 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006425
6426 return ret;
6427}
6428EXPORT_SYMBOL_GPL(i915_read_mch_val);
6429
6430/**
6431 * i915_gpu_raise - raise GPU frequency limit
6432 *
6433 * Raise the limit; IPS indicates we have thermal headroom.
6434 */
6435bool i915_gpu_raise(void)
6436{
6437 struct drm_i915_private *dev_priv;
6438 bool ret = true;
6439
Daniel Vetter92703882012-08-09 16:46:01 +02006440 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006441 if (!i915_mch_dev) {
6442 ret = false;
6443 goto out_unlock;
6444 }
6445 dev_priv = i915_mch_dev;
6446
Daniel Vetter20e4d402012-08-08 23:35:39 +02006447 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
6448 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006449
6450out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006451 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006452
6453 return ret;
6454}
6455EXPORT_SYMBOL_GPL(i915_gpu_raise);
6456
6457/**
6458 * i915_gpu_lower - lower GPU frequency limit
6459 *
6460 * IPS indicates we're close to a thermal limit, so throttle back the GPU
6461 * frequency maximum.
6462 */
6463bool i915_gpu_lower(void)
6464{
6465 struct drm_i915_private *dev_priv;
6466 bool ret = true;
6467
Daniel Vetter92703882012-08-09 16:46:01 +02006468 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006469 if (!i915_mch_dev) {
6470 ret = false;
6471 goto out_unlock;
6472 }
6473 dev_priv = i915_mch_dev;
6474
Daniel Vetter20e4d402012-08-08 23:35:39 +02006475 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
6476 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006477
6478out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006479 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006480
6481 return ret;
6482}
6483EXPORT_SYMBOL_GPL(i915_gpu_lower);
6484
6485/**
6486 * i915_gpu_busy - indicate GPU business to IPS
6487 *
6488 * Tell the IPS driver whether or not the GPU is busy.
6489 */
6490bool i915_gpu_busy(void)
6491{
Daniel Vettereb48eb02012-04-26 23:28:12 +02006492 bool ret = false;
6493
Daniel Vetter92703882012-08-09 16:46:01 +02006494 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01006495 if (i915_mch_dev)
6496 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02006497 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006498
6499 return ret;
6500}
6501EXPORT_SYMBOL_GPL(i915_gpu_busy);
6502
6503/**
6504 * i915_gpu_turbo_disable - disable graphics turbo
6505 *
6506 * Disable graphics turbo by resetting the max frequency and setting the
6507 * current frequency to the default.
6508 */
6509bool i915_gpu_turbo_disable(void)
6510{
6511 struct drm_i915_private *dev_priv;
6512 bool ret = true;
6513
Daniel Vetter92703882012-08-09 16:46:01 +02006514 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006515 if (!i915_mch_dev) {
6516 ret = false;
6517 goto out_unlock;
6518 }
6519 dev_priv = i915_mch_dev;
6520
Daniel Vetter20e4d402012-08-08 23:35:39 +02006521 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02006522
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006523 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02006524 ret = false;
6525
6526out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02006527 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006528
6529 return ret;
6530}
6531EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
6532
6533/**
6534 * Tells the intel_ips driver that the i915 driver is now loaded, if
6535 * IPS got loaded first.
6536 *
6537 * This awkward dance is so that neither module has to depend on the
6538 * other in order for IPS to do the appropriate communication of
6539 * GPU turbo limits to i915.
6540 */
6541static void
6542ips_ping_for_i915_load(void)
6543{
6544 void (*link)(void);
6545
6546 link = symbol_get(ips_link_to_i915_driver);
6547 if (link) {
6548 link();
6549 symbol_put(ips_link_to_i915_driver);
6550 }
6551}
6552
6553void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
6554{
Daniel Vetter02d71952012-08-09 16:44:54 +02006555 /* We only register the i915 ips part with intel-ips once everything is
6556 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02006557 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006558 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02006559 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006560
6561 ips_ping_for_i915_load();
6562}
6563
6564void intel_gpu_ips_teardown(void)
6565{
Daniel Vetter92703882012-08-09 16:46:01 +02006566 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006567 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02006568 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02006569}
Deepak S76c3552f2014-01-30 23:08:16 +05306570
Chris Wilsondc979972016-05-10 14:10:04 +01006571static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006572{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006573 u32 lcfuse;
6574 u8 pxw[16];
6575 int i;
6576
6577 /* Disable to program */
6578 I915_WRITE(ECR, 0);
6579 POSTING_READ(ECR);
6580
6581 /* Program energy weights for various events */
6582 I915_WRITE(SDEW, 0x15040d00);
6583 I915_WRITE(CSIEW0, 0x007f0000);
6584 I915_WRITE(CSIEW1, 0x1e220004);
6585 I915_WRITE(CSIEW2, 0x04000004);
6586
6587 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006588 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006589 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006590 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006591
6592 /* Program P-state weights to account for frequency power adjustment */
6593 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03006594 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006595 unsigned long freq = intel_pxfreq(pxvidfreq);
6596 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
6597 PXVFREQ_PX_SHIFT;
6598 unsigned long val;
6599
6600 val = vid * vid;
6601 val *= (freq / 1000);
6602 val *= 255;
6603 val /= (127*127*900);
6604 if (val > 0xff)
6605 DRM_ERROR("bad pxval: %ld\n", val);
6606 pxw[i] = val;
6607 }
6608 /* Render standby states get 0 weight */
6609 pxw[14] = 0;
6610 pxw[15] = 0;
6611
6612 for (i = 0; i < 4; i++) {
6613 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
6614 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03006615 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006616 }
6617
6618 /* Adjust magic regs to magic values (more experimental results) */
6619 I915_WRITE(OGW0, 0);
6620 I915_WRITE(OGW1, 0);
6621 I915_WRITE(EG0, 0x00007f00);
6622 I915_WRITE(EG1, 0x0000000e);
6623 I915_WRITE(EG2, 0x000e0000);
6624 I915_WRITE(EG3, 0x68000300);
6625 I915_WRITE(EG4, 0x42000000);
6626 I915_WRITE(EG5, 0x00140031);
6627 I915_WRITE(EG6, 0);
6628 I915_WRITE(EG7, 0);
6629
6630 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03006631 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006632
6633 /* Enable PMON + select events */
6634 I915_WRITE(ECR, 0x80000019);
6635
6636 lcfuse = I915_READ(LCFUSE02);
6637
Daniel Vetter20e4d402012-08-08 23:35:39 +02006638 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03006639}
6640
Chris Wilsondc979972016-05-10 14:10:04 +01006641void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006642{
Imre Deakb268c692015-12-15 20:10:31 +02006643 /*
6644 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
6645 * requirement.
6646 */
6647 if (!i915.enable_rc6) {
6648 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
6649 intel_runtime_pm_get(dev_priv);
6650 }
Imre Deake6069ca2014-04-18 16:01:02 +03006651
Chris Wilsonb5163db2016-08-10 13:58:24 +01006652 mutex_lock(&dev_priv->drm.struct_mutex);
Chris Wilson773ea9a2016-07-13 09:10:33 +01006653 mutex_lock(&dev_priv->rps.hw_lock);
6654
6655 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01006656 if (IS_CHERRYVIEW(dev_priv))
6657 cherryview_init_gt_powersave(dev_priv);
6658 else if (IS_VALLEYVIEW(dev_priv))
6659 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01006660 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01006661 gen6_init_rps_frequencies(dev_priv);
6662
6663 /* Derive initial user preferences/limits from the hardware limits */
6664 dev_priv->rps.idle_freq = dev_priv->rps.min_freq;
6665 dev_priv->rps.cur_freq = dev_priv->rps.idle_freq;
6666
6667 dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq;
6668 dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq;
6669
6670 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6671 dev_priv->rps.min_freq_softlimit =
6672 max_t(int,
6673 dev_priv->rps.efficient_freq,
6674 intel_freq_opcode(dev_priv, 450));
6675
Chris Wilson99ac9612016-07-13 09:10:34 +01006676 /* After setting max-softlimit, find the overclock max freq */
6677 if (IS_GEN6(dev_priv) ||
6678 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
6679 u32 params = 0;
6680
6681 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
6682 if (params & BIT(31)) { /* OC supported */
6683 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
6684 (dev_priv->rps.max_freq & 0xff) * 50,
6685 (params & 0xff) * 50);
6686 dev_priv->rps.max_freq = params & 0xff;
6687 }
6688 }
6689
Chris Wilson29ecd78d2016-07-13 09:10:35 +01006690 /* Finally allow us to boost to max by default */
6691 dev_priv->rps.boost_freq = dev_priv->rps.max_freq;
6692
Chris Wilson773ea9a2016-07-13 09:10:33 +01006693 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01006694 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01006695
6696 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006697}
6698
Chris Wilsondc979972016-05-10 14:10:04 +01006699void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03006700{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03006701 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01006702 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02006703
6704 if (!i915.enable_rc6)
6705 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03006706}
6707
Chris Wilson54b4f682016-07-21 21:16:19 +01006708/**
6709 * intel_suspend_gt_powersave - suspend PM work and helper threads
6710 * @dev_priv: i915 device
6711 *
6712 * We don't want to disable RC6 or other features here, we just want
6713 * to make sure any work we've queued has finished and won't bother
6714 * us while we're suspended.
6715 */
6716void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
6717{
6718 if (INTEL_GEN(dev_priv) < 6)
6719 return;
6720
6721 if (cancel_delayed_work_sync(&dev_priv->rps.autoenable_work))
6722 intel_runtime_pm_put(dev_priv);
6723
6724 /* gen6_rps_idle() will be called later to disable interrupts */
6725}
6726
Chris Wilsonb7137e02016-07-13 09:10:37 +01006727void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
6728{
6729 dev_priv->rps.enabled = true; /* force disabling */
6730 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006731
6732 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07006733}
6734
Chris Wilsondc979972016-05-10 14:10:04 +01006735void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02006736{
Chris Wilsonb7137e02016-07-13 09:10:37 +01006737 if (!READ_ONCE(dev_priv->rps.enabled))
6738 return;
Jesse Barnes1a01ab32012-11-02 11:14:00 -07006739
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006740 mutex_lock(&dev_priv->rps.hw_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006741
Chris Wilsonb7137e02016-07-13 09:10:37 +01006742 if (INTEL_GEN(dev_priv) >= 9) {
6743 gen9_disable_rc6(dev_priv);
6744 gen9_disable_rps(dev_priv);
6745 } else if (IS_CHERRYVIEW(dev_priv)) {
6746 cherryview_disable_rps(dev_priv);
6747 } else if (IS_VALLEYVIEW(dev_priv)) {
6748 valleyview_disable_rps(dev_priv);
6749 } else if (INTEL_GEN(dev_priv) >= 6) {
6750 gen6_disable_rps(dev_priv);
6751 } else if (IS_IRONLAKE_M(dev_priv)) {
6752 ironlake_disable_drps(dev_priv);
6753 }
6754
6755 dev_priv->rps.enabled = false;
6756 mutex_unlock(&dev_priv->rps.hw_lock);
6757}
6758
6759void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
6760{
Chris Wilson54b4f682016-07-21 21:16:19 +01006761 /* We shouldn't be disabling as we submit, so this should be less
6762 * racy than it appears!
6763 */
Chris Wilsonb7137e02016-07-13 09:10:37 +01006764 if (READ_ONCE(dev_priv->rps.enabled))
6765 return;
6766
6767 /* Powersaving is controlled by the host when inside a VM */
6768 if (intel_vgpu_active(dev_priv))
6769 return;
6770
6771 mutex_lock(&dev_priv->rps.hw_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02006772
Chris Wilsondc979972016-05-10 14:10:04 +01006773 if (IS_CHERRYVIEW(dev_priv)) {
6774 cherryview_enable_rps(dev_priv);
6775 } else if (IS_VALLEYVIEW(dev_priv)) {
6776 valleyview_enable_rps(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006777 } else if (INTEL_GEN(dev_priv) >= 9) {
Chris Wilsondc979972016-05-10 14:10:04 +01006778 gen9_enable_rc6(dev_priv);
6779 gen9_enable_rps(dev_priv);
Rodrigo Vivib976dc52017-01-23 10:32:37 -08006780 if (IS_GEN9_BC(dev_priv))
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006781 gen6_update_ring_freq(dev_priv);
Chris Wilsondc979972016-05-10 14:10:04 +01006782 } else if (IS_BROADWELL(dev_priv)) {
6783 gen8_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006784 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006785 } else if (INTEL_GEN(dev_priv) >= 6) {
Chris Wilsondc979972016-05-10 14:10:04 +01006786 gen6_enable_rps(dev_priv);
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006787 gen6_update_ring_freq(dev_priv);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006788 } else if (IS_IRONLAKE_M(dev_priv)) {
6789 ironlake_enable_drps(dev_priv);
6790 intel_init_emon(dev_priv);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006791 }
Chris Wilsonaed242f2015-03-18 09:48:21 +00006792
6793 WARN_ON(dev_priv->rps.max_freq < dev_priv->rps.min_freq);
6794 WARN_ON(dev_priv->rps.idle_freq > dev_priv->rps.max_freq);
6795
6796 WARN_ON(dev_priv->rps.efficient_freq < dev_priv->rps.min_freq);
6797 WARN_ON(dev_priv->rps.efficient_freq > dev_priv->rps.max_freq);
6798
Chris Wilson54b4f682016-07-21 21:16:19 +01006799 dev_priv->rps.enabled = true;
Jesse Barnes4fc688c2012-11-02 11:14:01 -07006800 mutex_unlock(&dev_priv->rps.hw_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01006801}
Imre Deakc6df39b2014-04-14 20:24:29 +03006802
Chris Wilson54b4f682016-07-21 21:16:19 +01006803static void __intel_autoenable_gt_powersave(struct work_struct *work)
6804{
6805 struct drm_i915_private *dev_priv =
6806 container_of(work, typeof(*dev_priv), rps.autoenable_work.work);
6807 struct intel_engine_cs *rcs;
6808 struct drm_i915_gem_request *req;
6809
6810 if (READ_ONCE(dev_priv->rps.enabled))
6811 goto out;
6812
Akash Goel3b3f1652016-10-13 22:44:48 +05306813 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00006814 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01006815 goto out;
6816
6817 if (!rcs->init_context)
6818 goto out;
6819
6820 mutex_lock(&dev_priv->drm.struct_mutex);
6821
6822 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
6823 if (IS_ERR(req))
6824 goto unlock;
6825
6826 if (!i915.enable_execlists && i915_switch_context(req) == 0)
6827 rcs->init_context(req);
6828
6829 /* Mark the device busy, calling intel_enable_gt_powersave() */
6830 i915_add_request_no_flush(req);
6831
6832unlock:
6833 mutex_unlock(&dev_priv->drm.struct_mutex);
6834out:
6835 intel_runtime_pm_put(dev_priv);
6836}
6837
6838void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
6839{
6840 if (READ_ONCE(dev_priv->rps.enabled))
6841 return;
6842
6843 if (IS_IRONLAKE_M(dev_priv)) {
6844 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006845 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01006846 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
6847 /*
6848 * PCU communication is slow and this doesn't need to be
6849 * done at any specific time, so do this out of our fast path
6850 * to make resume and init faster.
6851 *
6852 * We depend on the HW RC6 power context save/restore
6853 * mechanism when entering D3 through runtime PM suspend. So
6854 * disable RPM until RPS/RC6 is properly setup. We can only
6855 * get here via the driver load/system resume/runtime resume
6856 * paths, so the _noresume version is enough (and in case of
6857 * runtime resume it's necessary).
6858 */
6859 if (queue_delayed_work(dev_priv->wq,
6860 &dev_priv->rps.autoenable_work,
6861 round_jiffies_up_relative(HZ)))
6862 intel_runtime_pm_get_noresume(dev_priv);
6863 }
6864}
6865
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006866static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006867{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006868 /*
6869 * On Ibex Peak and Cougar Point, we need to disable clock
6870 * gating for the panel power sequencer or it will fail to
6871 * start up when no ports are active.
6872 */
6873 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6874}
6875
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006876static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006877{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006878 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006879
Damien Lespiau055e3932014-08-18 13:49:10 +01006880 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006881 I915_WRITE(DSPCNTR(pipe),
6882 I915_READ(DSPCNTR(pipe)) |
6883 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006884
6885 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6886 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006887 }
6888}
6889
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006890static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02006891{
Ville Syrjälä017636c2013-12-05 15:51:37 +02006892 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6893 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6894 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6895
6896 /*
6897 * Don't touch WM1S_LP_EN here.
6898 * Doing so could cause underruns.
6899 */
6900}
6901
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006902static void ironlake_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006903{
Damien Lespiau231e54f2012-10-19 17:55:41 +01006904 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006905
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006906 /*
6907 * Required for FBC
6908 * WaFbcDisableDpfcClockGating:ilk
6909 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006910 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6911 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6912 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006913
6914 I915_WRITE(PCH_3DCGDIS0,
6915 MARIUNIT_CLOCK_GATE_DISABLE |
6916 SVSMUNIT_CLOCK_GATE_DISABLE);
6917 I915_WRITE(PCH_3DCGDIS1,
6918 VFMUNIT_CLOCK_GATE_DISABLE);
6919
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006920 /*
6921 * According to the spec the following bits should be set in
6922 * order to enable memory self-refresh
6923 * The bit 22/21 of 0x42004
6924 * The bit 5 of 0x42020
6925 * The bit 15 of 0x45000
6926 */
6927 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6928 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6929 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006930 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006931 I915_WRITE(DISP_ARB_CTL,
6932 (I915_READ(DISP_ARB_CTL) |
6933 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006934
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006935 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006936
6937 /*
6938 * Based on the document from hardware guys the following bits
6939 * should be set unconditionally in order to enable FBC.
6940 * The bit 22 of 0x42000
6941 * The bit 22 of 0x42004
6942 * The bit 7,8,9 of 0x42020.
6943 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006944 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006945 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006946 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6947 I915_READ(ILK_DISPLAY_CHICKEN1) |
6948 ILK_FBCQ_DIS);
6949 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6950 I915_READ(ILK_DISPLAY_CHICKEN2) |
6951 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006952 }
6953
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006954 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6955
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006956 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6957 I915_READ(ILK_DISPLAY_CHICKEN2) |
6958 ILK_ELPIN_409_SELECT);
6959 I915_WRITE(_3D_CHICKEN2,
6960 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6961 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006962
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006963 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006964 I915_WRITE(CACHE_MODE_0,
6965 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006966
Akash Goel4e046322014-04-04 17:14:38 +05306967 /* WaDisable_RenderCache_OperationalFlush:ilk */
6968 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6969
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006970 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006971
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006972 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006973}
6974
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006975static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006976{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006977 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006978 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006979
6980 /*
6981 * On Ibex Peak and Cougar Point, we need to disable clock
6982 * gating for the panel power sequencer or it will fail to
6983 * start up when no ports are active.
6984 */
Jesse Barnescd664072013-10-02 10:34:19 -07006985 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6986 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6987 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006988 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6989 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006990 /* The below fixes the weird display corruption, a few pixels shifted
6991 * downward, on (only) LVDS of some HP laptops with IVY.
6992 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006993 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006994 val = I915_READ(TRANS_CHICKEN2(pipe));
6995 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6996 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006997 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006998 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006999 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
7000 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
7001 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03007002 I915_WRITE(TRANS_CHICKEN2(pipe), val);
7003 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01007004 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01007005 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01007006 I915_WRITE(TRANS_CHICKEN1(pipe),
7007 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
7008 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007009}
7010
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007011static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007012{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007013 uint32_t tmp;
7014
7015 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02007016 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
7017 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7018 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007019}
7020
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007021static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007022{
Damien Lespiau231e54f2012-10-19 17:55:41 +01007023 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007024
Damien Lespiau231e54f2012-10-19 17:55:41 +01007025 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007026
7027 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7028 I915_READ(ILK_DISPLAY_CHICKEN2) |
7029 ILK_ELPIN_409_SELECT);
7030
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007031 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01007032 I915_WRITE(_3D_CHICKEN,
7033 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
7034
Akash Goel4e046322014-04-04 17:14:38 +05307035 /* WaDisable_RenderCache_OperationalFlush:snb */
7036 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7037
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007038 /*
7039 * BSpec recoomends 8x4 when MSAA is used,
7040 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007041 *
7042 * Note that PS/WM thread counts depend on the WIZ hashing
7043 * disable bit, which we don't touch here, but it's good
7044 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007045 */
7046 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007047 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02007048
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007049 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007050
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007051 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02007052 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007053
7054 I915_WRITE(GEN6_UCGCTL1,
7055 I915_READ(GEN6_UCGCTL1) |
7056 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7057 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7058
7059 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7060 * gating disable must be set. Failure to set it results in
7061 * flickering pixels due to Z write ordering failures after
7062 * some amount of runtime in the Mesa "fire" demo, and Unigine
7063 * Sanctuary and Tropics, and apparently anything else with
7064 * alpha test or pixel discard.
7065 *
7066 * According to the spec, bit 11 (RCCUNIT) must also be set,
7067 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007068 *
Ville Syrjäläef593182014-01-22 21:32:47 +02007069 * WaDisableRCCUnitClockGating:snb
7070 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007071 */
7072 I915_WRITE(GEN6_UCGCTL2,
7073 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7074 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7075
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02007076 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02007077 I915_WRITE(_3D_CHICKEN3,
7078 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007079
7080 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02007081 * Bspec says:
7082 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
7083 * 3DSTATE_SF number of SF output attributes is more than 16."
7084 */
7085 I915_WRITE(_3D_CHICKEN3,
7086 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
7087
7088 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007089 * According to the spec the following bits should be
7090 * set in order to enable memory self-refresh and fbc:
7091 * The bit21 and bit22 of 0x42000
7092 * The bit21 and bit22 of 0x42004
7093 * The bit5 and bit7 of 0x42020
7094 * The bit14 of 0x70180
7095 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01007096 *
7097 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007098 */
7099 I915_WRITE(ILK_DISPLAY_CHICKEN1,
7100 I915_READ(ILK_DISPLAY_CHICKEN1) |
7101 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7102 I915_WRITE(ILK_DISPLAY_CHICKEN2,
7103 I915_READ(ILK_DISPLAY_CHICKEN2) |
7104 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01007105 I915_WRITE(ILK_DSPCLK_GATE_D,
7106 I915_READ(ILK_DSPCLK_GATE_D) |
7107 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7108 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007109
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007110 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07007111
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007112 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007113
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007114 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007115}
7116
7117static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
7118{
7119 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
7120
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007121 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02007122 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02007123 *
7124 * This actually overrides the dispatch
7125 * mode for all thread types.
7126 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007127 reg &= ~GEN7_FF_SCHED_MASK;
7128 reg |= GEN7_FF_TS_SCHED_HW;
7129 reg |= GEN7_FF_VS_SCHED_HW;
7130 reg |= GEN7_FF_DS_SCHED_HW;
7131
7132 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
7133}
7134
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007135static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007136{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007137 /*
7138 * TODO: this bit should only be enabled when really needed, then
7139 * disabled when not needed anymore in order to save power.
7140 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007141 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007142 I915_WRITE(SOUTH_DSPCLK_GATE_D,
7143 I915_READ(SOUTH_DSPCLK_GATE_D) |
7144 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007145
7146 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03007147 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
7148 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03007149 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02007150}
7151
Ville Syrjälä712bf362016-10-31 22:37:23 +02007152static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007153{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01007154 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03007155 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
7156
7157 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7158 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
7159 }
7160}
7161
Imre Deak450174f2016-05-03 15:54:21 +03007162static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7163 int general_prio_credits,
7164 int high_prio_credits)
7165{
7166 u32 misccpctl;
7167
7168 /* WaTempDisableDOPClkGating:bdw */
7169 misccpctl = I915_READ(GEN7_MISCCPCTL);
7170 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7171
7172 I915_WRITE(GEN8_L3SQCREG1,
7173 L3_GENERAL_PRIO_CREDITS(general_prio_credits) |
7174 L3_HIGH_PRIO_CREDITS(high_prio_credits));
7175
7176 /*
7177 * Wait at least 100 clocks before re-enabling clock gating.
7178 * See the definition of L3SQCREG1 in BSpec.
7179 */
7180 POSTING_READ(GEN8_L3SQCREG1);
7181 udelay(1);
7182 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
7183}
7184
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007185static void kabylake_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007186{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007187 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007188
7189 /* WaDisableSDEUnitClockGating:kbl */
7190 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7191 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7192 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007193
7194 /* WaDisableGamClockGating:kbl */
7195 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7196 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7197 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007198
7199 /* WaFbcNukeOnHostModify:kbl */
7200 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7201 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007202}
7203
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007204static void skylake_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007205{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007206 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007207
7208 /* WAC6entrylatency:skl */
7209 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7210 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007211
7212 /* WaFbcNukeOnHostModify:skl */
7213 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7214 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007215}
7216
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007217static void broadwell_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007218{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007219 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007220
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007221 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007222
Ben Widawskyab57fff2013-12-12 15:28:04 -08007223 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007224 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007225
Ben Widawskyab57fff2013-12-12 15:28:04 -08007226 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007227 I915_WRITE(CHICKEN_PAR1_1,
7228 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7229
Ben Widawskyab57fff2013-12-12 15:28:04 -08007230 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007231 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007232 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007233 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007234 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007235 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007236
Ben Widawskyab57fff2013-12-12 15:28:04 -08007237 /* WaVSRefCountFullforceMissDisable:bdw */
7238 /* WaDSRefCountFullforceMissDisable:bdw */
7239 I915_WRITE(GEN7_FF_THREAD_MODE,
7240 I915_READ(GEN7_FF_THREAD_MODE) &
7241 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007242
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007243 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7244 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007245
7246 /* WaDisableSDEUnitClockGating:bdw */
7247 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7248 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007249
Imre Deak450174f2016-05-03 15:54:21 +03007250 /* WaProgramL3SqcReg1Default:bdw */
7251 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007252
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007253 /*
7254 * WaGttCachingOffByDefault:bdw
7255 * GTT cache may not work with big pages, so if those
7256 * are ever enabled GTT cache may need to be disabled.
7257 */
7258 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
7259
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007260 /* WaKVMNotificationOnConfigChange:bdw */
7261 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7262 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7263
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007264 lpt_init_clock_gating(dev_priv);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007265}
7266
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007267static void haswell_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007268{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007269 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007270
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007271 /* L3 caching of data atomics doesn't work -- disable it. */
7272 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7273 I915_WRITE(HSW_ROW_CHICKEN3,
7274 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7275
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007276 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007277 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7278 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7279 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7280
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007281 /* WaVSRefCountFullforceMissDisable:hsw */
7282 I915_WRITE(GEN7_FF_THREAD_MODE,
7283 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007284
Akash Goel4e046322014-04-04 17:14:38 +05307285 /* WaDisable_RenderCache_OperationalFlush:hsw */
7286 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7287
Chia-I Wufe27c602014-01-28 13:29:33 +08007288 /* enable HiZ Raw Stall Optimization */
7289 I915_WRITE(CACHE_MODE_0_GEN7,
7290 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7291
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007292 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007293 I915_WRITE(CACHE_MODE_1,
7294 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007295
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007296 /*
7297 * BSpec recommends 8x4 when MSAA is used,
7298 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007299 *
7300 * Note that PS/WM thread counts depend on the WIZ hashing
7301 * disable bit, which we don't touch here, but it's good
7302 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007303 */
7304 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007305 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007306
Kenneth Graunke94411592014-12-31 16:23:00 -08007307 /* WaSampleCChickenBitEnable:hsw */
7308 I915_WRITE(HALF_SLICE_CHICKEN3,
7309 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7310
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007311 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007312 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7313
Paulo Zanoni90a88642013-05-03 17:23:45 -03007314 /* WaRsPkgCStateDisplayPMReq:hsw */
7315 I915_WRITE(CHICKEN_PAR1_1,
7316 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007317
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007318 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007319}
7320
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007321static void ivybridge_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007322{
Ben Widawsky20848222012-05-04 18:58:59 -07007323 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007324
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007325 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007326
Damien Lespiau231e54f2012-10-19 17:55:41 +01007327 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007328
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007329 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007330 I915_WRITE(_3D_CHICKEN3,
7331 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7332
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007333 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007334 I915_WRITE(IVB_CHICKEN3,
7335 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7336 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7337
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007338 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007339 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007340 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7341 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007342
Akash Goel4e046322014-04-04 17:14:38 +05307343 /* WaDisable_RenderCache_OperationalFlush:ivb */
7344 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7345
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007346 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007347 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7348 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7349
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007350 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007351 I915_WRITE(GEN7_L3CNTLREG1,
7352 GEN7_WA_FOR_GEN7_L3_CONTROL);
7353 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007354 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007355 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007356 I915_WRITE(GEN7_ROW_CHICKEN2,
7357 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007358 else {
7359 /* must write both registers */
7360 I915_WRITE(GEN7_ROW_CHICKEN2,
7361 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007362 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7363 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007364 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007365
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007366 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007367 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7368 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7369
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007370 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007371 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007372 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007373 */
7374 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007375 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007376
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007377 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007378 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7379 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7380 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7381
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007382 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007383
7384 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007385
Chris Wilson22721342014-03-04 09:41:43 +00007386 if (0) { /* causes HiZ corruption on ivb:gt1 */
7387 /* enable HiZ Raw Stall Optimization */
7388 I915_WRITE(CACHE_MODE_0_GEN7,
7389 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7390 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007391
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007392 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007393 I915_WRITE(CACHE_MODE_1,
7394 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007395
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007396 /*
7397 * BSpec recommends 8x4 when MSAA is used,
7398 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007399 *
7400 * Note that PS/WM thread counts depend on the WIZ hashing
7401 * disable bit, which we don't touch here, but it's good
7402 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007403 */
7404 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007405 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007406
Ben Widawsky20848222012-05-04 18:58:59 -07007407 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7408 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7409 snpcr |= GEN6_MBC_SNPCR_MED;
7410 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007411
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007412 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007413 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007414
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007415 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007416}
7417
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007418static void valleyview_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007419{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007420 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007421 I915_WRITE(_3D_CHICKEN3,
7422 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7423
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007424 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007425 I915_WRITE(IVB_CHICKEN3,
7426 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7427 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7428
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007429 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007430 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007431 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007432 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7433 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007434
Akash Goel4e046322014-04-04 17:14:38 +05307435 /* WaDisable_RenderCache_OperationalFlush:vlv */
7436 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7437
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007438 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007439 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7440 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7441
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007442 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007443 I915_WRITE(GEN7_ROW_CHICKEN2,
7444 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7445
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007446 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007447 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7448 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7449 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7450
Ville Syrjälä46680e02014-01-22 21:33:01 +02007451 gen7_setup_fixed_func_scheduler(dev_priv);
7452
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007453 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007454 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007455 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007456 */
7457 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007458 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007459
Akash Goelc98f5062014-03-24 23:00:07 +05307460 /* WaDisableL3Bank2xClockGate:vlv
7461 * Disabling L3 clock gating- MMIO 940c[25] = 1
7462 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7463 I915_WRITE(GEN7_UCGCTL4,
7464 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007465
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007466 /*
7467 * BSpec says this must be set, even though
7468 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7469 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007470 I915_WRITE(CACHE_MODE_1,
7471 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007472
7473 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007474 * BSpec recommends 8x4 when MSAA is used,
7475 * however in practice 16x4 seems fastest.
7476 *
7477 * Note that PS/WM thread counts depend on the WIZ hashing
7478 * disable bit, which we don't touch here, but it's good
7479 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7480 */
7481 I915_WRITE(GEN7_GT_MODE,
7482 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7483
7484 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007485 * WaIncreaseL3CreditsForVLVB0:vlv
7486 * This is the hardware default actually.
7487 */
7488 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7489
7490 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007491 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007492 * Disable clock gating on th GCFG unit to prevent a delay
7493 * in the reporting of vblank events.
7494 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007495 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007496}
7497
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007498static void cherryview_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007499{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007500 /* WaVSRefCountFullforceMissDisable:chv */
7501 /* WaDSRefCountFullforceMissDisable:chv */
7502 I915_WRITE(GEN7_FF_THREAD_MODE,
7503 I915_READ(GEN7_FF_THREAD_MODE) &
7504 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007505
7506 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7507 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7508 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007509
7510 /* WaDisableCSUnitClockGating:chv */
7511 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7512 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007513
7514 /* WaDisableSDEUnitClockGating:chv */
7515 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7516 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007517
7518 /*
Imre Deak450174f2016-05-03 15:54:21 +03007519 * WaProgramL3SqcReg1Default:chv
7520 * See gfxspecs/Related Documents/Performance Guide/
7521 * LSQC Setting Recommendations.
7522 */
7523 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7524
7525 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007526 * GTT cache may not work with big pages, so if those
7527 * are ever enabled GTT cache may need to be disabled.
7528 */
7529 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007530}
7531
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007532static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007533{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007534 uint32_t dspclk_gate;
7535
7536 I915_WRITE(RENCLK_GATE_D1, 0);
7537 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7538 GS_UNIT_CLOCK_GATE_DISABLE |
7539 CL_UNIT_CLOCK_GATE_DISABLE);
7540 I915_WRITE(RAMCLK_GATE_D, 0);
7541 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7542 OVRUNIT_CLOCK_GATE_DISABLE |
7543 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007544 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007545 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7546 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007547
7548 /* WaDisableRenderCachePipelinedFlush */
7549 I915_WRITE(CACHE_MODE_0,
7550 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007551
Akash Goel4e046322014-04-04 17:14:38 +05307552 /* WaDisable_RenderCache_OperationalFlush:g4x */
7553 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7554
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007555 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007556}
7557
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007558static void crestline_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007559{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007560 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7561 I915_WRITE(RENCLK_GATE_D2, 0);
7562 I915_WRITE(DSPCLK_GATE_D, 0);
7563 I915_WRITE(RAMCLK_GATE_D, 0);
7564 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007565 I915_WRITE(MI_ARB_STATE,
7566 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307567
7568 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7569 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007570}
7571
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007572static void broadwater_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007573{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007574 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7575 I965_RCC_CLOCK_GATE_DISABLE |
7576 I965_RCPB_CLOCK_GATE_DISABLE |
7577 I965_ISC_CLOCK_GATE_DISABLE |
7578 I965_FBC_CLOCK_GATE_DISABLE);
7579 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007580 I915_WRITE(MI_ARB_STATE,
7581 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307582
7583 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7584 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007585}
7586
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007587static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007588{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007589 u32 dstate = I915_READ(D_STATE);
7590
7591 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7592 DSTATE_DOT_CLOCK_GATING;
7593 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007594
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007595 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007596 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007597
7598 /* IIR "flip pending" means done if this bit is set */
7599 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007600
7601 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007602 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007603
7604 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7605 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007606
7607 I915_WRITE(MI_ARB_STATE,
7608 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007609}
7610
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007611static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007612{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007613 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007614
7615 /* interrupts should cause a wake up from C3 */
7616 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7617 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007618
7619 I915_WRITE(MEM_MODE,
7620 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007621}
7622
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007623static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007624{
Ville Syrjälä10383922014-08-15 01:21:54 +03007625 I915_WRITE(MEM_MODE,
7626 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7627 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007628}
7629
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007630void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007631{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007632 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007633}
7634
Ville Syrjälä712bf362016-10-31 22:37:23 +02007635void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007636{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007637 if (HAS_PCH_LPT(dev_priv))
7638 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007639}
7640
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007641static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007642{
7643 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
7644}
7645
7646/**
7647 * intel_init_clock_gating_hooks - setup the clock gating hooks
7648 * @dev_priv: device private
7649 *
7650 * Setup the hooks that configure which clocks of a given platform can be
7651 * gated and also apply various GT and display specific workarounds for these
7652 * platforms. Note that some GT specific workarounds are applied separately
7653 * when GPU contexts or batchbuffers start their execution.
7654 */
7655void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7656{
7657 if (IS_SKYLAKE(dev_priv))
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007658 dev_priv->display.init_clock_gating = skylake_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007659 else if (IS_KABYLAKE(dev_priv))
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007660 dev_priv->display.init_clock_gating = kabylake_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007661 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007662 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007663 else if (IS_GEMINILAKE(dev_priv))
7664 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007665 else if (IS_BROADWELL(dev_priv))
7666 dev_priv->display.init_clock_gating = broadwell_init_clock_gating;
7667 else if (IS_CHERRYVIEW(dev_priv))
7668 dev_priv->display.init_clock_gating = cherryview_init_clock_gating;
7669 else if (IS_HASWELL(dev_priv))
7670 dev_priv->display.init_clock_gating = haswell_init_clock_gating;
7671 else if (IS_IVYBRIDGE(dev_priv))
7672 dev_priv->display.init_clock_gating = ivybridge_init_clock_gating;
7673 else if (IS_VALLEYVIEW(dev_priv))
7674 dev_priv->display.init_clock_gating = valleyview_init_clock_gating;
7675 else if (IS_GEN6(dev_priv))
7676 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7677 else if (IS_GEN5(dev_priv))
7678 dev_priv->display.init_clock_gating = ironlake_init_clock_gating;
7679 else if (IS_G4X(dev_priv))
7680 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007681 else if (IS_I965GM(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007682 dev_priv->display.init_clock_gating = crestline_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007683 else if (IS_I965G(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007684 dev_priv->display.init_clock_gating = broadwater_init_clock_gating;
7685 else if (IS_GEN3(dev_priv))
7686 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7687 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7688 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7689 else if (IS_GEN2(dev_priv))
7690 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7691 else {
7692 MISSING_CASE(INTEL_DEVID(dev_priv));
7693 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7694 }
7695}
7696
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007697/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007698void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007699{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02007700 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007701
Daniel Vetterc921aba2012-04-26 23:28:17 +02007702 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007703 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007704 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007705 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02007706 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007707
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007708 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007709 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007710 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01007711 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01007712 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07007713 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007714 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007715 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007716
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007717 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007718 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007719 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007720 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007721 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007722 dev_priv->display.compute_intermediate_wm =
7723 ilk_compute_intermediate_wm;
7724 dev_priv->display.initial_watermarks =
7725 ilk_initial_watermarks;
7726 dev_priv->display.optimize_watermarks =
7727 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007728 } else {
7729 DRM_DEBUG_KMS("Failed to read display plane latency. "
7730 "Disable CxSR\n");
7731 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007732 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007733 vlv_setup_wm_latency(dev_priv);
Ville Syrjälä26e1fe42015-06-24 22:00:06 +03007734 dev_priv->display.update_wm = vlv_update_wm;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007735 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007736 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007737 dev_priv->is_ddr3,
7738 dev_priv->fsb_freq,
7739 dev_priv->mem_freq)) {
7740 DRM_INFO("failed to find known CxSR latency "
7741 "(found ddr%s fsb freq %d, mem freq %d), "
7742 "disabling CxSR\n",
7743 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7744 dev_priv->fsb_freq, dev_priv->mem_freq);
7745 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007746 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007747 dev_priv->display.update_wm = NULL;
7748 } else
7749 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01007750 } else if (IS_G4X(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007751 dev_priv->display.update_wm = g4x_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007752 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007753 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007754 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007755 dev_priv->display.update_wm = i9xx_update_wm;
7756 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01007757 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007758 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007759 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007760 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007761 } else {
7762 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007763 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007764 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007765 } else {
7766 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007767 }
7768}
7769
Lyude87660502016-08-17 15:55:53 -04007770static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
7771{
7772 uint32_t flags =
7773 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7774
7775 switch (flags) {
7776 case GEN6_PCODE_SUCCESS:
7777 return 0;
7778 case GEN6_PCODE_UNIMPLEMENTED_CMD:
7779 case GEN6_PCODE_ILLEGAL_CMD:
7780 return -ENXIO;
7781 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01007782 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04007783 return -EOVERFLOW;
7784 case GEN6_PCODE_TIMEOUT:
7785 return -ETIMEDOUT;
7786 default:
7787 MISSING_CASE(flags)
7788 return 0;
7789 }
7790}
7791
7792static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
7793{
7794 uint32_t flags =
7795 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
7796
7797 switch (flags) {
7798 case GEN6_PCODE_SUCCESS:
7799 return 0;
7800 case GEN6_PCODE_ILLEGAL_CMD:
7801 return -ENXIO;
7802 case GEN7_PCODE_TIMEOUT:
7803 return -ETIMEDOUT;
7804 case GEN7_PCODE_ILLEGAL_DATA:
7805 return -EINVAL;
7806 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
7807 return -EOVERFLOW;
7808 default:
7809 MISSING_CASE(flags);
7810 return 0;
7811 }
7812}
7813
Tom O'Rourke151a49d2014-11-13 18:50:10 -08007814int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007815{
Lyude87660502016-08-17 15:55:53 -04007816 int status;
7817
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007818 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007819
Chris Wilson3f5582d2016-06-30 15:32:45 +01007820 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7821 * use te fw I915_READ variants to reduce the amount of work
7822 * required when reading/writing.
7823 */
7824
7825 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007826 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n");
7827 return -EAGAIN;
7828 }
7829
Chris Wilson3f5582d2016-06-30 15:32:45 +01007830 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
7831 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
7832 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007833
Chris Wilson3f5582d2016-06-30 15:32:45 +01007834 if (intel_wait_for_register_fw(dev_priv,
7835 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7836 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007837 DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox);
7838 return -ETIMEDOUT;
7839 }
7840
Chris Wilson3f5582d2016-06-30 15:32:45 +01007841 *val = I915_READ_FW(GEN6_PCODE_DATA);
7842 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007843
Lyude87660502016-08-17 15:55:53 -04007844 if (INTEL_GEN(dev_priv) > 6)
7845 status = gen7_check_mailbox_status(dev_priv);
7846 else
7847 status = gen6_check_mailbox_status(dev_priv);
7848
7849 if (status) {
7850 DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed: %d\n",
7851 status);
7852 return status;
7853 }
7854
Ben Widawsky42c05262012-09-26 10:34:00 -07007855 return 0;
7856}
7857
Chris Wilson3f5582d2016-06-30 15:32:45 +01007858int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04007859 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07007860{
Lyude87660502016-08-17 15:55:53 -04007861 int status;
7862
Jesse Barnes4fc688c2012-11-02 11:14:01 -07007863 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07007864
Chris Wilson3f5582d2016-06-30 15:32:45 +01007865 /* GEN6_PCODE_* are outside of the forcewake domain, we can
7866 * use te fw I915_READ variants to reduce the amount of work
7867 * required when reading/writing.
7868 */
7869
7870 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007871 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n");
7872 return -EAGAIN;
7873 }
7874
Chris Wilson3f5582d2016-06-30 15:32:45 +01007875 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02007876 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01007877 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07007878
Chris Wilson3f5582d2016-06-30 15:32:45 +01007879 if (intel_wait_for_register_fw(dev_priv,
7880 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
7881 500)) {
Ben Widawsky42c05262012-09-26 10:34:00 -07007882 DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox);
7883 return -ETIMEDOUT;
7884 }
7885
Chris Wilson3f5582d2016-06-30 15:32:45 +01007886 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07007887
Lyude87660502016-08-17 15:55:53 -04007888 if (INTEL_GEN(dev_priv) > 6)
7889 status = gen7_check_mailbox_status(dev_priv);
7890 else
7891 status = gen6_check_mailbox_status(dev_priv);
7892
7893 if (status) {
7894 DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed: %d\n",
7895 status);
7896 return status;
7897 }
7898
Ben Widawsky42c05262012-09-26 10:34:00 -07007899 return 0;
7900}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07007901
Imre Deaka0b8a1f2016-12-05 18:27:37 +02007902static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
7903 u32 request, u32 reply_mask, u32 reply,
7904 u32 *status)
7905{
7906 u32 val = request;
7907
7908 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
7909
7910 return *status || ((val & reply_mask) == reply);
7911}
7912
7913/**
7914 * skl_pcode_request - send PCODE request until acknowledgment
7915 * @dev_priv: device private
7916 * @mbox: PCODE mailbox ID the request is targeted for
7917 * @request: request ID
7918 * @reply_mask: mask used to check for request acknowledgment
7919 * @reply: value used to check for request acknowledgment
7920 * @timeout_base_ms: timeout for polling with preemption enabled
7921 *
7922 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
7923 * reports an error or an overall timeout of @timeout_base_ms+10 ms expires.
7924 * The request is acknowledged once the PCODE reply dword equals @reply after
7925 * applying @reply_mask. Polling is first attempted with preemption enabled
7926 * for @timeout_base_ms and if this times out for another 10 ms with
7927 * preemption disabled.
7928 *
7929 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
7930 * other error as reported by PCODE.
7931 */
7932int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
7933 u32 reply_mask, u32 reply, int timeout_base_ms)
7934{
7935 u32 status;
7936 int ret;
7937
7938 WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock));
7939
7940#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
7941 &status)
7942
7943 /*
7944 * Prime the PCODE by doing a request first. Normally it guarantees
7945 * that a subsequent request, at most @timeout_base_ms later, succeeds.
7946 * _wait_for() doesn't guarantee when its passed condition is evaluated
7947 * first, so send the first request explicitly.
7948 */
7949 if (COND) {
7950 ret = 0;
7951 goto out;
7952 }
7953 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
7954 if (!ret)
7955 goto out;
7956
7957 /*
7958 * The above can time out if the number of requests was low (2 in the
7959 * worst case) _and_ PCODE was busy for some reason even after a
7960 * (queued) request and @timeout_base_ms delay. As a workaround retry
7961 * the poll with preemption disabled to maximize the number of
7962 * requests. Increase the timeout from @timeout_base_ms to 10ms to
7963 * account for interrupts that could reduce the number of these
7964 * requests.
7965 */
7966 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
7967 WARN_ON_ONCE(timeout_base_ms > 3);
7968 preempt_disable();
7969 ret = wait_for_atomic(COND, 10);
7970 preempt_enable();
7971
7972out:
7973 return ret ? ret : status;
7974#undef COND
7975}
7976
Ville Syrjälädd06f882014-11-10 22:55:12 +02007977static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
7978{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007979 /*
7980 * N = val - 0xb7
7981 * Slow = Fast = GPLL ref * N
7982 */
7983 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007984}
7985
Fengguang Wub55dd642014-07-12 11:21:39 +02007986static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007987{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007988 return DIV_ROUND_CLOSEST(1000 * val, dev_priv->rps.gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07007989}
7990
Fengguang Wub55dd642014-07-12 11:21:39 +02007991static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05307992{
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007993 /*
7994 * N = val / 2
7995 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
7996 */
7997 return DIV_ROUND_CLOSEST(dev_priv->rps.gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05307998}
7999
Fengguang Wub55dd642014-07-12 11:21:39 +02008000static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05308001{
Ville Syrjälä1c147622014-08-18 14:42:43 +03008002 /* CHV needs even values */
Ville Syrjäläc30fec62016-03-04 21:43:02 +02008003 return DIV_ROUND_CLOSEST(2 * 1000 * val, dev_priv->rps.gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05308004}
8005
Ville Syrjälä616bc822015-01-23 21:04:25 +02008006int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
8007{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008008 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008009 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
8010 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008011 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008012 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008013 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008014 return byt_gpu_freq(dev_priv, val);
8015 else
8016 return val * GT_FREQUENCY_MULTIPLIER;
8017}
8018
Ville Syrjälä616bc822015-01-23 21:04:25 +02008019int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
8020{
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008021 if (IS_GEN9(dev_priv))
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008022 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
8023 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008024 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008025 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03008026 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02008027 return byt_freq_opcode(dev_priv, val);
8028 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02008029 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05308030}
8031
Chris Wilson6ad790c2015-04-07 16:20:31 +01008032struct request_boost {
8033 struct work_struct work;
Daniel Vettereed29a52015-05-21 14:21:25 +02008034 struct drm_i915_gem_request *req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008035};
8036
8037static void __intel_rps_boost_work(struct work_struct *work)
8038{
8039 struct request_boost *boost = container_of(work, struct request_boost, work);
Chris Wilsone61b9952015-04-27 13:41:24 +01008040 struct drm_i915_gem_request *req = boost->req;
Chris Wilson6ad790c2015-04-07 16:20:31 +01008041
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008042 if (!i915_gem_request_completed(req))
Chris Wilsonc0336662016-05-06 15:40:21 +01008043 gen6_rps_boost(req->i915, NULL, req->emitted_jiffies);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008044
Chris Wilsone8a261e2016-07-20 13:31:49 +01008045 i915_gem_request_put(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008046 kfree(boost);
8047}
8048
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008049void intel_queue_rps_boost_for_request(struct drm_i915_gem_request *req)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008050{
8051 struct request_boost *boost;
8052
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008053 if (req == NULL || INTEL_GEN(req->i915) < 6)
Chris Wilson6ad790c2015-04-07 16:20:31 +01008054 return;
8055
Chris Wilsonf69a02c2016-07-01 17:23:16 +01008056 if (i915_gem_request_completed(req))
Chris Wilsone61b9952015-04-27 13:41:24 +01008057 return;
8058
Chris Wilson6ad790c2015-04-07 16:20:31 +01008059 boost = kmalloc(sizeof(*boost), GFP_ATOMIC);
8060 if (boost == NULL)
8061 return;
8062
Chris Wilsone8a261e2016-07-20 13:31:49 +01008063 boost->req = i915_gem_request_get(req);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008064
8065 INIT_WORK(&boost->work, __intel_rps_boost_work);
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008066 queue_work(req->i915->wq, &boost->work);
Chris Wilson6ad790c2015-04-07 16:20:31 +01008067}
8068
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00008069void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01008070{
Daniel Vetterf742a552013-12-06 10:17:53 +01008071 mutex_init(&dev_priv->rps.hw_lock);
Chris Wilson8d3afd72015-05-21 21:01:47 +01008072 spin_lock_init(&dev_priv->rps.client_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01008073
Chris Wilson54b4f682016-07-21 21:16:19 +01008074 INIT_DELAYED_WORK(&dev_priv->rps.autoenable_work,
8075 __intel_autoenable_gt_powersave);
Chris Wilson1854d5c2015-04-07 16:20:32 +01008076 INIT_LIST_HEAD(&dev_priv->rps.clients);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03008077
Paulo Zanoni33688d92014-03-07 20:08:19 -03008078 dev_priv->pm.suspended = false;
Imre Deak1f814da2015-12-16 02:52:19 +02008079 atomic_set(&dev_priv->pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01008080}