blob: 46440e2ecb33b0b0125c7751040ecdb49625b3ed [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{
Ville Syrjälä93564042017-08-24 22:10:51 +030061 if (HAS_LLC(dev_priv)) {
62 /*
63 * WaCompressedResourceDisplayNewHashMode:skl,kbl
64 * Display WA#0390: skl,kbl
65 *
66 * Must match Sampler, Pixel Back End, and Media. See
67 * WaCompressedResourceSamplerPbeMediaNewHashMode.
68 */
69 I915_WRITE(CHICKEN_PAR1_1,
70 I915_READ(CHICKEN_PAR1_1) |
71 SKL_DE_COMPRESSED_HASH_MODE);
72 }
73
Rodrigo Vivi82525c12017-06-08 08:50:00 -070074 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
Mika Kuoppalab033bb62016-06-07 17:19:04 +030075 I915_WRITE(CHICKEN_PAR1_1,
76 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
77
78 I915_WRITE(GEN8_CONFIG0,
79 I915_READ(GEN8_CONFIG0) | GEN9_DEFAULT_FIXES);
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030080
Rodrigo Vivi82525c12017-06-08 08:50:00 -070081 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030082 I915_WRITE(GEN8_CHICKEN_DCPR_1,
83 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030084
Rodrigo Vivi82525c12017-06-08 08:50:00 -070085 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
86 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030087 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
88 DISP_FBC_WM_DIS |
89 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030090
Rodrigo Vivi82525c12017-06-08 08:50:00 -070091 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030092 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
93 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +053094
95 if (IS_SKYLAKE(dev_priv)) {
96 /* WaDisableDopClockGating */
97 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
98 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
99 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +0300100}
101
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200102static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +0200103{
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200104 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +0200105
Nick Hoatha7546152015-06-29 14:07:32 +0100106 /* WaDisableSDEUnitClockGating:bxt */
107 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
108 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
109
Imre Deak32608ca2015-03-11 11:10:27 +0200110 /*
111 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200112 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200113 */
Imre Deak32608ca2015-03-11 11:10:27 +0200114 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200115 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200116
117 /*
118 * Wa: Backlight PWM may stop in the asserted state, causing backlight
119 * to stay fully on.
120 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200121 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
122 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200123}
124
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200125static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
126{
Rodrigo Vivi8f067832017-09-05 12:30:13 -0700127 u32 val;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200128 gen9_init_clock_gating(dev_priv);
129
130 /*
131 * WaDisablePWMClockGating:glk
132 * Backlight PWM may stop in the asserted state, causing backlight
133 * to stay fully on.
134 */
135 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
136 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200137
138 /* WaDDIIOTimeout:glk */
139 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
140 u32 val = I915_READ(CHICKEN_MISC_2);
141 val &= ~(GLK_CL0_PWR_DOWN |
142 GLK_CL1_PWR_DOWN |
143 GLK_CL2_PWR_DOWN);
144 I915_WRITE(CHICKEN_MISC_2, val);
145 }
146
Rodrigo Vivi8f067832017-09-05 12:30:13 -0700147 /* Display WA #1133: WaFbcSkipSegments:glk */
148 val = I915_READ(ILK_DPFC_CHICKEN);
149 val &= ~GLK_SKIP_SEG_COUNT_MASK;
150 val |= GLK_SKIP_SEG_EN | GLK_SKIP_SEG_COUNT(1);
151 I915_WRITE(ILK_DPFC_CHICKEN, val);
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200152}
153
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200154static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200155{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200156 u32 tmp;
157
158 tmp = I915_READ(CLKCFG);
159
160 switch (tmp & CLKCFG_FSB_MASK) {
161 case CLKCFG_FSB_533:
162 dev_priv->fsb_freq = 533; /* 133*4 */
163 break;
164 case CLKCFG_FSB_800:
165 dev_priv->fsb_freq = 800; /* 200*4 */
166 break;
167 case CLKCFG_FSB_667:
168 dev_priv->fsb_freq = 667; /* 167*4 */
169 break;
170 case CLKCFG_FSB_400:
171 dev_priv->fsb_freq = 400; /* 100*4 */
172 break;
173 }
174
175 switch (tmp & CLKCFG_MEM_MASK) {
176 case CLKCFG_MEM_533:
177 dev_priv->mem_freq = 533;
178 break;
179 case CLKCFG_MEM_667:
180 dev_priv->mem_freq = 667;
181 break;
182 case CLKCFG_MEM_800:
183 dev_priv->mem_freq = 800;
184 break;
185 }
186
187 /* detect pineview DDR3 setting */
188 tmp = I915_READ(CSHRDDR3CTL);
189 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
190}
191
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200192static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200193{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200194 u16 ddrpll, csipll;
195
196 ddrpll = I915_READ16(DDRMPLL1);
197 csipll = I915_READ16(CSIPLL0);
198
199 switch (ddrpll & 0xff) {
200 case 0xc:
201 dev_priv->mem_freq = 800;
202 break;
203 case 0x10:
204 dev_priv->mem_freq = 1066;
205 break;
206 case 0x14:
207 dev_priv->mem_freq = 1333;
208 break;
209 case 0x18:
210 dev_priv->mem_freq = 1600;
211 break;
212 default:
213 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
214 ddrpll & 0xff);
215 dev_priv->mem_freq = 0;
216 break;
217 }
218
Daniel Vetter20e4d402012-08-08 23:35:39 +0200219 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200220
221 switch (csipll & 0x3ff) {
222 case 0x00c:
223 dev_priv->fsb_freq = 3200;
224 break;
225 case 0x00e:
226 dev_priv->fsb_freq = 3733;
227 break;
228 case 0x010:
229 dev_priv->fsb_freq = 4266;
230 break;
231 case 0x012:
232 dev_priv->fsb_freq = 4800;
233 break;
234 case 0x014:
235 dev_priv->fsb_freq = 5333;
236 break;
237 case 0x016:
238 dev_priv->fsb_freq = 5866;
239 break;
240 case 0x018:
241 dev_priv->fsb_freq = 6400;
242 break;
243 default:
244 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
245 csipll & 0x3ff);
246 dev_priv->fsb_freq = 0;
247 break;
248 }
249
250 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200251 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200252 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200253 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200254 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200255 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200256 }
257}
258
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300259static const struct cxsr_latency cxsr_latency_table[] = {
260 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
261 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
262 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
263 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
264 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
265
266 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
267 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
268 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
269 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
270 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
271
272 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
273 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
274 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
275 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
276 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
277
278 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
279 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
280 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
281 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
282 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
283
284 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
285 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
286 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
287 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
288 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
289
290 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
291 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
292 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
293 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
294 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
295};
296
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100297static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
298 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300299 int fsb,
300 int mem)
301{
302 const struct cxsr_latency *latency;
303 int i;
304
305 if (fsb == 0 || mem == 0)
306 return NULL;
307
308 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
309 latency = &cxsr_latency_table[i];
310 if (is_desktop == latency->is_desktop &&
311 is_ddr3 == latency->is_ddr3 &&
312 fsb == latency->fsb_freq && mem == latency->mem_freq)
313 return latency;
314 }
315
316 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
317
318 return NULL;
319}
320
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200321static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
322{
323 u32 val;
324
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100325 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200326
327 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
328 if (enable)
329 val &= ~FORCE_DDR_HIGH_FREQ;
330 else
331 val |= FORCE_DDR_HIGH_FREQ;
332 val &= ~FORCE_DDR_LOW_FREQ;
333 val |= FORCE_DDR_FREQ_REQ_ACK;
334 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
335
336 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
337 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
338 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
339
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100340 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200341}
342
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200343static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
344{
345 u32 val;
346
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100347 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200348
349 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
350 if (enable)
351 val |= DSP_MAXFIFO_PM5_ENABLE;
352 else
353 val &= ~DSP_MAXFIFO_PM5_ENABLE;
354 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
355
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100356 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200357}
358
Ville Syrjäläf4998962015-03-10 17:02:21 +0200359#define FW_WM(value, plane) \
360 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
361
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200362static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300363{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200364 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300365 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300366
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100367 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200368 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300369 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300370 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200371 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200372 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300373 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300374 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200375 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200376 val = I915_READ(DSPFW3);
377 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
378 if (enable)
379 val |= PINEVIEW_SELF_REFRESH_EN;
380 else
381 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300382 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300383 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100384 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200385 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300386 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
387 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
388 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300389 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100390 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300391 /*
392 * FIXME can't find a bit like this for 915G, and
393 * and yet it does have the related watermark in
394 * FW_BLC_SELF. What's going on?
395 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200396 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300397 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
398 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
399 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300400 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300401 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200402 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300403 }
404
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200405 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
406
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200407 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
408 enableddisabled(enable),
409 enableddisabled(was_enabled));
410
411 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300412}
413
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300414/**
415 * intel_set_memory_cxsr - Configure CxSR state
416 * @dev_priv: i915 device
417 * @enable: Allow vs. disallow CxSR
418 *
419 * Allow or disallow the system to enter a special CxSR
420 * (C-state self refresh) state. What typically happens in CxSR mode
421 * is that several display FIFOs may get combined into a single larger
422 * FIFO for a particular plane (so called max FIFO mode) to allow the
423 * system to defer memory fetches longer, and the memory will enter
424 * self refresh.
425 *
426 * Note that enabling CxSR does not guarantee that the system enter
427 * this special mode, nor does it guarantee that the system stays
428 * in that mode once entered. So this just allows/disallows the system
429 * to autonomously utilize the CxSR mode. Other factors such as core
430 * C-states will affect when/if the system actually enters/exits the
431 * CxSR mode.
432 *
433 * Note that on VLV/CHV this actually only controls the max FIFO mode,
434 * and the system is free to enter/exit memory self refresh at any time
435 * even when the use of CxSR has been disallowed.
436 *
437 * While the system is actually in the CxSR/max FIFO mode, some plane
438 * control registers will not get latched on vblank. Thus in order to
439 * guarantee the system will respond to changes in the plane registers
440 * we must always disallow CxSR prior to making changes to those registers.
441 * Unfortunately the system will re-evaluate the CxSR conditions at
442 * frame start which happens after vblank start (which is when the plane
443 * registers would get latched), so we can't proceed with the plane update
444 * during the same frame where we disallowed CxSR.
445 *
446 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
447 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
448 * the hardware w.r.t. HPLL SR when writing to plane registers.
449 * Disallowing just CxSR is sufficient.
450 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200451bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200452{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200453 bool ret;
454
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200455 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200456 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300457 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
458 dev_priv->wm.vlv.cxsr = enable;
459 else if (IS_G4X(dev_priv))
460 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200461 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200462
463 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200464}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200465
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300466/*
467 * Latency for FIFO fetches is dependent on several factors:
468 * - memory configuration (speed, channels)
469 * - chipset
470 * - current MCH state
471 * It can be fairly high in some situations, so here we assume a fairly
472 * pessimal value. It's a tradeoff between extra memory fetches (if we
473 * set this value too high, the FIFO will fetch frequently to stay full)
474 * and power consumption (set it too low to save power and we might see
475 * FIFO underruns and display "flicker").
476 *
477 * A value of 5us seems to be a good balance; safe for very low end
478 * platforms but not overly aggressive on lower latency configs.
479 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100480static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300481
Ville Syrjäläb5004722015-03-05 21:19:47 +0200482#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
483 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
484
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200485static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200486{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200487 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200488 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200489 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200490 enum pipe pipe = crtc->pipe;
491 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200492
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200493 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200494 uint32_t dsparb, dsparb2, dsparb3;
495 case PIPE_A:
496 dsparb = I915_READ(DSPARB);
497 dsparb2 = I915_READ(DSPARB2);
498 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
499 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
500 break;
501 case PIPE_B:
502 dsparb = I915_READ(DSPARB);
503 dsparb2 = I915_READ(DSPARB2);
504 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
505 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
506 break;
507 case PIPE_C:
508 dsparb2 = I915_READ(DSPARB2);
509 dsparb3 = I915_READ(DSPARB3);
510 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
511 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
512 break;
513 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200514 MISSING_CASE(pipe);
515 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200516 }
517
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200518 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
519 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
520 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
521 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200522}
523
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200524static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300525{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300526 uint32_t dsparb = I915_READ(DSPARB);
527 int size;
528
529 size = dsparb & 0x7f;
530 if (plane)
531 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
532
533 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
534 plane ? "B" : "A", size);
535
536 return size;
537}
538
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200539static int i830_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300540{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541 uint32_t dsparb = I915_READ(DSPARB);
542 int size;
543
544 size = dsparb & 0x1ff;
545 if (plane)
546 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
547 size >>= 1; /* Convert to cachelines */
548
549 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
550 plane ? "B" : "A", size);
551
552 return size;
553}
554
Ville Syrjäläef0f5e92016-10-31 22:37:17 +0200555static int i845_get_fifo_size(struct drm_i915_private *dev_priv, int plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300556{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557 uint32_t dsparb = I915_READ(DSPARB);
558 int size;
559
560 size = dsparb & 0x7f;
561 size >>= 2; /* Convert to cachelines */
562
563 DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb,
564 plane ? "B" : "A",
565 size);
566
567 return size;
568}
569
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300570/* Pineview has different values for various configs */
571static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300572 .fifo_size = PINEVIEW_DISPLAY_FIFO,
573 .max_wm = PINEVIEW_MAX_WM,
574 .default_wm = PINEVIEW_DFT_WM,
575 .guard_size = PINEVIEW_GUARD_WM,
576 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300577};
578static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300579 .fifo_size = PINEVIEW_DISPLAY_FIFO,
580 .max_wm = PINEVIEW_MAX_WM,
581 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
582 .guard_size = PINEVIEW_GUARD_WM,
583 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300584};
585static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300586 .fifo_size = PINEVIEW_CURSOR_FIFO,
587 .max_wm = PINEVIEW_CURSOR_MAX_WM,
588 .default_wm = PINEVIEW_CURSOR_DFT_WM,
589 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
590 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300591};
592static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300593 .fifo_size = PINEVIEW_CURSOR_FIFO,
594 .max_wm = PINEVIEW_CURSOR_MAX_WM,
595 .default_wm = PINEVIEW_CURSOR_DFT_WM,
596 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
597 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300598};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300599static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300600 .fifo_size = I965_CURSOR_FIFO,
601 .max_wm = I965_CURSOR_MAX_WM,
602 .default_wm = I965_CURSOR_DFT_WM,
603 .guard_size = 2,
604 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300605};
606static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300607 .fifo_size = I945_FIFO_SIZE,
608 .max_wm = I915_MAX_WM,
609 .default_wm = 1,
610 .guard_size = 2,
611 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300612};
613static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300614 .fifo_size = I915_FIFO_SIZE,
615 .max_wm = I915_MAX_WM,
616 .default_wm = 1,
617 .guard_size = 2,
618 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300619};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300620static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300621 .fifo_size = I855GM_FIFO_SIZE,
622 .max_wm = I915_MAX_WM,
623 .default_wm = 1,
624 .guard_size = 2,
625 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300626};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300627static const struct intel_watermark_params i830_bc_wm_info = {
628 .fifo_size = I855GM_FIFO_SIZE,
629 .max_wm = I915_MAX_WM/2,
630 .default_wm = 1,
631 .guard_size = 2,
632 .cacheline_size = I830_FIFO_LINE_SIZE,
633};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200634static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300635 .fifo_size = I830_FIFO_SIZE,
636 .max_wm = I915_MAX_WM,
637 .default_wm = 1,
638 .guard_size = 2,
639 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300640};
641
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300642/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300643 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
644 * @pixel_rate: Pipe pixel rate in kHz
645 * @cpp: Plane bytes per pixel
646 * @latency: Memory wakeup latency in 0.1us units
647 *
648 * Compute the watermark using the method 1 or "small buffer"
649 * formula. The caller may additonally add extra cachelines
650 * to account for TLB misses and clock crossings.
651 *
652 * This method is concerned with the short term drain rate
653 * of the FIFO, ie. it does not account for blanking periods
654 * which would effectively reduce the average drain rate across
655 * a longer period. The name "small" refers to the fact the
656 * FIFO is relatively small compared to the amount of data
657 * fetched.
658 *
659 * The FIFO level vs. time graph might look something like:
660 *
661 * |\ |\
662 * | \ | \
663 * __---__---__ (- plane active, _ blanking)
664 * -> time
665 *
666 * or perhaps like this:
667 *
668 * |\|\ |\|\
669 * __----__----__ (- plane active, _ blanking)
670 * -> time
671 *
672 * Returns:
673 * The watermark in bytes
674 */
675static unsigned int intel_wm_method1(unsigned int pixel_rate,
676 unsigned int cpp,
677 unsigned int latency)
678{
679 uint64_t ret;
680
681 ret = (uint64_t) pixel_rate * cpp * latency;
682 ret = DIV_ROUND_UP_ULL(ret, 10000);
683
684 return ret;
685}
686
687/**
688 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
689 * @pixel_rate: Pipe pixel rate in kHz
690 * @htotal: Pipe horizontal total
691 * @width: Plane width in pixels
692 * @cpp: Plane bytes per pixel
693 * @latency: Memory wakeup latency in 0.1us units
694 *
695 * Compute the watermark using the method 2 or "large buffer"
696 * formula. The caller may additonally add extra cachelines
697 * to account for TLB misses and clock crossings.
698 *
699 * This method is concerned with the long term drain rate
700 * of the FIFO, ie. it does account for blanking periods
701 * which effectively reduce the average drain rate across
702 * a longer period. The name "large" refers to the fact the
703 * FIFO is relatively large compared to the amount of data
704 * fetched.
705 *
706 * The FIFO level vs. time graph might look something like:
707 *
708 * |\___ |\___
709 * | \___ | \___
710 * | \ | \
711 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
712 * -> time
713 *
714 * Returns:
715 * The watermark in bytes
716 */
717static unsigned int intel_wm_method2(unsigned int pixel_rate,
718 unsigned int htotal,
719 unsigned int width,
720 unsigned int cpp,
721 unsigned int latency)
722{
723 unsigned int ret;
724
725 /*
726 * FIXME remove once all users are computing
727 * watermarks in the correct place.
728 */
729 if (WARN_ON_ONCE(htotal == 0))
730 htotal = 1;
731
732 ret = (latency * pixel_rate) / (htotal * 10000);
733 ret = (ret + 1) * width * cpp;
734
735 return ret;
736}
737
738/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300739 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300740 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300741 * @wm: chip FIFO params
Ville Syrjäläac484962016-01-20 21:05:26 +0200742 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300743 * @latency_ns: memory latency for the platform
744 *
745 * Calculate the watermark level (the level at which the display plane will
746 * start fetching from memory again). Each chip has a different display
747 * FIFO size and allocation, so the caller needs to figure that out and pass
748 * in the correct intel_watermark_params structure.
749 *
750 * As the pixel clock runs, the FIFO will be drained at a rate that depends
751 * on the pixel size. When it reaches the watermark level, it'll start
752 * fetching FIFO line sized based chunks from memory until the FIFO fills
753 * past the watermark point. If the FIFO drains completely, a FIFO underrun
754 * will occur, and a display engine hang could result.
755 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300756static unsigned int intel_calculate_wm(int pixel_rate,
757 const struct intel_watermark_params *wm,
758 int fifo_size, int cpp,
759 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300760{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300761 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300762
763 /*
764 * Note: we need to make sure we don't overflow for various clock &
765 * latency values.
766 * clocks go from a few thousand to several hundred thousand.
767 * latency is usually a few thousand
768 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300769 entries = intel_wm_method1(pixel_rate, cpp,
770 latency_ns / 100);
771 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
772 wm->guard_size;
773 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300774
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300775 wm_size = fifo_size - entries;
776 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300777
778 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300779 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300780 wm_size = wm->max_wm;
781 if (wm_size <= 0)
782 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300783
784 /*
785 * Bspec seems to indicate that the value shouldn't be lower than
786 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
787 * Lets go for 8 which is the burst size since certain platforms
788 * already use a hardcoded 8 (which is what the spec says should be
789 * done).
790 */
791 if (wm_size <= 8)
792 wm_size = 8;
793
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300794 return wm_size;
795}
796
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300797static bool is_disabling(int old, int new, int threshold)
798{
799 return old >= threshold && new < threshold;
800}
801
802static bool is_enabling(int old, int new, int threshold)
803{
804 return old < threshold && new >= threshold;
805}
806
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300807static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
808{
809 return dev_priv->wm.max_level + 1;
810}
811
Ville Syrjälä24304d812017-03-14 17:10:49 +0200812static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
813 const struct intel_plane_state *plane_state)
814{
815 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
816
817 /* FIXME check the 'enable' instead */
818 if (!crtc_state->base.active)
819 return false;
820
821 /*
822 * Treat cursor with fb as always visible since cursor updates
823 * can happen faster than the vrefresh rate, and the current
824 * watermark code doesn't handle that correctly. Cursor updates
825 * which set/clear the fb or change the cursor size are going
826 * to get throttled by intel_legacy_cursor_update() to work
827 * around this problem with the watermark code.
828 */
829 if (plane->id == PLANE_CURSOR)
830 return plane_state->base.fb != NULL;
831 else
832 return plane_state->base.visible;
833}
834
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200835static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300836{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200837 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300838
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200839 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200840 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300841 if (enabled)
842 return NULL;
843 enabled = crtc;
844 }
845 }
846
847 return enabled;
848}
849
Ville Syrjälä432081b2016-10-31 22:37:03 +0200850static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300851{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200852 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200853 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300854 const struct cxsr_latency *latency;
855 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300856 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300857
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100858 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
859 dev_priv->is_ddr3,
860 dev_priv->fsb_freq,
861 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300862 if (!latency) {
863 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300864 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300865 return;
866 }
867
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200868 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300869 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200870 const struct drm_display_mode *adjusted_mode =
871 &crtc->config->base.adjusted_mode;
872 const struct drm_framebuffer *fb =
873 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200874 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300875 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300876
877 /* Display SR */
878 wm = intel_calculate_wm(clock, &pineview_display_wm,
879 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200880 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300881 reg = I915_READ(DSPFW1);
882 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200883 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300884 I915_WRITE(DSPFW1, reg);
885 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
886
887 /* cursor SR */
888 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
889 pineview_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300890 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300891 reg = I915_READ(DSPFW3);
892 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200893 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300894 I915_WRITE(DSPFW3, reg);
895
896 /* Display HPLL off SR */
897 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
898 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200899 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300900 reg = I915_READ(DSPFW3);
901 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200902 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300903 I915_WRITE(DSPFW3, reg);
904
905 /* cursor HPLL off SR */
906 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
907 pineview_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300908 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300909 reg = I915_READ(DSPFW3);
910 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200911 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300912 I915_WRITE(DSPFW3, reg);
913 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
914
Imre Deak5209b1f2014-07-01 12:36:17 +0300915 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300916 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300917 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300918 }
919}
920
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300921/*
922 * Documentation says:
923 * "If the line size is small, the TLB fetches can get in the way of the
924 * data fetches, causing some lag in the pixel data return which is not
925 * accounted for in the above formulas. The following adjustment only
926 * needs to be applied if eight whole lines fit in the buffer at once.
927 * The WM is adjusted upwards by the difference between the FIFO size
928 * and the size of 8 whole lines. This adjustment is always performed
929 * in the actual pixel depth regardless of whether FBC is enabled or not."
930 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000931static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300932{
933 int tlb_miss = fifo_size * 64 - width * cpp * 8;
934
935 return max(0, tlb_miss);
936}
937
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300938static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
939 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300940{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300941 enum pipe pipe;
942
943 for_each_pipe(dev_priv, pipe)
944 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
945
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300946 I915_WRITE(DSPFW1,
947 FW_WM(wm->sr.plane, SR) |
948 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
949 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
950 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
951 I915_WRITE(DSPFW2,
952 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
953 FW_WM(wm->sr.fbc, FBC_SR) |
954 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
955 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
956 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
957 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
958 I915_WRITE(DSPFW3,
959 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
960 FW_WM(wm->sr.cursor, CURSOR_SR) |
961 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
962 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300963
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300964 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300965}
966
Ville Syrjälä15665972015-03-10 16:16:28 +0200967#define FW_WM_VLV(value, plane) \
968 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
969
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200970static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200971 const struct vlv_wm_values *wm)
972{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200973 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200974
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200975 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200976 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
977
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200978 I915_WRITE(VLV_DDL(pipe),
979 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
980 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
981 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
982 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
983 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200984
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200985 /*
986 * Zero the (unused) WM1 watermarks, and also clear all the
987 * high order bits so that there are no out of bounds values
988 * present in the registers during the reprogramming.
989 */
990 I915_WRITE(DSPHOWM, 0);
991 I915_WRITE(DSPHOWM1, 0);
992 I915_WRITE(DSPFW4, 0);
993 I915_WRITE(DSPFW5, 0);
994 I915_WRITE(DSPFW6, 0);
995
Ville Syrjäläae801522015-03-05 21:19:49 +0200996 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200997 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200998 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
999 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
1000 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001001 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001002 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
1003 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
1004 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001005 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +02001006 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +02001007
1008 if (IS_CHERRYVIEW(dev_priv)) {
1009 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001010 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1011 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001012 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001013 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1014 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001015 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001016 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1017 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001018 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001019 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001020 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1021 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1022 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1023 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1024 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1025 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1026 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1027 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1028 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001029 } else {
1030 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001031 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1032 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001033 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001034 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001035 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1036 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1037 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1038 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1039 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1040 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001041 }
1042
1043 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001044}
1045
Ville Syrjälä15665972015-03-10 16:16:28 +02001046#undef FW_WM_VLV
1047
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001048static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1049{
1050 /* all latencies in usec */
1051 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1052 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001053 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001054
Ville Syrjälä79d94302017-04-21 21:14:30 +03001055 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001056}
1057
1058static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1059{
1060 /*
1061 * DSPCNTR[13] supposedly controls whether the
1062 * primary plane can use the FIFO space otherwise
1063 * reserved for the sprite plane. It's not 100% clear
1064 * what the actual FIFO size is, but it looks like we
1065 * can happily set both primary and sprite watermarks
1066 * up to 127 cachelines. So that would seem to mean
1067 * that either DSPCNTR[13] doesn't do anything, or that
1068 * the total FIFO is >= 256 cachelines in size. Either
1069 * way, we don't seem to have to worry about this
1070 * repartitioning as the maximum watermark value the
1071 * register can hold for each plane is lower than the
1072 * minimum FIFO size.
1073 */
1074 switch (plane_id) {
1075 case PLANE_CURSOR:
1076 return 63;
1077 case PLANE_PRIMARY:
1078 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1079 case PLANE_SPRITE0:
1080 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1081 default:
1082 MISSING_CASE(plane_id);
1083 return 0;
1084 }
1085}
1086
1087static int g4x_fbc_fifo_size(int level)
1088{
1089 switch (level) {
1090 case G4X_WM_LEVEL_SR:
1091 return 7;
1092 case G4X_WM_LEVEL_HPLL:
1093 return 15;
1094 default:
1095 MISSING_CASE(level);
1096 return 0;
1097 }
1098}
1099
1100static uint16_t g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1101 const struct intel_plane_state *plane_state,
1102 int level)
1103{
1104 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1105 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1106 const struct drm_display_mode *adjusted_mode =
1107 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001108 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1109 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001110
1111 if (latency == 0)
1112 return USHRT_MAX;
1113
1114 if (!intel_wm_plane_visible(crtc_state, plane_state))
1115 return 0;
1116
1117 /*
1118 * Not 100% sure which way ELK should go here as the
1119 * spec only says CL/CTG should assume 32bpp and BW
1120 * doesn't need to. But as these things followed the
1121 * mobile vs. desktop lines on gen3 as well, let's
1122 * assume ELK doesn't need this.
1123 *
1124 * The spec also fails to list such a restriction for
1125 * the HPLL watermark, which seems a little strange.
1126 * Let's use 32bpp for the HPLL watermark as well.
1127 */
1128 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1129 level != G4X_WM_LEVEL_NORMAL)
1130 cpp = 4;
1131 else
1132 cpp = plane_state->base.fb->format->cpp[0];
1133
1134 clock = adjusted_mode->crtc_clock;
1135 htotal = adjusted_mode->crtc_htotal;
1136
1137 if (plane->id == PLANE_CURSOR)
1138 width = plane_state->base.crtc_w;
1139 else
1140 width = drm_rect_width(&plane_state->base.dst);
1141
1142 if (plane->id == PLANE_CURSOR) {
1143 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1144 } else if (plane->id == PLANE_PRIMARY &&
1145 level == G4X_WM_LEVEL_NORMAL) {
1146 wm = intel_wm_method1(clock, cpp, latency);
1147 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001148 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001149
1150 small = intel_wm_method1(clock, cpp, latency);
1151 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1152
1153 wm = min(small, large);
1154 }
1155
1156 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1157 width, cpp);
1158
1159 wm = DIV_ROUND_UP(wm, 64) + 2;
1160
Chris Wilson1a1f1282017-11-07 14:03:38 +00001161 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001162}
1163
1164static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1165 int level, enum plane_id plane_id, u16 value)
1166{
1167 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1168 bool dirty = false;
1169
1170 for (; level < intel_wm_num_levels(dev_priv); level++) {
1171 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1172
1173 dirty |= raw->plane[plane_id] != value;
1174 raw->plane[plane_id] = value;
1175 }
1176
1177 return dirty;
1178}
1179
1180static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1181 int level, u16 value)
1182{
1183 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1184 bool dirty = false;
1185
1186 /* NORMAL level doesn't have an FBC watermark */
1187 level = max(level, G4X_WM_LEVEL_SR);
1188
1189 for (; level < intel_wm_num_levels(dev_priv); level++) {
1190 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1191
1192 dirty |= raw->fbc != value;
1193 raw->fbc = value;
1194 }
1195
1196 return dirty;
1197}
1198
1199static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
1200 const struct intel_plane_state *pstate,
1201 uint32_t pri_val);
1202
1203static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1204 const struct intel_plane_state *plane_state)
1205{
1206 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1207 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1208 enum plane_id plane_id = plane->id;
1209 bool dirty = false;
1210 int level;
1211
1212 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1213 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1214 if (plane_id == PLANE_PRIMARY)
1215 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1216 goto out;
1217 }
1218
1219 for (level = 0; level < num_levels; level++) {
1220 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1221 int wm, max_wm;
1222
1223 wm = g4x_compute_wm(crtc_state, plane_state, level);
1224 max_wm = g4x_plane_fifo_size(plane_id, level);
1225
1226 if (wm > max_wm)
1227 break;
1228
1229 dirty |= raw->plane[plane_id] != wm;
1230 raw->plane[plane_id] = wm;
1231
1232 if (plane_id != PLANE_PRIMARY ||
1233 level == G4X_WM_LEVEL_NORMAL)
1234 continue;
1235
1236 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1237 raw->plane[plane_id]);
1238 max_wm = g4x_fbc_fifo_size(level);
1239
1240 /*
1241 * FBC wm is not mandatory as we
1242 * can always just disable its use.
1243 */
1244 if (wm > max_wm)
1245 wm = USHRT_MAX;
1246
1247 dirty |= raw->fbc != wm;
1248 raw->fbc = wm;
1249 }
1250
1251 /* mark watermarks as invalid */
1252 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1253
1254 if (plane_id == PLANE_PRIMARY)
1255 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1256
1257 out:
1258 if (dirty) {
1259 DRM_DEBUG_KMS("%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1260 plane->base.name,
1261 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1262 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1263 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
1264
1265 if (plane_id == PLANE_PRIMARY)
1266 DRM_DEBUG_KMS("FBC watermarks: SR=%d, HPLL=%d\n",
1267 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1268 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
1269 }
1270
1271 return dirty;
1272}
1273
1274static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1275 enum plane_id plane_id, int level)
1276{
1277 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1278
1279 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1280}
1281
1282static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1283 int level)
1284{
1285 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1286
1287 if (level > dev_priv->wm.max_level)
1288 return false;
1289
1290 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1291 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1292 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1293}
1294
1295/* mark all levels starting from 'level' as invalid */
1296static void g4x_invalidate_wms(struct intel_crtc *crtc,
1297 struct g4x_wm_state *wm_state, int level)
1298{
1299 if (level <= G4X_WM_LEVEL_NORMAL) {
1300 enum plane_id plane_id;
1301
1302 for_each_plane_id_on_crtc(crtc, plane_id)
1303 wm_state->wm.plane[plane_id] = USHRT_MAX;
1304 }
1305
1306 if (level <= G4X_WM_LEVEL_SR) {
1307 wm_state->cxsr = false;
1308 wm_state->sr.cursor = USHRT_MAX;
1309 wm_state->sr.plane = USHRT_MAX;
1310 wm_state->sr.fbc = USHRT_MAX;
1311 }
1312
1313 if (level <= G4X_WM_LEVEL_HPLL) {
1314 wm_state->hpll_en = false;
1315 wm_state->hpll.cursor = USHRT_MAX;
1316 wm_state->hpll.plane = USHRT_MAX;
1317 wm_state->hpll.fbc = USHRT_MAX;
1318 }
1319}
1320
1321static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1322{
1323 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1324 struct intel_atomic_state *state =
1325 to_intel_atomic_state(crtc_state->base.state);
1326 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
1327 int num_active_planes = hweight32(crtc_state->active_planes &
1328 ~BIT(PLANE_CURSOR));
1329 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001330 const struct intel_plane_state *old_plane_state;
1331 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001332 struct intel_plane *plane;
1333 enum plane_id plane_id;
1334 int i, level;
1335 unsigned int dirty = 0;
1336
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001337 for_each_oldnew_intel_plane_in_state(state, plane,
1338 old_plane_state,
1339 new_plane_state, i) {
1340 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001341 old_plane_state->base.crtc != &crtc->base)
1342 continue;
1343
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001344 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001345 dirty |= BIT(plane->id);
1346 }
1347
1348 if (!dirty)
1349 return 0;
1350
1351 level = G4X_WM_LEVEL_NORMAL;
1352 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1353 goto out;
1354
1355 raw = &crtc_state->wm.g4x.raw[level];
1356 for_each_plane_id_on_crtc(crtc, plane_id)
1357 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1358
1359 level = G4X_WM_LEVEL_SR;
1360
1361 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1362 goto out;
1363
1364 raw = &crtc_state->wm.g4x.raw[level];
1365 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1366 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1367 wm_state->sr.fbc = raw->fbc;
1368
1369 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1370
1371 level = G4X_WM_LEVEL_HPLL;
1372
1373 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1374 goto out;
1375
1376 raw = &crtc_state->wm.g4x.raw[level];
1377 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1378 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1379 wm_state->hpll.fbc = raw->fbc;
1380
1381 wm_state->hpll_en = wm_state->cxsr;
1382
1383 level++;
1384
1385 out:
1386 if (level == G4X_WM_LEVEL_NORMAL)
1387 return -EINVAL;
1388
1389 /* invalidate the higher levels */
1390 g4x_invalidate_wms(crtc, wm_state, level);
1391
1392 /*
1393 * Determine if the FBC watermark(s) can be used. IF
1394 * this isn't the case we prefer to disable the FBC
1395 ( watermark(s) rather than disable the SR/HPLL
1396 * level(s) entirely.
1397 */
1398 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1399
1400 if (level >= G4X_WM_LEVEL_SR &&
1401 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1402 wm_state->fbc_en = false;
1403 else if (level >= G4X_WM_LEVEL_HPLL &&
1404 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1405 wm_state->fbc_en = false;
1406
1407 return 0;
1408}
1409
1410static int g4x_compute_intermediate_wm(struct drm_device *dev,
1411 struct intel_crtc *crtc,
1412 struct intel_crtc_state *crtc_state)
1413{
1414 struct g4x_wm_state *intermediate = &crtc_state->wm.g4x.intermediate;
1415 const struct g4x_wm_state *optimal = &crtc_state->wm.g4x.optimal;
1416 const struct g4x_wm_state *active = &crtc->wm.active.g4x;
1417 enum plane_id plane_id;
1418
1419 intermediate->cxsr = optimal->cxsr && active->cxsr &&
1420 !crtc_state->disable_cxsr;
1421 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
1422 !crtc_state->disable_cxsr;
1423 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1424
1425 for_each_plane_id_on_crtc(crtc, plane_id) {
1426 intermediate->wm.plane[plane_id] =
1427 max(optimal->wm.plane[plane_id],
1428 active->wm.plane[plane_id]);
1429
1430 WARN_ON(intermediate->wm.plane[plane_id] >
1431 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1432 }
1433
1434 intermediate->sr.plane = max(optimal->sr.plane,
1435 active->sr.plane);
1436 intermediate->sr.cursor = max(optimal->sr.cursor,
1437 active->sr.cursor);
1438 intermediate->sr.fbc = max(optimal->sr.fbc,
1439 active->sr.fbc);
1440
1441 intermediate->hpll.plane = max(optimal->hpll.plane,
1442 active->hpll.plane);
1443 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1444 active->hpll.cursor);
1445 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1446 active->hpll.fbc);
1447
1448 WARN_ON((intermediate->sr.plane >
1449 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1450 intermediate->sr.cursor >
1451 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1452 intermediate->cxsr);
1453 WARN_ON((intermediate->sr.plane >
1454 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1455 intermediate->sr.cursor >
1456 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1457 intermediate->hpll_en);
1458
1459 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1460 intermediate->fbc_en && intermediate->cxsr);
1461 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1462 intermediate->fbc_en && intermediate->hpll_en);
1463
1464 /*
1465 * If our intermediate WM are identical to the final WM, then we can
1466 * omit the post-vblank programming; only update if it's different.
1467 */
1468 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
1469 crtc_state->wm.need_postvbl_update = true;
1470
1471 return 0;
1472}
1473
1474static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1475 struct g4x_wm_values *wm)
1476{
1477 struct intel_crtc *crtc;
1478 int num_active_crtcs = 0;
1479
1480 wm->cxsr = true;
1481 wm->hpll_en = true;
1482 wm->fbc_en = true;
1483
1484 for_each_intel_crtc(&dev_priv->drm, crtc) {
1485 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1486
1487 if (!crtc->active)
1488 continue;
1489
1490 if (!wm_state->cxsr)
1491 wm->cxsr = false;
1492 if (!wm_state->hpll_en)
1493 wm->hpll_en = false;
1494 if (!wm_state->fbc_en)
1495 wm->fbc_en = false;
1496
1497 num_active_crtcs++;
1498 }
1499
1500 if (num_active_crtcs != 1) {
1501 wm->cxsr = false;
1502 wm->hpll_en = false;
1503 wm->fbc_en = false;
1504 }
1505
1506 for_each_intel_crtc(&dev_priv->drm, crtc) {
1507 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1508 enum pipe pipe = crtc->pipe;
1509
1510 wm->pipe[pipe] = wm_state->wm;
1511 if (crtc->active && wm->cxsr)
1512 wm->sr = wm_state->sr;
1513 if (crtc->active && wm->hpll_en)
1514 wm->hpll = wm_state->hpll;
1515 }
1516}
1517
1518static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1519{
1520 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1521 struct g4x_wm_values new_wm = {};
1522
1523 g4x_merge_wm(dev_priv, &new_wm);
1524
1525 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1526 return;
1527
1528 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1529 _intel_set_memory_cxsr(dev_priv, false);
1530
1531 g4x_write_wm_values(dev_priv, &new_wm);
1532
1533 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1534 _intel_set_memory_cxsr(dev_priv, true);
1535
1536 *old_wm = new_wm;
1537}
1538
1539static void g4x_initial_watermarks(struct intel_atomic_state *state,
1540 struct intel_crtc_state *crtc_state)
1541{
1542 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1543 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1544
1545 mutex_lock(&dev_priv->wm.wm_mutex);
1546 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1547 g4x_program_watermarks(dev_priv);
1548 mutex_unlock(&dev_priv->wm.wm_mutex);
1549}
1550
1551static void g4x_optimize_watermarks(struct intel_atomic_state *state,
1552 struct intel_crtc_state *crtc_state)
1553{
1554 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1555 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1556
1557 if (!crtc_state->wm.need_postvbl_update)
1558 return;
1559
1560 mutex_lock(&dev_priv->wm.wm_mutex);
1561 intel_crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
1562 g4x_program_watermarks(dev_priv);
1563 mutex_unlock(&dev_priv->wm.wm_mutex);
1564}
1565
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001566/* latency must be in 0.1us units. */
1567static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001568 unsigned int htotal,
1569 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001570 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001571 unsigned int latency)
1572{
1573 unsigned int ret;
1574
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001575 ret = intel_wm_method2(pixel_rate, htotal,
1576 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001577 ret = DIV_ROUND_UP(ret, 64);
1578
1579 return ret;
1580}
1581
Ville Syrjäläbb726512016-10-31 22:37:24 +02001582static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001583{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001584 /* all latencies in usec */
1585 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1586
Ville Syrjälä58590c12015-09-08 21:05:12 +03001587 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1588
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001589 if (IS_CHERRYVIEW(dev_priv)) {
1590 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1591 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001592
1593 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001594 }
1595}
1596
Ville Syrjäläe339d672016-11-28 19:37:17 +02001597static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1598 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001599 int level)
1600{
Ville Syrjäläe339d672016-11-28 19:37:17 +02001601 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001602 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001603 const struct drm_display_mode *adjusted_mode =
1604 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001605 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001606
1607 if (dev_priv->wm.pri_latency[level] == 0)
1608 return USHRT_MAX;
1609
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001610 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001611 return 0;
1612
Daniel Vetteref426c12017-01-04 11:41:10 +01001613 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001614 clock = adjusted_mode->crtc_clock;
1615 htotal = adjusted_mode->crtc_htotal;
1616 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001617
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001618 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001619 /*
1620 * FIXME the formula gives values that are
1621 * too big for the cursor FIFO, and hence we
1622 * would never be able to use cursors. For
1623 * now just hardcode the watermark.
1624 */
1625 wm = 63;
1626 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001627 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001628 dev_priv->wm.pri_latency[level] * 10);
1629 }
1630
Chris Wilson1a1f1282017-11-07 14:03:38 +00001631 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001632}
1633
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001634static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1635{
1636 return (active_planes & (BIT(PLANE_SPRITE0) |
1637 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1638}
1639
Ville Syrjälä5012e602017-03-02 19:14:56 +02001640static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001641{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001642 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001643 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001644 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001645 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001646 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1647 int num_active_planes = hweight32(active_planes);
1648 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001649 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001650 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001651 unsigned int total_rate;
1652 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001653
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001654 /*
1655 * When enabling sprite0 after sprite1 has already been enabled
1656 * we tend to get an underrun unless sprite0 already has some
1657 * FIFO space allcoated. Hence we always allocate at least one
1658 * cacheline for sprite0 whenever sprite1 is enabled.
1659 *
1660 * All other plane enable sequences appear immune to this problem.
1661 */
1662 if (vlv_need_sprite0_fifo_workaround(active_planes))
1663 sprite0_fifo_extra = 1;
1664
Ville Syrjälä5012e602017-03-02 19:14:56 +02001665 total_rate = raw->plane[PLANE_PRIMARY] +
1666 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001667 raw->plane[PLANE_SPRITE1] +
1668 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001669
Ville Syrjälä5012e602017-03-02 19:14:56 +02001670 if (total_rate > fifo_size)
1671 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001672
Ville Syrjälä5012e602017-03-02 19:14:56 +02001673 if (total_rate == 0)
1674 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001675
Ville Syrjälä5012e602017-03-02 19:14:56 +02001676 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001677 unsigned int rate;
1678
Ville Syrjälä5012e602017-03-02 19:14:56 +02001679 if ((active_planes & BIT(plane_id)) == 0) {
1680 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001681 continue;
1682 }
1683
Ville Syrjälä5012e602017-03-02 19:14:56 +02001684 rate = raw->plane[plane_id];
1685 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1686 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001687 }
1688
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001689 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1690 fifo_left -= sprite0_fifo_extra;
1691
Ville Syrjälä5012e602017-03-02 19:14:56 +02001692 fifo_state->plane[PLANE_CURSOR] = 63;
1693
1694 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001695
1696 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001697 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001698 int plane_extra;
1699
1700 if (fifo_left == 0)
1701 break;
1702
Ville Syrjälä5012e602017-03-02 19:14:56 +02001703 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001704 continue;
1705
1706 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001707 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001708 fifo_left -= plane_extra;
1709 }
1710
Ville Syrjälä5012e602017-03-02 19:14:56 +02001711 WARN_ON(active_planes != 0 && fifo_left != 0);
1712
1713 /* give it all to the first plane if none are active */
1714 if (active_planes == 0) {
1715 WARN_ON(fifo_left != fifo_size);
1716 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1717 }
1718
1719 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001720}
1721
Ville Syrjäläff32c542017-03-02 19:14:57 +02001722/* mark all levels starting from 'level' as invalid */
1723static void vlv_invalidate_wms(struct intel_crtc *crtc,
1724 struct vlv_wm_state *wm_state, int level)
1725{
1726 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1727
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001728 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001729 enum plane_id plane_id;
1730
1731 for_each_plane_id_on_crtc(crtc, plane_id)
1732 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1733
1734 wm_state->sr[level].cursor = USHRT_MAX;
1735 wm_state->sr[level].plane = USHRT_MAX;
1736 }
1737}
1738
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001739static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1740{
1741 if (wm > fifo_size)
1742 return USHRT_MAX;
1743 else
1744 return fifo_size - wm;
1745}
1746
Ville Syrjäläff32c542017-03-02 19:14:57 +02001747/*
1748 * Starting from 'level' set all higher
1749 * levels to 'value' in the "raw" watermarks.
1750 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001751static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001752 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001753{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001754 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001755 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001756 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001757
Ville Syrjäläff32c542017-03-02 19:14:57 +02001758 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001759 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001760
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001761 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001762 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001763 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001764
1765 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001766}
1767
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001768static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1769 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001770{
1771 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1772 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001773 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001774 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001775 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001776
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001777 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001778 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1779 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001780 }
1781
1782 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001783 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001784 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1785 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1786
Ville Syrjäläff32c542017-03-02 19:14:57 +02001787 if (wm > max_wm)
1788 break;
1789
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001790 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001791 raw->plane[plane_id] = wm;
1792 }
1793
1794 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001795 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001796
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001797out:
1798 if (dirty)
Ville Syrjälä57a65282017-04-21 21:14:22 +03001799 DRM_DEBUG_KMS("%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001800 plane->base.name,
1801 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1802 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1803 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1804
1805 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001806}
1807
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001808static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1809 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001810{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001811 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001812 &crtc_state->wm.vlv.raw[level];
1813 const struct vlv_fifo_state *fifo_state =
1814 &crtc_state->wm.vlv.fifo_state;
1815
1816 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1817}
1818
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001819static bool vlv_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001820{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001821 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1822 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1823 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1824 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001825}
1826
1827static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001828{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001829 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001830 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001831 struct intel_atomic_state *state =
1832 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001833 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001834 const struct vlv_fifo_state *fifo_state =
1835 &crtc_state->wm.vlv.fifo_state;
1836 int num_active_planes = hweight32(crtc_state->active_planes &
1837 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001838 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001839 const struct intel_plane_state *old_plane_state;
1840 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001841 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001842 enum plane_id plane_id;
1843 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001844 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001845
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001846 for_each_oldnew_intel_plane_in_state(state, plane,
1847 old_plane_state,
1848 new_plane_state, i) {
1849 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjäläff32c542017-03-02 19:14:57 +02001850 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001851 continue;
1852
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001853 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001854 dirty |= BIT(plane->id);
1855 }
1856
1857 /*
1858 * DSPARB registers may have been reset due to the
1859 * power well being turned off. Make sure we restore
1860 * them to a consistent state even if no primary/sprite
1861 * planes are initially active.
1862 */
1863 if (needs_modeset)
1864 crtc_state->fifo_changed = true;
1865
1866 if (!dirty)
1867 return 0;
1868
1869 /* cursor changes don't warrant a FIFO recompute */
1870 if (dirty & ~BIT(PLANE_CURSOR)) {
1871 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001872 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001873 const struct vlv_fifo_state *old_fifo_state =
1874 &old_crtc_state->wm.vlv.fifo_state;
1875
1876 ret = vlv_compute_fifo(crtc_state);
1877 if (ret)
1878 return ret;
1879
1880 if (needs_modeset ||
1881 memcmp(old_fifo_state, fifo_state,
1882 sizeof(*fifo_state)) != 0)
1883 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001884 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001885
Ville Syrjäläff32c542017-03-02 19:14:57 +02001886 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001887 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001888 /*
1889 * Note that enabling cxsr with no primary/sprite planes
1890 * enabled can wedge the pipe. Hence we only allow cxsr
1891 * with exactly one enabled primary/sprite plane.
1892 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001893 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001894
Ville Syrjälä5012e602017-03-02 19:14:56 +02001895 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001896 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001897 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001898
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001899 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001900 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001901
Ville Syrjäläff32c542017-03-02 19:14:57 +02001902 for_each_plane_id_on_crtc(crtc, plane_id) {
1903 wm_state->wm[level].plane[plane_id] =
1904 vlv_invert_wm_value(raw->plane[plane_id],
1905 fifo_state->plane[plane_id]);
1906 }
1907
1908 wm_state->sr[level].plane =
1909 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001910 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001911 raw->plane[PLANE_SPRITE1]),
1912 sr_fifo_size);
1913
1914 wm_state->sr[level].cursor =
1915 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1916 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001917 }
1918
Ville Syrjäläff32c542017-03-02 19:14:57 +02001919 if (level == 0)
1920 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001921
Ville Syrjäläff32c542017-03-02 19:14:57 +02001922 /* limit to only levels we can actually handle */
1923 wm_state->num_levels = level;
1924
1925 /* invalidate the higher levels */
1926 vlv_invalidate_wms(crtc, wm_state, level);
1927
1928 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001929}
1930
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001931#define VLV_FIFO(plane, value) \
1932 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1933
Ville Syrjäläff32c542017-03-02 19:14:57 +02001934static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1935 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001936{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001937 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001938 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001939 const struct vlv_fifo_state *fifo_state =
1940 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001941 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001942
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001943 if (!crtc_state->fifo_changed)
1944 return;
1945
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001946 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1947 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1948 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001949
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001950 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1951 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001952
Ville Syrjäläc137d662017-03-02 19:15:06 +02001953 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1954
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001955 /*
1956 * uncore.lock serves a double purpose here. It allows us to
1957 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1958 * it protects the DSPARB registers from getting clobbered by
1959 * parallel updates from multiple pipes.
1960 *
1961 * intel_pipe_update_start() has already disabled interrupts
1962 * for us, so a plain spin_lock() is sufficient here.
1963 */
1964 spin_lock(&dev_priv->uncore.lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001965
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001966 switch (crtc->pipe) {
1967 uint32_t dsparb, dsparb2, dsparb3;
1968 case PIPE_A:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001969 dsparb = I915_READ_FW(DSPARB);
1970 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001971
1972 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1973 VLV_FIFO(SPRITEB, 0xff));
1974 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1975 VLV_FIFO(SPRITEB, sprite1_start));
1976
1977 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1978 VLV_FIFO(SPRITEB_HI, 0x1));
1979 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1980 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1981
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001982 I915_WRITE_FW(DSPARB, dsparb);
1983 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001984 break;
1985 case PIPE_B:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001986 dsparb = I915_READ_FW(DSPARB);
1987 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001988
1989 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1990 VLV_FIFO(SPRITED, 0xff));
1991 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1992 VLV_FIFO(SPRITED, sprite1_start));
1993
1994 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1995 VLV_FIFO(SPRITED_HI, 0xff));
1996 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
1997 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
1998
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001999 I915_WRITE_FW(DSPARB, dsparb);
2000 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002001 break;
2002 case PIPE_C:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002003 dsparb3 = I915_READ_FW(DSPARB3);
2004 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002005
2006 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2007 VLV_FIFO(SPRITEF, 0xff));
2008 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2009 VLV_FIFO(SPRITEF, sprite1_start));
2010
2011 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2012 VLV_FIFO(SPRITEF_HI, 0xff));
2013 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2014 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2015
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002016 I915_WRITE_FW(DSPARB3, dsparb3);
2017 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002018 break;
2019 default:
2020 break;
2021 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002022
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002023 POSTING_READ_FW(DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002024
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002025 spin_unlock(&dev_priv->uncore.lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002026}
2027
2028#undef VLV_FIFO
2029
Ville Syrjälä4841da52017-03-02 19:14:59 +02002030static int vlv_compute_intermediate_wm(struct drm_device *dev,
2031 struct intel_crtc *crtc,
2032 struct intel_crtc_state *crtc_state)
2033{
2034 struct vlv_wm_state *intermediate = &crtc_state->wm.vlv.intermediate;
2035 const struct vlv_wm_state *optimal = &crtc_state->wm.vlv.optimal;
2036 const struct vlv_wm_state *active = &crtc->wm.active.vlv;
2037 int level;
2038
2039 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002040 intermediate->cxsr = optimal->cxsr && active->cxsr &&
2041 !crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002042
2043 for (level = 0; level < intermediate->num_levels; level++) {
2044 enum plane_id plane_id;
2045
2046 for_each_plane_id_on_crtc(crtc, plane_id) {
2047 intermediate->wm[level].plane[plane_id] =
2048 min(optimal->wm[level].plane[plane_id],
2049 active->wm[level].plane[plane_id]);
2050 }
2051
2052 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2053 active->sr[level].plane);
2054 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2055 active->sr[level].cursor);
2056 }
2057
2058 vlv_invalidate_wms(crtc, intermediate, level);
2059
2060 /*
2061 * If our intermediate WM are identical to the final WM, then we can
2062 * omit the post-vblank programming; only update if it's different.
2063 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002064 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
2065 crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002066
2067 return 0;
2068}
2069
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002070static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002071 struct vlv_wm_values *wm)
2072{
2073 struct intel_crtc *crtc;
2074 int num_active_crtcs = 0;
2075
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002076 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002077 wm->cxsr = true;
2078
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002079 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002080 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002081
2082 if (!crtc->active)
2083 continue;
2084
2085 if (!wm_state->cxsr)
2086 wm->cxsr = false;
2087
2088 num_active_crtcs++;
2089 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2090 }
2091
2092 if (num_active_crtcs != 1)
2093 wm->cxsr = false;
2094
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002095 if (num_active_crtcs > 1)
2096 wm->level = VLV_WM_LEVEL_PM2;
2097
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002098 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002099 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002100 enum pipe pipe = crtc->pipe;
2101
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002102 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002103 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002104 wm->sr = wm_state->sr[wm->level];
2105
Ville Syrjälä1b313892016-11-28 19:37:08 +02002106 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2107 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2108 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2109 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002110 }
2111}
2112
Ville Syrjäläff32c542017-03-02 19:14:57 +02002113static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002114{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002115 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2116 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002117
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002118 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002119
Ville Syrjäläff32c542017-03-02 19:14:57 +02002120 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002121 return;
2122
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002123 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002124 chv_set_memory_dvfs(dev_priv, false);
2125
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002126 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002127 chv_set_memory_pm5(dev_priv, false);
2128
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002129 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002130 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002131
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002132 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002133
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002134 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002135 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002136
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002137 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002138 chv_set_memory_pm5(dev_priv, true);
2139
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002140 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002141 chv_set_memory_dvfs(dev_priv, true);
2142
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002143 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002144}
2145
Ville Syrjäläff32c542017-03-02 19:14:57 +02002146static void vlv_initial_watermarks(struct intel_atomic_state *state,
2147 struct intel_crtc_state *crtc_state)
2148{
2149 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2150 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
2151
2152 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002153 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2154 vlv_program_watermarks(dev_priv);
2155 mutex_unlock(&dev_priv->wm.wm_mutex);
2156}
2157
2158static void vlv_optimize_watermarks(struct intel_atomic_state *state,
2159 struct intel_crtc_state *crtc_state)
2160{
2161 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2162 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2163
2164 if (!crtc_state->wm.need_postvbl_update)
2165 return;
2166
2167 mutex_lock(&dev_priv->wm.wm_mutex);
2168 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002169 vlv_program_watermarks(dev_priv);
2170 mutex_unlock(&dev_priv->wm.wm_mutex);
2171}
2172
Ville Syrjälä432081b2016-10-31 22:37:03 +02002173static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002174{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002175 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002176 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002177 int srwm = 1;
2178 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002179 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002180
2181 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002182 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002183 if (crtc) {
2184 /* self-refresh has much higher latency */
2185 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002186 const struct drm_display_mode *adjusted_mode =
2187 &crtc->config->base.adjusted_mode;
2188 const struct drm_framebuffer *fb =
2189 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002190 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002191 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002192 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002193 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002194 int entries;
2195
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002196 entries = intel_wm_method2(clock, htotal,
2197 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002198 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2199 srwm = I965_FIFO_SIZE - entries;
2200 if (srwm < 0)
2201 srwm = 1;
2202 srwm &= 0x1ff;
2203 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
2204 entries, srwm);
2205
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002206 entries = intel_wm_method2(clock, htotal,
2207 crtc->base.cursor->state->crtc_w, 4,
2208 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002209 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002210 i965_cursor_wm_info.cacheline_size) +
2211 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002212
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002213 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002214 if (cursor_sr > i965_cursor_wm_info.max_wm)
2215 cursor_sr = i965_cursor_wm_info.max_wm;
2216
2217 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
2218 "cursor %d\n", srwm, cursor_sr);
2219
Imre Deak98584252014-06-13 14:54:20 +03002220 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002221 } else {
Imre Deak98584252014-06-13 14:54:20 +03002222 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002223 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002224 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002225 }
2226
2227 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2228 srwm);
2229
2230 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002231 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2232 FW_WM(8, CURSORB) |
2233 FW_WM(8, PLANEB) |
2234 FW_WM(8, PLANEA));
2235 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2236 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002237 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002238 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002239
2240 if (cxsr_enabled)
2241 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002242}
2243
Ville Syrjäläf4998962015-03-10 17:02:21 +02002244#undef FW_WM
2245
Ville Syrjälä432081b2016-10-31 22:37:03 +02002246static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002247{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002248 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002249 const struct intel_watermark_params *wm_info;
2250 uint32_t fwater_lo;
2251 uint32_t fwater_hi;
2252 int cwm, srwm = 1;
2253 int fifo_size;
2254 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002255 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002256
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002257 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002258 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002259 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002260 wm_info = &i915_wm_info;
2261 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002262 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002263
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002264 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 0);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02002265 crtc = intel_get_crtc_for_plane(dev_priv, 0);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002266 if (intel_crtc_active(crtc)) {
2267 const struct drm_display_mode *adjusted_mode =
2268 &crtc->config->base.adjusted_mode;
2269 const struct drm_framebuffer *fb =
2270 crtc->base.primary->state->fb;
2271 int cpp;
2272
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002273 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002274 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002275 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002276 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002277
Damien Lespiau241bfc32013-09-25 16:45:37 +01002278 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002279 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002280 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002281 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002282 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002283 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002284 if (planea_wm > (long)wm_info->max_wm)
2285 planea_wm = wm_info->max_wm;
2286 }
2287
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002288 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002289 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002290
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002291 fifo_size = dev_priv->display.get_fifo_size(dev_priv, 1);
Ville Syrjäläb91eb5c2016-10-31 22:37:09 +02002292 crtc = intel_get_crtc_for_plane(dev_priv, 1);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002293 if (intel_crtc_active(crtc)) {
2294 const struct drm_display_mode *adjusted_mode =
2295 &crtc->config->base.adjusted_mode;
2296 const struct drm_framebuffer *fb =
2297 crtc->base.primary->state->fb;
2298 int cpp;
2299
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002300 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002301 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002302 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002303 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002304
Damien Lespiau241bfc32013-09-25 16:45:37 +01002305 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002306 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002307 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002308 if (enabled == NULL)
2309 enabled = crtc;
2310 else
2311 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002312 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002313 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002314 if (planeb_wm > (long)wm_info->max_wm)
2315 planeb_wm = wm_info->max_wm;
2316 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002317
2318 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2319
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002320 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002321 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002322
Ville Syrjäläefc26112016-10-31 22:37:04 +02002323 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002324
2325 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002326 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002327 enabled = NULL;
2328 }
2329
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002330 /*
2331 * Overlay gets an aggressive default since video jitter is bad.
2332 */
2333 cwm = 2;
2334
2335 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002336 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002337
2338 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002339 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002340 /* self-refresh has much higher latency */
2341 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002342 const struct drm_display_mode *adjusted_mode =
2343 &enabled->config->base.adjusted_mode;
2344 const struct drm_framebuffer *fb =
2345 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002346 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002347 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002348 int hdisplay = enabled->config->pipe_src_w;
2349 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002350 int entries;
2351
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002352 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002353 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002354 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002355 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002356
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002357 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2358 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002359 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
2360 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
2361 srwm = wm_info->fifo_size - entries;
2362 if (srwm < 0)
2363 srwm = 1;
2364
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002365 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002366 I915_WRITE(FW_BLC_SELF,
2367 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002368 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002369 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2370 }
2371
2372 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2373 planea_wm, planeb_wm, cwm, srwm);
2374
2375 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2376 fwater_hi = (cwm & 0x1f);
2377
2378 /* Set request length to 8 cachelines per fetch */
2379 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2380 fwater_hi = fwater_hi | (1 << 8);
2381
2382 I915_WRITE(FW_BLC, fwater_lo);
2383 I915_WRITE(FW_BLC2, fwater_hi);
2384
Imre Deak5209b1f2014-07-01 12:36:17 +03002385 if (enabled)
2386 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002387}
2388
Ville Syrjälä432081b2016-10-31 22:37:03 +02002389static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002390{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002391 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002392 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002393 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002394 uint32_t fwater_lo;
2395 int planea_wm;
2396
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002397 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002398 if (crtc == NULL)
2399 return;
2400
Ville Syrjäläefc26112016-10-31 22:37:04 +02002401 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002402 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002403 &i845_wm_info,
Ville Syrjäläef0f5e92016-10-31 22:37:17 +02002404 dev_priv->display.get_fifo_size(dev_priv, 0),
Chris Wilson5aef6002014-09-03 11:56:07 +01002405 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002406 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2407 fwater_lo |= (3<<8) | planea_wm;
2408
2409 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
2410
2411 I915_WRITE(FW_BLC, fwater_lo);
2412}
2413
Ville Syrjälä37126462013-08-01 16:18:55 +03002414/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002415static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2416 unsigned int cpp,
2417 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002418{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002419 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002420
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002421 ret = intel_wm_method1(pixel_rate, cpp, latency);
2422 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002423
2424 return ret;
2425}
2426
Ville Syrjälä37126462013-08-01 16:18:55 +03002427/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002428static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2429 unsigned int htotal,
2430 unsigned int width,
2431 unsigned int cpp,
2432 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002433{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002434 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002435
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002436 ret = intel_wm_method2(pixel_rate, htotal,
2437 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002438 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002439
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002440 return ret;
2441}
2442
Ville Syrjälä23297042013-07-05 11:57:17 +03002443static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02002444 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002445{
Matt Roper15126882015-12-03 11:37:40 -08002446 /*
2447 * Neither of these should be possible since this function shouldn't be
2448 * called if the CRTC is off or the plane is invisible. But let's be
2449 * extra paranoid to avoid a potential divide-by-zero if we screw up
2450 * elsewhere in the driver.
2451 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002452 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002453 return 0;
2454 if (WARN_ON(!horiz_pixels))
2455 return 0;
2456
Ville Syrjäläac484962016-01-20 21:05:26 +02002457 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002458}
2459
Imre Deak820c1982013-12-17 14:46:36 +02002460struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002461 uint16_t pri;
2462 uint16_t spr;
2463 uint16_t cur;
2464 uint16_t fbc;
2465};
2466
Ville Syrjälä37126462013-08-01 16:18:55 +03002467/*
2468 * For both WM_PIPE and WM_LP.
2469 * mem_value must be in 0.1us units.
2470 */
Matt Roper7221fc32015-09-24 15:53:08 -07002471static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002472 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002473 uint32_t mem_value,
2474 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002475{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002476 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002477 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002478
Ville Syrjälä24304d812017-03-14 17:10:49 +02002479 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002480 return 0;
2481
Ville Syrjälä353c8592016-12-14 23:30:57 +02002482 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002483
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002484 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002485
2486 if (!is_lp)
2487 return method1;
2488
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002489 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002490 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002491 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002492 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002493
2494 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002495}
2496
Ville Syrjälä37126462013-08-01 16:18:55 +03002497/*
2498 * For both WM_PIPE and WM_LP.
2499 * mem_value must be in 0.1us units.
2500 */
Matt Roper7221fc32015-09-24 15:53:08 -07002501static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002502 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002503 uint32_t mem_value)
2504{
2505 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002506 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002507
Ville Syrjälä24304d812017-03-14 17:10:49 +02002508 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002509 return 0;
2510
Ville Syrjälä353c8592016-12-14 23:30:57 +02002511 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002512
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002513 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
2514 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002515 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002516 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002517 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002518 return min(method1, method2);
2519}
2520
Ville Syrjälä37126462013-08-01 16:18:55 +03002521/*
2522 * For both WM_PIPE and WM_LP.
2523 * mem_value must be in 0.1us units.
2524 */
Matt Roper7221fc32015-09-24 15:53:08 -07002525static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002526 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002527 uint32_t mem_value)
2528{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002529 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002530
Ville Syrjälä24304d812017-03-14 17:10:49 +02002531 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002532 return 0;
2533
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002534 cpp = pstate->base.fb->format->cpp[0];
2535
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002536 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002537 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002538 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002539}
2540
Paulo Zanonicca32e92013-05-31 11:45:06 -03002541/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002542static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002543 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002544 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002545{
Ville Syrjälä83054942016-11-18 21:53:00 +02002546 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002547
Ville Syrjälä24304d812017-03-14 17:10:49 +02002548 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002549 return 0;
2550
Ville Syrjälä353c8592016-12-14 23:30:57 +02002551 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002552
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002553 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002554}
2555
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002556static unsigned int
2557ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002558{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002559 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002560 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002561 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002562 return 768;
2563 else
2564 return 512;
2565}
2566
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002567static unsigned int
2568ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2569 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002570{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002571 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002572 /* BDW primary/sprite plane watermarks */
2573 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002574 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002575 /* IVB/HSW primary/sprite plane watermarks */
2576 return level == 0 ? 127 : 1023;
2577 else if (!is_sprite)
2578 /* ILK/SNB primary plane watermarks */
2579 return level == 0 ? 127 : 511;
2580 else
2581 /* ILK/SNB sprite plane watermarks */
2582 return level == 0 ? 63 : 255;
2583}
2584
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002585static unsigned int
2586ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002587{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002588 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002589 return level == 0 ? 63 : 255;
2590 else
2591 return level == 0 ? 31 : 63;
2592}
2593
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002594static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002595{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002596 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002597 return 31;
2598 else
2599 return 15;
2600}
2601
Ville Syrjälä158ae642013-08-07 13:28:19 +03002602/* Calculate the maximum primary/sprite plane watermark */
2603static unsigned int ilk_plane_wm_max(const struct drm_device *dev,
2604 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002605 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002606 enum intel_ddb_partitioning ddb_partitioning,
2607 bool is_sprite)
2608{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002609 struct drm_i915_private *dev_priv = to_i915(dev);
2610 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002611
2612 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002613 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002614 return 0;
2615
2616 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002617 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002618 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002619
2620 /*
2621 * For some reason the non self refresh
2622 * FIFO size is only half of the self
2623 * refresh FIFO size on ILK/SNB.
2624 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002625 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002626 fifo_size /= 2;
2627 }
2628
Ville Syrjälä240264f2013-08-07 13:29:12 +03002629 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002630 /* level 0 is always calculated with 1:1 split */
2631 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2632 if (is_sprite)
2633 fifo_size *= 5;
2634 fifo_size /= 6;
2635 } else {
2636 fifo_size /= 2;
2637 }
2638 }
2639
2640 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002641 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002642}
2643
2644/* Calculate the maximum cursor plane watermark */
2645static unsigned int ilk_cursor_wm_max(const struct drm_device *dev,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002646 int level,
2647 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002648{
2649 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002650 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002651 return 64;
2652
2653 /* otherwise just report max that registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002654 return ilk_cursor_wm_reg_max(to_i915(dev), level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002655}
2656
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002657static void ilk_compute_wm_maximums(const struct drm_device *dev,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002658 int level,
2659 const struct intel_wm_config *config,
2660 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002661 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002662{
Ville Syrjälä240264f2013-08-07 13:29:12 +03002663 max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false);
2664 max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true);
2665 max->cur = ilk_cursor_wm_max(dev, level, config);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002666 max->fbc = ilk_fbc_wm_reg_max(to_i915(dev));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002667}
2668
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002669static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002670 int level,
2671 struct ilk_wm_maximums *max)
2672{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002673 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2674 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2675 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2676 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002677}
2678
Ville Syrjäläd9395652013-10-09 19:18:10 +03002679static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002680 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002681 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002682{
2683 bool ret;
2684
2685 /* already determined to be invalid? */
2686 if (!result->enable)
2687 return false;
2688
2689 result->enable = result->pri_val <= max->pri &&
2690 result->spr_val <= max->spr &&
2691 result->cur_val <= max->cur;
2692
2693 ret = result->enable;
2694
2695 /*
2696 * HACK until we can pre-compute everything,
2697 * and thus fail gracefully if LP0 watermarks
2698 * are exceeded...
2699 */
2700 if (level == 0 && !result->enable) {
2701 if (result->pri_val > max->pri)
2702 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2703 level, result->pri_val, max->pri);
2704 if (result->spr_val > max->spr)
2705 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2706 level, result->spr_val, max->spr);
2707 if (result->cur_val > max->cur)
2708 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2709 level, result->cur_val, max->cur);
2710
2711 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2712 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2713 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2714 result->enable = true;
2715 }
2716
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002717 return ret;
2718}
2719
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002720static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002721 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002722 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002723 struct intel_crtc_state *cstate,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002724 const struct intel_plane_state *pristate,
2725 const struct intel_plane_state *sprstate,
2726 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002727 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002728{
2729 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2730 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2731 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2732
2733 /* WM1+ latency values stored in 0.5us units */
2734 if (level > 0) {
2735 pri_latency *= 5;
2736 spr_latency *= 5;
2737 cur_latency *= 5;
2738 }
2739
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002740 if (pristate) {
2741 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2742 pri_latency, level);
2743 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2744 }
2745
2746 if (sprstate)
2747 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2748
2749 if (curstate)
2750 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2751
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002752 result->enable = true;
2753}
2754
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002755static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002756hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002757{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002758 const struct intel_atomic_state *intel_state =
2759 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002760 const struct drm_display_mode *adjusted_mode =
2761 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002762 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002763
Matt Roperee91a152015-12-03 11:37:39 -08002764 if (!cstate->base.active)
2765 return 0;
2766 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2767 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002768 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002769 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002770
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002771 /* The WM are computed with base on how long it takes to fill a single
2772 * row at the given clock rate, multiplied by 8.
2773 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002774 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2775 adjusted_mode->crtc_clock);
2776 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002777 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002778
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002779 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2780 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002781}
2782
Ville Syrjäläbb726512016-10-31 22:37:24 +02002783static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2784 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002785{
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002786 if (INTEL_GEN(dev_priv) >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002787 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002788 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002789 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002790
2791 /* read the first set of memory latencies[0:3] */
2792 val = 0; /* data0 to be programmed to 0 for first set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002793 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002794 ret = sandybridge_pcode_read(dev_priv,
2795 GEN9_PCODE_READ_MEM_LATENCY,
2796 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002797 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002798
2799 if (ret) {
2800 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2801 return;
2802 }
2803
2804 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2805 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2806 GEN9_MEM_LATENCY_LEVEL_MASK;
2807 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2808 GEN9_MEM_LATENCY_LEVEL_MASK;
2809 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2810 GEN9_MEM_LATENCY_LEVEL_MASK;
2811
2812 /* read the second set of memory latencies[4:7] */
2813 val = 1; /* data0 to be programmed to 1 for second set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002814 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002815 ret = sandybridge_pcode_read(dev_priv,
2816 GEN9_PCODE_READ_MEM_LATENCY,
2817 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002818 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002819 if (ret) {
2820 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2821 return;
2822 }
2823
2824 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2825 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2826 GEN9_MEM_LATENCY_LEVEL_MASK;
2827 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2828 GEN9_MEM_LATENCY_LEVEL_MASK;
2829 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2830 GEN9_MEM_LATENCY_LEVEL_MASK;
2831
Vandana Kannan367294b2014-11-04 17:06:46 +00002832 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002833 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2834 * need to be disabled. We make sure to sanitize the values out
2835 * of the punit to satisfy this requirement.
2836 */
2837 for (level = 1; level <= max_level; level++) {
2838 if (wm[level] == 0) {
2839 for (i = level + 1; i <= max_level; i++)
2840 wm[i] = 0;
2841 break;
2842 }
2843 }
2844
2845 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002846 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002847 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002848 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002849 * to add 2us to the various latency levels we retrieve from the
2850 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002851 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002852 if (wm[0] == 0) {
2853 wm[0] += 2;
2854 for (level = 1; level <= max_level; level++) {
2855 if (wm[level] == 0)
2856 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002857 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002858 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002859 }
2860
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002861 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002862 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2863
2864 wm[0] = (sskpd >> 56) & 0xFF;
2865 if (wm[0] == 0)
2866 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002867 wm[1] = (sskpd >> 4) & 0xFF;
2868 wm[2] = (sskpd >> 12) & 0xFF;
2869 wm[3] = (sskpd >> 20) & 0x1FF;
2870 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002871 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002872 uint32_t sskpd = I915_READ(MCH_SSKPD);
2873
2874 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2875 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2876 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2877 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002878 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002879 uint32_t mltr = I915_READ(MLTR_ILK);
2880
2881 /* ILK primary LP0 latency is 700 ns */
2882 wm[0] = 7;
2883 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2884 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002885 } else {
2886 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002887 }
2888}
2889
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002890static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2891 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002892{
2893 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002894 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002895 wm[0] = 13;
2896}
2897
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002898static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2899 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002900{
2901 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002902 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002903 wm[0] = 13;
2904
2905 /* WaDoubleCursorLP3Latency:ivb */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002906 if (IS_IVYBRIDGE(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002907 wm[3] *= 2;
2908}
2909
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002910int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002911{
2912 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002913 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002914 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002915 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002916 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002917 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002918 return 3;
2919 else
2920 return 2;
2921}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002922
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002923static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002924 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002925 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002926{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002927 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002928
2929 for (level = 0; level <= max_level; level++) {
2930 unsigned int latency = wm[level];
2931
2932 if (latency == 0) {
2933 DRM_ERROR("%s WM%d latency not provided\n",
2934 name, level);
2935 continue;
2936 }
2937
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002938 /*
2939 * - latencies are in us on gen9.
2940 * - before then, WM1+ latency values are in 0.5us units
2941 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002942 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002943 latency *= 10;
2944 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002945 latency *= 5;
2946
2947 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2948 name, level, wm[level],
2949 latency / 10, latency % 10);
2950 }
2951}
2952
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002953static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2954 uint16_t wm[5], uint16_t min)
2955{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002956 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002957
2958 if (wm[0] >= min)
2959 return false;
2960
2961 wm[0] = max(wm[0], min);
2962 for (level = 1; level <= max_level; level++)
2963 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2964
2965 return true;
2966}
2967
Ville Syrjäläbb726512016-10-31 22:37:24 +02002968static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002969{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002970 bool changed;
2971
2972 /*
2973 * The BIOS provided WM memory latency values are often
2974 * inadequate for high resolution displays. Adjust them.
2975 */
2976 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
2977 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
2978 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
2979
2980 if (!changed)
2981 return;
2982
2983 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002984 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
2985 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
2986 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002987}
2988
Ville Syrjäläbb726512016-10-31 22:37:24 +02002989static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03002990{
Ville Syrjäläbb726512016-10-31 22:37:24 +02002991 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03002992
2993 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
2994 sizeof(dev_priv->wm.pri_latency));
2995 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
2996 sizeof(dev_priv->wm.pri_latency));
2997
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002998 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002999 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003000
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003001 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3002 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3003 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003004
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003005 if (IS_GEN6(dev_priv))
Ville Syrjäläbb726512016-10-31 22:37:24 +02003006 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003007}
3008
Ville Syrjäläbb726512016-10-31 22:37:24 +02003009static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003010{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003011 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003012 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003013}
3014
Matt Ropered4a6a72016-02-23 17:20:13 -08003015static bool ilk_validate_pipe_wm(struct drm_device *dev,
3016 struct intel_pipe_wm *pipe_wm)
3017{
3018 /* LP0 watermark maximums depend on this pipe alone */
3019 const struct intel_wm_config config = {
3020 .num_pipes_active = 1,
3021 .sprites_enabled = pipe_wm->sprites_enabled,
3022 .sprites_scaled = pipe_wm->sprites_scaled,
3023 };
3024 struct ilk_wm_maximums max;
3025
3026 /* LP0 watermarks always use 1/2 DDB partitioning */
3027 ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max);
3028
3029 /* At least LP0 must be valid */
3030 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
3031 DRM_DEBUG_KMS("LP0 watermark invalid\n");
3032 return false;
3033 }
3034
3035 return true;
3036}
3037
Matt Roper261a27d2015-10-08 15:28:25 -07003038/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003039static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07003040{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003041 struct drm_atomic_state *state = cstate->base.state;
3042 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003043 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003044 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003045 const struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003046 struct drm_plane *plane;
3047 const struct drm_plane_state *plane_state;
3048 const struct intel_plane_state *pristate = NULL;
3049 const struct intel_plane_state *sprstate = NULL;
3050 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003051 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003052 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003053
Matt Ropere8f1f022016-05-12 07:05:55 -07003054 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003055
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003056 drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, &cstate->base) {
3057 const struct intel_plane_state *ps = to_intel_plane_state(plane_state);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003058
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003059 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003060 pristate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003061 else if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003062 sprstate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003063 else if (plane->type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003064 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07003065 }
3066
Matt Ropered4a6a72016-02-23 17:20:13 -08003067 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003068 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003069 pipe_wm->sprites_enabled = sprstate->base.visible;
3070 pipe_wm->sprites_scaled = sprstate->base.visible &&
3071 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
3072 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003073 }
3074
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003075 usable_level = max_level;
3076
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003077 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003078 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003079 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003080
3081 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003082 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003083 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003084
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003085 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003086 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
3087 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003088
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003089 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03003090 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003091
Matt Ropered4a6a72016-02-23 17:20:13 -08003092 if (!ilk_validate_pipe_wm(dev, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003093 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003094
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003095 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003096
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003097 for (level = 1; level <= usable_level; level++) {
3098 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003099
Matt Roper86c8bbb2015-09-24 15:53:16 -07003100 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003101 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003102
3103 /*
3104 * Disable any watermark level that exceeds the
3105 * register maximums since such watermarks are
3106 * always invalid.
3107 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003108 if (!ilk_validate_wm_level(level, &max, wm)) {
3109 memset(wm, 0, sizeof(*wm));
3110 break;
3111 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003112 }
3113
Matt Roper86c8bbb2015-09-24 15:53:16 -07003114 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003115}
3116
3117/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003118 * Build a set of 'intermediate' watermark values that satisfy both the old
3119 * state and the new state. These can be programmed to the hardware
3120 * immediately.
3121 */
3122static int ilk_compute_intermediate_wm(struct drm_device *dev,
3123 struct intel_crtc *intel_crtc,
3124 struct intel_crtc_state *newstate)
3125{
Matt Ropere8f1f022016-05-12 07:05:55 -07003126 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003127 struct intel_atomic_state *intel_state =
3128 to_intel_atomic_state(newstate->base.state);
3129 const struct intel_crtc_state *oldstate =
3130 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3131 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003132 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08003133
3134 /*
3135 * Start with the final, target watermarks, then combine with the
3136 * currently active watermarks to get values that are safe both before
3137 * and after the vblank.
3138 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003139 *a = newstate->wm.ilk.optimal;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003140 if (!newstate->base.active || drm_atomic_crtc_needs_modeset(&newstate->base))
3141 return 0;
3142
Matt Ropered4a6a72016-02-23 17:20:13 -08003143 a->pipe_enabled |= b->pipe_enabled;
3144 a->sprites_enabled |= b->sprites_enabled;
3145 a->sprites_scaled |= b->sprites_scaled;
3146
3147 for (level = 0; level <= max_level; level++) {
3148 struct intel_wm_level *a_wm = &a->wm[level];
3149 const struct intel_wm_level *b_wm = &b->wm[level];
3150
3151 a_wm->enable &= b_wm->enable;
3152 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3153 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3154 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3155 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3156 }
3157
3158 /*
3159 * We need to make sure that these merged watermark values are
3160 * actually a valid configuration themselves. If they're not,
3161 * there's no safe way to transition from the old state to
3162 * the new state, so we need to fail the atomic transaction.
3163 */
3164 if (!ilk_validate_pipe_wm(dev, a))
3165 return -EINVAL;
3166
3167 /*
3168 * If our intermediate WM are identical to the final WM, then we can
3169 * omit the post-vblank programming; only update if it's different.
3170 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003171 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3172 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003173
3174 return 0;
3175}
3176
3177/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003178 * Merge the watermarks from all active pipes for a specific level.
3179 */
3180static void ilk_merge_wm_level(struct drm_device *dev,
3181 int level,
3182 struct intel_wm_level *ret_wm)
3183{
3184 const struct intel_crtc *intel_crtc;
3185
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003186 ret_wm->enable = true;
3187
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003188 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003189 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003190 const struct intel_wm_level *wm = &active->wm[level];
3191
3192 if (!active->pipe_enabled)
3193 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003194
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003195 /*
3196 * The watermark values may have been used in the past,
3197 * so we must maintain them in the registers for some
3198 * time even if the level is now disabled.
3199 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003200 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003201 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003202
3203 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3204 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3205 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3206 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3207 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003208}
3209
3210/*
3211 * Merge all low power watermarks for all active pipes.
3212 */
3213static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003214 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003215 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003216 struct intel_pipe_wm *merged)
3217{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003218 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003219 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003220 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003221
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003222 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003223 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003224 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003225 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003226
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003227 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003228 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003229
3230 /* merge each WM1+ level */
3231 for (level = 1; level <= max_level; level++) {
3232 struct intel_wm_level *wm = &merged->wm[level];
3233
3234 ilk_merge_wm_level(dev, level, wm);
3235
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003236 if (level > last_enabled_level)
3237 wm->enable = false;
3238 else if (!ilk_validate_wm_level(level, max, wm))
3239 /* make sure all following levels get disabled */
3240 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003241
3242 /*
3243 * The spec says it is preferred to disable
3244 * FBC WMs instead of disabling a WM level.
3245 */
3246 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003247 if (wm->enable)
3248 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003249 wm->fbc_val = 0;
3250 }
3251 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003252
3253 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3254 /*
3255 * FIXME this is racy. FBC might get enabled later.
3256 * What we should check here is whether FBC can be
3257 * enabled sometime later.
3258 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003259 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003260 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003261 for (level = 2; level <= max_level; level++) {
3262 struct intel_wm_level *wm = &merged->wm[level];
3263
3264 wm->enable = false;
3265 }
3266 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003267}
3268
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003269static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3270{
3271 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3272 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3273}
3274
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003275/* The value we need to program into the WM_LPx latency field */
3276static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
3277{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003278 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003279
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003280 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003281 return 2 * level;
3282 else
3283 return dev_priv->wm.pri_latency[level];
3284}
3285
Imre Deak820c1982013-12-17 14:46:36 +02003286static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003287 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003288 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003289 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003290{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003291 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003292 struct intel_crtc *intel_crtc;
3293 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003294
Ville Syrjälä0362c782013-10-09 19:17:57 +03003295 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003296 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003297
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003298 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003299 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003300 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003301
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003302 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003303
Ville Syrjälä0362c782013-10-09 19:17:57 +03003304 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003305
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003306 /*
3307 * Maintain the watermark values even if the level is
3308 * disabled. Doing otherwise could cause underruns.
3309 */
3310 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003311 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003312 (r->pri_val << WM1_LP_SR_SHIFT) |
3313 r->cur_val;
3314
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003315 if (r->enable)
3316 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3317
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003318 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003319 results->wm_lp[wm_lp - 1] |=
3320 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3321 else
3322 results->wm_lp[wm_lp - 1] |=
3323 r->fbc_val << WM1_LP_FBC_SHIFT;
3324
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003325 /*
3326 * Always set WM1S_LP_EN when spr_val != 0, even if the
3327 * level is disabled. Doing otherwise could cause underruns.
3328 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003329 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003330 WARN_ON(wm_lp != 1);
3331 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3332 } else
3333 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003334 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003335
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003336 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003337 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003338 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08003339 const struct intel_wm_level *r =
3340 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003341
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003342 if (WARN_ON(!r->enable))
3343 continue;
3344
Matt Ropered4a6a72016-02-23 17:20:13 -08003345 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003346
3347 results->wm_pipe[pipe] =
3348 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3349 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3350 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003351 }
3352}
3353
Paulo Zanoni861f3382013-05-31 10:19:21 -03003354/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3355 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02003356static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003357 struct intel_pipe_wm *r1,
3358 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003359{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003360 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003361 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003362
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003363 for (level = 1; level <= max_level; level++) {
3364 if (r1->wm[level].enable)
3365 level1 = level;
3366 if (r2->wm[level].enable)
3367 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003368 }
3369
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003370 if (level1 == level2) {
3371 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003372 return r2;
3373 else
3374 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003375 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003376 return r1;
3377 } else {
3378 return r2;
3379 }
3380}
3381
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003382/* dirty bits used to track which watermarks need changes */
3383#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3384#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
3385#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3386#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3387#define WM_DIRTY_FBC (1 << 24)
3388#define WM_DIRTY_DDB (1 << 25)
3389
Damien Lespiau055e3932014-08-18 13:49:10 +01003390static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003391 const struct ilk_wm_values *old,
3392 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003393{
3394 unsigned int dirty = 0;
3395 enum pipe pipe;
3396 int wm_lp;
3397
Damien Lespiau055e3932014-08-18 13:49:10 +01003398 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003399 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
3400 dirty |= WM_DIRTY_LINETIME(pipe);
3401 /* Must disable LP1+ watermarks too */
3402 dirty |= WM_DIRTY_LP_ALL;
3403 }
3404
3405 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3406 dirty |= WM_DIRTY_PIPE(pipe);
3407 /* Must disable LP1+ watermarks too */
3408 dirty |= WM_DIRTY_LP_ALL;
3409 }
3410 }
3411
3412 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3413 dirty |= WM_DIRTY_FBC;
3414 /* Must disable LP1+ watermarks too */
3415 dirty |= WM_DIRTY_LP_ALL;
3416 }
3417
3418 if (old->partitioning != new->partitioning) {
3419 dirty |= WM_DIRTY_DDB;
3420 /* Must disable LP1+ watermarks too */
3421 dirty |= WM_DIRTY_LP_ALL;
3422 }
3423
3424 /* LP1+ watermarks already deemed dirty, no need to continue */
3425 if (dirty & WM_DIRTY_LP_ALL)
3426 return dirty;
3427
3428 /* Find the lowest numbered LP1+ watermark in need of an update... */
3429 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3430 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3431 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3432 break;
3433 }
3434
3435 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3436 for (; wm_lp <= 3; wm_lp++)
3437 dirty |= WM_DIRTY_LP(wm_lp);
3438
3439 return dirty;
3440}
3441
Ville Syrjälä8553c182013-12-05 15:51:39 +02003442static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3443 unsigned int dirty)
3444{
Imre Deak820c1982013-12-17 14:46:36 +02003445 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003446 bool changed = false;
3447
3448 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3449 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3450 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3451 changed = true;
3452 }
3453 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3454 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3455 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3456 changed = true;
3457 }
3458 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3459 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3460 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3461 changed = true;
3462 }
3463
3464 /*
3465 * Don't touch WM1S_LP_EN here.
3466 * Doing so could cause underruns.
3467 */
3468
3469 return changed;
3470}
3471
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003472/*
3473 * The spec says we shouldn't write when we don't need, because every write
3474 * causes WMs to be re-evaluated, expending some power.
3475 */
Imre Deak820c1982013-12-17 14:46:36 +02003476static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3477 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003478{
Imre Deak820c1982013-12-17 14:46:36 +02003479 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003480 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003481 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003482
Damien Lespiau055e3932014-08-18 13:49:10 +01003483 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003484 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003485 return;
3486
Ville Syrjälä8553c182013-12-05 15:51:39 +02003487 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003488
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003489 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003490 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003491 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003492 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003493 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003494 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3495
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003496 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003497 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003498 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003499 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003500 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003501 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
3502
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003503 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003504 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003505 val = I915_READ(WM_MISC);
3506 if (results->partitioning == INTEL_DDB_PART_1_2)
3507 val &= ~WM_MISC_DATA_PARTITION_5_6;
3508 else
3509 val |= WM_MISC_DATA_PARTITION_5_6;
3510 I915_WRITE(WM_MISC, val);
3511 } else {
3512 val = I915_READ(DISP_ARB_CTL2);
3513 if (results->partitioning == INTEL_DDB_PART_1_2)
3514 val &= ~DISP_DATA_PARTITION_5_6;
3515 else
3516 val |= DISP_DATA_PARTITION_5_6;
3517 I915_WRITE(DISP_ARB_CTL2, val);
3518 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003519 }
3520
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003521 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003522 val = I915_READ(DISP_ARB_CTL);
3523 if (results->enable_fbc_wm)
3524 val &= ~DISP_FBC_WM_DIS;
3525 else
3526 val |= DISP_FBC_WM_DIS;
3527 I915_WRITE(DISP_ARB_CTL, val);
3528 }
3529
Imre Deak954911e2013-12-17 14:46:34 +02003530 if (dirty & WM_DIRTY_LP(1) &&
3531 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3532 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3533
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003534 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003535 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3536 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3537 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3538 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3539 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003540
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003541 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003542 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003543 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003544 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003545 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003546 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003547
3548 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003549}
3550
Matt Ropered4a6a72016-02-23 17:20:13 -08003551bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003552{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003553 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003554
3555 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3556}
3557
Matt Roper024c9042015-09-24 15:53:11 -07003558/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003559 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3560 * so assume we'll always need it in order to avoid underruns.
3561 */
3562static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3563{
3564 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3565
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003566 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003567 return true;
3568
3569 return false;
3570}
3571
Paulo Zanoni56feca92016-09-22 18:00:28 -03003572static bool
3573intel_has_sagv(struct drm_i915_private *dev_priv)
3574{
Rodrigo Vivi01971812017-08-09 13:52:44 -07003575 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
3576 IS_CANNONLAKE(dev_priv))
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003577 return true;
3578
3579 if (IS_SKYLAKE(dev_priv) &&
3580 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3581 return true;
3582
3583 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003584}
3585
Lyude656d1b82016-08-17 15:55:54 -04003586/*
3587 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3588 * depending on power and performance requirements. The display engine access
3589 * to system memory is blocked during the adjustment time. Because of the
3590 * blocking time, having this enabled can cause full system hangs and/or pipe
3591 * underruns if we don't meet all of the following requirements:
3592 *
3593 * - <= 1 pipe enabled
3594 * - All planes can enable watermarks for latencies >= SAGV engine block time
3595 * - We're not using an interlaced display configuration
3596 */
3597int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003598intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003599{
3600 int ret;
3601
Paulo Zanoni56feca92016-09-22 18:00:28 -03003602 if (!intel_has_sagv(dev_priv))
3603 return 0;
3604
3605 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003606 return 0;
3607
3608 DRM_DEBUG_KMS("Enabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003609 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003610
3611 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3612 GEN9_SAGV_ENABLE);
3613
3614 /* We don't need to wait for the SAGV when enabling */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003615 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003616
3617 /*
3618 * Some skl systems, pre-release machines in particular,
3619 * don't actually have an SAGV.
3620 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003621 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003622 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003623 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003624 return 0;
3625 } else if (ret < 0) {
3626 DRM_ERROR("Failed to enable the SAGV\n");
3627 return ret;
3628 }
3629
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003630 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003631 return 0;
3632}
3633
Lyude656d1b82016-08-17 15:55:54 -04003634int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003635intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003636{
Imre Deakb3b8e992016-12-05 18:27:38 +02003637 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003638
Paulo Zanoni56feca92016-09-22 18:00:28 -03003639 if (!intel_has_sagv(dev_priv))
3640 return 0;
3641
3642 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003643 return 0;
3644
3645 DRM_DEBUG_KMS("Disabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003646 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003647
3648 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003649 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3650 GEN9_SAGV_DISABLE,
3651 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3652 1);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003653 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003654
Lyude656d1b82016-08-17 15:55:54 -04003655 /*
3656 * Some skl systems, pre-release machines in particular,
3657 * don't actually have an SAGV.
3658 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003659 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003660 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003661 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003662 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003663 } else if (ret < 0) {
3664 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3665 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003666 }
3667
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003668 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003669 return 0;
3670}
3671
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003672bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003673{
3674 struct drm_device *dev = state->dev;
3675 struct drm_i915_private *dev_priv = to_i915(dev);
3676 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003677 struct intel_crtc *crtc;
3678 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003679 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003680 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003681 int level, latency;
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003682 int sagv_block_time_us = IS_GEN9(dev_priv) ? 30 : 20;
Lyude656d1b82016-08-17 15:55:54 -04003683
Paulo Zanoni56feca92016-09-22 18:00:28 -03003684 if (!intel_has_sagv(dev_priv))
3685 return false;
3686
Lyude656d1b82016-08-17 15:55:54 -04003687 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003688 * SKL+ workaround: bspec recommends we disable the SAGV when we have
Lyude656d1b82016-08-17 15:55:54 -04003689 * more then one pipe enabled
3690 *
3691 * If there are no active CRTCs, no additional checks need be performed
3692 */
3693 if (hweight32(intel_state->active_crtcs) == 0)
3694 return true;
3695 else if (hweight32(intel_state->active_crtcs) > 1)
3696 return false;
3697
3698 /* Since we're now guaranteed to only have one active CRTC... */
3699 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003700 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003701 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003702
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003703 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003704 return false;
3705
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003706 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003707 struct skl_plane_wm *wm =
3708 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003709
Lyude656d1b82016-08-17 15:55:54 -04003710 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003711 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003712 continue;
3713
3714 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003715 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003716 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003717 { }
3718
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003719 latency = dev_priv->wm.skl_latency[level];
3720
3721 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003722 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003723 I915_FORMAT_MOD_X_TILED)
3724 latency += 15;
3725
Lyude656d1b82016-08-17 15:55:54 -04003726 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003727 * If any of the planes on this pipe don't enable wm levels that
3728 * incur memory latencies higher than sagv_block_time_us we
3729 * can't enable the SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003730 */
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003731 if (latency < sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003732 return false;
3733 }
3734
3735 return true;
3736}
3737
Damien Lespiaub9cec072014-11-04 17:06:43 +00003738static void
3739skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003740 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003741 struct skl_ddb_entry *alloc, /* out */
3742 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003743{
Matt Roperc107acf2016-05-12 07:06:01 -07003744 struct drm_atomic_state *state = cstate->base.state;
3745 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3746 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003747 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003748 unsigned int pipe_size, ddb_size;
3749 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003750
Matt Ropera6d3460e2016-05-12 07:06:04 -07003751 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003752 alloc->start = 0;
3753 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003754 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003755 return;
3756 }
3757
Matt Ropera6d3460e2016-05-12 07:06:04 -07003758 if (intel_state->active_pipe_changes)
3759 *num_active = hweight32(intel_state->active_crtcs);
3760 else
3761 *num_active = hweight32(dev_priv->active_crtcs);
3762
Deepak M6f3fff62016-09-15 15:01:10 +05303763 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3764 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003765
3766 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3767
Matt Roperc107acf2016-05-12 07:06:01 -07003768 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003769 * If the state doesn't change the active CRTC's, then there's
3770 * no need to recalculate; the existing pipe allocation limits
3771 * should remain unchanged. Note that we're safe from racing
3772 * commits since any racing commit that changes the active CRTC
3773 * list would need to grab _all_ crtc locks, including the one
3774 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003775 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003776 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003777 /*
3778 * alloc may be cleared by clear_intel_crtc_state,
3779 * copy from old state to be sure
3780 */
3781 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003782 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003783 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003784
3785 nth_active_pipe = hweight32(intel_state->active_crtcs &
3786 (drm_crtc_mask(for_crtc) - 1));
3787 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3788 alloc->start = nth_active_pipe * ddb_size / *num_active;
3789 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003790}
3791
Matt Roperc107acf2016-05-12 07:06:01 -07003792static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003793{
Matt Roperc107acf2016-05-12 07:06:01 -07003794 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003795 return 32;
3796
3797 return 8;
3798}
3799
Damien Lespiaua269c582014-11-04 17:06:49 +00003800static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3801{
3802 entry->start = reg & 0x3ff;
3803 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003804 if (entry->end)
3805 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003806}
3807
Damien Lespiau08db6652014-11-04 17:06:52 +00003808void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3809 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003810{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003811 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003812
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003813 memset(ddb, 0, sizeof(*ddb));
3814
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003815 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003816 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003817 enum plane_id plane_id;
3818 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003819
3820 power_domain = POWER_DOMAIN_PIPE(pipe);
3821 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003822 continue;
3823
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003824 for_each_plane_id_on_crtc(crtc, plane_id) {
3825 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003826
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003827 if (plane_id != PLANE_CURSOR)
3828 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3829 else
3830 val = I915_READ(CUR_BUF_CFG(pipe));
3831
3832 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3833 }
Imre Deak4d800032016-02-17 16:31:29 +02003834
3835 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003836 }
3837}
3838
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003839/*
3840 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3841 * The bspec defines downscale amount as:
3842 *
3843 * """
3844 * Horizontal down scale amount = maximum[1, Horizontal source size /
3845 * Horizontal destination size]
3846 * Vertical down scale amount = maximum[1, Vertical source size /
3847 * Vertical destination size]
3848 * Total down scale amount = Horizontal down scale amount *
3849 * Vertical down scale amount
3850 * """
3851 *
3852 * Return value is provided in 16.16 fixed point form to retain fractional part.
3853 * Caller should take care of dividing & rounding off the value.
3854 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303855static uint_fixed_16_16_t
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003856skl_plane_downscale_amount(const struct intel_crtc_state *cstate,
3857 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003858{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003859 struct intel_plane *plane = to_intel_plane(pstate->base.plane);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003860 uint32_t src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303861 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3862 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003863
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003864 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303865 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003866
3867 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003868 if (plane->id == PLANE_CURSOR) {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003869 /*
3870 * Cursors only support 0/180 degree rotation,
3871 * hence no need to account for rotation here.
3872 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303873 src_w = pstate->base.src_w >> 16;
3874 src_h = pstate->base.src_h >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003875 dst_w = pstate->base.crtc_w;
3876 dst_h = pstate->base.crtc_h;
3877 } else {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003878 /*
3879 * Src coordinates are already rotated by 270 degrees for
3880 * the 90/270 degree plane rotation cases (to match the
3881 * GTT mapping), hence no need to account for rotation here.
3882 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303883 src_w = drm_rect_width(&pstate->base.src) >> 16;
3884 src_h = drm_rect_height(&pstate->base.src) >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003885 dst_w = drm_rect_width(&pstate->base.dst);
3886 dst_h = drm_rect_height(&pstate->base.dst);
3887 }
3888
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303889 fp_w_ratio = div_fixed16(src_w, dst_w);
3890 fp_h_ratio = div_fixed16(src_h, dst_h);
3891 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3892 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003893
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303894 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003895}
3896
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303897static uint_fixed_16_16_t
3898skl_pipe_downscale_amount(const struct intel_crtc_state *crtc_state)
3899{
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303900 uint_fixed_16_16_t pipe_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303901
3902 if (!crtc_state->base.enable)
3903 return pipe_downscale;
3904
3905 if (crtc_state->pch_pfit.enabled) {
3906 uint32_t src_w, src_h, dst_w, dst_h;
3907 uint32_t pfit_size = crtc_state->pch_pfit.size;
3908 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3909 uint_fixed_16_16_t downscale_h, downscale_w;
3910
3911 src_w = crtc_state->pipe_src_w;
3912 src_h = crtc_state->pipe_src_h;
3913 dst_w = pfit_size >> 16;
3914 dst_h = pfit_size & 0xffff;
3915
3916 if (!dst_w || !dst_h)
3917 return pipe_downscale;
3918
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303919 fp_w_ratio = div_fixed16(src_w, dst_w);
3920 fp_h_ratio = div_fixed16(src_h, dst_h);
3921 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3922 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303923
3924 pipe_downscale = mul_fixed16(downscale_w, downscale_h);
3925 }
3926
3927 return pipe_downscale;
3928}
3929
3930int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
3931 struct intel_crtc_state *cstate)
3932{
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003933 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303934 struct drm_crtc_state *crtc_state = &cstate->base;
3935 struct drm_atomic_state *state = crtc_state->state;
3936 struct drm_plane *plane;
3937 const struct drm_plane_state *pstate;
3938 struct intel_plane_state *intel_pstate;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003939 int crtc_clock, dotclk;
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303940 uint32_t pipe_max_pixel_rate;
3941 uint_fixed_16_16_t pipe_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303942 uint_fixed_16_16_t max_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303943
3944 if (!cstate->base.enable)
3945 return 0;
3946
3947 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
3948 uint_fixed_16_16_t plane_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303949 uint_fixed_16_16_t fp_9_div_8 = div_fixed16(9, 8);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303950 int bpp;
3951
3952 if (!intel_wm_plane_visible(cstate,
3953 to_intel_plane_state(pstate)))
3954 continue;
3955
3956 if (WARN_ON(!pstate->fb))
3957 return -EINVAL;
3958
3959 intel_pstate = to_intel_plane_state(pstate);
3960 plane_downscale = skl_plane_downscale_amount(cstate,
3961 intel_pstate);
3962 bpp = pstate->fb->format->cpp[0] * 8;
3963 if (bpp == 64)
3964 plane_downscale = mul_fixed16(plane_downscale,
3965 fp_9_div_8);
3966
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303967 max_downscale = max_fixed16(plane_downscale, max_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303968 }
3969 pipe_downscale = skl_pipe_downscale_amount(cstate);
3970
3971 pipe_downscale = mul_fixed16(pipe_downscale, max_downscale);
3972
3973 crtc_clock = crtc_state->adjusted_mode.crtc_clock;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003974 dotclk = to_intel_atomic_state(state)->cdclk.logical.cdclk;
3975
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003976 if (IS_GEMINILAKE(dev_priv) || INTEL_GEN(dev_priv) >= 10)
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003977 dotclk *= 2;
3978
3979 pipe_max_pixel_rate = div_round_up_u32_fixed16(dotclk, pipe_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303980
3981 if (pipe_max_pixel_rate < crtc_clock) {
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003982 DRM_DEBUG_KMS("Max supported pixel clock with scaling exceeded\n");
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303983 return -EINVAL;
3984 }
3985
3986 return 0;
3987}
3988
Damien Lespiaub9cec072014-11-04 17:06:43 +00003989static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003990skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3991 const struct drm_plane_state *pstate,
3992 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003993{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003994 struct intel_plane *plane = to_intel_plane(pstate->plane);
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003995 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303996 uint32_t data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003997 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003998 struct drm_framebuffer *fb;
3999 u32 format;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304000 uint_fixed_16_16_t down_scale_amount;
Matt Ropera1de91e2016-05-12 07:05:57 -07004001
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004002 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004003 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004004
4005 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004006 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02004007
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004008 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004009 return 0;
4010 if (y && format != DRM_FORMAT_NV12)
4011 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004012
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004013 /*
4014 * Src coordinates are already rotated by 270 degrees for
4015 * the 90/270 degree plane rotation cases (to match the
4016 * GTT mapping), hence no need to account for rotation here.
4017 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004018 width = drm_rect_width(&intel_pstate->base.src) >> 16;
4019 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004020
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004021 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07004022 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004023 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004024 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004025 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004026 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004027 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004028 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004029 } else {
4030 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02004031 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004032 }
4033
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004034 down_scale_amount = skl_plane_downscale_amount(cstate, intel_pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004035
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304036 return mul_round_up_u32_fixed16(data_rate, down_scale_amount);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004037}
4038
4039/*
4040 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
4041 * a 8192x4096@32bpp framebuffer:
4042 * 3 * 4096 * 8192 * 4 < 2^32
4043 */
4044static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004045skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
4046 unsigned *plane_data_rate,
4047 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004048{
Matt Roper9c74d822016-05-12 07:05:58 -07004049 struct drm_crtc_state *cstate = &intel_cstate->base;
4050 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004051 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004052 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004053 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004054
4055 if (WARN_ON(!state))
4056 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004057
Matt Ropera1de91e2016-05-12 07:05:57 -07004058 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004059 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004060 enum plane_id plane_id = to_intel_plane(plane)->id;
4061 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07004062
Matt Ropera6d3460e2016-05-12 07:06:04 -07004063 /* packed/uv */
4064 rate = skl_plane_relative_data_rate(intel_cstate,
4065 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004066 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004067
4068 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004069
Matt Ropera6d3460e2016-05-12 07:06:04 -07004070 /* y-plane */
4071 rate = skl_plane_relative_data_rate(intel_cstate,
4072 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004073 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004074
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004075 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004076 }
4077
4078 return total_data_rate;
4079}
4080
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004081static uint16_t
4082skl_ddb_min_alloc(const struct drm_plane_state *pstate,
4083 const int y)
4084{
4085 struct drm_framebuffer *fb = pstate->fb;
4086 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
4087 uint32_t src_w, src_h;
4088 uint32_t min_scanlines = 8;
4089 uint8_t plane_bpp;
4090
4091 if (WARN_ON(!fb))
4092 return 0;
4093
4094 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004095 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004096 return 0;
4097
4098 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02004099 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004100 fb->modifier != I915_FORMAT_MOD_Yf_TILED &&
4101 fb->modifier != I915_FORMAT_MOD_Y_TILED_CCS &&
4102 fb->modifier != I915_FORMAT_MOD_Yf_TILED_CCS)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004103 return 8;
4104
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004105 /*
4106 * Src coordinates are already rotated by 270 degrees for
4107 * the 90/270 degree plane rotation cases (to match the
4108 * GTT mapping), hence no need to account for rotation here.
4109 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004110 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
4111 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004112
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004113 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004114 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004115 src_w /= 2;
4116 src_h /= 2;
4117 }
4118
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004119 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02004120 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004121 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02004122 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004123
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03004124 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004125 switch (plane_bpp) {
4126 case 1:
4127 min_scanlines = 32;
4128 break;
4129 case 2:
4130 min_scanlines = 16;
4131 break;
4132 case 4:
4133 min_scanlines = 8;
4134 break;
4135 case 8:
4136 min_scanlines = 4;
4137 break;
4138 default:
4139 WARN(1, "Unsupported pixel depth %u for rotation",
4140 plane_bpp);
4141 min_scanlines = 32;
4142 }
4143 }
4144
4145 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
4146}
4147
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004148static void
4149skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
4150 uint16_t *minimum, uint16_t *y_minimum)
4151{
4152 const struct drm_plane_state *pstate;
4153 struct drm_plane *plane;
4154
4155 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004156 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004157
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004158 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004159 continue;
4160
4161 if (!pstate->visible)
4162 continue;
4163
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004164 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
4165 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004166 }
4167
4168 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
4169}
4170
Matt Roperc107acf2016-05-12 07:06:01 -07004171static int
Matt Roper024c9042015-09-24 15:53:11 -07004172skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00004173 struct skl_ddb_allocation *ddb /* out */)
4174{
Matt Roperc107acf2016-05-12 07:06:01 -07004175 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07004176 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004177 struct drm_device *dev = crtc->dev;
4178 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4179 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04004180 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004181 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02004182 uint16_t minimum[I915_MAX_PLANES] = {};
4183 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00004184 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004185 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004186 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004187 unsigned plane_data_rate[I915_MAX_PLANES] = {};
4188 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304189 uint16_t total_min_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004190
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004191 /* Clear the partitioning for disabled planes. */
4192 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
4193 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
4194
Matt Ropera6d3460e2016-05-12 07:06:04 -07004195 if (WARN_ON(!state))
4196 return 0;
4197
Matt Roperc107acf2016-05-12 07:06:01 -07004198 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04004199 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004200 return 0;
4201 }
4202
Matt Ropera6d3460e2016-05-12 07:06:04 -07004203 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004204 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304205 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004206 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004207
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004208 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004209
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004210 /*
4211 * 1. Allocate the mininum required blocks for each active plane
4212 * and allocate the cursor, it doesn't require extra allocation
4213 * proportional to the data rate.
4214 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00004215
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004216 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304217 total_min_blocks += minimum[plane_id];
4218 total_min_blocks += y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00004219 }
4220
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304221 if (total_min_blocks > alloc_size) {
4222 DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations");
4223 DRM_DEBUG_KMS("minimum required %d/%d\n", total_min_blocks,
4224 alloc_size);
4225 return -EINVAL;
4226 }
4227
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004228 alloc_size -= total_min_blocks;
4229 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004230 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
4231
Damien Lespiaub9cec072014-11-04 17:06:43 +00004232 /*
Damien Lespiau80958152015-02-09 13:35:10 +00004233 * 2. Distribute the remaining space in proportion to the amount of
4234 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004235 *
4236 * FIXME: we may not allocate every single block here.
4237 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004238 total_data_rate = skl_get_total_relative_data_rate(cstate,
4239 plane_data_rate,
4240 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07004241 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004242 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004243
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004244 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004245 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004246 unsigned int data_rate, y_data_rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004247 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004248
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004249 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004250 continue;
4251
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004252 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00004253
4254 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004255 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00004256 * promote the expression to 64 bits to avoid overflowing, the
4257 * result is < available as data_rate / total_data_rate < 1
4258 */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004259 plane_blocks = minimum[plane_id];
4260 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
4261 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004262
Matt Roperc107acf2016-05-12 07:06:01 -07004263 /* Leave disabled planes at (0,0) */
4264 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004265 ddb->plane[pipe][plane_id].start = start;
4266 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004267 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00004268
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004269 start += plane_blocks;
4270
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004271 /*
4272 * allocation for y_plane part of planar format:
4273 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004274 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004275
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004276 y_plane_blocks = y_minimum[plane_id];
4277 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
4278 total_data_rate);
4279
Matt Roperc107acf2016-05-12 07:06:01 -07004280 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004281 ddb->y_plane[pipe][plane_id].start = start;
4282 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004283 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004284
4285 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004286 }
4287
Matt Roperc107acf2016-05-12 07:06:01 -07004288 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004289}
4290
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004291/*
4292 * 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 +02004293 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004294 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4295 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4296*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004297static uint_fixed_16_16_t
4298skl_wm_method1(const struct drm_i915_private *dev_priv, uint32_t pixel_rate,
4299 uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004300{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304301 uint32_t wm_intermediate_val;
4302 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004303
4304 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304305 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004306
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304307 wm_intermediate_val = latency * pixel_rate * cpp;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304308 ret = div_fixed16(wm_intermediate_val, 1000 * 512);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004309
4310 if (INTEL_GEN(dev_priv) >= 10)
4311 ret = add_fixed16_u32(ret, 1);
4312
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004313 return ret;
4314}
4315
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304316static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
4317 uint32_t pipe_htotal,
4318 uint32_t latency,
4319 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004320{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004321 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304322 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004323
4324 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304325 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004326
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004327 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304328 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4329 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304330 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004331 return ret;
4332}
4333
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304334static uint_fixed_16_16_t
4335intel_get_linetime_us(struct intel_crtc_state *cstate)
4336{
4337 uint32_t pixel_rate;
4338 uint32_t crtc_htotal;
4339 uint_fixed_16_16_t linetime_us;
4340
4341 if (!cstate->base.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304342 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304343
4344 pixel_rate = cstate->pixel_rate;
4345
4346 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304347 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304348
4349 crtc_htotal = cstate->base.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304350 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304351
4352 return linetime_us;
4353}
4354
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304355static uint32_t
4356skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
4357 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004358{
4359 uint64_t adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304360 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004361
4362 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004363 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004364 return 0;
4365
4366 /*
4367 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4368 * with additional adjustments for plane-specific scaling.
4369 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02004370 adjusted_pixel_rate = cstate->pixel_rate;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004371 downscale_amount = skl_plane_downscale_amount(cstate, pstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004372
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304373 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4374 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004375}
4376
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304377static int
4378skl_compute_plane_wm_params(const struct drm_i915_private *dev_priv,
4379 struct intel_crtc_state *cstate,
4380 const struct intel_plane_state *intel_pstate,
4381 struct skl_wm_params *wp)
4382{
4383 struct intel_plane *plane = to_intel_plane(intel_pstate->base.plane);
4384 const struct drm_plane_state *pstate = &intel_pstate->base;
4385 const struct drm_framebuffer *fb = pstate->fb;
4386 uint32_t interm_pbpl;
4387 struct intel_atomic_state *state =
4388 to_intel_atomic_state(cstate->base.state);
4389 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
4390
4391 if (!intel_wm_plane_visible(cstate, intel_pstate))
4392 return 0;
4393
4394 wp->y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
4395 fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
4396 fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4397 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4398 wp->x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
4399 wp->rc_surface = fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4400 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4401
4402 if (plane->id == PLANE_CURSOR) {
4403 wp->width = intel_pstate->base.crtc_w;
4404 } else {
4405 /*
4406 * Src coordinates are already rotated by 270 degrees for
4407 * the 90/270 degree plane rotation cases (to match the
4408 * GTT mapping), hence no need to account for rotation here.
4409 */
4410 wp->width = drm_rect_width(&intel_pstate->base.src) >> 16;
4411 }
4412
4413 wp->cpp = (fb->format->format == DRM_FORMAT_NV12) ? fb->format->cpp[1] :
4414 fb->format->cpp[0];
4415 wp->plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate,
4416 intel_pstate);
4417
4418 if (drm_rotation_90_or_270(pstate->rotation)) {
4419
4420 switch (wp->cpp) {
4421 case 1:
4422 wp->y_min_scanlines = 16;
4423 break;
4424 case 2:
4425 wp->y_min_scanlines = 8;
4426 break;
4427 case 4:
4428 wp->y_min_scanlines = 4;
4429 break;
4430 default:
4431 MISSING_CASE(wp->cpp);
4432 return -EINVAL;
4433 }
4434 } else {
4435 wp->y_min_scanlines = 4;
4436 }
4437
4438 if (apply_memory_bw_wa)
4439 wp->y_min_scanlines *= 2;
4440
4441 wp->plane_bytes_per_line = wp->width * wp->cpp;
4442 if (wp->y_tiled) {
4443 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
4444 wp->y_min_scanlines, 512);
4445
4446 if (INTEL_GEN(dev_priv) >= 10)
4447 interm_pbpl++;
4448
4449 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4450 wp->y_min_scanlines);
4451 } else if (wp->x_tiled && IS_GEN9(dev_priv)) {
4452 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512);
4453 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4454 } else {
4455 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512) + 1;
4456 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4457 }
4458
4459 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4460 wp->plane_blocks_per_line);
4461 wp->linetime_us = fixed16_to_u32_round_up(
4462 intel_get_linetime_us(cstate));
4463
4464 return 0;
4465}
4466
Matt Roper55994c22016-05-12 07:06:08 -07004467static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
4468 struct intel_crtc_state *cstate,
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304469 const struct intel_plane_state *intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004470 uint16_t ddb_allocation,
Matt Roper55994c22016-05-12 07:06:08 -07004471 int level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304472 const struct skl_wm_params *wp,
Matt Roper55994c22016-05-12 07:06:08 -07004473 uint16_t *out_blocks, /* out */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004474 uint8_t *out_lines, /* out */
4475 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004476{
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304477 const struct drm_plane_state *pstate = &intel_pstate->base;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004478 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304479 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304480 uint_fixed_16_16_t selected_result;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004481 uint32_t res_blocks, res_lines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004482 struct intel_atomic_state *state =
4483 to_intel_atomic_state(cstate->base.state);
4484 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004485
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004486 if (latency == 0 ||
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004487 !intel_wm_plane_visible(cstate, intel_pstate)) {
4488 *enabled = false;
Matt Roper55994c22016-05-12 07:06:08 -07004489 return 0;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004490 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004491
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004492 /* Display WA #1141: kbl,cfl */
Kumar, Maheshd86ba622017-08-17 19:15:26 +05304493 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
4494 IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) &&
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004495 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304496 latency += 4;
4497
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304498 if (apply_memory_bw_wa && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004499 latency += 15;
4500
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304501 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
4502 wp->cpp, latency);
4503 method2 = skl_wm_method2(wp->plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07004504 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004505 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304506 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004507
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304508 if (wp->y_tiled) {
4509 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004510 } else {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304511 if ((wp->cpp * cstate->base.adjusted_mode.crtc_htotal /
4512 512 < 1) && (wp->plane_bytes_per_line / 512 < 1))
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004513 selected_result = method2;
Maarten Lankhorst54d20ed2017-07-17 14:02:30 +02004514 else if (ddb_allocation >=
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304515 fixed16_to_u32_round_up(wp->plane_blocks_per_line))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304516 selected_result = min_fixed16(method1, method2);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304517 else if (latency >= wp->linetime_us)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304518 selected_result = min_fixed16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004519 else
4520 selected_result = method1;
4521 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004522
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304523 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05304524 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304525 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00004526
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004527 /* Display WA #1125: skl,bxt,kbl,glk */
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304528 if (level == 0 && wp->rc_surface)
4529 res_blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004530
4531 /* Display WA #1126: skl,bxt,kbl,glk */
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004532 if (level >= 1 && level <= 7) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304533 if (wp->y_tiled) {
4534 res_blocks += fixed16_to_u32_round_up(
4535 wp->y_tile_minimum);
4536 res_lines += wp->y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004537 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004538 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004539 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004540 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004541
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004542 if (res_blocks >= ddb_allocation || res_lines > 31) {
4543 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07004544
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004545 /*
4546 * If there are no valid level 0 watermarks, then we can't
4547 * support this display configuration.
4548 */
4549 if (level) {
4550 return 0;
4551 } else {
4552 struct drm_plane *plane = pstate->plane;
4553
4554 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
4555 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
4556 plane->base.id, plane->name,
4557 res_blocks, ddb_allocation, res_lines);
4558 return -EINVAL;
4559 }
Matt Roper55994c22016-05-12 07:06:08 -07004560 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00004561
4562 *out_blocks = res_blocks;
4563 *out_lines = res_lines;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004564 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004565
Matt Roper55994c22016-05-12 07:06:08 -07004566 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004567}
4568
Matt Roperf4a96752016-05-12 07:06:06 -07004569static int
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304570skl_compute_wm_levels(const struct drm_i915_private *dev_priv,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004571 struct skl_ddb_allocation *ddb,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304572 struct intel_crtc_state *cstate,
4573 const struct intel_plane_state *intel_pstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304574 const struct skl_wm_params *wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304575 struct skl_plane_wm *wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004576{
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004577 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4578 struct drm_plane *plane = intel_pstate->base.plane;
4579 struct intel_plane *intel_plane = to_intel_plane(plane);
4580 uint16_t ddb_blocks;
4581 enum pipe pipe = intel_crtc->pipe;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304582 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07004583 int ret;
Lyudea62163e2016-10-04 14:28:20 -04004584
Kumar, Mahesh7b751192017-05-17 17:28:24 +05304585 if (WARN_ON(!intel_pstate->base.fb))
4586 return -EINVAL;
Matt Roper024c9042015-09-24 15:53:11 -07004587
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004588 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
4589
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304590 for (level = 0; level <= max_level; level++) {
4591 struct skl_wm_level *result = &wm->wm[level];
4592
4593 ret = skl_compute_plane_wm(dev_priv,
4594 cstate,
4595 intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004596 ddb_blocks,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304597 level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304598 wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304599 &result->plane_res_b,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004600 &result->plane_res_l,
4601 &result->plane_en);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304602 if (ret)
4603 return ret;
4604 }
Matt Roperf4a96752016-05-12 07:06:06 -07004605
4606 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004607}
4608
Damien Lespiau407b50f2014-11-04 17:06:57 +00004609static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07004610skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004611{
Mahesh Kumara3a89862016-12-01 21:19:34 +05304612 struct drm_atomic_state *state = cstate->base.state;
4613 struct drm_i915_private *dev_priv = to_i915(state->dev);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304614 uint_fixed_16_16_t linetime_us;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304615 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03004616
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304617 linetime_us = intel_get_linetime_us(cstate);
4618
4619 if (is_fixed16_zero(linetime_us))
Damien Lespiau407b50f2014-11-04 17:06:57 +00004620 return 0;
4621
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304622 linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us));
Mahesh Kumara3a89862016-12-01 21:19:34 +05304623
Kumar, Mahesh446e8502017-08-17 19:15:25 +05304624 /* Display WA #1135: bxt:ALL GLK:ALL */
4625 if ((IS_BROXTON(dev_priv) || IS_GEMINILAKE(dev_priv)) &&
4626 dev_priv->ipc_enabled)
4627 linetime_wm /= 2;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304628
4629 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004630}
4631
Matt Roper024c9042015-09-24 15:53:11 -07004632static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Kumar, Maheshca476672017-08-17 19:15:24 +05304633 struct skl_wm_params *wp,
4634 struct skl_wm_level *wm_l0,
4635 uint16_t ddb_allocation,
Damien Lespiau9414f562014-11-04 17:06:58 +00004636 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004637{
Kumar, Maheshca476672017-08-17 19:15:24 +05304638 struct drm_device *dev = cstate->base.crtc->dev;
4639 const struct drm_i915_private *dev_priv = to_i915(dev);
4640 uint16_t trans_min, trans_y_tile_min;
4641 const uint16_t trans_amount = 10; /* This is configurable amount */
4642 uint16_t trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00004643
Kumar, Maheshca476672017-08-17 19:15:24 +05304644 if (!cstate->base.active)
4645 goto exit;
4646
4647 /* Transition WM are not recommended by HW team for GEN9 */
4648 if (INTEL_GEN(dev_priv) <= 9)
4649 goto exit;
4650
4651 /* Transition WM don't make any sense if ipc is disabled */
4652 if (!dev_priv->ipc_enabled)
4653 goto exit;
4654
4655 if (INTEL_GEN(dev_priv) >= 10)
4656 trans_min = 4;
4657
4658 trans_offset_b = trans_min + trans_amount;
4659
4660 if (wp->y_tiled) {
4661 trans_y_tile_min = (uint16_t) mul_round_up_u32_fixed16(2,
4662 wp->y_tile_minimum);
4663 res_blocks = max(wm_l0->plane_res_b, trans_y_tile_min) +
4664 trans_offset_b;
4665 } else {
4666 res_blocks = wm_l0->plane_res_b + trans_offset_b;
4667
4668 /* WA BUG:1938466 add one block for non y-tile planes */
4669 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
4670 res_blocks += 1;
4671
4672 }
4673
4674 res_blocks += 1;
4675
4676 if (res_blocks < ddb_allocation) {
4677 trans_wm->plane_res_b = res_blocks;
4678 trans_wm->plane_en = true;
4679 return;
4680 }
4681
4682exit:
Lyudea62163e2016-10-04 14:28:20 -04004683 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004684}
4685
Matt Roper55994c22016-05-12 07:06:08 -07004686static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
4687 struct skl_ddb_allocation *ddb,
4688 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004689{
Matt Roper024c9042015-09-24 15:53:11 -07004690 struct drm_device *dev = cstate->base.crtc->dev;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304691 struct drm_crtc_state *crtc_state = &cstate->base;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004692 const struct drm_i915_private *dev_priv = to_i915(dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304693 struct drm_plane *plane;
4694 const struct drm_plane_state *pstate;
Lyudea62163e2016-10-04 14:28:20 -04004695 struct skl_plane_wm *wm;
Matt Roper55994c22016-05-12 07:06:08 -07004696 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004697
Lyudea62163e2016-10-04 14:28:20 -04004698 /*
4699 * We'll only calculate watermarks for planes that are actually
4700 * enabled, so make sure all other planes are set as disabled.
4701 */
4702 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
4703
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304704 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
4705 const struct intel_plane_state *intel_pstate =
4706 to_intel_plane_state(pstate);
4707 enum plane_id plane_id = to_intel_plane(plane)->id;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304708 struct skl_wm_params wm_params;
Kumar, Maheshca476672017-08-17 19:15:24 +05304709 enum pipe pipe = to_intel_crtc(cstate->base.crtc)->pipe;
4710 uint16_t ddb_blocks;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304711
4712 wm = &pipe_wm->planes[plane_id];
Kumar, Maheshca476672017-08-17 19:15:24 +05304713 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][plane_id]);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304714 memset(&wm_params, 0, sizeof(struct skl_wm_params));
4715
4716 ret = skl_compute_plane_wm_params(dev_priv, cstate,
4717 intel_pstate, &wm_params);
4718 if (ret)
4719 return ret;
Lyudea62163e2016-10-04 14:28:20 -04004720
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004721 ret = skl_compute_wm_levels(dev_priv, ddb, cstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304722 intel_pstate, &wm_params, wm);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304723 if (ret)
4724 return ret;
Kumar, Maheshca476672017-08-17 19:15:24 +05304725 skl_compute_transition_wm(cstate, &wm_params, &wm->wm[0],
4726 ddb_blocks, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004727 }
Matt Roper024c9042015-09-24 15:53:11 -07004728 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004729
Matt Roper55994c22016-05-12 07:06:08 -07004730 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004731}
4732
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004733static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
4734 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00004735 const struct skl_ddb_entry *entry)
4736{
4737 if (entry->end)
4738 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
4739 else
4740 I915_WRITE(reg, 0);
4741}
4742
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004743static void skl_write_wm_level(struct drm_i915_private *dev_priv,
4744 i915_reg_t reg,
4745 const struct skl_wm_level *level)
4746{
4747 uint32_t val = 0;
4748
4749 if (level->plane_en) {
4750 val |= PLANE_WM_EN;
4751 val |= level->plane_res_b;
4752 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
4753 }
4754
4755 I915_WRITE(reg, val);
4756}
4757
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004758static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
4759 const struct skl_plane_wm *wm,
4760 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004761 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04004762{
4763 struct drm_crtc *crtc = &intel_crtc->base;
4764 struct drm_device *dev = crtc->dev;
4765 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004766 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004767 enum pipe pipe = intel_crtc->pipe;
4768
4769 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004770 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004771 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004772 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004773 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004774 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004775
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004776 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4777 &ddb->plane[pipe][plane_id]);
4778 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4779 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004780}
4781
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004782static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4783 const struct skl_plane_wm *wm,
4784 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004785{
4786 struct drm_crtc *crtc = &intel_crtc->base;
4787 struct drm_device *dev = crtc->dev;
4788 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004789 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004790 enum pipe pipe = intel_crtc->pipe;
4791
4792 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004793 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4794 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004795 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004796 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004797
4798 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004799 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004800}
4801
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004802bool skl_wm_level_equals(const struct skl_wm_level *l1,
4803 const struct skl_wm_level *l2)
4804{
4805 if (l1->plane_en != l2->plane_en)
4806 return false;
4807
4808 /* If both planes aren't enabled, the rest shouldn't matter */
4809 if (!l1->plane_en)
4810 return true;
4811
4812 return (l1->plane_res_l == l2->plane_res_l &&
4813 l1->plane_res_b == l2->plane_res_b);
4814}
4815
Lyude27082492016-08-24 07:48:10 +02004816static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4817 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004818{
Lyude27082492016-08-24 07:48:10 +02004819 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004820}
4821
Mika Kahola2b685042017-10-10 13:17:03 +03004822bool skl_ddb_allocation_overlaps(struct drm_i915_private *dev_priv,
4823 const struct skl_ddb_entry **entries,
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004824 const struct skl_ddb_entry *ddb,
4825 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004826{
Mika Kahola2b685042017-10-10 13:17:03 +03004827 enum pipe pipe;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004828
Mika Kahola2b685042017-10-10 13:17:03 +03004829 for_each_pipe(dev_priv, pipe) {
4830 if (pipe != ignore && entries[pipe] &&
4831 skl_ddb_entries_overlap(ddb, entries[pipe]))
Lyude27082492016-08-24 07:48:10 +02004832 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03004833 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004834
Lyude27082492016-08-24 07:48:10 +02004835 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004836}
4837
Matt Roper55994c22016-05-12 07:06:08 -07004838static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004839 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004840 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004841 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004842 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004843{
Matt Roperf4a96752016-05-12 07:06:06 -07004844 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004845 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004846
Matt Roper55994c22016-05-12 07:06:08 -07004847 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4848 if (ret)
4849 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004850
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004851 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004852 *changed = false;
4853 else
4854 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004855
Matt Roper55994c22016-05-12 07:06:08 -07004856 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004857}
4858
Matt Roper9b613022016-06-27 16:42:44 -07004859static uint32_t
4860pipes_modified(struct drm_atomic_state *state)
4861{
4862 struct drm_crtc *crtc;
4863 struct drm_crtc_state *cstate;
4864 uint32_t i, ret = 0;
4865
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01004866 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper9b613022016-06-27 16:42:44 -07004867 ret |= drm_crtc_mask(crtc);
4868
4869 return ret;
4870}
4871
Jani Nikulabb7791b2016-10-04 12:29:17 +03004872static int
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004873skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4874{
4875 struct drm_atomic_state *state = cstate->base.state;
4876 struct drm_device *dev = state->dev;
4877 struct drm_crtc *crtc = cstate->base.crtc;
4878 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4879 struct drm_i915_private *dev_priv = to_i915(dev);
4880 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4881 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4882 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4883 struct drm_plane_state *plane_state;
4884 struct drm_plane *plane;
4885 enum pipe pipe = intel_crtc->pipe;
4886
4887 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4888
4889 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
4890 enum plane_id plane_id = to_intel_plane(plane)->id;
4891
4892 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4893 &new_ddb->plane[pipe][plane_id]) &&
4894 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4895 &new_ddb->y_plane[pipe][plane_id]))
4896 continue;
4897
4898 plane_state = drm_atomic_get_plane_state(state, plane);
4899 if (IS_ERR(plane_state))
4900 return PTR_ERR(plane_state);
4901 }
4902
4903 return 0;
4904}
4905
4906static int
4907skl_compute_ddb(struct drm_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07004908{
4909 struct drm_device *dev = state->dev;
4910 struct drm_i915_private *dev_priv = to_i915(dev);
4911 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4912 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004913 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004914 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004915 int ret;
4916
4917 /*
4918 * If this is our first atomic update following hardware readout,
4919 * we can't trust the DDB that the BIOS programmed for us. Let's
4920 * pretend that all pipes switched active status so that we'll
4921 * ensure a full DDB recompute.
4922 */
Matt Roper1b54a882016-06-17 13:42:18 -07004923 if (dev_priv->wm.distrust_bios_wm) {
4924 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4925 state->acquire_ctx);
4926 if (ret)
4927 return ret;
4928
Matt Roper98d39492016-05-12 07:06:03 -07004929 intel_state->active_pipe_changes = ~0;
4930
Matt Roper1b54a882016-06-17 13:42:18 -07004931 /*
4932 * We usually only initialize intel_state->active_crtcs if we
4933 * we're doing a modeset; make sure this field is always
4934 * initialized during the sanitization process that happens
4935 * on the first commit too.
4936 */
4937 if (!intel_state->modeset)
4938 intel_state->active_crtcs = dev_priv->active_crtcs;
4939 }
4940
Matt Roper98d39492016-05-12 07:06:03 -07004941 /*
4942 * If the modeset changes which CRTC's are active, we need to
4943 * recompute the DDB allocation for *all* active pipes, even
4944 * those that weren't otherwise being modified in any way by this
4945 * atomic commit. Due to the shrinking of the per-pipe allocations
4946 * when new active CRTC's are added, it's possible for a pipe that
4947 * we were already using and aren't changing at all here to suddenly
4948 * become invalid if its DDB needs exceeds its new allocation.
4949 *
4950 * Note that if we wind up doing a full DDB recompute, we can't let
4951 * any other display updates race with this transaction, so we need
4952 * to grab the lock on *all* CRTC's.
4953 */
Matt Roper734fa012016-05-12 15:11:40 -07004954 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004955 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004956 intel_state->wm_results.dirty_pipes = ~0;
4957 }
Matt Roper98d39492016-05-12 07:06:03 -07004958
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004959 /*
4960 * We're not recomputing for the pipes not included in the commit, so
4961 * make sure we start with the current state.
4962 */
4963 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4964
Matt Roper98d39492016-05-12 07:06:03 -07004965 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4966 struct intel_crtc_state *cstate;
4967
4968 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4969 if (IS_ERR(cstate))
4970 return PTR_ERR(cstate);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004971
4972 ret = skl_allocate_pipe_ddb(cstate, ddb);
4973 if (ret)
4974 return ret;
4975
4976 ret = skl_ddb_add_affected_planes(cstate);
4977 if (ret)
4978 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004979 }
4980
4981 return 0;
4982}
4983
Matt Roper2722efb2016-08-17 15:55:55 -04004984static void
4985skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4986 struct skl_wm_values *src,
4987 enum pipe pipe)
4988{
Matt Roper2722efb2016-08-17 15:55:55 -04004989 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4990 sizeof(dst->ddb.y_plane[pipe]));
4991 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4992 sizeof(dst->ddb.plane[pipe]));
4993}
4994
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004995static void
4996skl_print_wm_changes(const struct drm_atomic_state *state)
4997{
4998 const struct drm_device *dev = state->dev;
4999 const struct drm_i915_private *dev_priv = to_i915(dev);
5000 const struct intel_atomic_state *intel_state =
5001 to_intel_atomic_state(state);
5002 const struct drm_crtc *crtc;
5003 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005004 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005005 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
5006 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005007 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005008
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005009 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01005010 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5011 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005012
Maarten Lankhorst75704982016-11-01 12:04:10 +01005013 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005014 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005015 const struct skl_ddb_entry *old, *new;
5016
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005017 old = &old_ddb->plane[pipe][plane_id];
5018 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005019
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005020 if (skl_ddb_entry_equal(old, new))
5021 continue;
5022
Maarten Lankhorst75704982016-11-01 12:04:10 +01005023 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
5024 intel_plane->base.base.id,
5025 intel_plane->base.name,
5026 old->start, old->end,
5027 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005028 }
5029 }
5030}
5031
Matt Roper98d39492016-05-12 07:06:03 -07005032static int
5033skl_compute_wm(struct drm_atomic_state *state)
5034{
5035 struct drm_crtc *crtc;
5036 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07005037 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
5038 struct skl_wm_values *results = &intel_state->wm_results;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005039 struct drm_device *dev = state->dev;
Matt Roper734fa012016-05-12 15:11:40 -07005040 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07005041 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07005042 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005043
5044 /*
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005045 * When we distrust bios wm we always need to recompute to set the
5046 * expected DDB allocations for each CRTC.
5047 */
5048 if (to_i915(dev)->wm.distrust_bios_wm)
5049 changed = true;
5050
5051 /*
Matt Roper98d39492016-05-12 07:06:03 -07005052 * If this transaction isn't actually touching any CRTC's, don't
5053 * bother with watermark calculation. Note that if we pass this
5054 * test, we're guaranteed to hold at least one CRTC state mutex,
5055 * which means we can safely use values like dev_priv->active_crtcs
5056 * since any racing commits that want to update them would need to
5057 * hold _all_ CRTC state mutexes.
5058 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005059 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper98d39492016-05-12 07:06:03 -07005060 changed = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005061
Matt Roper98d39492016-05-12 07:06:03 -07005062 if (!changed)
5063 return 0;
5064
Matt Roper734fa012016-05-12 15:11:40 -07005065 /* Clear all dirty flags */
5066 results->dirty_pipes = 0;
5067
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005068 ret = skl_compute_ddb(state);
Matt Roper98d39492016-05-12 07:06:03 -07005069 if (ret)
5070 return ret;
5071
Matt Roper734fa012016-05-12 15:11:40 -07005072 /*
5073 * Calculate WM's for all pipes that are part of this transaction.
5074 * Note that the DDB allocation above may have added more CRTC's that
5075 * weren't otherwise being modified (and set bits in dirty_pipes) if
5076 * pipe allocations had to change.
5077 *
5078 * FIXME: Now that we're doing this in the atomic check phase, we
5079 * should allow skl_update_pipe_wm() to return failure in cases where
5080 * no suitable watermark values can be found.
5081 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005082 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07005083 struct intel_crtc_state *intel_cstate =
5084 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005085 const struct skl_pipe_wm *old_pipe_wm =
5086 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07005087
5088 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005089 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
5090 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07005091 if (ret)
5092 return ret;
5093
5094 if (changed)
5095 results->dirty_pipes |= drm_crtc_mask(crtc);
5096
5097 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
5098 /* This pipe's WM's did not change */
5099 continue;
5100
5101 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07005102 }
5103
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005104 skl_print_wm_changes(state);
5105
Matt Roper98d39492016-05-12 07:06:03 -07005106 return 0;
5107}
5108
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005109static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
5110 struct intel_crtc_state *cstate)
5111{
5112 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
5113 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5114 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005115 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005116 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005117 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005118
5119 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
5120 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005121
5122 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005123
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005124 for_each_plane_id_on_crtc(crtc, plane_id) {
5125 if (plane_id != PLANE_CURSOR)
5126 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
5127 ddb, plane_id);
5128 else
5129 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
5130 ddb);
5131 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005132}
5133
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005134static void skl_initial_wm(struct intel_atomic_state *state,
5135 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005136{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005137 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02005138 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005139 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005140 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04005141 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02005142 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07005143
Ville Syrjälä432081b2016-10-31 22:37:03 +02005144 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005145 return;
5146
Matt Roper734fa012016-05-12 15:11:40 -07005147 mutex_lock(&dev_priv->wm.wm_mutex);
5148
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005149 if (cstate->base.active_changed)
5150 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02005151
5152 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07005153
5154 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005155}
5156
Ville Syrjäläd8905652016-01-14 14:53:35 +02005157static void ilk_compute_wm_config(struct drm_device *dev,
5158 struct intel_wm_config *config)
5159{
5160 struct intel_crtc *crtc;
5161
5162 /* Compute the currently _active_ config */
5163 for_each_intel_crtc(dev, crtc) {
5164 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5165
5166 if (!wm->pipe_enabled)
5167 continue;
5168
5169 config->sprites_enabled |= wm->sprites_enabled;
5170 config->sprites_scaled |= wm->sprites_scaled;
5171 config->num_pipes_active++;
5172 }
5173}
5174
Matt Ropered4a6a72016-02-23 17:20:13 -08005175static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005176{
Chris Wilson91c8a322016-07-05 10:40:23 +01005177 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005178 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005179 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005180 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005181 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005182 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005183
Ville Syrjäläd8905652016-01-14 14:53:35 +02005184 ilk_compute_wm_config(dev, &config);
5185
5186 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
5187 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005188
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005189 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005190 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005191 config.num_pipes_active == 1 && config.sprites_enabled) {
5192 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
5193 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005194
Imre Deak820c1982013-12-17 14:46:36 +02005195 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005196 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005197 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005198 }
5199
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005200 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005201 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005202
Imre Deak820c1982013-12-17 14:46:36 +02005203 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005204
Imre Deak820c1982013-12-17 14:46:36 +02005205 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005206}
5207
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005208static void ilk_initial_watermarks(struct intel_atomic_state *state,
5209 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005210{
Matt Ropered4a6a72016-02-23 17:20:13 -08005211 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5212 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005213
Matt Ropered4a6a72016-02-23 17:20:13 -08005214 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07005215 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005216 ilk_program_watermarks(dev_priv);
5217 mutex_unlock(&dev_priv->wm.wm_mutex);
5218}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005219
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005220static void ilk_optimize_watermarks(struct intel_atomic_state *state,
5221 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08005222{
5223 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5224 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
5225
5226 mutex_lock(&dev_priv->wm.wm_mutex);
5227 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07005228 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08005229 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005230 }
Matt Ropered4a6a72016-02-23 17:20:13 -08005231 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005232}
5233
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005234static inline void skl_wm_level_from_reg_val(uint32_t val,
5235 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005236{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005237 level->plane_en = val & PLANE_WM_EN;
5238 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5239 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5240 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005241}
5242
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005243void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
5244 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005245{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005246 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00005247 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00005248 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005249 int level, max_level;
5250 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005251 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005252
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005253 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005254
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005255 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
5256 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005257
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005258 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005259 if (plane_id != PLANE_CURSOR)
5260 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005261 else
5262 val = I915_READ(CUR_WM(pipe, level));
5263
5264 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5265 }
5266
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005267 if (plane_id != PLANE_CURSOR)
5268 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005269 else
5270 val = I915_READ(CUR_WM_TRANS(pipe));
5271
5272 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5273 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005274
Matt Roper3ef00282015-03-09 10:19:24 -07005275 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005276 return;
5277
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005278 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00005279}
5280
5281void skl_wm_get_hw_state(struct drm_device *dev)
5282{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005283 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005284 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00005285 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00005286 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005287 struct intel_crtc *intel_crtc;
5288 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00005289
Damien Lespiaua269c582014-11-04 17:06:49 +00005290 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005291 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5292 intel_crtc = to_intel_crtc(crtc);
5293 cstate = to_intel_crtc_state(crtc->state);
5294
5295 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
5296
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005297 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005298 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005299 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005300
Matt Roper279e99d2016-05-12 07:06:02 -07005301 if (dev_priv->active_crtcs) {
5302 /* Fully recompute DDB on first atomic commit */
5303 dev_priv->wm.distrust_bios_wm = true;
5304 } else {
5305 /* Easy/common case; just sanitize DDB now if everything off */
5306 memset(ddb, 0, sizeof(*ddb));
5307 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005308}
5309
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005310static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
5311{
5312 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005313 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005314 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005315 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07005316 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07005317 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005318 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005319 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005320 [PIPE_A] = WM0_PIPEA_ILK,
5321 [PIPE_B] = WM0_PIPEB_ILK,
5322 [PIPE_C] = WM0_PIPEC_IVB,
5323 };
5324
5325 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005326 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02005327 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005328
Ville Syrjälä15606532016-05-13 17:55:17 +03005329 memset(active, 0, sizeof(*active));
5330
Matt Roper3ef00282015-03-09 10:19:24 -07005331 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005332
5333 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005334 u32 tmp = hw->wm_pipe[pipe];
5335
5336 /*
5337 * For active pipes LP0 watermark is marked as
5338 * enabled, and LP1+ watermaks as disabled since
5339 * we can't really reverse compute them in case
5340 * multiple pipes are active.
5341 */
5342 active->wm[0].enable = true;
5343 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5344 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5345 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
5346 active->linetime = hw->wm_linetime[pipe];
5347 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005348 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005349
5350 /*
5351 * For inactive pipes, all watermark levels
5352 * should be marked as enabled but zeroed,
5353 * which is what we'd compute them to.
5354 */
5355 for (level = 0; level <= max_level; level++)
5356 active->wm[level].enable = true;
5357 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005358
5359 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005360}
5361
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005362#define _FW_WM(value, plane) \
5363 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5364#define _FW_WM_VLV(value, plane) \
5365 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5366
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005367static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5368 struct g4x_wm_values *wm)
5369{
5370 uint32_t tmp;
5371
5372 tmp = I915_READ(DSPFW1);
5373 wm->sr.plane = _FW_WM(tmp, SR);
5374 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5375 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5376 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5377
5378 tmp = I915_READ(DSPFW2);
5379 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5380 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5381 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5382 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5383 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5384 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5385
5386 tmp = I915_READ(DSPFW3);
5387 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5388 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5389 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5390 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5391}
5392
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005393static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5394 struct vlv_wm_values *wm)
5395{
5396 enum pipe pipe;
5397 uint32_t tmp;
5398
5399 for_each_pipe(dev_priv, pipe) {
5400 tmp = I915_READ(VLV_DDL(pipe));
5401
Ville Syrjälä1b313892016-11-28 19:37:08 +02005402 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005403 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005404 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005405 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005406 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005407 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005408 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005409 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
5410 }
5411
5412 tmp = I915_READ(DSPFW1);
5413 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005414 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5415 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
5416 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005417
5418 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005419 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
5420 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5421 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005422
5423 tmp = I915_READ(DSPFW3);
5424 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5425
5426 if (IS_CHERRYVIEW(dev_priv)) {
5427 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005428 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5429 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005430
5431 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005432 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
5433 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005434
5435 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005436 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
5437 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005438
5439 tmp = I915_READ(DSPHOWM);
5440 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005441 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
5442 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
5443 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
5444 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5445 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5446 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5447 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5448 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5449 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005450 } else {
5451 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005452 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5453 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005454
5455 tmp = I915_READ(DSPHOWM);
5456 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005457 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5458 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5459 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5460 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5461 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5462 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005463 }
5464}
5465
5466#undef _FW_WM
5467#undef _FW_WM_VLV
5468
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005469void g4x_wm_get_hw_state(struct drm_device *dev)
5470{
5471 struct drm_i915_private *dev_priv = to_i915(dev);
5472 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
5473 struct intel_crtc *crtc;
5474
5475 g4x_read_wm_values(dev_priv, wm);
5476
5477 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
5478
5479 for_each_intel_crtc(dev, crtc) {
5480 struct intel_crtc_state *crtc_state =
5481 to_intel_crtc_state(crtc->base.state);
5482 struct g4x_wm_state *active = &crtc->wm.active.g4x;
5483 struct g4x_pipe_wm *raw;
5484 enum pipe pipe = crtc->pipe;
5485 enum plane_id plane_id;
5486 int level, max_level;
5487
5488 active->cxsr = wm->cxsr;
5489 active->hpll_en = wm->hpll_en;
5490 active->fbc_en = wm->fbc_en;
5491
5492 active->sr = wm->sr;
5493 active->hpll = wm->hpll;
5494
5495 for_each_plane_id_on_crtc(crtc, plane_id) {
5496 active->wm.plane[plane_id] =
5497 wm->pipe[pipe].plane[plane_id];
5498 }
5499
5500 if (wm->cxsr && wm->hpll_en)
5501 max_level = G4X_WM_LEVEL_HPLL;
5502 else if (wm->cxsr)
5503 max_level = G4X_WM_LEVEL_SR;
5504 else
5505 max_level = G4X_WM_LEVEL_NORMAL;
5506
5507 level = G4X_WM_LEVEL_NORMAL;
5508 raw = &crtc_state->wm.g4x.raw[level];
5509 for_each_plane_id_on_crtc(crtc, plane_id)
5510 raw->plane[plane_id] = active->wm.plane[plane_id];
5511
5512 if (++level > max_level)
5513 goto out;
5514
5515 raw = &crtc_state->wm.g4x.raw[level];
5516 raw->plane[PLANE_PRIMARY] = active->sr.plane;
5517 raw->plane[PLANE_CURSOR] = active->sr.cursor;
5518 raw->plane[PLANE_SPRITE0] = 0;
5519 raw->fbc = active->sr.fbc;
5520
5521 if (++level > max_level)
5522 goto out;
5523
5524 raw = &crtc_state->wm.g4x.raw[level];
5525 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
5526 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
5527 raw->plane[PLANE_SPRITE0] = 0;
5528 raw->fbc = active->hpll.fbc;
5529
5530 out:
5531 for_each_plane_id_on_crtc(crtc, plane_id)
5532 g4x_raw_plane_wm_set(crtc_state, level,
5533 plane_id, USHRT_MAX);
5534 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
5535
5536 crtc_state->wm.g4x.optimal = *active;
5537 crtc_state->wm.g4x.intermediate = *active;
5538
5539 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
5540 pipe_name(pipe),
5541 wm->pipe[pipe].plane[PLANE_PRIMARY],
5542 wm->pipe[pipe].plane[PLANE_CURSOR],
5543 wm->pipe[pipe].plane[PLANE_SPRITE0]);
5544 }
5545
5546 DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
5547 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
5548 DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
5549 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
5550 DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n",
5551 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
5552}
5553
5554void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
5555{
5556 struct intel_plane *plane;
5557 struct intel_crtc *crtc;
5558
5559 mutex_lock(&dev_priv->wm.wm_mutex);
5560
5561 for_each_intel_plane(&dev_priv->drm, plane) {
5562 struct intel_crtc *crtc =
5563 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5564 struct intel_crtc_state *crtc_state =
5565 to_intel_crtc_state(crtc->base.state);
5566 struct intel_plane_state *plane_state =
5567 to_intel_plane_state(plane->base.state);
5568 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
5569 enum plane_id plane_id = plane->id;
5570 int level;
5571
5572 if (plane_state->base.visible)
5573 continue;
5574
5575 for (level = 0; level < 3; level++) {
5576 struct g4x_pipe_wm *raw =
5577 &crtc_state->wm.g4x.raw[level];
5578
5579 raw->plane[plane_id] = 0;
5580 wm_state->wm.plane[plane_id] = 0;
5581 }
5582
5583 if (plane_id == PLANE_PRIMARY) {
5584 for (level = 0; level < 3; level++) {
5585 struct g4x_pipe_wm *raw =
5586 &crtc_state->wm.g4x.raw[level];
5587 raw->fbc = 0;
5588 }
5589
5590 wm_state->sr.fbc = 0;
5591 wm_state->hpll.fbc = 0;
5592 wm_state->fbc_en = false;
5593 }
5594 }
5595
5596 for_each_intel_crtc(&dev_priv->drm, crtc) {
5597 struct intel_crtc_state *crtc_state =
5598 to_intel_crtc_state(crtc->base.state);
5599
5600 crtc_state->wm.g4x.intermediate =
5601 crtc_state->wm.g4x.optimal;
5602 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
5603 }
5604
5605 g4x_program_watermarks(dev_priv);
5606
5607 mutex_unlock(&dev_priv->wm.wm_mutex);
5608}
5609
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005610void vlv_wm_get_hw_state(struct drm_device *dev)
5611{
5612 struct drm_i915_private *dev_priv = to_i915(dev);
5613 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02005614 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005615 u32 val;
5616
5617 vlv_read_wm_values(dev_priv, wm);
5618
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005619 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
5620 wm->level = VLV_WM_LEVEL_PM2;
5621
5622 if (IS_CHERRYVIEW(dev_priv)) {
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005623 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005624
5625 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5626 if (val & DSP_MAXFIFO_PM5_ENABLE)
5627 wm->level = VLV_WM_LEVEL_PM5;
5628
Ville Syrjälä58590c12015-09-08 21:05:12 +03005629 /*
5630 * If DDR DVFS is disabled in the BIOS, Punit
5631 * will never ack the request. So if that happens
5632 * assume we don't have to enable/disable DDR DVFS
5633 * dynamically. To test that just set the REQ_ACK
5634 * bit to poke the Punit, but don't change the
5635 * HIGH/LOW bits so that we don't actually change
5636 * the current state.
5637 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005638 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03005639 val |= FORCE_DDR_FREQ_REQ_ACK;
5640 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
5641
5642 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
5643 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
5644 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
5645 "assuming DDR DVFS is disabled\n");
5646 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
5647 } else {
5648 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
5649 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
5650 wm->level = VLV_WM_LEVEL_DDR_DVFS;
5651 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005652
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005653 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005654 }
5655
Ville Syrjäläff32c542017-03-02 19:14:57 +02005656 for_each_intel_crtc(dev, crtc) {
5657 struct intel_crtc_state *crtc_state =
5658 to_intel_crtc_state(crtc->base.state);
5659 struct vlv_wm_state *active = &crtc->wm.active.vlv;
5660 const struct vlv_fifo_state *fifo_state =
5661 &crtc_state->wm.vlv.fifo_state;
5662 enum pipe pipe = crtc->pipe;
5663 enum plane_id plane_id;
5664 int level;
5665
5666 vlv_get_fifo_size(crtc_state);
5667
5668 active->num_levels = wm->level + 1;
5669 active->cxsr = wm->cxsr;
5670
Ville Syrjäläff32c542017-03-02 19:14:57 +02005671 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005672 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02005673 &crtc_state->wm.vlv.raw[level];
5674
5675 active->sr[level].plane = wm->sr.plane;
5676 active->sr[level].cursor = wm->sr.cursor;
5677
5678 for_each_plane_id_on_crtc(crtc, plane_id) {
5679 active->wm[level].plane[plane_id] =
5680 wm->pipe[pipe].plane[plane_id];
5681
5682 raw->plane[plane_id] =
5683 vlv_invert_wm_value(active->wm[level].plane[plane_id],
5684 fifo_state->plane[plane_id]);
5685 }
5686 }
5687
5688 for_each_plane_id_on_crtc(crtc, plane_id)
5689 vlv_raw_plane_wm_set(crtc_state, level,
5690 plane_id, USHRT_MAX);
5691 vlv_invalidate_wms(crtc, active, level);
5692
5693 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02005694 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02005695
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005696 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 +02005697 pipe_name(pipe),
5698 wm->pipe[pipe].plane[PLANE_PRIMARY],
5699 wm->pipe[pipe].plane[PLANE_CURSOR],
5700 wm->pipe[pipe].plane[PLANE_SPRITE0],
5701 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02005702 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005703
5704 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
5705 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
5706}
5707
Ville Syrjälä602ae832017-03-02 19:15:02 +02005708void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
5709{
5710 struct intel_plane *plane;
5711 struct intel_crtc *crtc;
5712
5713 mutex_lock(&dev_priv->wm.wm_mutex);
5714
5715 for_each_intel_plane(&dev_priv->drm, plane) {
5716 struct intel_crtc *crtc =
5717 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5718 struct intel_crtc_state *crtc_state =
5719 to_intel_crtc_state(crtc->base.state);
5720 struct intel_plane_state *plane_state =
5721 to_intel_plane_state(plane->base.state);
5722 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
5723 const struct vlv_fifo_state *fifo_state =
5724 &crtc_state->wm.vlv.fifo_state;
5725 enum plane_id plane_id = plane->id;
5726 int level;
5727
5728 if (plane_state->base.visible)
5729 continue;
5730
5731 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005732 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02005733 &crtc_state->wm.vlv.raw[level];
5734
5735 raw->plane[plane_id] = 0;
5736
5737 wm_state->wm[level].plane[plane_id] =
5738 vlv_invert_wm_value(raw->plane[plane_id],
5739 fifo_state->plane[plane_id]);
5740 }
5741 }
5742
5743 for_each_intel_crtc(&dev_priv->drm, crtc) {
5744 struct intel_crtc_state *crtc_state =
5745 to_intel_crtc_state(crtc->base.state);
5746
5747 crtc_state->wm.vlv.intermediate =
5748 crtc_state->wm.vlv.optimal;
5749 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
5750 }
5751
5752 vlv_program_watermarks(dev_priv);
5753
5754 mutex_unlock(&dev_priv->wm.wm_mutex);
5755}
5756
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005757void ilk_wm_get_hw_state(struct drm_device *dev)
5758{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005759 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005760 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005761 struct drm_crtc *crtc;
5762
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01005763 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005764 ilk_pipe_wm_get_hw_state(crtc);
5765
5766 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
5767 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
5768 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
5769
5770 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005771 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02005772 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
5773 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
5774 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005775
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005776 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005777 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
5778 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01005779 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005780 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
5781 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005782
5783 hw->enable_fbc_wm =
5784 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
5785}
5786
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005787/**
5788 * intel_update_watermarks - update FIFO watermark values based on current modes
5789 *
5790 * Calculate watermark values for the various WM regs based on current mode
5791 * and plane configuration.
5792 *
5793 * There are several cases to deal with here:
5794 * - normal (i.e. non-self-refresh)
5795 * - self-refresh (SR) mode
5796 * - lines are large relative to FIFO size (buffer can hold up to 2)
5797 * - lines are small relative to FIFO size (buffer can hold more than 2
5798 * lines), so need to account for TLB latency
5799 *
5800 * The normal calculation is:
5801 * watermark = dotclock * bytes per pixel * latency
5802 * where latency is platform & configuration dependent (we assume pessimal
5803 * values here).
5804 *
5805 * The SR calculation is:
5806 * watermark = (trunc(latency/line time)+1) * surface width *
5807 * bytes per pixel
5808 * where
5809 * line time = htotal / dotclock
5810 * surface width = hdisplay for normal plane and 64 for cursor
5811 * and latency is assumed to be high, as above.
5812 *
5813 * The final value programmed to the register should always be rounded up,
5814 * and include an extra 2 entries to account for clock crossings.
5815 *
5816 * We don't use the sprite, so we can ignore that. And on Crestline we have
5817 * to set the non-SR watermarks to 8.
5818 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02005819void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005820{
Ville Syrjälä432081b2016-10-31 22:37:03 +02005821 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005822
5823 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005824 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005825}
5826
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305827void intel_enable_ipc(struct drm_i915_private *dev_priv)
5828{
5829 u32 val;
5830
Rodrigo Vivi4d6ef0d2017-10-02 23:36:50 -07005831 /* Display WA #0477 WaDisableIPC: skl */
5832 if (IS_SKYLAKE(dev_priv)) {
5833 dev_priv->ipc_enabled = false;
5834 return;
5835 }
5836
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305837 val = I915_READ(DISP_ARB_CTL2);
5838
5839 if (dev_priv->ipc_enabled)
5840 val |= DISP_IPC_ENABLE;
5841 else
5842 val &= ~DISP_IPC_ENABLE;
5843
5844 I915_WRITE(DISP_ARB_CTL2, val);
5845}
5846
5847void intel_init_ipc(struct drm_i915_private *dev_priv)
5848{
5849 dev_priv->ipc_enabled = false;
5850 if (!HAS_IPC(dev_priv))
5851 return;
5852
5853 dev_priv->ipc_enabled = true;
5854 intel_enable_ipc(dev_priv);
5855}
5856
Jani Nikulae2828912016-01-18 09:19:47 +02005857/*
Daniel Vetter92703882012-08-09 16:46:01 +02005858 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02005859 */
5860DEFINE_SPINLOCK(mchdev_lock);
5861
5862/* Global for IPS driver to get at the current i915 device. Protected by
5863 * mchdev_lock. */
5864static struct drm_i915_private *i915_mch_dev;
5865
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005866bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005867{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005868 u16 rgvswctl;
5869
Chris Wilson67520412017-03-02 13:28:01 +00005870 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02005871
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005872 rgvswctl = I915_READ16(MEMSWCTL);
5873 if (rgvswctl & MEMCTL_CMD_STS) {
5874 DRM_DEBUG("gpu busy, RCS change rejected\n");
5875 return false; /* still busy with another command */
5876 }
5877
5878 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5879 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5880 I915_WRITE16(MEMSWCTL, rgvswctl);
5881 POSTING_READ16(MEMSWCTL);
5882
5883 rgvswctl |= MEMCTL_CMD_STS;
5884 I915_WRITE16(MEMSWCTL, rgvswctl);
5885
5886 return true;
5887}
5888
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005889static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005890{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005891 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005892 u8 fmax, fmin, fstart, vstart;
5893
Daniel Vetter92703882012-08-09 16:46:01 +02005894 spin_lock_irq(&mchdev_lock);
5895
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005896 rgvmodectl = I915_READ(MEMMODECTL);
5897
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005898 /* Enable temp reporting */
5899 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
5900 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
5901
5902 /* 100ms RC evaluation intervals */
5903 I915_WRITE(RCUPEI, 100000);
5904 I915_WRITE(RCDNEI, 100000);
5905
5906 /* Set max/min thresholds to 90ms and 80ms respectively */
5907 I915_WRITE(RCBMAXAVG, 90000);
5908 I915_WRITE(RCBMINAVG, 80000);
5909
5910 I915_WRITE(MEMIHYST, 1);
5911
5912 /* Set up min, max, and cur for interrupt handling */
5913 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5914 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5915 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5916 MEMMODE_FSTART_SHIFT;
5917
Ville Syrjälä616847e2015-09-18 20:03:19 +03005918 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005919 PXVFREQ_PX_SHIFT;
5920
Daniel Vetter20e4d402012-08-08 23:35:39 +02005921 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
5922 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005923
Daniel Vetter20e4d402012-08-08 23:35:39 +02005924 dev_priv->ips.max_delay = fstart;
5925 dev_priv->ips.min_delay = fmin;
5926 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005927
5928 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
5929 fmax, fmin, fstart);
5930
5931 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5932
5933 /*
5934 * Interrupts will be enabled in ironlake_irq_postinstall
5935 */
5936
5937 I915_WRITE(VIDSTART, vstart);
5938 POSTING_READ(VIDSTART);
5939
5940 rgvmodectl |= MEMMODE_SWMODE_EN;
5941 I915_WRITE(MEMMODECTL, rgvmodectl);
5942
Daniel Vetter92703882012-08-09 16:46:01 +02005943 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005944 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005945 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005946
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005947 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005948
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005949 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
5950 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005951 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005952 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005953 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02005954
5955 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005956}
5957
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005958static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005959{
Daniel Vetter92703882012-08-09 16:46:01 +02005960 u16 rgvswctl;
5961
5962 spin_lock_irq(&mchdev_lock);
5963
5964 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005965
5966 /* Ack interrupts, disable EFC interrupt */
5967 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5968 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5969 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5970 I915_WRITE(DEIIR, DE_PCU_EVENT);
5971 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5972
5973 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005974 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005975 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005976 rgvswctl |= MEMCTL_CMD_STS;
5977 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005978 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005979
Daniel Vetter92703882012-08-09 16:46:01 +02005980 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005981}
5982
Daniel Vetteracbe9472012-07-26 11:50:05 +02005983/* There's a funny hw issue where the hw returns all 0 when reading from
5984 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
5985 * ourselves, instead of doing a rmw cycle (which might result in us clearing
5986 * all limits and the gpu stuck at whatever frequency it is at atm).
5987 */
Akash Goel74ef1172015-03-06 11:07:19 +05305988static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005989{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01005990 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005991 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005992
Daniel Vetter20b46e52012-07-26 11:16:14 +02005993 /* Only set the down limit when we've reached the lowest level to avoid
5994 * getting more interrupts, otherwise leave this clear. This prevents a
5995 * race in the hw when coming out of rc6: There's a tiny window where
5996 * the hw runs at the minimal clock before selecting the desired
5997 * frequency, if the down threshold expires in that window we will not
5998 * receive a down interrupt. */
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07005999 if (INTEL_GEN(dev_priv) >= 9) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006000 limits = (rps->max_freq_softlimit) << 23;
6001 if (val <= rps->min_freq_softlimit)
6002 limits |= (rps->min_freq_softlimit) << 14;
Akash Goel74ef1172015-03-06 11:07:19 +05306003 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006004 limits = rps->max_freq_softlimit << 24;
6005 if (val <= rps->min_freq_softlimit)
6006 limits |= rps->min_freq_softlimit << 16;
Akash Goel74ef1172015-03-06 11:07:19 +05306007 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02006008
6009 return limits;
6010}
6011
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006012static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
6013{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006014 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006015 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05306016 u32 threshold_up = 0, threshold_down = 0; /* in % */
6017 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006018
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006019 new_power = rps->power;
6020 switch (rps->power) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006021 case LOW_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006022 if (val > rps->efficient_freq + 1 &&
6023 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006024 new_power = BETWEEN;
6025 break;
6026
6027 case BETWEEN:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006028 if (val <= rps->efficient_freq &&
6029 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006030 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006031 else if (val >= rps->rp0_freq &&
6032 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006033 new_power = HIGH_POWER;
6034 break;
6035
6036 case HIGH_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006037 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
6038 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006039 new_power = BETWEEN;
6040 break;
6041 }
6042 /* Max/min bins are special */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006043 if (val <= rps->min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006044 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006045 if (val >= rps->max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006046 new_power = HIGH_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006047 if (new_power == rps->power)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006048 return;
6049
6050 /* Note the units here are not exactly 1us, but 1280ns. */
6051 switch (new_power) {
6052 case LOW_POWER:
6053 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05306054 ei_up = 16000;
6055 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006056
6057 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306058 ei_down = 32000;
6059 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006060 break;
6061
6062 case BETWEEN:
6063 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05306064 ei_up = 13000;
6065 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006066
6067 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306068 ei_down = 32000;
6069 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006070 break;
6071
6072 case HIGH_POWER:
6073 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05306074 ei_up = 10000;
6075 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006076
6077 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306078 ei_down = 32000;
6079 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006080 break;
6081 }
6082
Mika Kuoppala6067a272017-02-15 15:52:59 +02006083 /* When byt can survive without system hang with dynamic
6084 * sw freq adjustments, this restriction can be lifted.
6085 */
6086 if (IS_VALLEYVIEW(dev_priv))
6087 goto skip_hw_write;
6088
Akash Goel8a586432015-03-06 11:07:18 +05306089 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006090 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05306091 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006092 GT_INTERVAL_FROM_US(dev_priv,
6093 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306094
6095 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006096 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05306097 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006098 GT_INTERVAL_FROM_US(dev_priv,
6099 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306100
Chris Wilsona72b5622016-07-02 15:35:59 +01006101 I915_WRITE(GEN6_RP_CONTROL,
6102 GEN6_RP_MEDIA_TURBO |
6103 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6104 GEN6_RP_MEDIA_IS_GFX |
6105 GEN6_RP_ENABLE |
6106 GEN6_RP_UP_BUSY_AVG |
6107 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05306108
Mika Kuoppala6067a272017-02-15 15:52:59 +02006109skip_hw_write:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006110 rps->power = new_power;
6111 rps->up_threshold = threshold_up;
6112 rps->down_threshold = threshold_down;
6113 rps->last_adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006114}
6115
Chris Wilson2876ce72014-03-28 08:03:34 +00006116static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
6117{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006118 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson2876ce72014-03-28 08:03:34 +00006119 u32 mask = 0;
6120
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006121 /* We use UP_EI_EXPIRED interupts for both up/down in manual mode */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006122 if (val > rps->min_freq_softlimit)
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006123 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006124 if (val < rps->max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00006125 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00006126
Chris Wilson7b3c29f2014-07-10 20:31:19 +01006127 mask &= dev_priv->pm_rps_events;
6128
Imre Deak59d02a12014-12-19 19:33:26 +02006129 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00006130}
6131
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006132/* gen6_set_rps is called to update the frequency request, but should also be
6133 * called when the range (min_delay and max_delay) is modified so that we can
6134 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006135static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02006136{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006137 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6138
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006139 /* min/max delay may still have been modified so be sure to
6140 * write the limits value.
6141 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006142 if (val != rps->cur_freq) {
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006143 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006144
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006145 if (INTEL_GEN(dev_priv) >= 9)
Akash Goel57041952015-03-06 11:07:17 +05306146 I915_WRITE(GEN6_RPNSWREQ,
6147 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01006148 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006149 I915_WRITE(GEN6_RPNSWREQ,
6150 HSW_FREQUENCY(val));
6151 else
6152 I915_WRITE(GEN6_RPNSWREQ,
6153 GEN6_FREQUENCY(val) |
6154 GEN6_OFFSET(0) |
6155 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006156 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006157
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006158 /* Make sure we continue to get interrupts
6159 * until we hit the minimum or maximum frequencies.
6160 */
Akash Goel74ef1172015-03-06 11:07:19 +05306161 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00006162 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006163
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006164 rps->cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02006165 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006166
6167 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006168}
6169
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006170static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006171{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006172 int err;
6173
Chris Wilsondc979972016-05-10 14:10:04 +01006174 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006175 "Odd GPU freq value\n"))
6176 val &= ~1;
6177
Deepak Scd25dd52015-07-10 18:31:40 +05306178 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
6179
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006180 if (val != dev_priv->gt_pm.rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006181 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
6182 if (err)
6183 return err;
6184
Chris Wilsondb4c5e02017-02-10 15:03:46 +00006185 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01006186 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006187
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006188 dev_priv->gt_pm.rps.cur_freq = val;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006189 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006190
6191 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006192}
6193
Deepak Sa7f6e232015-05-09 18:04:44 +05306194/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05306195 *
6196 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05306197 * 1. Forcewake Media well.
6198 * 2. Request idle freq.
6199 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05306200*/
6201static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
6202{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006203 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6204 u32 val = rps->idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006205 int err;
Deepak S5549d252014-06-28 11:26:11 +05306206
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006207 if (rps->cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05306208 return;
6209
Chris Wilsonc9efef72017-01-02 15:28:45 +00006210 /* The punit delays the write of the frequency and voltage until it
6211 * determines the GPU is awake. During normal usage we don't want to
6212 * waste power changing the frequency if the GPU is sleeping (rc6).
6213 * However, the GPU and driver is now idle and we do not want to delay
6214 * switching to minimum voltage (reducing power whilst idle) as we do
6215 * not expect to be woken in the near future and so must flush the
6216 * change by waking the device.
6217 *
6218 * We choose to take the media powerwell (either would do to trick the
6219 * punit into committing the voltage change) as that takes a lot less
6220 * power than the render powerwell.
6221 */
Deepak Sa7f6e232015-05-09 18:04:44 +05306222 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006223 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05306224 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006225
6226 if (err)
6227 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05306228}
6229
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006230void gen6_rps_busy(struct drm_i915_private *dev_priv)
6231{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006232 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6233
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006234 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006235 if (rps->enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00006236 u8 freq;
6237
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006238 if (dev_priv->pm_rps_events & GEN6_PM_RP_UP_EI_EXPIRED)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006239 gen6_rps_reset_ei(dev_priv);
6240 I915_WRITE(GEN6_PMINTRMSK,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006241 gen6_rps_pm_mask(dev_priv, rps->cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02006242
Chris Wilsonc33d2472016-07-04 08:08:36 +01006243 gen6_enable_rps_interrupts(dev_priv);
6244
Chris Wilsonbd648182017-02-10 15:03:48 +00006245 /* Use the user's desired frequency as a guide, but for better
6246 * performance, jump directly to RPe as our starting frequency.
6247 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006248 freq = max(rps->cur_freq,
6249 rps->efficient_freq);
Chris Wilsonbd648182017-02-10 15:03:48 +00006250
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006251 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00006252 clamp(freq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006253 rps->min_freq_softlimit,
6254 rps->max_freq_softlimit)))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006255 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006256 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006257 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006258}
6259
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006260void gen6_rps_idle(struct drm_i915_private *dev_priv)
6261{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006262 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6263
Chris Wilsonc33d2472016-07-04 08:08:36 +01006264 /* Flush our bottom-half so that it does not race with us
6265 * setting the idle frequency and so that it is bounded by
6266 * our rpm wakeref. And then disable the interrupts to stop any
6267 * futher RPS reclocking whilst we are asleep.
6268 */
6269 gen6_disable_rps_interrupts(dev_priv);
6270
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006271 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006272 if (rps->enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01006273 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05306274 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006275 else
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006276 gen6_set_rps(dev_priv, rps->idle_freq);
6277 rps->last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03006278 I915_WRITE(GEN6_PMINTRMSK,
6279 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01006280 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006281 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006282}
6283
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006284void gen6_rps_boost(struct drm_i915_gem_request *rq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006285 struct intel_rps_client *rps_client)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006286{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006287 struct intel_rps *rps = &rq->i915->gt_pm.rps;
Chris Wilson74d290f2017-08-17 13:37:06 +01006288 unsigned long flags;
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006289 bool boost;
6290
Chris Wilson8d3afd72015-05-21 21:01:47 +01006291 /* This is intentionally racy! We peek at the state here, then
6292 * validate inside the RPS worker.
6293 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006294 if (!rps->enabled)
Chris Wilson8d3afd72015-05-21 21:01:47 +01006295 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006296
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006297 boost = false;
Chris Wilson74d290f2017-08-17 13:37:06 +01006298 spin_lock_irqsave(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006299 if (!rq->waitboost && !i915_gem_request_completed(rq)) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006300 atomic_inc(&rps->num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006301 rq->waitboost = true;
6302 boost = true;
Chris Wilsonc0951f02013-10-10 21:58:50 +01006303 }
Chris Wilson74d290f2017-08-17 13:37:06 +01006304 spin_unlock_irqrestore(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006305 if (!boost)
6306 return;
6307
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006308 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
6309 schedule_work(&rps->work);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006310
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006311 atomic_inc(rps_client ? &rps_client->boosts : &rps->boosts);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006312}
6313
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006314int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006315{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006316 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006317 int err;
6318
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006319 lockdep_assert_held(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006320 GEM_BUG_ON(val > rps->max_freq);
6321 GEM_BUG_ON(val < rps->min_freq);
Chris Wilsoncfd1c482017-02-20 09:47:07 +00006322
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006323 if (!rps->enabled) {
6324 rps->cur_freq = val;
Chris Wilson76e4e4b2017-02-20 09:47:08 +00006325 return 0;
6326 }
6327
Chris Wilsondc979972016-05-10 14:10:04 +01006328 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006329 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006330 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006331 err = gen6_set_rps(dev_priv, val);
6332
6333 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006334}
6335
Chris Wilsondc979972016-05-10 14:10:04 +01006336static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006337{
Zhe Wang20e49362014-11-04 17:07:05 +00006338 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006339 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006340}
6341
Chris Wilsondc979972016-05-10 14:10:04 +01006342static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05306343{
Akash Goel2030d682016-04-23 00:05:45 +05306344 I915_WRITE(GEN6_RP_CONTROL, 0);
6345}
6346
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006347static void gen6_disable_rc6(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006348{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006349 I915_WRITE(GEN6_RC_CONTROL, 0);
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006350}
6351
6352static void gen6_disable_rps(struct drm_i915_private *dev_priv)
6353{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006354 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05306355 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006356}
6357
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006358static void cherryview_disable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306359{
Deepak S38807742014-05-23 21:00:15 +05306360 I915_WRITE(GEN6_RC_CONTROL, 0);
6361}
6362
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006363static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
6364{
6365 I915_WRITE(GEN6_RP_CONTROL, 0);
6366}
6367
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006368static void valleyview_disable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006369{
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006370 /* We're doing forcewake before Disabling RC6,
Deepak S98a2e5f2014-08-18 10:35:27 -07006371 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006372 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07006373
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006374 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006375
Mika Kuoppala59bad942015-01-16 11:34:40 +02006376 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006377}
6378
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006379static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
6380{
6381 I915_WRITE(GEN6_RP_CONTROL, 0);
6382}
6383
Chris Wilsondc979972016-05-10 14:10:04 +01006384static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07006385{
Chris Wilsondc979972016-05-10 14:10:04 +01006386 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03006387 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
6388 mode = GEN6_RC_CTL_RC6_ENABLE;
6389 else
6390 mode = 0;
6391 }
Chris Wilsondc979972016-05-10 14:10:04 +01006392 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03006393 DRM_DEBUG_DRIVER("Enabling RC6 states: "
6394 "RC6 %s RC6p %s RC6pp %s\n",
6395 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
6396 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
6397 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07006398
6399 else
Imre Deakb99d49c2016-06-29 19:13:54 +03006400 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
6401 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07006402}
6403
Chris Wilsondc979972016-05-10 14:10:04 +01006404static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306405{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006406 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306407 bool enable_rc6 = true;
6408 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03006409 u32 rc_ctl;
6410 int rc_sw_target;
6411
6412 rc_ctl = I915_READ(GEN6_RC_CONTROL);
6413 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
6414 RC_SW_TARGET_STATE_SHIFT;
6415 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
6416 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
6417 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
6418 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
6419 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306420
6421 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006422 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306423 enable_rc6 = false;
6424 }
6425
6426 /*
6427 * The exact context size is not known for BXT, so assume a page size
6428 * for this check.
6429 */
6430 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006431 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
6432 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
6433 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006434 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306435 enable_rc6 = false;
6436 }
6437
6438 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
6439 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
6440 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
6441 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006442 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306443 enable_rc6 = false;
6444 }
6445
Imre Deakfc619842016-06-29 19:13:55 +03006446 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
6447 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
6448 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
6449 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
6450 enable_rc6 = false;
6451 }
6452
6453 if (!I915_READ(GEN6_GFXPAUSE)) {
6454 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
6455 enable_rc6 = false;
6456 }
6457
6458 if (!I915_READ(GEN8_MISC_CTRL0)) {
6459 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306460 enable_rc6 = false;
6461 }
6462
6463 return enable_rc6;
6464}
6465
Chris Wilsondc979972016-05-10 14:10:04 +01006466int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006467{
Daniel Vettere7d66d82015-06-15 23:23:54 +02006468 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01006469 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03006470 return 0;
6471
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306472 if (!enable_rc6)
6473 return 0;
6474
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006475 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306476 DRM_INFO("RC6 disabled by BIOS\n");
6477 return 0;
6478 }
6479
Daniel Vetter456470e2012-08-08 23:35:40 +02006480 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03006481 if (enable_rc6 >= 0) {
6482 int mask;
6483
Chris Wilsondc979972016-05-10 14:10:04 +01006484 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03006485 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
6486 INTEL_RC6pp_ENABLE;
6487 else
6488 mask = INTEL_RC6_ENABLE;
6489
6490 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03006491 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
6492 "(requested %d, valid %d)\n",
6493 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03006494
6495 return enable_rc6 & mask;
6496 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006497
Chris Wilsondc979972016-05-10 14:10:04 +01006498 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08006499 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08006500
6501 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006502}
6503
Chris Wilsondc979972016-05-10 14:10:04 +01006504static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03006505{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006506 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6507
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006508 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01006509
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006510 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006511 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006512 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006513 rps->rp0_freq = (rp_state_cap >> 16) & 0xff;
6514 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6515 rps->min_freq = (rp_state_cap >> 0) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006516 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006517 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006518 rps->rp0_freq = (rp_state_cap >> 0) & 0xff;
6519 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6520 rps->min_freq = (rp_state_cap >> 16) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006521 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006522 /* hw_max = RP0 until we check for overclocking */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006523 rps->max_freq = rps->rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006524
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006525 rps->efficient_freq = rps->rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006526 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006527 IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006528 u32 ddcc_status = 0;
6529
6530 if (sandybridge_pcode_read(dev_priv,
6531 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
6532 &ddcc_status) == 0)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006533 rps->efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08006534 clamp_t(u8,
6535 ((ddcc_status >> 8) & 0xff),
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006536 rps->min_freq,
6537 rps->max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006538 }
6539
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006540 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05306541 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01006542 * the natural hardware unit for SKL
6543 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006544 rps->rp0_freq *= GEN9_FREQ_SCALER;
6545 rps->rp1_freq *= GEN9_FREQ_SCALER;
6546 rps->min_freq *= GEN9_FREQ_SCALER;
6547 rps->max_freq *= GEN9_FREQ_SCALER;
6548 rps->efficient_freq *= GEN9_FREQ_SCALER;
Akash Goelc5e06882015-06-29 14:50:19 +05306549 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006550}
6551
Chris Wilson3a45b052016-07-13 09:10:32 +01006552static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006553 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01006554{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006555 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6556 u8 freq = rps->cur_freq;
Chris Wilson3a45b052016-07-13 09:10:32 +01006557
6558 /* force a reset */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006559 rps->power = -1;
6560 rps->cur_freq = -1;
Chris Wilson3a45b052016-07-13 09:10:32 +01006561
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006562 if (set(dev_priv, freq))
6563 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01006564}
6565
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006566/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01006567static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006568{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006569 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6570
Akash Goel0beb0592015-03-06 11:07:20 +05306571 /* Program defaults and thresholds for RPS*/
6572 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006573 GEN9_FREQUENCY(dev_priv->gt_pm.rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006574
Akash Goel0beb0592015-03-06 11:07:20 +05306575 /* 1 second timeout*/
6576 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
6577 GT_INTERVAL_FROM_US(dev_priv, 1000000));
6578
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006579 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006580
Akash Goel0beb0592015-03-06 11:07:20 +05306581 /* Leaning on the below call to gen6_set_rps to program/setup the
6582 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
6583 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01006584 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006585
6586 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6587}
6588
Chris Wilsondc979972016-05-10 14:10:04 +01006589static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006590{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006591 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306592 enum intel_engine_id id;
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006593 u32 rc6_mode, rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00006594
6595 /* 1a: Software RC state - RC0 */
6596 I915_WRITE(GEN6_RC_STATE, 0);
6597
6598 /* 1b: Get forcewake during program sequence. Although the driver
6599 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006600 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006601
6602 /* 2a: Disable RC states. */
6603 I915_WRITE(GEN6_RC_CONTROL, 0);
6604
6605 /* 2b: Program RC6 thresholds.*/
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006606 if (INTEL_GEN(dev_priv) >= 10) {
6607 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16 | 85);
6608 I915_WRITE(GEN10_MEDIA_WAKE_RATE_LIMIT, 150);
6609 } else if (IS_SKYLAKE(dev_priv)) {
6610 /*
6611 * WaRsDoubleRc6WrlWithCoarsePowerGating:skl Doubling WRL only
6612 * when CPG is enabled
6613 */
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306614 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006615 } else {
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306616 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006617 }
6618
Zhe Wang20e49362014-11-04 17:07:05 +00006619 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6620 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306621 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006622 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306623
Dave Gordon1a3d1892016-05-13 15:36:30 +01006624 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306625 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
6626
Zhe Wang20e49362014-11-04 17:07:05 +00006627 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006628
Zhe Wang38c23522015-01-20 12:23:04 +00006629 /* 2c: Program Coarse Power Gating Policies. */
6630 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
6631 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
6632
Zhe Wang20e49362014-11-04 17:07:05 +00006633 /* 3a: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006634 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00006635 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02006636 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00006637 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006638
6639 /* WaRsUseTimeoutMode:cnl (pre-prod) */
6640 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_C0))
6641 rc6_mode = GEN7_RC_CTL_TO_MODE;
6642 else
6643 rc6_mode = GEN6_RC_CTL_EI_MODE(1);
6644
Chris Wilson1c044f92017-01-25 17:26:01 +00006645 I915_WRITE(GEN6_RC_CONTROL,
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006646 GEN6_RC_CTL_HW_ENABLE | rc6_mode | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00006647
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306648 /*
6649 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306650 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306651 */
Chris Wilsondc979972016-05-10 14:10:04 +01006652 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306653 I915_WRITE(GEN9_PG_ENABLE, 0);
6654 else
6655 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
6656 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006657
Mika Kuoppala59bad942015-01-16 11:34:40 +02006658 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006659}
6660
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006661static void gen8_enable_rc6(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006662{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006663 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306664 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006665 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006666
6667 /* 1a: Software RC state - RC0 */
6668 I915_WRITE(GEN6_RC_STATE, 0);
6669
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006670 /* 1b: Get forcewake during program sequence. Although the driver
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006671 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006672 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006673
6674 /* 2a: Disable RC states. */
6675 I915_WRITE(GEN6_RC_CONTROL, 0);
6676
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006677 /* 2b: Program RC6 thresholds.*/
6678 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6679 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6680 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306681 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006682 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006683 I915_WRITE(GEN6_RC_SLEEP, 0);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006684 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006685
6686 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006687 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006688 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01006689 intel_print_rc6_info(dev_priv, rc6_mask);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006690
6691 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
6692 GEN7_RC_CTL_TO_MODE |
6693 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006694
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006695 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6696}
6697
6698static void gen8_enable_rps(struct drm_i915_private *dev_priv)
6699{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006700 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6701
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006702 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6703
6704 /* 1 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006705 I915_WRITE(GEN6_RPNSWREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006706 HSW_FREQUENCY(rps->rp1_freq));
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006707 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006708 HSW_FREQUENCY(rps->rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02006709 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
6710 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006711
Daniel Vetter7526ed72014-09-29 15:07:19 +02006712 /* Docs recommend 900MHz, and 300 MHz respectively */
6713 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006714 rps->max_freq_softlimit << 24 |
6715 rps->min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006716
Daniel Vetter7526ed72014-09-29 15:07:19 +02006717 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
6718 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
6719 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
6720 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006721
Daniel Vetter7526ed72014-09-29 15:07:19 +02006722 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006723
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006724 /* 2: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02006725 I915_WRITE(GEN6_RP_CONTROL,
6726 GEN6_RP_MEDIA_TURBO |
6727 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6728 GEN6_RP_MEDIA_IS_GFX |
6729 GEN6_RP_ENABLE |
6730 GEN6_RP_UP_BUSY_AVG |
6731 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006732
Chris Wilson3a45b052016-07-13 09:10:32 +01006733 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006734
Mika Kuoppala59bad942015-01-16 11:34:40 +02006735 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006736}
6737
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006738static void gen6_enable_rc6(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006739{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006740 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306741 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01006742 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006743 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006744 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00006745 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006746
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006747 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006748
6749 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006750 gtfifodbg = I915_READ(GTFIFODBG);
6751 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006752 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
6753 I915_WRITE(GTFIFODBG, gtfifodbg);
6754 }
6755
Mika Kuoppala59bad942015-01-16 11:34:40 +02006756 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006757
6758 /* disable the counters and set deterministic thresholds */
6759 I915_WRITE(GEN6_RC_CONTROL, 0);
6760
6761 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6762 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6763 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6764 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6765 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6766
Akash Goel3b3f1652016-10-13 22:44:48 +05306767 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006768 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006769
6770 I915_WRITE(GEN6_RC_SLEEP, 0);
6771 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01006772 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07006773 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
6774 else
6775 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08006776 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006777 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6778
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006779 /* Check if we are enabling RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006780 rc6_mode = intel_rc6_enabled();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006781 if (rc6_mode & INTEL_RC6_ENABLE)
6782 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
6783
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006784 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01006785 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006786 if (rc6_mode & INTEL_RC6p_ENABLE)
6787 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006788
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006789 if (rc6_mode & INTEL_RC6pp_ENABLE)
6790 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
6791 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006792
Chris Wilsondc979972016-05-10 14:10:04 +01006793 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006794
6795 I915_WRITE(GEN6_RC_CONTROL,
6796 rc6_mask |
6797 GEN6_RC_CTL_EI_MODE(1) |
6798 GEN6_RC_CTL_HW_ENABLE);
6799
Ben Widawsky31643d52012-09-26 10:34:01 -07006800 rc6vids = 0;
6801 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01006802 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006803 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01006804 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006805 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
6806 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
6807 rc6vids &= 0xffff00;
6808 rc6vids |= GEN6_ENCODE_RC6_VID(450);
6809 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
6810 if (ret)
6811 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
6812 }
6813
Mika Kuoppala59bad942015-01-16 11:34:40 +02006814 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006815}
6816
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006817static void gen6_enable_rps(struct drm_i915_private *dev_priv)
6818{
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006819 /* Here begins a magic sequence of register writes to enable
6820 * auto-downclocking.
6821 *
6822 * Perhaps there might be some value in exposing these to
6823 * userspace...
6824 */
6825 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6826
6827 /* Power down if completely idle for over 50ms */
6828 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
6829 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6830
6831 reset_rps(dev_priv, gen6_set_rps);
6832
6833 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6834}
6835
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006836static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006837{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006838 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006839 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006840 unsigned int gpu_freq;
6841 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306842 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006843 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03006844 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006845
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006846 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02006847
Ben Widawskyeda79642013-10-07 17:15:48 -03006848 policy = cpufreq_cpu_get(0);
6849 if (policy) {
6850 max_ia_freq = policy->cpuinfo.max_freq;
6851 cpufreq_cpu_put(policy);
6852 } else {
6853 /*
6854 * Default to measured freq if none found, PCU will ensure we
6855 * don't go over
6856 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006857 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03006858 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006859
6860 /* Convert from kHz to MHz */
6861 max_ia_freq /= 1000;
6862
Ben Widawsky153b4b952013-10-22 22:05:09 -07006863 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07006864 /* convert DDR frequency from units of 266.6MHz to bandwidth */
6865 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006866
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006867 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306868 /* Convert GT frequency to 50 HZ units */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006869 min_gpu_freq = rps->min_freq / GEN9_FREQ_SCALER;
6870 max_gpu_freq = rps->max_freq / GEN9_FREQ_SCALER;
Akash Goel4c8c7742015-06-29 14:50:20 +05306871 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006872 min_gpu_freq = rps->min_freq;
6873 max_gpu_freq = rps->max_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306874 }
6875
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006876 /*
6877 * For each potential GPU frequency, load a ring frequency we'd like
6878 * to use for memory access. We do this by specifying the IA frequency
6879 * the PCU should use as a reference to determine the ring frequency.
6880 */
Akash Goel4c8c7742015-06-29 14:50:20 +05306881 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
6882 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006883 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006884
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006885 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306886 /*
6887 * ring_freq = 2 * GT. ring_freq is in 100MHz units
6888 * No floor required for ring frequency on SKL.
6889 */
6890 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006891 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07006892 /* max(2 * GT, DDR). NB: GT is 50MHz units */
6893 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01006894 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07006895 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006896 ring_freq = max(min_ring_freq, ring_freq);
6897 /* leave ia_freq as the default, chosen by cpufreq */
6898 } else {
6899 /* On older processors, there is no separate ring
6900 * clock domain, so in order to boost the bandwidth
6901 * of the ring, we need to upclock the CPU (ia_freq).
6902 *
6903 * For GPU frequencies less than 750MHz,
6904 * just use the lowest ring freq.
6905 */
6906 if (gpu_freq < min_freq)
6907 ia_freq = 800;
6908 else
6909 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
6910 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
6911 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006912
Ben Widawsky42c05262012-09-26 10:34:00 -07006913 sandybridge_pcode_write(dev_priv,
6914 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01006915 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
6916 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
6917 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006918 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006919}
6920
Ville Syrjälä03af2042014-06-28 02:03:53 +03006921static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05306922{
6923 u32 val, rp0;
6924
Jani Nikula5b5929c2015-10-07 11:17:46 +03006925 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05306926
Imre Deak43b67992016-08-31 19:13:02 +03006927 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03006928 case 8:
6929 /* (2 * 4) config */
6930 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
6931 break;
6932 case 12:
6933 /* (2 * 6) config */
6934 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
6935 break;
6936 case 16:
6937 /* (2 * 8) config */
6938 default:
6939 /* Setting (2 * 8) Min RP0 for any other combination */
6940 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
6941 break;
Deepak S095acd52015-01-17 11:05:59 +05306942 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03006943
6944 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
6945
Deepak S2b6b3a02014-05-27 15:59:30 +05306946 return rp0;
6947}
6948
6949static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6950{
6951 u32 val, rpe;
6952
6953 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
6954 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
6955
6956 return rpe;
6957}
6958
Deepak S7707df42014-07-12 18:46:14 +05306959static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
6960{
6961 u32 val, rp1;
6962
Jani Nikula5b5929c2015-10-07 11:17:46 +03006963 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
6964 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
6965
Deepak S7707df42014-07-12 18:46:14 +05306966 return rp1;
6967}
6968
Deepak S96676fe2016-08-12 18:46:41 +05306969static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
6970{
6971 u32 val, rpn;
6972
6973 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
6974 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
6975 FB_GFX_FREQ_FUSE_MASK);
6976
6977 return rpn;
6978}
6979
Deepak Sf8f2b002014-07-10 13:16:21 +05306980static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
6981{
6982 u32 val, rp1;
6983
6984 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
6985
6986 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
6987
6988 return rp1;
6989}
6990
Ville Syrjälä03af2042014-06-28 02:03:53 +03006991static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006992{
6993 u32 val, rp0;
6994
Jani Nikula64936252013-05-22 15:36:20 +03006995 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006996
6997 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
6998 /* Clamp to max */
6999 rp0 = min_t(u32, rp0, 0xea);
7000
7001 return rp0;
7002}
7003
7004static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
7005{
7006 u32 val, rpe;
7007
Jani Nikula64936252013-05-22 15:36:20 +03007008 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007009 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03007010 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007011 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
7012
7013 return rpe;
7014}
7015
Ville Syrjälä03af2042014-06-28 02:03:53 +03007016static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007017{
Imre Deak36146032014-12-04 18:39:35 +02007018 u32 val;
7019
7020 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
7021 /*
7022 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
7023 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
7024 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
7025 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
7026 * to make sure it matches what Punit accepts.
7027 */
7028 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007029}
7030
Imre Deakae484342014-03-31 15:10:44 +03007031/* Check that the pctx buffer wasn't move under us. */
7032static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
7033{
7034 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7035
7036 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
7037 dev_priv->vlv_pctx->stolen->start);
7038}
7039
Deepak S38807742014-05-23 21:00:15 +05307040
7041/* Check that the pcbr address is not empty. */
7042static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
7043{
7044 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7045
7046 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
7047}
7048
Chris Wilsondc979972016-05-10 14:10:04 +01007049static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307050{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007051 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03007052 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05307053 u32 pcbr;
7054 int pctx_size = 32*1024;
7055
Deepak S38807742014-05-23 21:00:15 +05307056 pcbr = I915_READ(VLV_PCBR);
7057 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007058 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05307059 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007060 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05307061
7062 pctx_paddr = (paddr & (~4095));
7063 I915_WRITE(VLV_PCBR, pctx_paddr);
7064 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007065
7066 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05307067}
7068
Chris Wilsondc979972016-05-10 14:10:04 +01007069static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007070{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007071 struct drm_i915_gem_object *pctx;
7072 unsigned long pctx_paddr;
7073 u32 pcbr;
7074 int pctx_size = 24*1024;
7075
7076 pcbr = I915_READ(VLV_PCBR);
7077 if (pcbr) {
7078 /* BIOS set it up already, grab the pre-alloc'd space */
7079 int pcbr_offset;
7080
7081 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007082 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007083 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02007084 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007085 pctx_size);
7086 goto out;
7087 }
7088
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007089 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
7090
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007091 /*
7092 * From the Gunit register HAS:
7093 * The Gfx driver is expected to program this register and ensure
7094 * proper allocation within Gfx stolen memory. For example, this
7095 * register should be programmed such than the PCBR range does not
7096 * overlap with other ranges, such as the frame buffer, protected
7097 * memory, or any other relevant ranges.
7098 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007099 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007100 if (!pctx) {
7101 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00007102 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007103 }
7104
7105 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
7106 I915_WRITE(VLV_PCBR, pctx_paddr);
7107
7108out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007109 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007110 dev_priv->vlv_pctx = pctx;
7111}
7112
Chris Wilsondc979972016-05-10 14:10:04 +01007113static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007114{
Imre Deakae484342014-03-31 15:10:44 +03007115 if (WARN_ON(!dev_priv->vlv_pctx))
7116 return;
7117
Chris Wilsonf0cd5182016-10-28 13:58:43 +01007118 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03007119 dev_priv->vlv_pctx = NULL;
7120}
7121
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007122static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
7123{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007124 dev_priv->gt_pm.rps.gpll_ref_freq =
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007125 vlv_get_cck_clock(dev_priv, "GPLL ref",
7126 CCK_GPLL_CLOCK_CONTROL,
7127 dev_priv->czclk_freq);
7128
7129 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007130 dev_priv->gt_pm.rps.gpll_ref_freq);
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007131}
7132
Chris Wilsondc979972016-05-10 14:10:04 +01007133static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007134{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007135 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007136 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03007137
Chris Wilsondc979972016-05-10 14:10:04 +01007138 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007139
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007140 vlv_init_gpll_ref_freq(dev_priv);
7141
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007142 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7143 switch ((val >> 6) & 3) {
7144 case 0:
7145 case 1:
7146 dev_priv->mem_freq = 800;
7147 break;
7148 case 2:
7149 dev_priv->mem_freq = 1066;
7150 break;
7151 case 3:
7152 dev_priv->mem_freq = 1333;
7153 break;
7154 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007155 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007156
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007157 rps->max_freq = valleyview_rps_max_freq(dev_priv);
7158 rps->rp0_freq = rps->max_freq;
Imre Deak4e805192014-04-14 20:24:41 +03007159 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007160 intel_gpu_freq(dev_priv, rps->max_freq),
7161 rps->max_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007162
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007163 rps->efficient_freq = valleyview_rps_rpe_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007164 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007165 intel_gpu_freq(dev_priv, rps->efficient_freq),
7166 rps->efficient_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007167
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007168 rps->rp1_freq = valleyview_rps_guar_freq(dev_priv);
Deepak Sf8f2b002014-07-10 13:16:21 +05307169 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007170 intel_gpu_freq(dev_priv, rps->rp1_freq),
7171 rps->rp1_freq);
Deepak Sf8f2b002014-07-10 13:16:21 +05307172
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007173 rps->min_freq = valleyview_rps_min_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007174 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007175 intel_gpu_freq(dev_priv, rps->min_freq),
7176 rps->min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007177}
7178
Chris Wilsondc979972016-05-10 14:10:04 +01007179static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307180{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007181 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007182 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05307183
Chris Wilsondc979972016-05-10 14:10:04 +01007184 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307185
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007186 vlv_init_gpll_ref_freq(dev_priv);
7187
Ville Syrjäläa5805162015-05-26 20:42:30 +03007188 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007189 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007190 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007191
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007192 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007193 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007194 dev_priv->mem_freq = 2000;
7195 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007196 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007197 dev_priv->mem_freq = 1600;
7198 break;
7199 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007200 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007201
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007202 rps->max_freq = cherryview_rps_max_freq(dev_priv);
7203 rps->rp0_freq = rps->max_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05307204 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007205 intel_gpu_freq(dev_priv, rps->max_freq),
7206 rps->max_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307207
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007208 rps->efficient_freq = cherryview_rps_rpe_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307209 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007210 intel_gpu_freq(dev_priv, rps->efficient_freq),
7211 rps->efficient_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307212
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007213 rps->rp1_freq = cherryview_rps_guar_freq(dev_priv);
Deepak S7707df42014-07-12 18:46:14 +05307214 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007215 intel_gpu_freq(dev_priv, rps->rp1_freq),
7216 rps->rp1_freq);
Deepak S7707df42014-07-12 18:46:14 +05307217
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007218 rps->min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307219 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007220 intel_gpu_freq(dev_priv, rps->min_freq),
7221 rps->min_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307222
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007223 WARN_ONCE((rps->max_freq | rps->efficient_freq | rps->rp1_freq |
7224 rps->min_freq) & 1,
Ville Syrjälä1c147622014-08-18 14:42:43 +03007225 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05307226}
7227
Chris Wilsondc979972016-05-10 14:10:04 +01007228static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007229{
Chris Wilsondc979972016-05-10 14:10:04 +01007230 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007231}
7232
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007233static void cherryview_enable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307234{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007235 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307236 enum intel_engine_id id;
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007237 u32 gtfifodbg, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05307238
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007239 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
7240 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05307241 if (gtfifodbg) {
7242 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7243 gtfifodbg);
7244 I915_WRITE(GTFIFODBG, gtfifodbg);
7245 }
7246
7247 cherryview_check_pctx(dev_priv);
7248
7249 /* 1a & 1b: Get forcewake during program sequence. Although the driver
7250 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007251 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307252
Ville Syrjälä160614a2015-01-19 13:50:47 +02007253 /* Disable RC states. */
7254 I915_WRITE(GEN6_RC_CONTROL, 0);
7255
Deepak S38807742014-05-23 21:00:15 +05307256 /* 2a: Program RC6 thresholds.*/
7257 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7258 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7259 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
7260
Akash Goel3b3f1652016-10-13 22:44:48 +05307261 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007262 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05307263 I915_WRITE(GEN6_RC_SLEEP, 0);
7264
Deepak Sf4f71c72015-03-28 15:23:35 +05307265 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
7266 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05307267
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007268 /* Allows RC6 residency counter to work */
Deepak S38807742014-05-23 21:00:15 +05307269 I915_WRITE(VLV_COUNTER_CONTROL,
7270 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7271 VLV_MEDIA_RC6_COUNT_EN |
7272 VLV_RENDER_RC6_COUNT_EN));
7273
7274 /* For now we assume BIOS is allocating and populating the PCBR */
7275 pcbr = I915_READ(VLV_PCBR);
7276
Deepak S38807742014-05-23 21:00:15 +05307277 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007278 if ((intel_rc6_enabled() & INTEL_RC6_ENABLE) &&
Chris Wilsondc979972016-05-10 14:10:04 +01007279 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02007280 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05307281
7282 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7283
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007284 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7285}
7286
7287static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
7288{
7289 u32 val;
7290
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007291 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7292
7293 /* 1: Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02007294 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05307295 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7296 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7297 I915_WRITE(GEN6_RP_UP_EI, 66000);
7298 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7299
7300 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7301
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007302 /* 2: Enable RPS */
Deepak S2b6b3a02014-05-27 15:59:30 +05307303 I915_WRITE(GEN6_RP_CONTROL,
7304 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02007305 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05307306 GEN6_RP_ENABLE |
7307 GEN6_RP_UP_BUSY_AVG |
7308 GEN6_RP_DOWN_IDLE_AVG);
7309
Deepak S3ef62342015-04-29 08:36:24 +05307310 /* Setting Fixed Bias */
7311 val = VLV_OVERRIDE_EN |
7312 VLV_SOC_TDP_EN |
7313 CHV_BIAS_CPU_50_SOC_50;
7314 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7315
Deepak S2b6b3a02014-05-27 15:59:30 +05307316 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7317
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007318 /* RPS code assumes GPLL is used */
7319 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7320
Jani Nikula742f4912015-09-03 11:16:09 +03007321 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05307322 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7323
Chris Wilson3a45b052016-07-13 09:10:32 +01007324 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05307325
Mika Kuoppala59bad942015-01-16 11:34:40 +02007326 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307327}
7328
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007329static void valleyview_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007330{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007331 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307332 enum intel_engine_id id;
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007333 u32 gtfifodbg, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07007334
Imre Deakae484342014-03-31 15:10:44 +03007335 valleyview_check_pctx(dev_priv);
7336
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007337 gtfifodbg = I915_READ(GTFIFODBG);
7338 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07007339 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7340 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007341 I915_WRITE(GTFIFODBG, gtfifodbg);
7342 }
7343
Mika Kuoppala59bad942015-01-16 11:34:40 +02007344 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007345
Ville Syrjälä160614a2015-01-19 13:50:47 +02007346 /* Disable RC states. */
7347 I915_WRITE(GEN6_RC_CONTROL, 0);
7348
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007349 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
7350 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7351 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7352
7353 for_each_engine(engine, dev_priv, id)
7354 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
7355
7356 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
7357
7358 /* Allows RC6 residency counter to work */
7359 I915_WRITE(VLV_COUNTER_CONTROL,
7360 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7361 VLV_MEDIA_RC0_COUNT_EN |
7362 VLV_RENDER_RC0_COUNT_EN |
7363 VLV_MEDIA_RC6_COUNT_EN |
7364 VLV_RENDER_RC6_COUNT_EN));
7365
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007366 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007367 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
7368
7369 intel_print_rc6_info(dev_priv, rc6_mode);
7370
7371 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7372
7373 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7374}
7375
7376static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
7377{
7378 u32 val;
7379
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007380 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7381
Ville Syrjäläcad725f2015-01-19 13:50:48 +02007382 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007383 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7384 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7385 I915_WRITE(GEN6_RP_UP_EI, 66000);
7386 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7387
7388 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7389
7390 I915_WRITE(GEN6_RP_CONTROL,
7391 GEN6_RP_MEDIA_TURBO |
7392 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7393 GEN6_RP_MEDIA_IS_GFX |
7394 GEN6_RP_ENABLE |
7395 GEN6_RP_UP_BUSY_AVG |
7396 GEN6_RP_DOWN_IDLE_CONT);
7397
Deepak S3ef62342015-04-29 08:36:24 +05307398 /* Setting Fixed Bias */
7399 val = VLV_OVERRIDE_EN |
7400 VLV_SOC_TDP_EN |
7401 VLV_BIAS_CPU_125_SOC_875;
7402 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7403
Jani Nikula64936252013-05-22 15:36:20 +03007404 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007405
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007406 /* RPS code assumes GPLL is used */
7407 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7408
Jani Nikula742f4912015-09-03 11:16:09 +03007409 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07007410 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7411
Chris Wilson3a45b052016-07-13 09:10:32 +01007412 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007413
Mika Kuoppala59bad942015-01-16 11:34:40 +02007414 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007415}
7416
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007417static unsigned long intel_pxfreq(u32 vidfreq)
7418{
7419 unsigned long freq;
7420 int div = (vidfreq & 0x3f0000) >> 16;
7421 int post = (vidfreq & 0x3000) >> 12;
7422 int pre = (vidfreq & 0x7);
7423
7424 if (!pre)
7425 return 0;
7426
7427 freq = ((div * 133333) / ((1<<post) * pre));
7428
7429 return freq;
7430}
7431
Daniel Vettereb48eb02012-04-26 23:28:12 +02007432static const struct cparams {
7433 u16 i;
7434 u16 t;
7435 u16 m;
7436 u16 c;
7437} cparams[] = {
7438 { 1, 1333, 301, 28664 },
7439 { 1, 1066, 294, 24460 },
7440 { 1, 800, 294, 25192 },
7441 { 0, 1333, 276, 27605 },
7442 { 0, 1066, 276, 27605 },
7443 { 0, 800, 231, 23784 },
7444};
7445
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007446static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007447{
7448 u64 total_count, diff, ret;
7449 u32 count1, count2, count3, m = 0, c = 0;
7450 unsigned long now = jiffies_to_msecs(jiffies), diff1;
7451 int i;
7452
Chris Wilson67520412017-03-02 13:28:01 +00007453 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007454
Daniel Vetter20e4d402012-08-08 23:35:39 +02007455 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007456
7457 /* Prevent division-by-zero if we are asking too fast.
7458 * Also, we don't get interesting results if we are polling
7459 * faster than once in 10ms, so just return the saved value
7460 * in such cases.
7461 */
7462 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02007463 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007464
7465 count1 = I915_READ(DMIEC);
7466 count2 = I915_READ(DDREC);
7467 count3 = I915_READ(CSIEC);
7468
7469 total_count = count1 + count2 + count3;
7470
7471 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02007472 if (total_count < dev_priv->ips.last_count1) {
7473 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007474 diff += total_count;
7475 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007476 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007477 }
7478
7479 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007480 if (cparams[i].i == dev_priv->ips.c_m &&
7481 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02007482 m = cparams[i].m;
7483 c = cparams[i].c;
7484 break;
7485 }
7486 }
7487
7488 diff = div_u64(diff, diff1);
7489 ret = ((m * diff) + c);
7490 ret = div_u64(ret, 10);
7491
Daniel Vetter20e4d402012-08-08 23:35:39 +02007492 dev_priv->ips.last_count1 = total_count;
7493 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007494
Daniel Vetter20e4d402012-08-08 23:35:39 +02007495 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007496
7497 return ret;
7498}
7499
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007500unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
7501{
7502 unsigned long val;
7503
Chris Wilsondc979972016-05-10 14:10:04 +01007504 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007505 return 0;
7506
7507 spin_lock_irq(&mchdev_lock);
7508
7509 val = __i915_chipset_val(dev_priv);
7510
7511 spin_unlock_irq(&mchdev_lock);
7512
7513 return val;
7514}
7515
Daniel Vettereb48eb02012-04-26 23:28:12 +02007516unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
7517{
7518 unsigned long m, x, b;
7519 u32 tsfs;
7520
7521 tsfs = I915_READ(TSFS);
7522
7523 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
7524 x = I915_READ8(TR1);
7525
7526 b = tsfs & TSFS_INTR_MASK;
7527
7528 return ((m * x) / 127) - b;
7529}
7530
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007531static int _pxvid_to_vd(u8 pxvid)
7532{
7533 if (pxvid == 0)
7534 return 0;
7535
7536 if (pxvid >= 8 && pxvid < 31)
7537 pxvid = 31;
7538
7539 return (pxvid + 2) * 125;
7540}
7541
7542static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007543{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007544 const int vd = _pxvid_to_vd(pxvid);
7545 const int vm = vd - 1125;
7546
Chris Wilsondc979972016-05-10 14:10:04 +01007547 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007548 return vm > 0 ? vm : 0;
7549
7550 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007551}
7552
Daniel Vetter02d71952012-08-09 16:44:54 +02007553static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007554{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007555 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007556 u32 count;
7557
Chris Wilson67520412017-03-02 13:28:01 +00007558 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007559
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007560 now = ktime_get_raw_ns();
7561 diffms = now - dev_priv->ips.last_time2;
7562 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007563
7564 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02007565 if (!diffms)
7566 return;
7567
7568 count = I915_READ(GFXEC);
7569
Daniel Vetter20e4d402012-08-08 23:35:39 +02007570 if (count < dev_priv->ips.last_count2) {
7571 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007572 diff += count;
7573 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007574 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007575 }
7576
Daniel Vetter20e4d402012-08-08 23:35:39 +02007577 dev_priv->ips.last_count2 = count;
7578 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007579
7580 /* More magic constants... */
7581 diff = diff * 1181;
7582 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02007583 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007584}
7585
Daniel Vetter02d71952012-08-09 16:44:54 +02007586void i915_update_gfx_val(struct drm_i915_private *dev_priv)
7587{
Chris Wilsondc979972016-05-10 14:10:04 +01007588 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02007589 return;
7590
Daniel Vetter92703882012-08-09 16:46:01 +02007591 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007592
7593 __i915_update_gfx_val(dev_priv);
7594
Daniel Vetter92703882012-08-09 16:46:01 +02007595 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007596}
7597
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007598static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007599{
7600 unsigned long t, corr, state1, corr2, state2;
7601 u32 pxvid, ext_v;
7602
Chris Wilson67520412017-03-02 13:28:01 +00007603 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007604
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007605 pxvid = I915_READ(PXVFREQ(dev_priv->gt_pm.rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02007606 pxvid = (pxvid >> 24) & 0x7f;
7607 ext_v = pvid_to_extvid(dev_priv, pxvid);
7608
7609 state1 = ext_v;
7610
7611 t = i915_mch_val(dev_priv);
7612
7613 /* Revel in the empirically derived constants */
7614
7615 /* Correction factor in 1/100000 units */
7616 if (t > 80)
7617 corr = ((t * 2349) + 135940);
7618 else if (t >= 50)
7619 corr = ((t * 964) + 29317);
7620 else /* < 50 */
7621 corr = ((t * 301) + 1004);
7622
7623 corr = corr * ((150142 * state1) / 10000 - 78642);
7624 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02007625 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007626
7627 state2 = (corr2 * state1) / 10000;
7628 state2 /= 100; /* convert to mW */
7629
Daniel Vetter02d71952012-08-09 16:44:54 +02007630 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007631
Daniel Vetter20e4d402012-08-08 23:35:39 +02007632 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007633}
7634
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007635unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
7636{
7637 unsigned long val;
7638
Chris Wilsondc979972016-05-10 14:10:04 +01007639 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007640 return 0;
7641
7642 spin_lock_irq(&mchdev_lock);
7643
7644 val = __i915_gfx_val(dev_priv);
7645
7646 spin_unlock_irq(&mchdev_lock);
7647
7648 return val;
7649}
7650
Daniel Vettereb48eb02012-04-26 23:28:12 +02007651/**
7652 * i915_read_mch_val - return value for IPS use
7653 *
7654 * Calculate and return a value for the IPS driver to use when deciding whether
7655 * we have thermal and power headroom to increase CPU or GPU power budget.
7656 */
7657unsigned long i915_read_mch_val(void)
7658{
7659 struct drm_i915_private *dev_priv;
7660 unsigned long chipset_val, graphics_val, ret = 0;
7661
Daniel Vetter92703882012-08-09 16:46:01 +02007662 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007663 if (!i915_mch_dev)
7664 goto out_unlock;
7665 dev_priv = i915_mch_dev;
7666
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007667 chipset_val = __i915_chipset_val(dev_priv);
7668 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007669
7670 ret = chipset_val + graphics_val;
7671
7672out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007673 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007674
7675 return ret;
7676}
7677EXPORT_SYMBOL_GPL(i915_read_mch_val);
7678
7679/**
7680 * i915_gpu_raise - raise GPU frequency limit
7681 *
7682 * Raise the limit; IPS indicates we have thermal headroom.
7683 */
7684bool i915_gpu_raise(void)
7685{
7686 struct drm_i915_private *dev_priv;
7687 bool ret = true;
7688
Daniel Vetter92703882012-08-09 16:46:01 +02007689 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007690 if (!i915_mch_dev) {
7691 ret = false;
7692 goto out_unlock;
7693 }
7694 dev_priv = i915_mch_dev;
7695
Daniel Vetter20e4d402012-08-08 23:35:39 +02007696 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
7697 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007698
7699out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007700 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007701
7702 return ret;
7703}
7704EXPORT_SYMBOL_GPL(i915_gpu_raise);
7705
7706/**
7707 * i915_gpu_lower - lower GPU frequency limit
7708 *
7709 * IPS indicates we're close to a thermal limit, so throttle back the GPU
7710 * frequency maximum.
7711 */
7712bool i915_gpu_lower(void)
7713{
7714 struct drm_i915_private *dev_priv;
7715 bool ret = true;
7716
Daniel Vetter92703882012-08-09 16:46:01 +02007717 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007718 if (!i915_mch_dev) {
7719 ret = false;
7720 goto out_unlock;
7721 }
7722 dev_priv = i915_mch_dev;
7723
Daniel Vetter20e4d402012-08-08 23:35:39 +02007724 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
7725 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007726
7727out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007728 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007729
7730 return ret;
7731}
7732EXPORT_SYMBOL_GPL(i915_gpu_lower);
7733
7734/**
7735 * i915_gpu_busy - indicate GPU business to IPS
7736 *
7737 * Tell the IPS driver whether or not the GPU is busy.
7738 */
7739bool i915_gpu_busy(void)
7740{
Daniel Vettereb48eb02012-04-26 23:28:12 +02007741 bool ret = false;
7742
Daniel Vetter92703882012-08-09 16:46:01 +02007743 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01007744 if (i915_mch_dev)
7745 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02007746 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007747
7748 return ret;
7749}
7750EXPORT_SYMBOL_GPL(i915_gpu_busy);
7751
7752/**
7753 * i915_gpu_turbo_disable - disable graphics turbo
7754 *
7755 * Disable graphics turbo by resetting the max frequency and setting the
7756 * current frequency to the default.
7757 */
7758bool i915_gpu_turbo_disable(void)
7759{
7760 struct drm_i915_private *dev_priv;
7761 bool ret = true;
7762
Daniel Vetter92703882012-08-09 16:46:01 +02007763 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007764 if (!i915_mch_dev) {
7765 ret = false;
7766 goto out_unlock;
7767 }
7768 dev_priv = i915_mch_dev;
7769
Daniel Vetter20e4d402012-08-08 23:35:39 +02007770 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007771
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007772 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02007773 ret = false;
7774
7775out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007776 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007777
7778 return ret;
7779}
7780EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
7781
7782/**
7783 * Tells the intel_ips driver that the i915 driver is now loaded, if
7784 * IPS got loaded first.
7785 *
7786 * This awkward dance is so that neither module has to depend on the
7787 * other in order for IPS to do the appropriate communication of
7788 * GPU turbo limits to i915.
7789 */
7790static void
7791ips_ping_for_i915_load(void)
7792{
7793 void (*link)(void);
7794
7795 link = symbol_get(ips_link_to_i915_driver);
7796 if (link) {
7797 link();
7798 symbol_put(ips_link_to_i915_driver);
7799 }
7800}
7801
7802void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
7803{
Daniel Vetter02d71952012-08-09 16:44:54 +02007804 /* We only register the i915 ips part with intel-ips once everything is
7805 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02007806 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007807 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02007808 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007809
7810 ips_ping_for_i915_load();
7811}
7812
7813void intel_gpu_ips_teardown(void)
7814{
Daniel Vetter92703882012-08-09 16:46:01 +02007815 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007816 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02007817 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007818}
Deepak S76c3552f2014-01-30 23:08:16 +05307819
Chris Wilsondc979972016-05-10 14:10:04 +01007820static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007821{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007822 u32 lcfuse;
7823 u8 pxw[16];
7824 int i;
7825
7826 /* Disable to program */
7827 I915_WRITE(ECR, 0);
7828 POSTING_READ(ECR);
7829
7830 /* Program energy weights for various events */
7831 I915_WRITE(SDEW, 0x15040d00);
7832 I915_WRITE(CSIEW0, 0x007f0000);
7833 I915_WRITE(CSIEW1, 0x1e220004);
7834 I915_WRITE(CSIEW2, 0x04000004);
7835
7836 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007837 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007838 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007839 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007840
7841 /* Program P-state weights to account for frequency power adjustment */
7842 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03007843 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007844 unsigned long freq = intel_pxfreq(pxvidfreq);
7845 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
7846 PXVFREQ_PX_SHIFT;
7847 unsigned long val;
7848
7849 val = vid * vid;
7850 val *= (freq / 1000);
7851 val *= 255;
7852 val /= (127*127*900);
7853 if (val > 0xff)
7854 DRM_ERROR("bad pxval: %ld\n", val);
7855 pxw[i] = val;
7856 }
7857 /* Render standby states get 0 weight */
7858 pxw[14] = 0;
7859 pxw[15] = 0;
7860
7861 for (i = 0; i < 4; i++) {
7862 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
7863 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03007864 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007865 }
7866
7867 /* Adjust magic regs to magic values (more experimental results) */
7868 I915_WRITE(OGW0, 0);
7869 I915_WRITE(OGW1, 0);
7870 I915_WRITE(EG0, 0x00007f00);
7871 I915_WRITE(EG1, 0x0000000e);
7872 I915_WRITE(EG2, 0x000e0000);
7873 I915_WRITE(EG3, 0x68000300);
7874 I915_WRITE(EG4, 0x42000000);
7875 I915_WRITE(EG5, 0x00140031);
7876 I915_WRITE(EG6, 0);
7877 I915_WRITE(EG7, 0);
7878
7879 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007880 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007881
7882 /* Enable PMON + select events */
7883 I915_WRITE(ECR, 0x80000019);
7884
7885 lcfuse = I915_READ(LCFUSE02);
7886
Daniel Vetter20e4d402012-08-08 23:35:39 +02007887 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007888}
7889
Chris Wilsondc979972016-05-10 14:10:04 +01007890void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007891{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007892 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7893
Imre Deakb268c692015-12-15 20:10:31 +02007894 /*
7895 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
7896 * requirement.
7897 */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007898 if (!i915_modparams.enable_rc6) {
Imre Deakb268c692015-12-15 20:10:31 +02007899 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
7900 intel_runtime_pm_get(dev_priv);
7901 }
Imre Deake6069ca2014-04-18 16:01:02 +03007902
Chris Wilsonb5163db2016-08-10 13:58:24 +01007903 mutex_lock(&dev_priv->drm.struct_mutex);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007904 mutex_lock(&dev_priv->pcu_lock);
Chris Wilson773ea9a2016-07-13 09:10:33 +01007905
7906 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01007907 if (IS_CHERRYVIEW(dev_priv))
7908 cherryview_init_gt_powersave(dev_priv);
7909 else if (IS_VALLEYVIEW(dev_priv))
7910 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01007911 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01007912 gen6_init_rps_frequencies(dev_priv);
7913
7914 /* Derive initial user preferences/limits from the hardware limits */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007915 rps->idle_freq = rps->min_freq;
7916 rps->cur_freq = rps->idle_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007917
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007918 rps->max_freq_softlimit = rps->max_freq;
7919 rps->min_freq_softlimit = rps->min_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007920
7921 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007922 rps->min_freq_softlimit =
Chris Wilson773ea9a2016-07-13 09:10:33 +01007923 max_t(int,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007924 rps->efficient_freq,
Chris Wilson773ea9a2016-07-13 09:10:33 +01007925 intel_freq_opcode(dev_priv, 450));
7926
Chris Wilson99ac9612016-07-13 09:10:34 +01007927 /* After setting max-softlimit, find the overclock max freq */
7928 if (IS_GEN6(dev_priv) ||
7929 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
7930 u32 params = 0;
7931
7932 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
7933 if (params & BIT(31)) { /* OC supported */
7934 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007935 (rps->max_freq & 0xff) * 50,
Chris Wilson99ac9612016-07-13 09:10:34 +01007936 (params & 0xff) * 50);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007937 rps->max_freq = params & 0xff;
Chris Wilson99ac9612016-07-13 09:10:34 +01007938 }
7939 }
7940
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007941 /* Finally allow us to boost to max by default */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007942 rps->boost_freq = rps->max_freq;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007943
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007944 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01007945 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01007946
7947 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007948}
7949
Chris Wilsondc979972016-05-10 14:10:04 +01007950void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007951{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03007952 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01007953 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02007954
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007955 if (!i915_modparams.enable_rc6)
Imre Deakb268c692015-12-15 20:10:31 +02007956 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007957}
7958
Chris Wilson54b4f682016-07-21 21:16:19 +01007959/**
7960 * intel_suspend_gt_powersave - suspend PM work and helper threads
7961 * @dev_priv: i915 device
7962 *
7963 * We don't want to disable RC6 or other features here, we just want
7964 * to make sure any work we've queued has finished and won't bother
7965 * us while we're suspended.
7966 */
7967void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
7968{
7969 if (INTEL_GEN(dev_priv) < 6)
7970 return;
7971
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007972 if (cancel_delayed_work_sync(&dev_priv->gt_pm.autoenable_work))
Chris Wilson54b4f682016-07-21 21:16:19 +01007973 intel_runtime_pm_put(dev_priv);
7974
7975 /* gen6_rps_idle() will be called later to disable interrupts */
7976}
7977
Chris Wilsonb7137e02016-07-13 09:10:37 +01007978void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
7979{
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007980 dev_priv->gt_pm.rps.enabled = true; /* force RPS disabling */
7981 dev_priv->gt_pm.rc6.enabled = true; /* force RC6 disabling */
Chris Wilsonb7137e02016-07-13 09:10:37 +01007982 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007983
7984 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07007985}
7986
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007987static inline void intel_disable_llc_pstate(struct drm_i915_private *i915)
7988{
7989 lockdep_assert_held(&i915->pcu_lock);
7990
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007991 if (!i915->gt_pm.llc_pstate.enabled)
7992 return;
7993
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007994 /* Currently there is no HW configuration to be done to disable. */
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007995
7996 i915->gt_pm.llc_pstate.enabled = false;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007997}
7998
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01007999static void intel_disable_rc6(struct drm_i915_private *dev_priv)
8000{
8001 lockdep_assert_held(&dev_priv->pcu_lock);
8002
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008003 if (!dev_priv->gt_pm.rc6.enabled)
8004 return;
8005
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008006 if (INTEL_GEN(dev_priv) >= 9)
8007 gen9_disable_rc6(dev_priv);
8008 else if (IS_CHERRYVIEW(dev_priv))
8009 cherryview_disable_rc6(dev_priv);
8010 else if (IS_VALLEYVIEW(dev_priv))
8011 valleyview_disable_rc6(dev_priv);
8012 else if (INTEL_GEN(dev_priv) >= 6)
8013 gen6_disable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008014
8015 dev_priv->gt_pm.rc6.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008016}
8017
8018static void intel_disable_rps(struct drm_i915_private *dev_priv)
8019{
8020 lockdep_assert_held(&dev_priv->pcu_lock);
8021
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008022 if (!dev_priv->gt_pm.rps.enabled)
8023 return;
8024
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008025 if (INTEL_GEN(dev_priv) >= 9)
8026 gen9_disable_rps(dev_priv);
8027 else if (IS_CHERRYVIEW(dev_priv))
8028 cherryview_disable_rps(dev_priv);
8029 else if (IS_VALLEYVIEW(dev_priv))
8030 valleyview_disable_rps(dev_priv);
8031 else if (INTEL_GEN(dev_priv) >= 6)
8032 gen6_disable_rps(dev_priv);
8033 else if (IS_IRONLAKE_M(dev_priv))
8034 ironlake_disable_drps(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008035
8036 dev_priv->gt_pm.rps.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008037}
8038
Chris Wilsondc979972016-05-10 14:10:04 +01008039void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008040{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008041 mutex_lock(&dev_priv->pcu_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008042
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008043 intel_disable_rc6(dev_priv);
8044 intel_disable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008045 if (HAS_LLC(dev_priv))
8046 intel_disable_llc_pstate(dev_priv);
8047
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008048 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008049}
8050
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008051static inline void intel_enable_llc_pstate(struct drm_i915_private *i915)
8052{
8053 lockdep_assert_held(&i915->pcu_lock);
8054
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008055 if (i915->gt_pm.llc_pstate.enabled)
8056 return;
8057
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008058 gen6_update_ring_freq(i915);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008059
8060 i915->gt_pm.llc_pstate.enabled = true;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008061}
8062
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008063static void intel_enable_rc6(struct drm_i915_private *dev_priv)
8064{
8065 lockdep_assert_held(&dev_priv->pcu_lock);
8066
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008067 if (dev_priv->gt_pm.rc6.enabled)
8068 return;
8069
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008070 if (IS_CHERRYVIEW(dev_priv))
8071 cherryview_enable_rc6(dev_priv);
8072 else if (IS_VALLEYVIEW(dev_priv))
8073 valleyview_enable_rc6(dev_priv);
8074 else if (INTEL_GEN(dev_priv) >= 9)
8075 gen9_enable_rc6(dev_priv);
8076 else if (IS_BROADWELL(dev_priv))
8077 gen8_enable_rc6(dev_priv);
8078 else if (INTEL_GEN(dev_priv) >= 6)
8079 gen6_enable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008080
8081 dev_priv->gt_pm.rc6.enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008082}
8083
8084static void intel_enable_rps(struct drm_i915_private *dev_priv)
8085{
8086 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8087
8088 lockdep_assert_held(&dev_priv->pcu_lock);
8089
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008090 if (rps->enabled)
8091 return;
8092
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008093 if (IS_CHERRYVIEW(dev_priv)) {
8094 cherryview_enable_rps(dev_priv);
8095 } else if (IS_VALLEYVIEW(dev_priv)) {
8096 valleyview_enable_rps(dev_priv);
8097 } else if (INTEL_GEN(dev_priv) >= 9) {
8098 gen9_enable_rps(dev_priv);
8099 } else if (IS_BROADWELL(dev_priv)) {
8100 gen8_enable_rps(dev_priv);
8101 } else if (INTEL_GEN(dev_priv) >= 6) {
8102 gen6_enable_rps(dev_priv);
8103 } else if (IS_IRONLAKE_M(dev_priv)) {
8104 ironlake_enable_drps(dev_priv);
8105 intel_init_emon(dev_priv);
8106 }
8107
8108 WARN_ON(rps->max_freq < rps->min_freq);
8109 WARN_ON(rps->idle_freq > rps->max_freq);
8110
8111 WARN_ON(rps->efficient_freq < rps->min_freq);
8112 WARN_ON(rps->efficient_freq > rps->max_freq);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008113
8114 rps->enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008115}
8116
Chris Wilsonb7137e02016-07-13 09:10:37 +01008117void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
8118{
Chris Wilsonb7137e02016-07-13 09:10:37 +01008119 /* Powersaving is controlled by the host when inside a VM */
8120 if (intel_vgpu_active(dev_priv))
8121 return;
8122
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008123 mutex_lock(&dev_priv->pcu_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02008124
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008125 intel_enable_rc6(dev_priv);
8126 intel_enable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008127 if (HAS_LLC(dev_priv))
8128 intel_enable_llc_pstate(dev_priv);
8129
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008130 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008131}
Imre Deakc6df39b2014-04-14 20:24:29 +03008132
Chris Wilson54b4f682016-07-21 21:16:19 +01008133static void __intel_autoenable_gt_powersave(struct work_struct *work)
8134{
8135 struct drm_i915_private *dev_priv =
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008136 container_of(work,
8137 typeof(*dev_priv),
8138 gt_pm.autoenable_work.work);
Chris Wilson54b4f682016-07-21 21:16:19 +01008139 struct intel_engine_cs *rcs;
8140 struct drm_i915_gem_request *req;
8141
Akash Goel3b3f1652016-10-13 22:44:48 +05308142 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00008143 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01008144 goto out;
8145
8146 if (!rcs->init_context)
8147 goto out;
8148
8149 mutex_lock(&dev_priv->drm.struct_mutex);
8150
8151 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
8152 if (IS_ERR(req))
8153 goto unlock;
8154
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00008155 if (!i915_modparams.enable_execlists && i915_switch_context(req) == 0)
Chris Wilson54b4f682016-07-21 21:16:19 +01008156 rcs->init_context(req);
8157
8158 /* Mark the device busy, calling intel_enable_gt_powersave() */
Chris Wilsone642c852017-03-17 11:47:09 +00008159 i915_add_request(req);
Chris Wilson54b4f682016-07-21 21:16:19 +01008160
8161unlock:
8162 mutex_unlock(&dev_priv->drm.struct_mutex);
8163out:
8164 intel_runtime_pm_put(dev_priv);
8165}
8166
8167void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
8168{
Chris Wilson54b4f682016-07-21 21:16:19 +01008169 if (IS_IRONLAKE_M(dev_priv)) {
8170 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008171 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008172 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
8173 /*
8174 * PCU communication is slow and this doesn't need to be
8175 * done at any specific time, so do this out of our fast path
8176 * to make resume and init faster.
8177 *
8178 * We depend on the HW RC6 power context save/restore
8179 * mechanism when entering D3 through runtime PM suspend. So
8180 * disable RPM until RPS/RC6 is properly setup. We can only
8181 * get here via the driver load/system resume/runtime resume
8182 * paths, so the _noresume version is enough (and in case of
8183 * runtime resume it's necessary).
8184 */
8185 if (queue_delayed_work(dev_priv->wq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008186 &dev_priv->gt_pm.autoenable_work,
Chris Wilson54b4f682016-07-21 21:16:19 +01008187 round_jiffies_up_relative(HZ)))
8188 intel_runtime_pm_get_noresume(dev_priv);
8189 }
8190}
8191
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008192static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008193{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008194 /*
8195 * On Ibex Peak and Cougar Point, we need to disable clock
8196 * gating for the panel power sequencer or it will fail to
8197 * start up when no ports are active.
8198 */
8199 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
8200}
8201
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008202static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008203{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008204 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008205
Damien Lespiau055e3932014-08-18 13:49:10 +01008206 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008207 I915_WRITE(DSPCNTR(pipe),
8208 I915_READ(DSPCNTR(pipe)) |
8209 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008210
8211 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
8212 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008213 }
8214}
8215
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008216static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02008217{
Ville Syrjälä017636c2013-12-05 15:51:37 +02008218 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
8219 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
8220 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
8221
8222 /*
8223 * Don't touch WM1S_LP_EN here.
8224 * Doing so could cause underruns.
8225 */
8226}
8227
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008228static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008229{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008230 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008231
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01008232 /*
8233 * Required for FBC
8234 * WaFbcDisableDpfcClockGating:ilk
8235 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008236 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
8237 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
8238 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008239
8240 I915_WRITE(PCH_3DCGDIS0,
8241 MARIUNIT_CLOCK_GATE_DISABLE |
8242 SVSMUNIT_CLOCK_GATE_DISABLE);
8243 I915_WRITE(PCH_3DCGDIS1,
8244 VFMUNIT_CLOCK_GATE_DISABLE);
8245
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008246 /*
8247 * According to the spec the following bits should be set in
8248 * order to enable memory self-refresh
8249 * The bit 22/21 of 0x42004
8250 * The bit 5 of 0x42020
8251 * The bit 15 of 0x45000
8252 */
8253 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8254 (I915_READ(ILK_DISPLAY_CHICKEN2) |
8255 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008256 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008257 I915_WRITE(DISP_ARB_CTL,
8258 (I915_READ(DISP_ARB_CTL) |
8259 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02008260
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008261 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008262
8263 /*
8264 * Based on the document from hardware guys the following bits
8265 * should be set unconditionally in order to enable FBC.
8266 * The bit 22 of 0x42000
8267 * The bit 22 of 0x42004
8268 * The bit 7,8,9 of 0x42020.
8269 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008270 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01008271 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008272 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8273 I915_READ(ILK_DISPLAY_CHICKEN1) |
8274 ILK_FBCQ_DIS);
8275 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8276 I915_READ(ILK_DISPLAY_CHICKEN2) |
8277 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008278 }
8279
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008280 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
8281
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008282 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8283 I915_READ(ILK_DISPLAY_CHICKEN2) |
8284 ILK_ELPIN_409_SELECT);
8285 I915_WRITE(_3D_CHICKEN2,
8286 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
8287 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02008288
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008289 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02008290 I915_WRITE(CACHE_MODE_0,
8291 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01008292
Akash Goel4e046322014-04-04 17:14:38 +05308293 /* WaDisable_RenderCache_OperationalFlush:ilk */
8294 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8295
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008296 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03008297
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008298 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008299}
8300
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008301static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008302{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008303 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008304 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01008305
8306 /*
8307 * On Ibex Peak and Cougar Point, we need to disable clock
8308 * gating for the panel power sequencer or it will fail to
8309 * start up when no ports are active.
8310 */
Jesse Barnescd664072013-10-02 10:34:19 -07008311 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
8312 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
8313 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008314 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
8315 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01008316 /* The below fixes the weird display corruption, a few pixels shifted
8317 * downward, on (only) LVDS of some HP laptops with IVY.
8318 */
Damien Lespiau055e3932014-08-18 13:49:10 +01008319 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008320 val = I915_READ(TRANS_CHICKEN2(pipe));
8321 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
8322 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008323 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008324 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008325 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
8326 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
8327 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008328 I915_WRITE(TRANS_CHICKEN2(pipe), val);
8329 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01008330 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01008331 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01008332 I915_WRITE(TRANS_CHICKEN1(pipe),
8333 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
8334 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008335}
8336
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008337static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008338{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008339 uint32_t tmp;
8340
8341 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02008342 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
8343 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
8344 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008345}
8346
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008347static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008348{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008349 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008350
Damien Lespiau231e54f2012-10-19 17:55:41 +01008351 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008352
8353 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8354 I915_READ(ILK_DISPLAY_CHICKEN2) |
8355 ILK_ELPIN_409_SELECT);
8356
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008357 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01008358 I915_WRITE(_3D_CHICKEN,
8359 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
8360
Akash Goel4e046322014-04-04 17:14:38 +05308361 /* WaDisable_RenderCache_OperationalFlush:snb */
8362 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8363
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008364 /*
8365 * BSpec recoomends 8x4 when MSAA is used,
8366 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008367 *
8368 * Note that PS/WM thread counts depend on the WIZ hashing
8369 * disable bit, which we don't touch here, but it's good
8370 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008371 */
8372 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008373 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008374
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008375 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008376
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008377 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02008378 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008379
8380 I915_WRITE(GEN6_UCGCTL1,
8381 I915_READ(GEN6_UCGCTL1) |
8382 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
8383 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
8384
8385 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
8386 * gating disable must be set. Failure to set it results in
8387 * flickering pixels due to Z write ordering failures after
8388 * some amount of runtime in the Mesa "fire" demo, and Unigine
8389 * Sanctuary and Tropics, and apparently anything else with
8390 * alpha test or pixel discard.
8391 *
8392 * According to the spec, bit 11 (RCCUNIT) must also be set,
8393 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008394 *
Ville Syrjäläef593182014-01-22 21:32:47 +02008395 * WaDisableRCCUnitClockGating:snb
8396 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008397 */
8398 I915_WRITE(GEN6_UCGCTL2,
8399 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
8400 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
8401
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02008402 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02008403 I915_WRITE(_3D_CHICKEN3,
8404 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008405
8406 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02008407 * Bspec says:
8408 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
8409 * 3DSTATE_SF number of SF output attributes is more than 16."
8410 */
8411 I915_WRITE(_3D_CHICKEN3,
8412 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
8413
8414 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008415 * According to the spec the following bits should be
8416 * set in order to enable memory self-refresh and fbc:
8417 * The bit21 and bit22 of 0x42000
8418 * The bit21 and bit22 of 0x42004
8419 * The bit5 and bit7 of 0x42020
8420 * The bit14 of 0x70180
8421 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01008422 *
8423 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008424 */
8425 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8426 I915_READ(ILK_DISPLAY_CHICKEN1) |
8427 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
8428 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8429 I915_READ(ILK_DISPLAY_CHICKEN2) |
8430 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01008431 I915_WRITE(ILK_DSPCLK_GATE_D,
8432 I915_READ(ILK_DSPCLK_GATE_D) |
8433 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
8434 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008435
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008436 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07008437
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008438 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008439
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008440 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008441}
8442
8443static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
8444{
8445 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
8446
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008447 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02008448 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008449 *
8450 * This actually overrides the dispatch
8451 * mode for all thread types.
8452 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008453 reg &= ~GEN7_FF_SCHED_MASK;
8454 reg |= GEN7_FF_TS_SCHED_HW;
8455 reg |= GEN7_FF_VS_SCHED_HW;
8456 reg |= GEN7_FF_DS_SCHED_HW;
8457
8458 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
8459}
8460
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008461static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008462{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008463 /*
8464 * TODO: this bit should only be enabled when really needed, then
8465 * disabled when not needed anymore in order to save power.
8466 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008467 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008468 I915_WRITE(SOUTH_DSPCLK_GATE_D,
8469 I915_READ(SOUTH_DSPCLK_GATE_D) |
8470 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008471
8472 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03008473 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
8474 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008475 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008476}
8477
Ville Syrjälä712bf362016-10-31 22:37:23 +02008478static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008479{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008480 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03008481 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
8482
8483 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8484 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8485 }
8486}
8487
Imre Deak450174f2016-05-03 15:54:21 +03008488static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
8489 int general_prio_credits,
8490 int high_prio_credits)
8491{
8492 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07008493 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03008494
8495 /* WaTempDisableDOPClkGating:bdw */
8496 misccpctl = I915_READ(GEN7_MISCCPCTL);
8497 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
8498
Oscar Mateo930a7842017-10-17 13:25:45 -07008499 val = I915_READ(GEN8_L3SQCREG1);
8500 val &= ~L3_PRIO_CREDITS_MASK;
8501 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8502 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8503 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03008504
8505 /*
8506 * Wait at least 100 clocks before re-enabling clock gating.
8507 * See the definition of L3SQCREG1 in BSpec.
8508 */
8509 POSTING_READ(GEN8_L3SQCREG1);
8510 udelay(1);
8511 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
8512}
8513
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008514static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
8515{
8516 if (!HAS_PCH_CNP(dev_priv))
8517 return;
8518
8519 /* Wa #1181 */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07008520 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
8521 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008522}
8523
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008524static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008525{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008526 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008527 cnp_init_clock_gating(dev_priv);
8528
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07008529 /* This is not an Wa. Enable for better image quality */
8530 I915_WRITE(_3D_CHICKEN3,
8531 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
8532
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008533 /* WaEnableChickenDCPR:cnl */
8534 I915_WRITE(GEN8_CHICKEN_DCPR_1,
8535 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
8536
8537 /* WaFbcWakeMemOn:cnl */
8538 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
8539 DISP_FBC_MEMORY_WAKE);
8540
8541 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
8542 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
8543 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE,
8544 I915_READ(SLICE_UNIT_LEVEL_CLKGATE) |
8545 SARBUNIT_CLKGATE_DIS);
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008546
8547 /* Display WA #1133: WaFbcSkipSegments:cnl */
8548 val = I915_READ(ILK_DPFC_CHICKEN);
8549 val &= ~GLK_SKIP_SEG_COUNT_MASK;
8550 val |= GLK_SKIP_SEG_EN | GLK_SKIP_SEG_COUNT(1);
8551 I915_WRITE(ILK_DPFC_CHICKEN, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008552}
8553
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008554static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
8555{
8556 cnp_init_clock_gating(dev_priv);
8557 gen9_init_clock_gating(dev_priv);
8558
8559 /* WaFbcNukeOnHostModify:cfl */
8560 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8561 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
8562}
8563
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008564static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008565{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008566 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008567
8568 /* WaDisableSDEUnitClockGating:kbl */
8569 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8570 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8571 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03008572
8573 /* WaDisableGamClockGating:kbl */
8574 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8575 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8576 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008577
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008578 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008579 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8580 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008581}
8582
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008583static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008584{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008585 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03008586
8587 /* WAC6entrylatency:skl */
8588 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
8589 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008590
8591 /* WaFbcNukeOnHostModify:skl */
8592 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8593 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008594}
8595
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008596static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008597{
Matthew Auld8cb09832017-10-06 23:18:23 +01008598 /* The GTT cache must be disabled if the system is using 2M pages. */
8599 bool can_use_gtt_cache = !HAS_PAGE_SIZES(dev_priv,
8600 I915_GTT_PAGE_SIZE_2M);
Damien Lespiau07d27e22014-03-03 17:31:46 +00008601 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008602
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008603 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008604
Ben Widawskyab57fff2013-12-12 15:28:04 -08008605 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008606 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008607
Ben Widawskyab57fff2013-12-12 15:28:04 -08008608 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008609 I915_WRITE(CHICKEN_PAR1_1,
8610 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
8611
Ben Widawskyab57fff2013-12-12 15:28:04 -08008612 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01008613 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00008614 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02008615 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02008616 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008617 }
Ben Widawsky63801f22013-12-12 17:26:03 -08008618
Ben Widawskyab57fff2013-12-12 15:28:04 -08008619 /* WaVSRefCountFullforceMissDisable:bdw */
8620 /* WaDSRefCountFullforceMissDisable:bdw */
8621 I915_WRITE(GEN7_FF_THREAD_MODE,
8622 I915_READ(GEN7_FF_THREAD_MODE) &
8623 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02008624
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02008625 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8626 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02008627
8628 /* WaDisableSDEUnitClockGating:bdw */
8629 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8630 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00008631
Imre Deak450174f2016-05-03 15:54:21 +03008632 /* WaProgramL3SqcReg1Default:bdw */
8633 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03008634
Matthew Auld8cb09832017-10-06 23:18:23 +01008635 /* WaGttCachingOffByDefault:bdw */
8636 I915_WRITE(HSW_GTT_CACHE_EN, can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008637
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03008638 /* WaKVMNotificationOnConfigChange:bdw */
8639 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
8640 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
8641
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008642 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00008643
8644 /* WaDisableDopClockGating:bdw
8645 *
8646 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
8647 * clock gating.
8648 */
8649 I915_WRITE(GEN6_UCGCTL1,
8650 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008651}
8652
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008653static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008654{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008655 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008656
Francisco Jerezf3fc4882013-10-02 15:53:16 -07008657 /* L3 caching of data atomics doesn't work -- disable it. */
8658 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
8659 I915_WRITE(HSW_ROW_CHICKEN3,
8660 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
8661
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008662 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008663 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8664 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8665 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8666
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02008667 /* WaVSRefCountFullforceMissDisable:hsw */
8668 I915_WRITE(GEN7_FF_THREAD_MODE,
8669 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008670
Akash Goel4e046322014-04-04 17:14:38 +05308671 /* WaDisable_RenderCache_OperationalFlush:hsw */
8672 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8673
Chia-I Wufe27c602014-01-28 13:29:33 +08008674 /* enable HiZ Raw Stall Optimization */
8675 I915_WRITE(CACHE_MODE_0_GEN7,
8676 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8677
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008678 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008679 I915_WRITE(CACHE_MODE_1,
8680 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008681
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008682 /*
8683 * BSpec recommends 8x4 when MSAA is used,
8684 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008685 *
8686 * Note that PS/WM thread counts depend on the WIZ hashing
8687 * disable bit, which we don't touch here, but it's good
8688 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008689 */
8690 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008691 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008692
Kenneth Graunke94411592014-12-31 16:23:00 -08008693 /* WaSampleCChickenBitEnable:hsw */
8694 I915_WRITE(HALF_SLICE_CHICKEN3,
8695 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
8696
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008697 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07008698 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
8699
Paulo Zanoni90a88642013-05-03 17:23:45 -03008700 /* WaRsPkgCStateDisplayPMReq:hsw */
8701 I915_WRITE(CHICKEN_PAR1_1,
8702 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008703
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008704 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008705}
8706
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008707static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008708{
Ben Widawsky20848222012-05-04 18:58:59 -07008709 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008710
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008711 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008712
Damien Lespiau231e54f2012-10-19 17:55:41 +01008713 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008714
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008715 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05008716 I915_WRITE(_3D_CHICKEN3,
8717 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8718
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008719 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008720 I915_WRITE(IVB_CHICKEN3,
8721 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8722 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8723
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008724 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008725 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07008726 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
8727 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008728
Akash Goel4e046322014-04-04 17:14:38 +05308729 /* WaDisable_RenderCache_OperationalFlush:ivb */
8730 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8731
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008732 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008733 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
8734 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
8735
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008736 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008737 I915_WRITE(GEN7_L3CNTLREG1,
8738 GEN7_WA_FOR_GEN7_L3_CONTROL);
8739 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07008740 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008741 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07008742 I915_WRITE(GEN7_ROW_CHICKEN2,
8743 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008744 else {
8745 /* must write both registers */
8746 I915_WRITE(GEN7_ROW_CHICKEN2,
8747 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07008748 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
8749 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008750 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008751
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008752 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05008753 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8754 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8755
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02008756 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008757 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008758 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008759 */
8760 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02008761 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008762
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008763 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008764 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8765 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8766 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8767
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008768 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008769
8770 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02008771
Chris Wilson22721342014-03-04 09:41:43 +00008772 if (0) { /* causes HiZ corruption on ivb:gt1 */
8773 /* enable HiZ Raw Stall Optimization */
8774 I915_WRITE(CACHE_MODE_0_GEN7,
8775 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8776 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08008777
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008778 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02008779 I915_WRITE(CACHE_MODE_1,
8780 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07008781
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008782 /*
8783 * BSpec recommends 8x4 when MSAA is used,
8784 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008785 *
8786 * Note that PS/WM thread counts depend on the WIZ hashing
8787 * disable bit, which we don't touch here, but it's good
8788 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008789 */
8790 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008791 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008792
Ben Widawsky20848222012-05-04 18:58:59 -07008793 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
8794 snpcr &= ~GEN6_MBC_SNPCR_MASK;
8795 snpcr |= GEN6_MBC_SNPCR_MED;
8796 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008797
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01008798 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008799 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008800
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008801 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008802}
8803
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008804static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008805{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008806 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05008807 I915_WRITE(_3D_CHICKEN3,
8808 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8809
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008810 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008811 I915_WRITE(IVB_CHICKEN3,
8812 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8813 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8814
Ville Syrjäläfad7d362014-01-22 21:32:39 +02008815 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008816 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07008817 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08008818 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
8819 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008820
Akash Goel4e046322014-04-04 17:14:38 +05308821 /* WaDisable_RenderCache_OperationalFlush:vlv */
8822 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8823
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008824 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05008825 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8826 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8827
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008828 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07008829 I915_WRITE(GEN7_ROW_CHICKEN2,
8830 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
8831
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008832 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008833 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8834 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8835 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8836
Ville Syrjälä46680e02014-01-22 21:33:01 +02008837 gen7_setup_fixed_func_scheduler(dev_priv);
8838
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008839 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008840 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008841 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008842 */
8843 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008844 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008845
Akash Goelc98f5062014-03-24 23:00:07 +05308846 /* WaDisableL3Bank2xClockGate:vlv
8847 * Disabling L3 clock gating- MMIO 940c[25] = 1
8848 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
8849 I915_WRITE(GEN7_UCGCTL4,
8850 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07008851
Ville Syrjäläafd58e72014-01-22 21:33:03 +02008852 /*
8853 * BSpec says this must be set, even though
8854 * WaDisable4x2SubspanOptimization isn't listed for VLV.
8855 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02008856 I915_WRITE(CACHE_MODE_1,
8857 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07008858
8859 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02008860 * BSpec recommends 8x4 when MSAA is used,
8861 * however in practice 16x4 seems fastest.
8862 *
8863 * Note that PS/WM thread counts depend on the WIZ hashing
8864 * disable bit, which we don't touch here, but it's good
8865 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
8866 */
8867 I915_WRITE(GEN7_GT_MODE,
8868 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
8869
8870 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02008871 * WaIncreaseL3CreditsForVLVB0:vlv
8872 * This is the hardware default actually.
8873 */
8874 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
8875
8876 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008877 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07008878 * Disable clock gating on th GCFG unit to prevent a delay
8879 * in the reporting of vblank events.
8880 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02008881 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008882}
8883
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008884static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008885{
Ville Syrjälä232ce332014-04-09 13:28:35 +03008886 /* WaVSRefCountFullforceMissDisable:chv */
8887 /* WaDSRefCountFullforceMissDisable:chv */
8888 I915_WRITE(GEN7_FF_THREAD_MODE,
8889 I915_READ(GEN7_FF_THREAD_MODE) &
8890 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03008891
8892 /* WaDisableSemaphoreAndSyncFlipWait:chv */
8893 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8894 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03008895
8896 /* WaDisableCSUnitClockGating:chv */
8897 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8898 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03008899
8900 /* WaDisableSDEUnitClockGating:chv */
8901 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8902 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008903
8904 /*
Imre Deak450174f2016-05-03 15:54:21 +03008905 * WaProgramL3SqcReg1Default:chv
8906 * See gfxspecs/Related Documents/Performance Guide/
8907 * LSQC Setting Recommendations.
8908 */
8909 gen8_set_l3sqc_credits(dev_priv, 38, 2);
8910
8911 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008912 * GTT cache may not work with big pages, so if those
8913 * are ever enabled GTT cache may need to be disabled.
8914 */
8915 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008916}
8917
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008918static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008919{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008920 uint32_t dspclk_gate;
8921
8922 I915_WRITE(RENCLK_GATE_D1, 0);
8923 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
8924 GS_UNIT_CLOCK_GATE_DISABLE |
8925 CL_UNIT_CLOCK_GATE_DISABLE);
8926 I915_WRITE(RAMCLK_GATE_D, 0);
8927 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
8928 OVRUNIT_CLOCK_GATE_DISABLE |
8929 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008930 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008931 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
8932 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02008933
8934 /* WaDisableRenderCachePipelinedFlush */
8935 I915_WRITE(CACHE_MODE_0,
8936 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03008937
Akash Goel4e046322014-04-04 17:14:38 +05308938 /* WaDisable_RenderCache_OperationalFlush:g4x */
8939 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8940
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008941 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008942}
8943
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008944static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008945{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008946 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
8947 I915_WRITE(RENCLK_GATE_D2, 0);
8948 I915_WRITE(DSPCLK_GATE_D, 0);
8949 I915_WRITE(RAMCLK_GATE_D, 0);
8950 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008951 I915_WRITE(MI_ARB_STATE,
8952 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308953
8954 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8955 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008956}
8957
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008958static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008959{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008960 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
8961 I965_RCC_CLOCK_GATE_DISABLE |
8962 I965_RCPB_CLOCK_GATE_DISABLE |
8963 I965_ISC_CLOCK_GATE_DISABLE |
8964 I965_FBC_CLOCK_GATE_DISABLE);
8965 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008966 I915_WRITE(MI_ARB_STATE,
8967 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308968
8969 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8970 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008971}
8972
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008973static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008974{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008975 u32 dstate = I915_READ(D_STATE);
8976
8977 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
8978 DSTATE_DOT_CLOCK_GATING;
8979 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01008980
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02008981 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01008982 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02008983
8984 /* IIR "flip pending" means done if this bit is set */
8985 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02008986
8987 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02008988 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02008989
8990 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
8991 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008992
8993 I915_WRITE(MI_ARB_STATE,
8994 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008995}
8996
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008997static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008998{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008999 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02009000
9001 /* interrupts should cause a wake up from C3 */
9002 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
9003 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03009004
9005 I915_WRITE(MEM_MODE,
9006 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009007}
9008
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009009static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009010{
Ville Syrjälä10383922014-08-15 01:21:54 +03009011 I915_WRITE(MEM_MODE,
9012 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
9013 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009014}
9015
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009016void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009017{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009018 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009019}
9020
Ville Syrjälä712bf362016-10-31 22:37:23 +02009021void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03009022{
Ville Syrjälä712bf362016-10-31 22:37:23 +02009023 if (HAS_PCH_LPT(dev_priv))
9024 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03009025}
9026
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009027static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02009028{
9029 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
9030}
9031
9032/**
9033 * intel_init_clock_gating_hooks - setup the clock gating hooks
9034 * @dev_priv: device private
9035 *
9036 * Setup the hooks that configure which clocks of a given platform can be
9037 * gated and also apply various GT and display specific workarounds for these
9038 * platforms. Note that some GT specific workarounds are applied separately
9039 * when GPU contexts or batchbuffers start their execution.
9040 */
9041void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
9042{
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009043 if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009044 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009045 else if (IS_COFFEELAKE(dev_priv))
9046 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009047 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009048 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009049 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009050 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009051 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02009052 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009053 else if (IS_GEMINILAKE(dev_priv))
9054 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009055 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009056 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009057 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009058 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009059 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009060 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009061 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009062 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009063 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009064 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009065 else if (IS_GEN6(dev_priv))
9066 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
9067 else if (IS_GEN5(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009068 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009069 else if (IS_G4X(dev_priv))
9070 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009071 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009072 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009073 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009074 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009075 else if (IS_GEN3(dev_priv))
9076 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
9077 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
9078 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
9079 else if (IS_GEN2(dev_priv))
9080 dev_priv->display.init_clock_gating = i830_init_clock_gating;
9081 else {
9082 MISSING_CASE(INTEL_DEVID(dev_priv));
9083 dev_priv->display.init_clock_gating = nop_init_clock_gating;
9084 }
9085}
9086
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009087/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009088void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009089{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009090 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009091
Daniel Vetterc921aba2012-04-26 23:28:17 +02009092 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009093 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009094 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009095 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009096 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02009097
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009098 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009099 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009100 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01009101 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01009102 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07009103 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009104 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009105 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03009106
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009107 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009108 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009109 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009110 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07009111 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08009112 dev_priv->display.compute_intermediate_wm =
9113 ilk_compute_intermediate_wm;
9114 dev_priv->display.initial_watermarks =
9115 ilk_initial_watermarks;
9116 dev_priv->display.optimize_watermarks =
9117 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02009118 } else {
9119 DRM_DEBUG_KMS("Failed to read display plane latency. "
9120 "Disable CxSR\n");
9121 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02009122 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009123 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02009124 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009125 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009126 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009127 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009128 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03009129 } else if (IS_G4X(dev_priv)) {
9130 g4x_setup_wm_latency(dev_priv);
9131 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
9132 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
9133 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
9134 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009135 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009136 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009137 dev_priv->is_ddr3,
9138 dev_priv->fsb_freq,
9139 dev_priv->mem_freq)) {
9140 DRM_INFO("failed to find known CxSR latency "
9141 "(found ddr%s fsb freq %d, mem freq %d), "
9142 "disabling CxSR\n",
9143 (dev_priv->is_ddr3 == 1) ? "3" : "2",
9144 dev_priv->fsb_freq, dev_priv->mem_freq);
9145 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03009146 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009147 dev_priv->display.update_wm = NULL;
9148 } else
9149 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009150 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009151 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009152 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009153 dev_priv->display.update_wm = i9xx_update_wm;
9154 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009155 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009156 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009157 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009158 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009159 } else {
9160 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009161 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009162 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009163 } else {
9164 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009165 }
9166}
9167
Lyude87660502016-08-17 15:55:53 -04009168static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
9169{
9170 uint32_t flags =
9171 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9172
9173 switch (flags) {
9174 case GEN6_PCODE_SUCCESS:
9175 return 0;
9176 case GEN6_PCODE_UNIMPLEMENTED_CMD:
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009177 return -ENODEV;
Lyude87660502016-08-17 15:55:53 -04009178 case GEN6_PCODE_ILLEGAL_CMD:
9179 return -ENXIO;
9180 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01009181 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04009182 return -EOVERFLOW;
9183 case GEN6_PCODE_TIMEOUT:
9184 return -ETIMEDOUT;
9185 default:
Michal Wajdeczkof0d66152017-03-28 08:45:12 +00009186 MISSING_CASE(flags);
Lyude87660502016-08-17 15:55:53 -04009187 return 0;
9188 }
9189}
9190
9191static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
9192{
9193 uint32_t flags =
9194 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9195
9196 switch (flags) {
9197 case GEN6_PCODE_SUCCESS:
9198 return 0;
9199 case GEN6_PCODE_ILLEGAL_CMD:
9200 return -ENXIO;
9201 case GEN7_PCODE_TIMEOUT:
9202 return -ETIMEDOUT;
9203 case GEN7_PCODE_ILLEGAL_DATA:
9204 return -EINVAL;
9205 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
9206 return -EOVERFLOW;
9207 default:
9208 MISSING_CASE(flags);
9209 return 0;
9210 }
9211}
9212
Tom O'Rourke151a49d2014-11-13 18:50:10 -08009213int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009214{
Lyude87660502016-08-17 15:55:53 -04009215 int status;
9216
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009217 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009218
Chris Wilson3f5582d2016-06-30 15:32:45 +01009219 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9220 * use te fw I915_READ variants to reduce the amount of work
9221 * required when reading/writing.
9222 */
9223
9224 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009225 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps\n",
9226 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009227 return -EAGAIN;
9228 }
9229
Chris Wilson3f5582d2016-06-30 15:32:45 +01009230 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
9231 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
9232 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009233
Chris Wilsone09a3032017-04-11 11:13:39 +01009234 if (__intel_wait_for_register_fw(dev_priv,
9235 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9236 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009237 DRM_ERROR("timeout waiting for pcode read (from mbox %x) to finish for %ps\n",
9238 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009239 return -ETIMEDOUT;
9240 }
9241
Chris Wilson3f5582d2016-06-30 15:32:45 +01009242 *val = I915_READ_FW(GEN6_PCODE_DATA);
9243 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009244
Lyude87660502016-08-17 15:55:53 -04009245 if (INTEL_GEN(dev_priv) > 6)
9246 status = gen7_check_mailbox_status(dev_priv);
9247 else
9248 status = gen6_check_mailbox_status(dev_priv);
9249
9250 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009251 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
9252 mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009253 return status;
9254 }
9255
Ben Widawsky42c05262012-09-26 10:34:00 -07009256 return 0;
9257}
9258
Chris Wilson3f5582d2016-06-30 15:32:45 +01009259int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04009260 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009261{
Lyude87660502016-08-17 15:55:53 -04009262 int status;
9263
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009264 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009265
Chris Wilson3f5582d2016-06-30 15:32:45 +01009266 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9267 * use te fw I915_READ variants to reduce the amount of work
9268 * required when reading/writing.
9269 */
9270
9271 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009272 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps\n",
9273 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009274 return -EAGAIN;
9275 }
9276
Chris Wilson3f5582d2016-06-30 15:32:45 +01009277 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02009278 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01009279 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009280
Chris Wilsone09a3032017-04-11 11:13:39 +01009281 if (__intel_wait_for_register_fw(dev_priv,
9282 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9283 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009284 DRM_ERROR("timeout waiting for pcode write of 0x%08x to mbox %x to finish for %ps\n",
9285 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009286 return -ETIMEDOUT;
9287 }
9288
Chris Wilson3f5582d2016-06-30 15:32:45 +01009289 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009290
Lyude87660502016-08-17 15:55:53 -04009291 if (INTEL_GEN(dev_priv) > 6)
9292 status = gen7_check_mailbox_status(dev_priv);
9293 else
9294 status = gen6_check_mailbox_status(dev_priv);
9295
9296 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009297 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
9298 val, mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009299 return status;
9300 }
9301
Ben Widawsky42c05262012-09-26 10:34:00 -07009302 return 0;
9303}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07009304
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009305static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
9306 u32 request, u32 reply_mask, u32 reply,
9307 u32 *status)
9308{
9309 u32 val = request;
9310
9311 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
9312
9313 return *status || ((val & reply_mask) == reply);
9314}
9315
9316/**
9317 * skl_pcode_request - send PCODE request until acknowledgment
9318 * @dev_priv: device private
9319 * @mbox: PCODE mailbox ID the request is targeted for
9320 * @request: request ID
9321 * @reply_mask: mask used to check for request acknowledgment
9322 * @reply: value used to check for request acknowledgment
9323 * @timeout_base_ms: timeout for polling with preemption enabled
9324 *
9325 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02009326 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009327 * The request is acknowledged once the PCODE reply dword equals @reply after
9328 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02009329 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009330 * preemption disabled.
9331 *
9332 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
9333 * other error as reported by PCODE.
9334 */
9335int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
9336 u32 reply_mask, u32 reply, int timeout_base_ms)
9337{
9338 u32 status;
9339 int ret;
9340
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009341 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009342
9343#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
9344 &status)
9345
9346 /*
9347 * Prime the PCODE by doing a request first. Normally it guarantees
9348 * that a subsequent request, at most @timeout_base_ms later, succeeds.
9349 * _wait_for() doesn't guarantee when its passed condition is evaluated
9350 * first, so send the first request explicitly.
9351 */
9352 if (COND) {
9353 ret = 0;
9354 goto out;
9355 }
9356 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
9357 if (!ret)
9358 goto out;
9359
9360 /*
9361 * The above can time out if the number of requests was low (2 in the
9362 * worst case) _and_ PCODE was busy for some reason even after a
9363 * (queued) request and @timeout_base_ms delay. As a workaround retry
9364 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02009365 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009366 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02009367 * requests, and for any quirks of the PCODE firmware that delays
9368 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009369 */
9370 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
9371 WARN_ON_ONCE(timeout_base_ms > 3);
9372 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02009373 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009374 preempt_enable();
9375
9376out:
9377 return ret ? ret : status;
9378#undef COND
9379}
9380
Ville Syrjälädd06f882014-11-10 22:55:12 +02009381static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
9382{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009383 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9384
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009385 /*
9386 * N = val - 0xb7
9387 * Slow = Fast = GPLL ref * N
9388 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009389 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009390}
9391
Fengguang Wub55dd642014-07-12 11:21:39 +02009392static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009393{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009394 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9395
9396 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009397}
9398
Fengguang Wub55dd642014-07-12 11:21:39 +02009399static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309400{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009401 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9402
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009403 /*
9404 * N = val / 2
9405 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
9406 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009407 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05309408}
9409
Fengguang Wub55dd642014-07-12 11:21:39 +02009410static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309411{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009412 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9413
Ville Syrjälä1c147622014-08-18 14:42:43 +03009414 /* CHV needs even values */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009415 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05309416}
9417
Ville Syrjälä616bc822015-01-23 21:04:25 +02009418int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
9419{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009420 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009421 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
9422 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009423 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009424 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009425 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009426 return byt_gpu_freq(dev_priv, val);
9427 else
9428 return val * GT_FREQUENCY_MULTIPLIER;
9429}
9430
Ville Syrjälä616bc822015-01-23 21:04:25 +02009431int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
9432{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009433 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009434 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
9435 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009436 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009437 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009438 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009439 return byt_freq_opcode(dev_priv, val);
9440 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009441 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05309442}
9443
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00009444void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01009445{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009446 mutex_init(&dev_priv->pcu_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01009447
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009448 INIT_DELAYED_WORK(&dev_priv->gt_pm.autoenable_work,
Chris Wilson54b4f682016-07-21 21:16:19 +01009449 __intel_autoenable_gt_powersave);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009450 atomic_set(&dev_priv->gt_pm.rps.num_waiters, 0);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03009451
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01009452 dev_priv->runtime_pm.suspended = false;
9453 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01009454}
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009455
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009456static u64 vlv_residency_raw(struct drm_i915_private *dev_priv,
9457 const i915_reg_t reg)
9458{
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009459 u32 lower, upper, tmp;
Chris Wilson71cc2b12017-03-24 16:54:18 +00009460 int loop = 2;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009461
9462 /* The register accessed do not need forcewake. We borrow
9463 * uncore lock to prevent concurrent access to range reg.
9464 */
9465 spin_lock_irq(&dev_priv->uncore.lock);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009466
9467 /* vlv and chv residency counters are 40 bits in width.
9468 * With a control bit, we can choose between upper or lower
9469 * 32bit window into this counter.
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009470 *
9471 * Although we always use the counter in high-range mode elsewhere,
9472 * userspace may attempt to read the value before rc6 is initialised,
9473 * before we have set the default VLV_COUNTER_CONTROL value. So always
9474 * set the high bit to be safe.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009475 */
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009476 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9477 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009478 upper = I915_READ_FW(reg);
9479 do {
9480 tmp = upper;
9481
9482 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9483 _MASKED_BIT_DISABLE(VLV_COUNT_RANGE_HIGH));
9484 lower = I915_READ_FW(reg);
9485
9486 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9487 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
9488 upper = I915_READ_FW(reg);
Chris Wilson71cc2b12017-03-24 16:54:18 +00009489 } while (upper != tmp && --loop);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009490
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009491 /* Everywhere else we always use VLV_COUNTER_CONTROL with the
9492 * VLV_COUNT_RANGE_HIGH bit set - so it is safe to leave it set
9493 * now.
9494 */
9495
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009496 spin_unlock_irq(&dev_priv->uncore.lock);
9497
9498 return lower | (u64)upper << 8;
9499}
9500
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009501u64 intel_rc6_residency_us(struct drm_i915_private *dev_priv,
9502 const i915_reg_t reg)
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009503{
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009504 u64 time_hw, units, div;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009505
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01009506 if (!intel_rc6_enabled())
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009507 return 0;
9508
9509 intel_runtime_pm_get(dev_priv);
9510
9511 /* On VLV and CHV, residency time is in CZ units rather than 1.28us */
9512 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009513 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009514 div = dev_priv->czclk_freq;
9515
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009516 time_hw = vlv_residency_raw(dev_priv, reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009517 } else if (IS_GEN9_LP(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009518 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009519 div = 1200; /* 833.33ns */
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009520
9521 time_hw = I915_READ(reg);
9522 } else {
9523 units = 128000; /* 1.28us */
9524 div = 100000;
9525
9526 time_hw = I915_READ(reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009527 }
9528
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009529 intel_runtime_pm_put(dev_priv);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009530 return DIV_ROUND_UP_ULL(time_hw * units, div);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009531}