blob: e7926973112e650375fba5cc610ddf92e0cc4e6f [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 */
931static int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
932{
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;
1108 int clock, htotal, cpp, width, wm;
1109 int latency = dev_priv->wm.pri_latency[level] * 10;
1110
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 {
1148 int small, large;
1149
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
1161 return min_t(int, wm, USHRT_MAX);
1162}
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;
Ville Syrjäläac484962016-01-20 21:05:26 +02001605 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
1631 return min_t(int, wm, USHRT_MAX);
1632}
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;
Matt Ropered4a6a72016-02-23 17:20:13 -08003127 struct intel_pipe_wm *b = &intel_crtc->wm.active.ilk;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003128 int level, max_level = ilk_wm_max_level(to_i915(dev));
Matt Ropered4a6a72016-02-23 17:20:13 -08003129
3130 /*
3131 * Start with the final, target watermarks, then combine with the
3132 * currently active watermarks to get values that are safe both before
3133 * and after the vblank.
3134 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003135 *a = newstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08003136 a->pipe_enabled |= b->pipe_enabled;
3137 a->sprites_enabled |= b->sprites_enabled;
3138 a->sprites_scaled |= b->sprites_scaled;
3139
3140 for (level = 0; level <= max_level; level++) {
3141 struct intel_wm_level *a_wm = &a->wm[level];
3142 const struct intel_wm_level *b_wm = &b->wm[level];
3143
3144 a_wm->enable &= b_wm->enable;
3145 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3146 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3147 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3148 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3149 }
3150
3151 /*
3152 * We need to make sure that these merged watermark values are
3153 * actually a valid configuration themselves. If they're not,
3154 * there's no safe way to transition from the old state to
3155 * the new state, so we need to fail the atomic transaction.
3156 */
3157 if (!ilk_validate_pipe_wm(dev, a))
3158 return -EINVAL;
3159
3160 /*
3161 * If our intermediate WM are identical to the final WM, then we can
3162 * omit the post-vblank programming; only update if it's different.
3163 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003164 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3165 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003166
3167 return 0;
3168}
3169
3170/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003171 * Merge the watermarks from all active pipes for a specific level.
3172 */
3173static void ilk_merge_wm_level(struct drm_device *dev,
3174 int level,
3175 struct intel_wm_level *ret_wm)
3176{
3177 const struct intel_crtc *intel_crtc;
3178
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003179 ret_wm->enable = true;
3180
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003181 for_each_intel_crtc(dev, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003182 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003183 const struct intel_wm_level *wm = &active->wm[level];
3184
3185 if (!active->pipe_enabled)
3186 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003187
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003188 /*
3189 * The watermark values may have been used in the past,
3190 * so we must maintain them in the registers for some
3191 * time even if the level is now disabled.
3192 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003193 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003194 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003195
3196 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3197 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3198 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3199 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3200 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003201}
3202
3203/*
3204 * Merge all low power watermarks for all active pipes.
3205 */
3206static void ilk_wm_merge(struct drm_device *dev,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003207 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003208 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003209 struct intel_pipe_wm *merged)
3210{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003211 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003212 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003213 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003214
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003215 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003216 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003217 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003218 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003219
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003220 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003221 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003222
3223 /* merge each WM1+ level */
3224 for (level = 1; level <= max_level; level++) {
3225 struct intel_wm_level *wm = &merged->wm[level];
3226
3227 ilk_merge_wm_level(dev, level, wm);
3228
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003229 if (level > last_enabled_level)
3230 wm->enable = false;
3231 else if (!ilk_validate_wm_level(level, max, wm))
3232 /* make sure all following levels get disabled */
3233 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003234
3235 /*
3236 * The spec says it is preferred to disable
3237 * FBC WMs instead of disabling a WM level.
3238 */
3239 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003240 if (wm->enable)
3241 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003242 wm->fbc_val = 0;
3243 }
3244 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003245
3246 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3247 /*
3248 * FIXME this is racy. FBC might get enabled later.
3249 * What we should check here is whether FBC can be
3250 * enabled sometime later.
3251 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003252 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003253 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003254 for (level = 2; level <= max_level; level++) {
3255 struct intel_wm_level *wm = &merged->wm[level];
3256
3257 wm->enable = false;
3258 }
3259 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003260}
3261
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003262static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3263{
3264 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3265 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3266}
3267
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003268/* The value we need to program into the WM_LPx latency field */
3269static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level)
3270{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003271 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003272
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003273 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003274 return 2 * level;
3275 else
3276 return dev_priv->wm.pri_latency[level];
3277}
3278
Imre Deak820c1982013-12-17 14:46:36 +02003279static void ilk_compute_wm_results(struct drm_device *dev,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003280 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003281 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003282 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003283{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003284 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003285 struct intel_crtc *intel_crtc;
3286 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003287
Ville Syrjälä0362c782013-10-09 19:17:57 +03003288 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003289 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003290
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003291 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003292 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003293 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003294
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003295 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003296
Ville Syrjälä0362c782013-10-09 19:17:57 +03003297 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003298
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003299 /*
3300 * Maintain the watermark values even if the level is
3301 * disabled. Doing otherwise could cause underruns.
3302 */
3303 results->wm_lp[wm_lp - 1] =
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003304 (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003305 (r->pri_val << WM1_LP_SR_SHIFT) |
3306 r->cur_val;
3307
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003308 if (r->enable)
3309 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3310
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003311 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003312 results->wm_lp[wm_lp - 1] |=
3313 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3314 else
3315 results->wm_lp[wm_lp - 1] |=
3316 r->fbc_val << WM1_LP_FBC_SHIFT;
3317
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003318 /*
3319 * Always set WM1S_LP_EN when spr_val != 0, even if the
3320 * level is disabled. Doing otherwise could cause underruns.
3321 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003322 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003323 WARN_ON(wm_lp != 1);
3324 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3325 } else
3326 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003327 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003328
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003329 /* LP0 register values */
Damien Lespiaud3fcc802014-05-13 23:32:22 +01003330 for_each_intel_crtc(dev, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003331 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08003332 const struct intel_wm_level *r =
3333 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003334
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003335 if (WARN_ON(!r->enable))
3336 continue;
3337
Matt Ropered4a6a72016-02-23 17:20:13 -08003338 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003339
3340 results->wm_pipe[pipe] =
3341 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3342 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3343 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003344 }
3345}
3346
Paulo Zanoni861f3382013-05-31 10:19:21 -03003347/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3348 * case both are at the same level. Prefer r1 in case they're the same. */
Imre Deak820c1982013-12-17 14:46:36 +02003349static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev,
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003350 struct intel_pipe_wm *r1,
3351 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003352{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003353 int level, max_level = ilk_wm_max_level(to_i915(dev));
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003354 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003355
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003356 for (level = 1; level <= max_level; level++) {
3357 if (r1->wm[level].enable)
3358 level1 = level;
3359 if (r2->wm[level].enable)
3360 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003361 }
3362
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003363 if (level1 == level2) {
3364 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003365 return r2;
3366 else
3367 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003368 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003369 return r1;
3370 } else {
3371 return r2;
3372 }
3373}
3374
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003375/* dirty bits used to track which watermarks need changes */
3376#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3377#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
3378#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3379#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3380#define WM_DIRTY_FBC (1 << 24)
3381#define WM_DIRTY_DDB (1 << 25)
3382
Damien Lespiau055e3932014-08-18 13:49:10 +01003383static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003384 const struct ilk_wm_values *old,
3385 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003386{
3387 unsigned int dirty = 0;
3388 enum pipe pipe;
3389 int wm_lp;
3390
Damien Lespiau055e3932014-08-18 13:49:10 +01003391 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003392 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
3393 dirty |= WM_DIRTY_LINETIME(pipe);
3394 /* Must disable LP1+ watermarks too */
3395 dirty |= WM_DIRTY_LP_ALL;
3396 }
3397
3398 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3399 dirty |= WM_DIRTY_PIPE(pipe);
3400 /* Must disable LP1+ watermarks too */
3401 dirty |= WM_DIRTY_LP_ALL;
3402 }
3403 }
3404
3405 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3406 dirty |= WM_DIRTY_FBC;
3407 /* Must disable LP1+ watermarks too */
3408 dirty |= WM_DIRTY_LP_ALL;
3409 }
3410
3411 if (old->partitioning != new->partitioning) {
3412 dirty |= WM_DIRTY_DDB;
3413 /* Must disable LP1+ watermarks too */
3414 dirty |= WM_DIRTY_LP_ALL;
3415 }
3416
3417 /* LP1+ watermarks already deemed dirty, no need to continue */
3418 if (dirty & WM_DIRTY_LP_ALL)
3419 return dirty;
3420
3421 /* Find the lowest numbered LP1+ watermark in need of an update... */
3422 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3423 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3424 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3425 break;
3426 }
3427
3428 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3429 for (; wm_lp <= 3; wm_lp++)
3430 dirty |= WM_DIRTY_LP(wm_lp);
3431
3432 return dirty;
3433}
3434
Ville Syrjälä8553c182013-12-05 15:51:39 +02003435static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3436 unsigned int dirty)
3437{
Imre Deak820c1982013-12-17 14:46:36 +02003438 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003439 bool changed = false;
3440
3441 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3442 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3443 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3444 changed = true;
3445 }
3446 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3447 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3448 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3449 changed = true;
3450 }
3451 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3452 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3453 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3454 changed = true;
3455 }
3456
3457 /*
3458 * Don't touch WM1S_LP_EN here.
3459 * Doing so could cause underruns.
3460 */
3461
3462 return changed;
3463}
3464
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003465/*
3466 * The spec says we shouldn't write when we don't need, because every write
3467 * causes WMs to be re-evaluated, expending some power.
3468 */
Imre Deak820c1982013-12-17 14:46:36 +02003469static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3470 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003471{
Imre Deak820c1982013-12-17 14:46:36 +02003472 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003473 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003474 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003475
Damien Lespiau055e3932014-08-18 13:49:10 +01003476 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003477 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003478 return;
3479
Ville Syrjälä8553c182013-12-05 15:51:39 +02003480 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003481
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003482 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003483 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003484 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003485 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003486 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003487 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3488
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003489 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003490 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003491 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003492 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003493 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003494 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
3495
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003496 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003497 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003498 val = I915_READ(WM_MISC);
3499 if (results->partitioning == INTEL_DDB_PART_1_2)
3500 val &= ~WM_MISC_DATA_PARTITION_5_6;
3501 else
3502 val |= WM_MISC_DATA_PARTITION_5_6;
3503 I915_WRITE(WM_MISC, val);
3504 } else {
3505 val = I915_READ(DISP_ARB_CTL2);
3506 if (results->partitioning == INTEL_DDB_PART_1_2)
3507 val &= ~DISP_DATA_PARTITION_5_6;
3508 else
3509 val |= DISP_DATA_PARTITION_5_6;
3510 I915_WRITE(DISP_ARB_CTL2, val);
3511 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003512 }
3513
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003514 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003515 val = I915_READ(DISP_ARB_CTL);
3516 if (results->enable_fbc_wm)
3517 val &= ~DISP_FBC_WM_DIS;
3518 else
3519 val |= DISP_FBC_WM_DIS;
3520 I915_WRITE(DISP_ARB_CTL, val);
3521 }
3522
Imre Deak954911e2013-12-17 14:46:34 +02003523 if (dirty & WM_DIRTY_LP(1) &&
3524 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3525 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3526
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003527 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003528 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3529 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3530 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3531 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3532 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003533
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003534 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003535 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003536 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003537 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003538 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003539 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003540
3541 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003542}
3543
Matt Ropered4a6a72016-02-23 17:20:13 -08003544bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003545{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003546 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003547
3548 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3549}
3550
Matt Roper024c9042015-09-24 15:53:11 -07003551/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003552 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3553 * so assume we'll always need it in order to avoid underruns.
3554 */
3555static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3556{
3557 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3558
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003559 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003560 return true;
3561
3562 return false;
3563}
3564
Paulo Zanoni56feca92016-09-22 18:00:28 -03003565static bool
3566intel_has_sagv(struct drm_i915_private *dev_priv)
3567{
Rodrigo Vivi01971812017-08-09 13:52:44 -07003568 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
3569 IS_CANNONLAKE(dev_priv))
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003570 return true;
3571
3572 if (IS_SKYLAKE(dev_priv) &&
3573 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED)
3574 return true;
3575
3576 return false;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003577}
3578
Lyude656d1b82016-08-17 15:55:54 -04003579/*
3580 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3581 * depending on power and performance requirements. The display engine access
3582 * to system memory is blocked during the adjustment time. Because of the
3583 * blocking time, having this enabled can cause full system hangs and/or pipe
3584 * underruns if we don't meet all of the following requirements:
3585 *
3586 * - <= 1 pipe enabled
3587 * - All planes can enable watermarks for latencies >= SAGV engine block time
3588 * - We're not using an interlaced display configuration
3589 */
3590int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003591intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003592{
3593 int ret;
3594
Paulo Zanoni56feca92016-09-22 18:00:28 -03003595 if (!intel_has_sagv(dev_priv))
3596 return 0;
3597
3598 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003599 return 0;
3600
3601 DRM_DEBUG_KMS("Enabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003602 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003603
3604 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3605 GEN9_SAGV_ENABLE);
3606
3607 /* We don't need to wait for the SAGV when enabling */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003608 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003609
3610 /*
3611 * Some skl systems, pre-release machines in particular,
3612 * don't actually have an SAGV.
3613 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003614 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003615 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003616 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003617 return 0;
3618 } else if (ret < 0) {
3619 DRM_ERROR("Failed to enable the SAGV\n");
3620 return ret;
3621 }
3622
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003623 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003624 return 0;
3625}
3626
Lyude656d1b82016-08-17 15:55:54 -04003627int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003628intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003629{
Imre Deakb3b8e992016-12-05 18:27:38 +02003630 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003631
Paulo Zanoni56feca92016-09-22 18:00:28 -03003632 if (!intel_has_sagv(dev_priv))
3633 return 0;
3634
3635 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003636 return 0;
3637
3638 DRM_DEBUG_KMS("Disabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003639 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003640
3641 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003642 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3643 GEN9_SAGV_DISABLE,
3644 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3645 1);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003646 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003647
Lyude656d1b82016-08-17 15:55:54 -04003648 /*
3649 * Some skl systems, pre-release machines in particular,
3650 * don't actually have an SAGV.
3651 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003652 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003653 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003654 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003655 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003656 } else if (ret < 0) {
3657 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3658 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003659 }
3660
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003661 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003662 return 0;
3663}
3664
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003665bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003666{
3667 struct drm_device *dev = state->dev;
3668 struct drm_i915_private *dev_priv = to_i915(dev);
3669 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003670 struct intel_crtc *crtc;
3671 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003672 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003673 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003674 int level, latency;
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003675 int sagv_block_time_us = IS_GEN9(dev_priv) ? 30 : 20;
Lyude656d1b82016-08-17 15:55:54 -04003676
Paulo Zanoni56feca92016-09-22 18:00:28 -03003677 if (!intel_has_sagv(dev_priv))
3678 return false;
3679
Lyude656d1b82016-08-17 15:55:54 -04003680 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003681 * SKL+ workaround: bspec recommends we disable the SAGV when we have
Lyude656d1b82016-08-17 15:55:54 -04003682 * more then one pipe enabled
3683 *
3684 * If there are no active CRTCs, no additional checks need be performed
3685 */
3686 if (hweight32(intel_state->active_crtcs) == 0)
3687 return true;
3688 else if (hweight32(intel_state->active_crtcs) > 1)
3689 return false;
3690
3691 /* Since we're now guaranteed to only have one active CRTC... */
3692 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003693 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003694 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003695
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003696 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003697 return false;
3698
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003699 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003700 struct skl_plane_wm *wm =
3701 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003702
Lyude656d1b82016-08-17 15:55:54 -04003703 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003704 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003705 continue;
3706
3707 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003708 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003709 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003710 { }
3711
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003712 latency = dev_priv->wm.skl_latency[level];
3713
3714 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003715 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003716 I915_FORMAT_MOD_X_TILED)
3717 latency += 15;
3718
Lyude656d1b82016-08-17 15:55:54 -04003719 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003720 * If any of the planes on this pipe don't enable wm levels that
3721 * incur memory latencies higher than sagv_block_time_us we
3722 * can't enable the SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003723 */
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003724 if (latency < sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003725 return false;
3726 }
3727
3728 return true;
3729}
3730
Damien Lespiaub9cec072014-11-04 17:06:43 +00003731static void
3732skl_ddb_get_pipe_allocation_limits(struct drm_device *dev,
Matt Roper024c9042015-09-24 15:53:11 -07003733 const struct intel_crtc_state *cstate,
Matt Roperc107acf2016-05-12 07:06:01 -07003734 struct skl_ddb_entry *alloc, /* out */
3735 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003736{
Matt Roperc107acf2016-05-12 07:06:01 -07003737 struct drm_atomic_state *state = cstate->base.state;
3738 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
3739 struct drm_i915_private *dev_priv = to_i915(dev);
Matt Roper024c9042015-09-24 15:53:11 -07003740 struct drm_crtc *for_crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003741 unsigned int pipe_size, ddb_size;
3742 int nth_active_pipe;
Matt Roperc107acf2016-05-12 07:06:01 -07003743
Matt Ropera6d3460e2016-05-12 07:06:04 -07003744 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003745 alloc->start = 0;
3746 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003747 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003748 return;
3749 }
3750
Matt Ropera6d3460e2016-05-12 07:06:04 -07003751 if (intel_state->active_pipe_changes)
3752 *num_active = hweight32(intel_state->active_crtcs);
3753 else
3754 *num_active = hweight32(dev_priv->active_crtcs);
3755
Deepak M6f3fff62016-09-15 15:01:10 +05303756 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3757 WARN_ON(ddb_size == 0);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003758
3759 ddb_size -= 4; /* 4 blocks for bypass path allocation */
3760
Matt Roperc107acf2016-05-12 07:06:01 -07003761 /*
Matt Ropera6d3460e2016-05-12 07:06:04 -07003762 * If the state doesn't change the active CRTC's, then there's
3763 * no need to recalculate; the existing pipe allocation limits
3764 * should remain unchanged. Note that we're safe from racing
3765 * commits since any racing commit that changes the active CRTC
3766 * list would need to grab _all_ crtc locks, including the one
3767 * we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003768 */
Matt Ropera6d3460e2016-05-12 07:06:04 -07003769 if (!intel_state->active_pipe_changes) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003770 /*
3771 * alloc may be cleared by clear_intel_crtc_state,
3772 * copy from old state to be sure
3773 */
3774 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003775 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003776 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003777
3778 nth_active_pipe = hweight32(intel_state->active_crtcs &
3779 (drm_crtc_mask(for_crtc) - 1));
3780 pipe_size = ddb_size / hweight32(intel_state->active_crtcs);
3781 alloc->start = nth_active_pipe * ddb_size / *num_active;
3782 alloc->end = alloc->start + pipe_size;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003783}
3784
Matt Roperc107acf2016-05-12 07:06:01 -07003785static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003786{
Matt Roperc107acf2016-05-12 07:06:01 -07003787 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003788 return 32;
3789
3790 return 8;
3791}
3792
Damien Lespiaua269c582014-11-04 17:06:49 +00003793static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg)
3794{
3795 entry->start = reg & 0x3ff;
3796 entry->end = (reg >> 16) & 0x3ff;
Damien Lespiau16160e32014-11-04 17:06:53 +00003797 if (entry->end)
3798 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003799}
3800
Damien Lespiau08db6652014-11-04 17:06:52 +00003801void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
3802 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00003803{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003804 struct intel_crtc *crtc;
Damien Lespiaua269c582014-11-04 17:06:49 +00003805
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003806 memset(ddb, 0, sizeof(*ddb));
3807
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003808 for_each_intel_crtc(&dev_priv->drm, crtc) {
Imre Deak4d800032016-02-17 16:31:29 +02003809 enum intel_display_power_domain power_domain;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003810 enum plane_id plane_id;
3811 enum pipe pipe = crtc->pipe;
Imre Deak4d800032016-02-17 16:31:29 +02003812
3813 power_domain = POWER_DOMAIN_PIPE(pipe);
3814 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Maarten Lankhorstb10f1b22015-10-22 13:56:34 +02003815 continue;
3816
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003817 for_each_plane_id_on_crtc(crtc, plane_id) {
3818 u32 val;
Damien Lespiaua269c582014-11-04 17:06:49 +00003819
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003820 if (plane_id != PLANE_CURSOR)
3821 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3822 else
3823 val = I915_READ(CUR_BUF_CFG(pipe));
3824
3825 skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane_id], val);
3826 }
Imre Deak4d800032016-02-17 16:31:29 +02003827
3828 intel_display_power_put(dev_priv, power_domain);
Damien Lespiaua269c582014-11-04 17:06:49 +00003829 }
3830}
3831
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003832/*
3833 * Determines the downscale amount of a plane for the purposes of watermark calculations.
3834 * The bspec defines downscale amount as:
3835 *
3836 * """
3837 * Horizontal down scale amount = maximum[1, Horizontal source size /
3838 * Horizontal destination size]
3839 * Vertical down scale amount = maximum[1, Vertical source size /
3840 * Vertical destination size]
3841 * Total down scale amount = Horizontal down scale amount *
3842 * Vertical down scale amount
3843 * """
3844 *
3845 * Return value is provided in 16.16 fixed point form to retain fractional part.
3846 * Caller should take care of dividing & rounding off the value.
3847 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303848static uint_fixed_16_16_t
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003849skl_plane_downscale_amount(const struct intel_crtc_state *cstate,
3850 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003851{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003852 struct intel_plane *plane = to_intel_plane(pstate->base.plane);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003853 uint32_t src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303854 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3855 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003856
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003857 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303858 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003859
3860 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003861 if (plane->id == PLANE_CURSOR) {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003862 /*
3863 * Cursors only support 0/180 degree rotation,
3864 * hence no need to account for rotation here.
3865 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303866 src_w = pstate->base.src_w >> 16;
3867 src_h = pstate->base.src_h >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003868 dst_w = pstate->base.crtc_w;
3869 dst_h = pstate->base.crtc_h;
3870 } else {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03003871 /*
3872 * Src coordinates are already rotated by 270 degrees for
3873 * the 90/270 degree plane rotation cases (to match the
3874 * GTT mapping), hence no need to account for rotation here.
3875 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303876 src_w = drm_rect_width(&pstate->base.src) >> 16;
3877 src_h = drm_rect_height(&pstate->base.src) >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003878 dst_w = drm_rect_width(&pstate->base.dst);
3879 dst_h = drm_rect_height(&pstate->base.dst);
3880 }
3881
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303882 fp_w_ratio = div_fixed16(src_w, dst_w);
3883 fp_h_ratio = div_fixed16(src_h, dst_h);
3884 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3885 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003886
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303887 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07003888}
3889
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303890static uint_fixed_16_16_t
3891skl_pipe_downscale_amount(const struct intel_crtc_state *crtc_state)
3892{
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303893 uint_fixed_16_16_t pipe_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303894
3895 if (!crtc_state->base.enable)
3896 return pipe_downscale;
3897
3898 if (crtc_state->pch_pfit.enabled) {
3899 uint32_t src_w, src_h, dst_w, dst_h;
3900 uint32_t pfit_size = crtc_state->pch_pfit.size;
3901 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
3902 uint_fixed_16_16_t downscale_h, downscale_w;
3903
3904 src_w = crtc_state->pipe_src_w;
3905 src_h = crtc_state->pipe_src_h;
3906 dst_w = pfit_size >> 16;
3907 dst_h = pfit_size & 0xffff;
3908
3909 if (!dst_w || !dst_h)
3910 return pipe_downscale;
3911
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303912 fp_w_ratio = div_fixed16(src_w, dst_w);
3913 fp_h_ratio = div_fixed16(src_h, dst_h);
3914 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
3915 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303916
3917 pipe_downscale = mul_fixed16(downscale_w, downscale_h);
3918 }
3919
3920 return pipe_downscale;
3921}
3922
3923int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
3924 struct intel_crtc_state *cstate)
3925{
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003926 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303927 struct drm_crtc_state *crtc_state = &cstate->base;
3928 struct drm_atomic_state *state = crtc_state->state;
3929 struct drm_plane *plane;
3930 const struct drm_plane_state *pstate;
3931 struct intel_plane_state *intel_pstate;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003932 int crtc_clock, dotclk;
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303933 uint32_t pipe_max_pixel_rate;
3934 uint_fixed_16_16_t pipe_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303935 uint_fixed_16_16_t max_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303936
3937 if (!cstate->base.enable)
3938 return 0;
3939
3940 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
3941 uint_fixed_16_16_t plane_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303942 uint_fixed_16_16_t fp_9_div_8 = div_fixed16(9, 8);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303943 int bpp;
3944
3945 if (!intel_wm_plane_visible(cstate,
3946 to_intel_plane_state(pstate)))
3947 continue;
3948
3949 if (WARN_ON(!pstate->fb))
3950 return -EINVAL;
3951
3952 intel_pstate = to_intel_plane_state(pstate);
3953 plane_downscale = skl_plane_downscale_amount(cstate,
3954 intel_pstate);
3955 bpp = pstate->fb->format->cpp[0] * 8;
3956 if (bpp == 64)
3957 plane_downscale = mul_fixed16(plane_downscale,
3958 fp_9_div_8);
3959
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05303960 max_downscale = max_fixed16(plane_downscale, max_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303961 }
3962 pipe_downscale = skl_pipe_downscale_amount(cstate);
3963
3964 pipe_downscale = mul_fixed16(pipe_downscale, max_downscale);
3965
3966 crtc_clock = crtc_state->adjusted_mode.crtc_clock;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003967 dotclk = to_intel_atomic_state(state)->cdclk.logical.cdclk;
3968
Rodrigo Vivi43037c82017-10-03 15:31:42 -07003969 if (IS_GEMINILAKE(dev_priv) || INTEL_GEN(dev_priv) >= 10)
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003970 dotclk *= 2;
3971
3972 pipe_max_pixel_rate = div_round_up_u32_fixed16(dotclk, pipe_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303973
3974 if (pipe_max_pixel_rate < crtc_clock) {
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02003975 DRM_DEBUG_KMS("Max supported pixel clock with scaling exceeded\n");
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05303976 return -EINVAL;
3977 }
3978
3979 return 0;
3980}
3981
Damien Lespiaub9cec072014-11-04 17:06:43 +00003982static unsigned int
Matt Roper024c9042015-09-24 15:53:11 -07003983skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
3984 const struct drm_plane_state *pstate,
3985 int y)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003986{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02003987 struct intel_plane *plane = to_intel_plane(pstate->plane);
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003988 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303989 uint32_t data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07003990 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003991 struct drm_framebuffer *fb;
3992 u32 format;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05303993 uint_fixed_16_16_t down_scale_amount;
Matt Ropera1de91e2016-05-12 07:05:57 -07003994
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003995 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07003996 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02003997
3998 fb = pstate->fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02003999 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02004000
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004001 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004002 return 0;
4003 if (y && format != DRM_FORMAT_NV12)
4004 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004005
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004006 /*
4007 * Src coordinates are already rotated by 270 degrees for
4008 * the 90/270 degree plane rotation cases (to match the
4009 * GTT mapping), hence no need to account for rotation here.
4010 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004011 width = drm_rect_width(&intel_pstate->base.src) >> 16;
4012 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004013
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004014 /* for planar format */
Matt Ropera1de91e2016-05-12 07:05:57 -07004015 if (format == DRM_FORMAT_NV12) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004016 if (y) /* y-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004017 data_rate = width * height *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004018 fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004019 else /* uv-plane data rate */
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004020 data_rate = (width / 2) * (height / 2) *
Ville Syrjälä353c8592016-12-14 23:30:57 +02004021 fb->format->cpp[1];
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004022 } else {
4023 /* for packed formats */
Ville Syrjälä353c8592016-12-14 23:30:57 +02004024 data_rate = width * height * fb->format->cpp[0];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004025 }
4026
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004027 down_scale_amount = skl_plane_downscale_amount(cstate, intel_pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004028
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304029 return mul_round_up_u32_fixed16(data_rate, down_scale_amount);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004030}
4031
4032/*
4033 * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching
4034 * a 8192x4096@32bpp framebuffer:
4035 * 3 * 4096 * 8192 * 4 < 2^32
4036 */
4037static unsigned int
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004038skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
4039 unsigned *plane_data_rate,
4040 unsigned *plane_y_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004041{
Matt Roper9c74d822016-05-12 07:05:58 -07004042 struct drm_crtc_state *cstate = &intel_cstate->base;
4043 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004044 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004045 const struct drm_plane_state *pstate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004046 unsigned int total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004047
4048 if (WARN_ON(!state))
4049 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004050
Matt Ropera1de91e2016-05-12 07:05:57 -07004051 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004052 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004053 enum plane_id plane_id = to_intel_plane(plane)->id;
4054 unsigned int rate;
Matt Roper024c9042015-09-24 15:53:11 -07004055
Matt Ropera6d3460e2016-05-12 07:06:04 -07004056 /* packed/uv */
4057 rate = skl_plane_relative_data_rate(intel_cstate,
4058 pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004059 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004060
4061 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004062
Matt Ropera6d3460e2016-05-12 07:06:04 -07004063 /* y-plane */
4064 rate = skl_plane_relative_data_rate(intel_cstate,
4065 pstate, 1);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004066 plane_y_data_rate[plane_id] = rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004067
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004068 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004069 }
4070
4071 return total_data_rate;
4072}
4073
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004074static uint16_t
4075skl_ddb_min_alloc(const struct drm_plane_state *pstate,
4076 const int y)
4077{
4078 struct drm_framebuffer *fb = pstate->fb;
4079 struct intel_plane_state *intel_pstate = to_intel_plane_state(pstate);
4080 uint32_t src_w, src_h;
4081 uint32_t min_scanlines = 8;
4082 uint8_t plane_bpp;
4083
4084 if (WARN_ON(!fb))
4085 return 0;
4086
4087 /* For packed formats, no y-plane, return 0 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004088 if (y && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004089 return 0;
4090
4091 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02004092 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004093 fb->modifier != I915_FORMAT_MOD_Yf_TILED &&
4094 fb->modifier != I915_FORMAT_MOD_Y_TILED_CCS &&
4095 fb->modifier != I915_FORMAT_MOD_Yf_TILED_CCS)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004096 return 8;
4097
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004098 /*
4099 * Src coordinates are already rotated by 270 degrees for
4100 * the 90/270 degree plane rotation cases (to match the
4101 * GTT mapping), hence no need to account for rotation here.
4102 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004103 src_w = drm_rect_width(&intel_pstate->base.src) >> 16;
4104 src_h = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004105
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004106 /* Halve UV plane width and height for NV12 */
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004107 if (fb->format->format == DRM_FORMAT_NV12 && !y) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004108 src_w /= 2;
4109 src_h /= 2;
4110 }
4111
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004112 if (fb->format->format == DRM_FORMAT_NV12 && !y)
Ville Syrjälä353c8592016-12-14 23:30:57 +02004113 plane_bpp = fb->format->cpp[1];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004114 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02004115 plane_bpp = fb->format->cpp[0];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004116
Ville Syrjäläbd2ef252016-09-26 19:30:46 +03004117 if (drm_rotation_90_or_270(pstate->rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004118 switch (plane_bpp) {
4119 case 1:
4120 min_scanlines = 32;
4121 break;
4122 case 2:
4123 min_scanlines = 16;
4124 break;
4125 case 4:
4126 min_scanlines = 8;
4127 break;
4128 case 8:
4129 min_scanlines = 4;
4130 break;
4131 default:
4132 WARN(1, "Unsupported pixel depth %u for rotation",
4133 plane_bpp);
4134 min_scanlines = 32;
4135 }
4136 }
4137
4138 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
4139}
4140
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004141static void
4142skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
4143 uint16_t *minimum, uint16_t *y_minimum)
4144{
4145 const struct drm_plane_state *pstate;
4146 struct drm_plane *plane;
4147
4148 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004149 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004150
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004151 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004152 continue;
4153
4154 if (!pstate->visible)
4155 continue;
4156
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004157 minimum[plane_id] = skl_ddb_min_alloc(pstate, 0);
4158 y_minimum[plane_id] = skl_ddb_min_alloc(pstate, 1);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004159 }
4160
4161 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
4162}
4163
Matt Roperc107acf2016-05-12 07:06:01 -07004164static int
Matt Roper024c9042015-09-24 15:53:11 -07004165skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00004166 struct skl_ddb_allocation *ddb /* out */)
4167{
Matt Roperc107acf2016-05-12 07:06:01 -07004168 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07004169 struct drm_crtc *crtc = cstate->base.crtc;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004170 struct drm_device *dev = crtc->dev;
4171 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4172 enum pipe pipe = intel_crtc->pipe;
Lyudece0ba282016-09-15 10:46:35 -04004173 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004174 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02004175 uint16_t minimum[I915_MAX_PLANES] = {};
4176 uint16_t y_minimum[I915_MAX_PLANES] = {};
Damien Lespiaub9cec072014-11-04 17:06:43 +00004177 unsigned int total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004178 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004179 int num_active;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004180 unsigned plane_data_rate[I915_MAX_PLANES] = {};
4181 unsigned plane_y_data_rate[I915_MAX_PLANES] = {};
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304182 uint16_t total_min_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004183
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004184 /* Clear the partitioning for disabled planes. */
4185 memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe]));
4186 memset(ddb->y_plane[pipe], 0, sizeof(ddb->y_plane[pipe]));
4187
Matt Ropera6d3460e2016-05-12 07:06:04 -07004188 if (WARN_ON(!state))
4189 return 0;
4190
Matt Roperc107acf2016-05-12 07:06:01 -07004191 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04004192 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004193 return 0;
4194 }
4195
Matt Ropera6d3460e2016-05-12 07:06:04 -07004196 skl_ddb_get_pipe_allocation_limits(dev, cstate, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004197 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304198 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004199 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004200
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004201 skl_ddb_calc_min(cstate, num_active, minimum, y_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004202
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004203 /*
4204 * 1. Allocate the mininum required blocks for each active plane
4205 * and allocate the cursor, it doesn't require extra allocation
4206 * proportional to the data rate.
4207 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00004208
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004209 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304210 total_min_blocks += minimum[plane_id];
4211 total_min_blocks += y_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00004212 }
4213
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304214 if (total_min_blocks > alloc_size) {
4215 DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations");
4216 DRM_DEBUG_KMS("minimum required %d/%d\n", total_min_blocks,
4217 alloc_size);
4218 return -EINVAL;
4219 }
4220
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004221 alloc_size -= total_min_blocks;
4222 ddb->plane[pipe][PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004223 ddb->plane[pipe][PLANE_CURSOR].end = alloc->end;
4224
Damien Lespiaub9cec072014-11-04 17:06:43 +00004225 /*
Damien Lespiau80958152015-02-09 13:35:10 +00004226 * 2. Distribute the remaining space in proportion to the amount of
4227 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004228 *
4229 * FIXME: we may not allocate every single block here.
4230 */
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004231 total_data_rate = skl_get_total_relative_data_rate(cstate,
4232 plane_data_rate,
4233 plane_y_data_rate);
Matt Ropera1de91e2016-05-12 07:05:57 -07004234 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004235 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004236
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004237 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004238 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004239 unsigned int data_rate, y_data_rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004240 uint16_t plane_blocks, y_plane_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004241
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004242 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004243 continue;
4244
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004245 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00004246
4247 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004248 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00004249 * promote the expression to 64 bits to avoid overflowing, the
4250 * result is < available as data_rate / total_data_rate < 1
4251 */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004252 plane_blocks = minimum[plane_id];
4253 plane_blocks += div_u64((uint64_t)alloc_size * data_rate,
4254 total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004255
Matt Roperc107acf2016-05-12 07:06:01 -07004256 /* Leave disabled planes at (0,0) */
4257 if (data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004258 ddb->plane[pipe][plane_id].start = start;
4259 ddb->plane[pipe][plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004260 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00004261
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004262 start += plane_blocks;
4263
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004264 /*
4265 * allocation for y_plane part of planar format:
4266 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004267 y_data_rate = plane_y_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004268
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004269 y_plane_blocks = y_minimum[plane_id];
4270 y_plane_blocks += div_u64((uint64_t)alloc_size * y_data_rate,
4271 total_data_rate);
4272
Matt Roperc107acf2016-05-12 07:06:01 -07004273 if (y_data_rate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004274 ddb->y_plane[pipe][plane_id].start = start;
4275 ddb->y_plane[pipe][plane_id].end = start + y_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004276 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004277
4278 start += y_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004279 }
4280
Matt Roperc107acf2016-05-12 07:06:01 -07004281 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004282}
4283
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004284/*
4285 * 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 +02004286 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004287 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4288 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4289*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004290static uint_fixed_16_16_t
4291skl_wm_method1(const struct drm_i915_private *dev_priv, uint32_t pixel_rate,
4292 uint8_t cpp, uint32_t latency)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004293{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304294 uint32_t wm_intermediate_val;
4295 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004296
4297 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304298 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004299
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304300 wm_intermediate_val = latency * pixel_rate * cpp;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304301 ret = div_fixed16(wm_intermediate_val, 1000 * 512);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004302
4303 if (INTEL_GEN(dev_priv) >= 10)
4304 ret = add_fixed16_u32(ret, 1);
4305
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004306 return ret;
4307}
4308
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304309static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
4310 uint32_t pipe_htotal,
4311 uint32_t latency,
4312 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004313{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004314 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304315 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004316
4317 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304318 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004319
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004320 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304321 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4322 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304323 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004324 return ret;
4325}
4326
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304327static uint_fixed_16_16_t
4328intel_get_linetime_us(struct intel_crtc_state *cstate)
4329{
4330 uint32_t pixel_rate;
4331 uint32_t crtc_htotal;
4332 uint_fixed_16_16_t linetime_us;
4333
4334 if (!cstate->base.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304335 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304336
4337 pixel_rate = cstate->pixel_rate;
4338
4339 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304340 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304341
4342 crtc_htotal = cstate->base.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304343 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304344
4345 return linetime_us;
4346}
4347
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304348static uint32_t
4349skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
4350 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004351{
4352 uint64_t adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304353 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004354
4355 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004356 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004357 return 0;
4358
4359 /*
4360 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4361 * with additional adjustments for plane-specific scaling.
4362 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02004363 adjusted_pixel_rate = cstate->pixel_rate;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004364 downscale_amount = skl_plane_downscale_amount(cstate, pstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004365
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304366 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4367 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004368}
4369
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304370static int
4371skl_compute_plane_wm_params(const struct drm_i915_private *dev_priv,
4372 struct intel_crtc_state *cstate,
4373 const struct intel_plane_state *intel_pstate,
4374 struct skl_wm_params *wp)
4375{
4376 struct intel_plane *plane = to_intel_plane(intel_pstate->base.plane);
4377 const struct drm_plane_state *pstate = &intel_pstate->base;
4378 const struct drm_framebuffer *fb = pstate->fb;
4379 uint32_t interm_pbpl;
4380 struct intel_atomic_state *state =
4381 to_intel_atomic_state(cstate->base.state);
4382 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
4383
4384 if (!intel_wm_plane_visible(cstate, intel_pstate))
4385 return 0;
4386
4387 wp->y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
4388 fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
4389 fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4390 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4391 wp->x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
4392 wp->rc_surface = fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4393 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4394
4395 if (plane->id == PLANE_CURSOR) {
4396 wp->width = intel_pstate->base.crtc_w;
4397 } else {
4398 /*
4399 * Src coordinates are already rotated by 270 degrees for
4400 * the 90/270 degree plane rotation cases (to match the
4401 * GTT mapping), hence no need to account for rotation here.
4402 */
4403 wp->width = drm_rect_width(&intel_pstate->base.src) >> 16;
4404 }
4405
4406 wp->cpp = (fb->format->format == DRM_FORMAT_NV12) ? fb->format->cpp[1] :
4407 fb->format->cpp[0];
4408 wp->plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate,
4409 intel_pstate);
4410
4411 if (drm_rotation_90_or_270(pstate->rotation)) {
4412
4413 switch (wp->cpp) {
4414 case 1:
4415 wp->y_min_scanlines = 16;
4416 break;
4417 case 2:
4418 wp->y_min_scanlines = 8;
4419 break;
4420 case 4:
4421 wp->y_min_scanlines = 4;
4422 break;
4423 default:
4424 MISSING_CASE(wp->cpp);
4425 return -EINVAL;
4426 }
4427 } else {
4428 wp->y_min_scanlines = 4;
4429 }
4430
4431 if (apply_memory_bw_wa)
4432 wp->y_min_scanlines *= 2;
4433
4434 wp->plane_bytes_per_line = wp->width * wp->cpp;
4435 if (wp->y_tiled) {
4436 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
4437 wp->y_min_scanlines, 512);
4438
4439 if (INTEL_GEN(dev_priv) >= 10)
4440 interm_pbpl++;
4441
4442 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4443 wp->y_min_scanlines);
4444 } else if (wp->x_tiled && IS_GEN9(dev_priv)) {
4445 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512);
4446 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4447 } else {
4448 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, 512) + 1;
4449 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4450 }
4451
4452 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4453 wp->plane_blocks_per_line);
4454 wp->linetime_us = fixed16_to_u32_round_up(
4455 intel_get_linetime_us(cstate));
4456
4457 return 0;
4458}
4459
Matt Roper55994c22016-05-12 07:06:08 -07004460static int skl_compute_plane_wm(const struct drm_i915_private *dev_priv,
4461 struct intel_crtc_state *cstate,
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304462 const struct intel_plane_state *intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004463 uint16_t ddb_allocation,
Matt Roper55994c22016-05-12 07:06:08 -07004464 int level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304465 const struct skl_wm_params *wp,
Matt Roper55994c22016-05-12 07:06:08 -07004466 uint16_t *out_blocks, /* out */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004467 uint8_t *out_lines, /* out */
4468 bool *enabled /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004469{
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304470 const struct drm_plane_state *pstate = &intel_pstate->base;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004471 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304472 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304473 uint_fixed_16_16_t selected_result;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004474 uint32_t res_blocks, res_lines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004475 struct intel_atomic_state *state =
4476 to_intel_atomic_state(cstate->base.state);
4477 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004478
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004479 if (latency == 0 ||
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004480 !intel_wm_plane_visible(cstate, intel_pstate)) {
4481 *enabled = false;
Matt Roper55994c22016-05-12 07:06:08 -07004482 return 0;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004483 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004484
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004485 /* Display WA #1141: kbl,cfl */
Kumar, Maheshd86ba622017-08-17 19:15:26 +05304486 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
4487 IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) &&
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004488 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304489 latency += 4;
4490
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304491 if (apply_memory_bw_wa && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004492 latency += 15;
4493
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304494 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
4495 wp->cpp, latency);
4496 method2 = skl_wm_method2(wp->plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07004497 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004498 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304499 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004500
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304501 if (wp->y_tiled) {
4502 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004503 } else {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304504 if ((wp->cpp * cstate->base.adjusted_mode.crtc_htotal /
4505 512 < 1) && (wp->plane_bytes_per_line / 512 < 1))
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004506 selected_result = method2;
Maarten Lankhorst54d20ed2017-07-17 14:02:30 +02004507 else if (ddb_allocation >=
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304508 fixed16_to_u32_round_up(wp->plane_blocks_per_line))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304509 selected_result = min_fixed16(method1, method2);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304510 else if (latency >= wp->linetime_us)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304511 selected_result = min_fixed16(method1, method2);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004512 else
4513 selected_result = method1;
4514 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004515
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304516 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05304517 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304518 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00004519
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004520 /* Display WA #1125: skl,bxt,kbl,glk */
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304521 if (level == 0 && wp->rc_surface)
4522 res_blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004523
4524 /* Display WA #1126: skl,bxt,kbl,glk */
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004525 if (level >= 1 && level <= 7) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304526 if (wp->y_tiled) {
4527 res_blocks += fixed16_to_u32_round_up(
4528 wp->y_tile_minimum);
4529 res_lines += wp->y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004530 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004531 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004532 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004533 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004534
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004535 if (res_blocks >= ddb_allocation || res_lines > 31) {
4536 *enabled = false;
Matt Roper6b6bada2016-05-12 07:06:10 -07004537
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004538 /*
4539 * If there are no valid level 0 watermarks, then we can't
4540 * support this display configuration.
4541 */
4542 if (level) {
4543 return 0;
4544 } else {
4545 struct drm_plane *plane = pstate->plane;
4546
4547 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
4548 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
4549 plane->base.id, plane->name,
4550 res_blocks, ddb_allocation, res_lines);
4551 return -EINVAL;
4552 }
Matt Roper55994c22016-05-12 07:06:08 -07004553 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00004554
4555 *out_blocks = res_blocks;
4556 *out_lines = res_lines;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004557 *enabled = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004558
Matt Roper55994c22016-05-12 07:06:08 -07004559 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004560}
4561
Matt Roperf4a96752016-05-12 07:06:06 -07004562static int
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304563skl_compute_wm_levels(const struct drm_i915_private *dev_priv,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004564 struct skl_ddb_allocation *ddb,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304565 struct intel_crtc_state *cstate,
4566 const struct intel_plane_state *intel_pstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304567 const struct skl_wm_params *wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304568 struct skl_plane_wm *wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004569{
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004570 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
4571 struct drm_plane *plane = intel_pstate->base.plane;
4572 struct intel_plane *intel_plane = to_intel_plane(plane);
4573 uint16_t ddb_blocks;
4574 enum pipe pipe = intel_crtc->pipe;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304575 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Roper55994c22016-05-12 07:06:08 -07004576 int ret;
Lyudea62163e2016-10-04 14:28:20 -04004577
Kumar, Mahesh7b751192017-05-17 17:28:24 +05304578 if (WARN_ON(!intel_pstate->base.fb))
4579 return -EINVAL;
Matt Roper024c9042015-09-24 15:53:11 -07004580
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004581 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][intel_plane->id]);
4582
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304583 for (level = 0; level <= max_level; level++) {
4584 struct skl_wm_level *result = &wm->wm[level];
4585
4586 ret = skl_compute_plane_wm(dev_priv,
4587 cstate,
4588 intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004589 ddb_blocks,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304590 level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304591 wm_params,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304592 &result->plane_res_b,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004593 &result->plane_res_l,
4594 &result->plane_en);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304595 if (ret)
4596 return ret;
4597 }
Matt Roperf4a96752016-05-12 07:06:06 -07004598
4599 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004600}
4601
Damien Lespiau407b50f2014-11-04 17:06:57 +00004602static uint32_t
Matt Roper024c9042015-09-24 15:53:11 -07004603skl_compute_linetime_wm(struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004604{
Mahesh Kumara3a89862016-12-01 21:19:34 +05304605 struct drm_atomic_state *state = cstate->base.state;
4606 struct drm_i915_private *dev_priv = to_i915(state->dev);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304607 uint_fixed_16_16_t linetime_us;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304608 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03004609
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304610 linetime_us = intel_get_linetime_us(cstate);
4611
4612 if (is_fixed16_zero(linetime_us))
Damien Lespiau407b50f2014-11-04 17:06:57 +00004613 return 0;
4614
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304615 linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us));
Mahesh Kumara3a89862016-12-01 21:19:34 +05304616
Kumar, Mahesh446e8502017-08-17 19:15:25 +05304617 /* Display WA #1135: bxt:ALL GLK:ALL */
4618 if ((IS_BROXTON(dev_priv) || IS_GEMINILAKE(dev_priv)) &&
4619 dev_priv->ipc_enabled)
4620 linetime_wm /= 2;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304621
4622 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004623}
4624
Matt Roper024c9042015-09-24 15:53:11 -07004625static void skl_compute_transition_wm(struct intel_crtc_state *cstate,
Kumar, Maheshca476672017-08-17 19:15:24 +05304626 struct skl_wm_params *wp,
4627 struct skl_wm_level *wm_l0,
4628 uint16_t ddb_allocation,
Damien Lespiau9414f562014-11-04 17:06:58 +00004629 struct skl_wm_level *trans_wm /* out */)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004630{
Kumar, Maheshca476672017-08-17 19:15:24 +05304631 struct drm_device *dev = cstate->base.crtc->dev;
4632 const struct drm_i915_private *dev_priv = to_i915(dev);
4633 uint16_t trans_min, trans_y_tile_min;
4634 const uint16_t trans_amount = 10; /* This is configurable amount */
4635 uint16_t trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00004636
Kumar, Maheshca476672017-08-17 19:15:24 +05304637 if (!cstate->base.active)
4638 goto exit;
4639
4640 /* Transition WM are not recommended by HW team for GEN9 */
4641 if (INTEL_GEN(dev_priv) <= 9)
4642 goto exit;
4643
4644 /* Transition WM don't make any sense if ipc is disabled */
4645 if (!dev_priv->ipc_enabled)
4646 goto exit;
4647
4648 if (INTEL_GEN(dev_priv) >= 10)
4649 trans_min = 4;
4650
4651 trans_offset_b = trans_min + trans_amount;
4652
4653 if (wp->y_tiled) {
4654 trans_y_tile_min = (uint16_t) mul_round_up_u32_fixed16(2,
4655 wp->y_tile_minimum);
4656 res_blocks = max(wm_l0->plane_res_b, trans_y_tile_min) +
4657 trans_offset_b;
4658 } else {
4659 res_blocks = wm_l0->plane_res_b + trans_offset_b;
4660
4661 /* WA BUG:1938466 add one block for non y-tile planes */
4662 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
4663 res_blocks += 1;
4664
4665 }
4666
4667 res_blocks += 1;
4668
4669 if (res_blocks < ddb_allocation) {
4670 trans_wm->plane_res_b = res_blocks;
4671 trans_wm->plane_en = true;
4672 return;
4673 }
4674
4675exit:
Lyudea62163e2016-10-04 14:28:20 -04004676 trans_wm->plane_en = false;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004677}
4678
Matt Roper55994c22016-05-12 07:06:08 -07004679static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
4680 struct skl_ddb_allocation *ddb,
4681 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004682{
Matt Roper024c9042015-09-24 15:53:11 -07004683 struct drm_device *dev = cstate->base.crtc->dev;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304684 struct drm_crtc_state *crtc_state = &cstate->base;
Chris Wilsonfac5e232016-07-04 11:34:36 +01004685 const struct drm_i915_private *dev_priv = to_i915(dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304686 struct drm_plane *plane;
4687 const struct drm_plane_state *pstate;
Lyudea62163e2016-10-04 14:28:20 -04004688 struct skl_plane_wm *wm;
Matt Roper55994c22016-05-12 07:06:08 -07004689 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004690
Lyudea62163e2016-10-04 14:28:20 -04004691 /*
4692 * We'll only calculate watermarks for planes that are actually
4693 * enabled, so make sure all other planes are set as disabled.
4694 */
4695 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
4696
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304697 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
4698 const struct intel_plane_state *intel_pstate =
4699 to_intel_plane_state(pstate);
4700 enum plane_id plane_id = to_intel_plane(plane)->id;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304701 struct skl_wm_params wm_params;
Kumar, Maheshca476672017-08-17 19:15:24 +05304702 enum pipe pipe = to_intel_crtc(cstate->base.crtc)->pipe;
4703 uint16_t ddb_blocks;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304704
4705 wm = &pipe_wm->planes[plane_id];
Kumar, Maheshca476672017-08-17 19:15:24 +05304706 ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][plane_id]);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304707 memset(&wm_params, 0, sizeof(struct skl_wm_params));
4708
4709 ret = skl_compute_plane_wm_params(dev_priv, cstate,
4710 intel_pstate, &wm_params);
4711 if (ret)
4712 return ret;
Lyudea62163e2016-10-04 14:28:20 -04004713
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004714 ret = skl_compute_wm_levels(dev_priv, ddb, cstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304715 intel_pstate, &wm_params, wm);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304716 if (ret)
4717 return ret;
Kumar, Maheshca476672017-08-17 19:15:24 +05304718 skl_compute_transition_wm(cstate, &wm_params, &wm->wm[0],
4719 ddb_blocks, &wm->trans_wm);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004720 }
Matt Roper024c9042015-09-24 15:53:11 -07004721 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004722
Matt Roper55994c22016-05-12 07:06:08 -07004723 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004724}
4725
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02004726static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
4727 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00004728 const struct skl_ddb_entry *entry)
4729{
4730 if (entry->end)
4731 I915_WRITE(reg, (entry->end - 1) << 16 | entry->start);
4732 else
4733 I915_WRITE(reg, 0);
4734}
4735
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004736static void skl_write_wm_level(struct drm_i915_private *dev_priv,
4737 i915_reg_t reg,
4738 const struct skl_wm_level *level)
4739{
4740 uint32_t val = 0;
4741
4742 if (level->plane_en) {
4743 val |= PLANE_WM_EN;
4744 val |= level->plane_res_b;
4745 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
4746 }
4747
4748 I915_WRITE(reg, val);
4749}
4750
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004751static void skl_write_plane_wm(struct intel_crtc *intel_crtc,
4752 const struct skl_plane_wm *wm,
4753 const struct skl_ddb_allocation *ddb,
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004754 enum plane_id plane_id)
Lyude62e0fb82016-08-22 12:50:08 -04004755{
4756 struct drm_crtc *crtc = &intel_crtc->base;
4757 struct drm_device *dev = crtc->dev;
4758 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004759 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004760 enum pipe pipe = intel_crtc->pipe;
4761
4762 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004763 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004764 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004765 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004766 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004767 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004768
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004769 skl_ddb_entry_write(dev_priv, PLANE_BUF_CFG(pipe, plane_id),
4770 &ddb->plane[pipe][plane_id]);
4771 skl_ddb_entry_write(dev_priv, PLANE_NV12_BUF_CFG(pipe, plane_id),
4772 &ddb->y_plane[pipe][plane_id]);
Lyude62e0fb82016-08-22 12:50:08 -04004773}
4774
Ville Syrjäläd9348de2016-11-22 22:21:53 +02004775static void skl_write_cursor_wm(struct intel_crtc *intel_crtc,
4776 const struct skl_plane_wm *wm,
4777 const struct skl_ddb_allocation *ddb)
Lyude62e0fb82016-08-22 12:50:08 -04004778{
4779 struct drm_crtc *crtc = &intel_crtc->base;
4780 struct drm_device *dev = crtc->dev;
4781 struct drm_i915_private *dev_priv = to_i915(dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01004782 int level, max_level = ilk_wm_max_level(dev_priv);
Lyude62e0fb82016-08-22 12:50:08 -04004783 enum pipe pipe = intel_crtc->pipe;
4784
4785 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004786 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
4787 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04004788 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004789 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02004790
4791 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02004792 &ddb->plane[pipe][PLANE_CURSOR]);
Lyude62e0fb82016-08-22 12:50:08 -04004793}
4794
cpaul@redhat.com45ece232016-10-14 17:31:56 -04004795bool skl_wm_level_equals(const struct skl_wm_level *l1,
4796 const struct skl_wm_level *l2)
4797{
4798 if (l1->plane_en != l2->plane_en)
4799 return false;
4800
4801 /* If both planes aren't enabled, the rest shouldn't matter */
4802 if (!l1->plane_en)
4803 return true;
4804
4805 return (l1->plane_res_l == l2->plane_res_l &&
4806 l1->plane_res_b == l2->plane_res_b);
4807}
4808
Lyude27082492016-08-24 07:48:10 +02004809static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
4810 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004811{
Lyude27082492016-08-24 07:48:10 +02004812 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004813}
4814
Mika Kahola2b685042017-10-10 13:17:03 +03004815bool skl_ddb_allocation_overlaps(struct drm_i915_private *dev_priv,
4816 const struct skl_ddb_entry **entries,
Maarten Lankhorst5eff5032016-11-08 13:55:35 +01004817 const struct skl_ddb_entry *ddb,
4818 int ignore)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004819{
Mika Kahola2b685042017-10-10 13:17:03 +03004820 enum pipe pipe;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004821
Mika Kahola2b685042017-10-10 13:17:03 +03004822 for_each_pipe(dev_priv, pipe) {
4823 if (pipe != ignore && entries[pipe] &&
4824 skl_ddb_entries_overlap(ddb, entries[pipe]))
Lyude27082492016-08-24 07:48:10 +02004825 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03004826 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004827
Lyude27082492016-08-24 07:48:10 +02004828 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00004829}
4830
Matt Roper55994c22016-05-12 07:06:08 -07004831static int skl_update_pipe_wm(struct drm_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004832 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07004833 struct skl_pipe_wm *pipe_wm, /* out */
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004834 struct skl_ddb_allocation *ddb, /* out */
Matt Roper55994c22016-05-12 07:06:08 -07004835 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004836{
Matt Roperf4a96752016-05-12 07:06:06 -07004837 struct intel_crtc_state *intel_cstate = to_intel_crtc_state(cstate);
Matt Roper55994c22016-05-12 07:06:08 -07004838 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004839
Matt Roper55994c22016-05-12 07:06:08 -07004840 ret = skl_build_pipe_wm(intel_cstate, ddb, pipe_wm);
4841 if (ret)
4842 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004843
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02004844 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07004845 *changed = false;
4846 else
4847 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004848
Matt Roper55994c22016-05-12 07:06:08 -07004849 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004850}
4851
Matt Roper9b613022016-06-27 16:42:44 -07004852static uint32_t
4853pipes_modified(struct drm_atomic_state *state)
4854{
4855 struct drm_crtc *crtc;
4856 struct drm_crtc_state *cstate;
4857 uint32_t i, ret = 0;
4858
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01004859 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper9b613022016-06-27 16:42:44 -07004860 ret |= drm_crtc_mask(crtc);
4861
4862 return ret;
4863}
4864
Jani Nikulabb7791b2016-10-04 12:29:17 +03004865static int
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004866skl_ddb_add_affected_planes(struct intel_crtc_state *cstate)
4867{
4868 struct drm_atomic_state *state = cstate->base.state;
4869 struct drm_device *dev = state->dev;
4870 struct drm_crtc *crtc = cstate->base.crtc;
4871 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
4872 struct drm_i915_private *dev_priv = to_i915(dev);
4873 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4874 struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
4875 struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb;
4876 struct drm_plane_state *plane_state;
4877 struct drm_plane *plane;
4878 enum pipe pipe = intel_crtc->pipe;
4879
4880 WARN_ON(!drm_atomic_get_existing_crtc_state(state, crtc));
4881
4882 drm_for_each_plane_mask(plane, dev, cstate->base.plane_mask) {
4883 enum plane_id plane_id = to_intel_plane(plane)->id;
4884
4885 if (skl_ddb_entry_equal(&cur_ddb->plane[pipe][plane_id],
4886 &new_ddb->plane[pipe][plane_id]) &&
4887 skl_ddb_entry_equal(&cur_ddb->y_plane[pipe][plane_id],
4888 &new_ddb->y_plane[pipe][plane_id]))
4889 continue;
4890
4891 plane_state = drm_atomic_get_plane_state(state, plane);
4892 if (IS_ERR(plane_state))
4893 return PTR_ERR(plane_state);
4894 }
4895
4896 return 0;
4897}
4898
4899static int
4900skl_compute_ddb(struct drm_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07004901{
4902 struct drm_device *dev = state->dev;
4903 struct drm_i915_private *dev_priv = to_i915(dev);
4904 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
4905 struct intel_crtc *intel_crtc;
Matt Roper734fa012016-05-12 15:11:40 -07004906 struct skl_ddb_allocation *ddb = &intel_state->wm_results.ddb;
Matt Roper9b613022016-06-27 16:42:44 -07004907 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper98d39492016-05-12 07:06:03 -07004908 int ret;
4909
4910 /*
4911 * If this is our first atomic update following hardware readout,
4912 * we can't trust the DDB that the BIOS programmed for us. Let's
4913 * pretend that all pipes switched active status so that we'll
4914 * ensure a full DDB recompute.
4915 */
Matt Roper1b54a882016-06-17 13:42:18 -07004916 if (dev_priv->wm.distrust_bios_wm) {
4917 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
4918 state->acquire_ctx);
4919 if (ret)
4920 return ret;
4921
Matt Roper98d39492016-05-12 07:06:03 -07004922 intel_state->active_pipe_changes = ~0;
4923
Matt Roper1b54a882016-06-17 13:42:18 -07004924 /*
4925 * We usually only initialize intel_state->active_crtcs if we
4926 * we're doing a modeset; make sure this field is always
4927 * initialized during the sanitization process that happens
4928 * on the first commit too.
4929 */
4930 if (!intel_state->modeset)
4931 intel_state->active_crtcs = dev_priv->active_crtcs;
4932 }
4933
Matt Roper98d39492016-05-12 07:06:03 -07004934 /*
4935 * If the modeset changes which CRTC's are active, we need to
4936 * recompute the DDB allocation for *all* active pipes, even
4937 * those that weren't otherwise being modified in any way by this
4938 * atomic commit. Due to the shrinking of the per-pipe allocations
4939 * when new active CRTC's are added, it's possible for a pipe that
4940 * we were already using and aren't changing at all here to suddenly
4941 * become invalid if its DDB needs exceeds its new allocation.
4942 *
4943 * Note that if we wind up doing a full DDB recompute, we can't let
4944 * any other display updates race with this transaction, so we need
4945 * to grab the lock on *all* CRTC's.
4946 */
Matt Roper734fa012016-05-12 15:11:40 -07004947 if (intel_state->active_pipe_changes) {
Matt Roper98d39492016-05-12 07:06:03 -07004948 realloc_pipes = ~0;
Matt Roper734fa012016-05-12 15:11:40 -07004949 intel_state->wm_results.dirty_pipes = ~0;
4950 }
Matt Roper98d39492016-05-12 07:06:03 -07004951
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004952 /*
4953 * We're not recomputing for the pipes not included in the commit, so
4954 * make sure we start with the current state.
4955 */
4956 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
4957
Matt Roper98d39492016-05-12 07:06:03 -07004958 for_each_intel_crtc_mask(dev, intel_crtc, realloc_pipes) {
4959 struct intel_crtc_state *cstate;
4960
4961 cstate = intel_atomic_get_crtc_state(state, intel_crtc);
4962 if (IS_ERR(cstate))
4963 return PTR_ERR(cstate);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004964
4965 ret = skl_allocate_pipe_ddb(cstate, ddb);
4966 if (ret)
4967 return ret;
4968
4969 ret = skl_ddb_add_affected_planes(cstate);
4970 if (ret)
4971 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07004972 }
4973
4974 return 0;
4975}
4976
Matt Roper2722efb2016-08-17 15:55:55 -04004977static void
4978skl_copy_wm_for_pipe(struct skl_wm_values *dst,
4979 struct skl_wm_values *src,
4980 enum pipe pipe)
4981{
Matt Roper2722efb2016-08-17 15:55:55 -04004982 memcpy(dst->ddb.y_plane[pipe], src->ddb.y_plane[pipe],
4983 sizeof(dst->ddb.y_plane[pipe]));
4984 memcpy(dst->ddb.plane[pipe], src->ddb.plane[pipe],
4985 sizeof(dst->ddb.plane[pipe]));
4986}
4987
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004988static void
4989skl_print_wm_changes(const struct drm_atomic_state *state)
4990{
4991 const struct drm_device *dev = state->dev;
4992 const struct drm_i915_private *dev_priv = to_i915(dev);
4993 const struct intel_atomic_state *intel_state =
4994 to_intel_atomic_state(state);
4995 const struct drm_crtc *crtc;
4996 const struct drm_crtc_state *cstate;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004997 const struct intel_plane *intel_plane;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04004998 const struct skl_ddb_allocation *old_ddb = &dev_priv->wm.skl_hw.ddb;
4999 const struct skl_ddb_allocation *new_ddb = &intel_state->wm_results.ddb;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005000 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005001
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005002 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Maarten Lankhorst75704982016-11-01 12:04:10 +01005003 const struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
5004 enum pipe pipe = intel_crtc->pipe;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005005
Maarten Lankhorst75704982016-11-01 12:04:10 +01005006 for_each_intel_plane_on_crtc(dev, intel_crtc, intel_plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005007 enum plane_id plane_id = intel_plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005008 const struct skl_ddb_entry *old, *new;
5009
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005010 old = &old_ddb->plane[pipe][plane_id];
5011 new = &new_ddb->plane[pipe][plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005012
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005013 if (skl_ddb_entry_equal(old, new))
5014 continue;
5015
Maarten Lankhorst75704982016-11-01 12:04:10 +01005016 DRM_DEBUG_ATOMIC("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
5017 intel_plane->base.base.id,
5018 intel_plane->base.name,
5019 old->start, old->end,
5020 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005021 }
5022 }
5023}
5024
Matt Roper98d39492016-05-12 07:06:03 -07005025static int
5026skl_compute_wm(struct drm_atomic_state *state)
5027{
5028 struct drm_crtc *crtc;
5029 struct drm_crtc_state *cstate;
Matt Roper734fa012016-05-12 15:11:40 -07005030 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
5031 struct skl_wm_values *results = &intel_state->wm_results;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005032 struct drm_device *dev = state->dev;
Matt Roper734fa012016-05-12 15:11:40 -07005033 struct skl_pipe_wm *pipe_wm;
Matt Roper98d39492016-05-12 07:06:03 -07005034 bool changed = false;
Matt Roper734fa012016-05-12 15:11:40 -07005035 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005036
5037 /*
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005038 * When we distrust bios wm we always need to recompute to set the
5039 * expected DDB allocations for each CRTC.
5040 */
5041 if (to_i915(dev)->wm.distrust_bios_wm)
5042 changed = true;
5043
5044 /*
Matt Roper98d39492016-05-12 07:06:03 -07005045 * If this transaction isn't actually touching any CRTC's, don't
5046 * bother with watermark calculation. Note that if we pass this
5047 * test, we're guaranteed to hold at least one CRTC state mutex,
5048 * which means we can safely use values like dev_priv->active_crtcs
5049 * since any racing commits that want to update them would need to
5050 * hold _all_ CRTC state mutexes.
5051 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005052 for_each_new_crtc_in_state(state, crtc, cstate, i)
Matt Roper98d39492016-05-12 07:06:03 -07005053 changed = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005054
Matt Roper98d39492016-05-12 07:06:03 -07005055 if (!changed)
5056 return 0;
5057
Matt Roper734fa012016-05-12 15:11:40 -07005058 /* Clear all dirty flags */
5059 results->dirty_pipes = 0;
5060
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005061 ret = skl_compute_ddb(state);
Matt Roper98d39492016-05-12 07:06:03 -07005062 if (ret)
5063 return ret;
5064
Matt Roper734fa012016-05-12 15:11:40 -07005065 /*
5066 * Calculate WM's for all pipes that are part of this transaction.
5067 * Note that the DDB allocation above may have added more CRTC's that
5068 * weren't otherwise being modified (and set bits in dirty_pipes) if
5069 * pipe allocations had to change.
5070 *
5071 * FIXME: Now that we're doing this in the atomic check phase, we
5072 * should allow skl_update_pipe_wm() to return failure in cases where
5073 * no suitable watermark values can be found.
5074 */
Maarten Lankhorst6ebdb5a2017-03-09 15:52:03 +01005075 for_each_new_crtc_in_state(state, crtc, cstate, i) {
Matt Roper734fa012016-05-12 15:11:40 -07005076 struct intel_crtc_state *intel_cstate =
5077 to_intel_crtc_state(cstate);
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005078 const struct skl_pipe_wm *old_pipe_wm =
5079 &to_intel_crtc_state(crtc->state)->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07005080
5081 pipe_wm = &intel_cstate->wm.skl.optimal;
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005082 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm,
5083 &results->ddb, &changed);
Matt Roper734fa012016-05-12 15:11:40 -07005084 if (ret)
5085 return ret;
5086
5087 if (changed)
5088 results->dirty_pipes |= drm_crtc_mask(crtc);
5089
5090 if ((results->dirty_pipes & drm_crtc_mask(crtc)) == 0)
5091 /* This pipe's WM's did not change */
5092 continue;
5093
5094 intel_cstate->update_wm_pre = true;
Matt Roper734fa012016-05-12 15:11:40 -07005095 }
5096
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005097 skl_print_wm_changes(state);
5098
Matt Roper98d39492016-05-12 07:06:03 -07005099 return 0;
5100}
5101
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005102static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
5103 struct intel_crtc_state *cstate)
5104{
5105 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
5106 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5107 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005108 const struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005109 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005110 enum plane_id plane_id;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005111
5112 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
5113 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005114
5115 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005116
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005117 for_each_plane_id_on_crtc(crtc, plane_id) {
5118 if (plane_id != PLANE_CURSOR)
5119 skl_write_plane_wm(crtc, &pipe_wm->planes[plane_id],
5120 ddb, plane_id);
5121 else
5122 skl_write_cursor_wm(crtc, &pipe_wm->planes[plane_id],
5123 ddb);
5124 }
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005125}
5126
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005127static void skl_initial_wm(struct intel_atomic_state *state,
5128 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005129{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005130 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02005131 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005132 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005133 struct skl_wm_values *results = &state->wm_results;
Matt Roper2722efb2016-08-17 15:55:55 -04005134 struct skl_wm_values *hw_vals = &dev_priv->wm.skl_hw;
Lyude27082492016-08-24 07:48:10 +02005135 enum pipe pipe = intel_crtc->pipe;
Bob Paauweadda50b2015-07-21 10:42:53 -07005136
Ville Syrjälä432081b2016-10-31 22:37:03 +02005137 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005138 return;
5139
Matt Roper734fa012016-05-12 15:11:40 -07005140 mutex_lock(&dev_priv->wm.wm_mutex);
5141
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005142 if (cstate->base.active_changed)
5143 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02005144
5145 skl_copy_wm_for_pipe(hw_vals, results, pipe);
Matt Roper734fa012016-05-12 15:11:40 -07005146
5147 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005148}
5149
Ville Syrjäläd8905652016-01-14 14:53:35 +02005150static void ilk_compute_wm_config(struct drm_device *dev,
5151 struct intel_wm_config *config)
5152{
5153 struct intel_crtc *crtc;
5154
5155 /* Compute the currently _active_ config */
5156 for_each_intel_crtc(dev, crtc) {
5157 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5158
5159 if (!wm->pipe_enabled)
5160 continue;
5161
5162 config->sprites_enabled |= wm->sprites_enabled;
5163 config->sprites_scaled |= wm->sprites_scaled;
5164 config->num_pipes_active++;
5165 }
5166}
5167
Matt Ropered4a6a72016-02-23 17:20:13 -08005168static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005169{
Chris Wilson91c8a322016-07-05 10:40:23 +01005170 struct drm_device *dev = &dev_priv->drm;
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005171 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005172 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005173 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005174 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005175 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005176
Ville Syrjäläd8905652016-01-14 14:53:35 +02005177 ilk_compute_wm_config(dev, &config);
5178
5179 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max);
5180 ilk_wm_merge(dev, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005181
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005182 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005183 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005184 config.num_pipes_active == 1 && config.sprites_enabled) {
5185 ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max);
5186 ilk_wm_merge(dev, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005187
Imre Deak820c1982013-12-17 14:46:36 +02005188 best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005189 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005190 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005191 }
5192
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005193 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005194 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005195
Imre Deak820c1982013-12-17 14:46:36 +02005196 ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005197
Imre Deak820c1982013-12-17 14:46:36 +02005198 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005199}
5200
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005201static void ilk_initial_watermarks(struct intel_atomic_state *state,
5202 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005203{
Matt Ropered4a6a72016-02-23 17:20:13 -08005204 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5205 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005206
Matt Ropered4a6a72016-02-23 17:20:13 -08005207 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07005208 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005209 ilk_program_watermarks(dev_priv);
5210 mutex_unlock(&dev_priv->wm.wm_mutex);
5211}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005212
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005213static void ilk_optimize_watermarks(struct intel_atomic_state *state,
5214 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08005215{
5216 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5217 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
5218
5219 mutex_lock(&dev_priv->wm.wm_mutex);
5220 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07005221 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08005222 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005223 }
Matt Ropered4a6a72016-02-23 17:20:13 -08005224 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005225}
5226
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005227static inline void skl_wm_level_from_reg_val(uint32_t val,
5228 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005229{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005230 level->plane_en = val & PLANE_WM_EN;
5231 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5232 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5233 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005234}
5235
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005236void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc,
5237 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005238{
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005239 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Pradeep Bhat30789992014-11-04 17:06:45 +00005240 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Pradeep Bhat30789992014-11-04 17:06:45 +00005241 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005242 int level, max_level;
5243 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005244 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005245
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005246 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005247
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005248 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
5249 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005250
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005251 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005252 if (plane_id != PLANE_CURSOR)
5253 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005254 else
5255 val = I915_READ(CUR_WM(pipe, level));
5256
5257 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5258 }
5259
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005260 if (plane_id != PLANE_CURSOR)
5261 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005262 else
5263 val = I915_READ(CUR_WM_TRANS(pipe));
5264
5265 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5266 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005267
Matt Roper3ef00282015-03-09 10:19:24 -07005268 if (!intel_crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005269 return;
5270
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005271 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00005272}
5273
5274void skl_wm_get_hw_state(struct drm_device *dev)
5275{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005276 struct drm_i915_private *dev_priv = to_i915(dev);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005277 struct skl_wm_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00005278 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Pradeep Bhat30789992014-11-04 17:06:45 +00005279 struct drm_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005280 struct intel_crtc *intel_crtc;
5281 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00005282
Damien Lespiaua269c582014-11-04 17:06:49 +00005283 skl_ddb_get_hw_state(dev_priv, ddb);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005284 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
5285 intel_crtc = to_intel_crtc(crtc);
5286 cstate = to_intel_crtc_state(crtc->state);
5287
5288 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
5289
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005290 if (intel_crtc->active)
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005291 hw->dirty_pipes |= drm_crtc_mask(crtc);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005292 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005293
Matt Roper279e99d2016-05-12 07:06:02 -07005294 if (dev_priv->active_crtcs) {
5295 /* Fully recompute DDB on first atomic commit */
5296 dev_priv->wm.distrust_bios_wm = true;
5297 } else {
5298 /* Easy/common case; just sanitize DDB now if everything off */
5299 memset(ddb, 0, sizeof(*ddb));
5300 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005301}
5302
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005303static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc)
5304{
5305 struct drm_device *dev = crtc->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005306 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005307 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005308 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Matt Roper4e0963c2015-09-24 15:53:15 -07005309 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->state);
Matt Ropere8f1f022016-05-12 07:05:55 -07005310 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005311 enum pipe pipe = intel_crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005312 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005313 [PIPE_A] = WM0_PIPEA_ILK,
5314 [PIPE_B] = WM0_PIPEB_ILK,
5315 [PIPE_C] = WM0_PIPEC_IVB,
5316 };
5317
5318 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005319 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02005320 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005321
Ville Syrjälä15606532016-05-13 17:55:17 +03005322 memset(active, 0, sizeof(*active));
5323
Matt Roper3ef00282015-03-09 10:19:24 -07005324 active->pipe_enabled = intel_crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005325
5326 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005327 u32 tmp = hw->wm_pipe[pipe];
5328
5329 /*
5330 * For active pipes LP0 watermark is marked as
5331 * enabled, and LP1+ watermaks as disabled since
5332 * we can't really reverse compute them in case
5333 * multiple pipes are active.
5334 */
5335 active->wm[0].enable = true;
5336 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5337 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5338 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
5339 active->linetime = hw->wm_linetime[pipe];
5340 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005341 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005342
5343 /*
5344 * For inactive pipes, all watermark levels
5345 * should be marked as enabled but zeroed,
5346 * which is what we'd compute them to.
5347 */
5348 for (level = 0; level <= max_level; level++)
5349 active->wm[level].enable = true;
5350 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005351
5352 intel_crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005353}
5354
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005355#define _FW_WM(value, plane) \
5356 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5357#define _FW_WM_VLV(value, plane) \
5358 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5359
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005360static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5361 struct g4x_wm_values *wm)
5362{
5363 uint32_t tmp;
5364
5365 tmp = I915_READ(DSPFW1);
5366 wm->sr.plane = _FW_WM(tmp, SR);
5367 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5368 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5369 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5370
5371 tmp = I915_READ(DSPFW2);
5372 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5373 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5374 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5375 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5376 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5377 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5378
5379 tmp = I915_READ(DSPFW3);
5380 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5381 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5382 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5383 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5384}
5385
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005386static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5387 struct vlv_wm_values *wm)
5388{
5389 enum pipe pipe;
5390 uint32_t tmp;
5391
5392 for_each_pipe(dev_priv, pipe) {
5393 tmp = I915_READ(VLV_DDL(pipe));
5394
Ville Syrjälä1b313892016-11-28 19:37:08 +02005395 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005396 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005397 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005398 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005399 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005400 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005401 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005402 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
5403 }
5404
5405 tmp = I915_READ(DSPFW1);
5406 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005407 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5408 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
5409 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005410
5411 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005412 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
5413 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5414 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005415
5416 tmp = I915_READ(DSPFW3);
5417 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5418
5419 if (IS_CHERRYVIEW(dev_priv)) {
5420 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005421 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5422 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005423
5424 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005425 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
5426 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005427
5428 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005429 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
5430 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005431
5432 tmp = I915_READ(DSPHOWM);
5433 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005434 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
5435 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
5436 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
5437 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5438 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5439 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5440 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5441 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5442 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005443 } else {
5444 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005445 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5446 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005447
5448 tmp = I915_READ(DSPHOWM);
5449 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005450 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5451 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5452 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5453 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5454 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5455 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005456 }
5457}
5458
5459#undef _FW_WM
5460#undef _FW_WM_VLV
5461
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005462void g4x_wm_get_hw_state(struct drm_device *dev)
5463{
5464 struct drm_i915_private *dev_priv = to_i915(dev);
5465 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
5466 struct intel_crtc *crtc;
5467
5468 g4x_read_wm_values(dev_priv, wm);
5469
5470 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
5471
5472 for_each_intel_crtc(dev, crtc) {
5473 struct intel_crtc_state *crtc_state =
5474 to_intel_crtc_state(crtc->base.state);
5475 struct g4x_wm_state *active = &crtc->wm.active.g4x;
5476 struct g4x_pipe_wm *raw;
5477 enum pipe pipe = crtc->pipe;
5478 enum plane_id plane_id;
5479 int level, max_level;
5480
5481 active->cxsr = wm->cxsr;
5482 active->hpll_en = wm->hpll_en;
5483 active->fbc_en = wm->fbc_en;
5484
5485 active->sr = wm->sr;
5486 active->hpll = wm->hpll;
5487
5488 for_each_plane_id_on_crtc(crtc, plane_id) {
5489 active->wm.plane[plane_id] =
5490 wm->pipe[pipe].plane[plane_id];
5491 }
5492
5493 if (wm->cxsr && wm->hpll_en)
5494 max_level = G4X_WM_LEVEL_HPLL;
5495 else if (wm->cxsr)
5496 max_level = G4X_WM_LEVEL_SR;
5497 else
5498 max_level = G4X_WM_LEVEL_NORMAL;
5499
5500 level = G4X_WM_LEVEL_NORMAL;
5501 raw = &crtc_state->wm.g4x.raw[level];
5502 for_each_plane_id_on_crtc(crtc, plane_id)
5503 raw->plane[plane_id] = active->wm.plane[plane_id];
5504
5505 if (++level > max_level)
5506 goto out;
5507
5508 raw = &crtc_state->wm.g4x.raw[level];
5509 raw->plane[PLANE_PRIMARY] = active->sr.plane;
5510 raw->plane[PLANE_CURSOR] = active->sr.cursor;
5511 raw->plane[PLANE_SPRITE0] = 0;
5512 raw->fbc = active->sr.fbc;
5513
5514 if (++level > max_level)
5515 goto out;
5516
5517 raw = &crtc_state->wm.g4x.raw[level];
5518 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
5519 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
5520 raw->plane[PLANE_SPRITE0] = 0;
5521 raw->fbc = active->hpll.fbc;
5522
5523 out:
5524 for_each_plane_id_on_crtc(crtc, plane_id)
5525 g4x_raw_plane_wm_set(crtc_state, level,
5526 plane_id, USHRT_MAX);
5527 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
5528
5529 crtc_state->wm.g4x.optimal = *active;
5530 crtc_state->wm.g4x.intermediate = *active;
5531
5532 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
5533 pipe_name(pipe),
5534 wm->pipe[pipe].plane[PLANE_PRIMARY],
5535 wm->pipe[pipe].plane[PLANE_CURSOR],
5536 wm->pipe[pipe].plane[PLANE_SPRITE0]);
5537 }
5538
5539 DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
5540 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
5541 DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
5542 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
5543 DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n",
5544 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
5545}
5546
5547void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
5548{
5549 struct intel_plane *plane;
5550 struct intel_crtc *crtc;
5551
5552 mutex_lock(&dev_priv->wm.wm_mutex);
5553
5554 for_each_intel_plane(&dev_priv->drm, plane) {
5555 struct intel_crtc *crtc =
5556 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5557 struct intel_crtc_state *crtc_state =
5558 to_intel_crtc_state(crtc->base.state);
5559 struct intel_plane_state *plane_state =
5560 to_intel_plane_state(plane->base.state);
5561 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
5562 enum plane_id plane_id = plane->id;
5563 int level;
5564
5565 if (plane_state->base.visible)
5566 continue;
5567
5568 for (level = 0; level < 3; level++) {
5569 struct g4x_pipe_wm *raw =
5570 &crtc_state->wm.g4x.raw[level];
5571
5572 raw->plane[plane_id] = 0;
5573 wm_state->wm.plane[plane_id] = 0;
5574 }
5575
5576 if (plane_id == PLANE_PRIMARY) {
5577 for (level = 0; level < 3; level++) {
5578 struct g4x_pipe_wm *raw =
5579 &crtc_state->wm.g4x.raw[level];
5580 raw->fbc = 0;
5581 }
5582
5583 wm_state->sr.fbc = 0;
5584 wm_state->hpll.fbc = 0;
5585 wm_state->fbc_en = false;
5586 }
5587 }
5588
5589 for_each_intel_crtc(&dev_priv->drm, crtc) {
5590 struct intel_crtc_state *crtc_state =
5591 to_intel_crtc_state(crtc->base.state);
5592
5593 crtc_state->wm.g4x.intermediate =
5594 crtc_state->wm.g4x.optimal;
5595 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
5596 }
5597
5598 g4x_program_watermarks(dev_priv);
5599
5600 mutex_unlock(&dev_priv->wm.wm_mutex);
5601}
5602
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005603void vlv_wm_get_hw_state(struct drm_device *dev)
5604{
5605 struct drm_i915_private *dev_priv = to_i915(dev);
5606 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02005607 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005608 u32 val;
5609
5610 vlv_read_wm_values(dev_priv, wm);
5611
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005612 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
5613 wm->level = VLV_WM_LEVEL_PM2;
5614
5615 if (IS_CHERRYVIEW(dev_priv)) {
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005616 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005617
5618 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
5619 if (val & DSP_MAXFIFO_PM5_ENABLE)
5620 wm->level = VLV_WM_LEVEL_PM5;
5621
Ville Syrjälä58590c12015-09-08 21:05:12 +03005622 /*
5623 * If DDR DVFS is disabled in the BIOS, Punit
5624 * will never ack the request. So if that happens
5625 * assume we don't have to enable/disable DDR DVFS
5626 * dynamically. To test that just set the REQ_ACK
5627 * bit to poke the Punit, but don't change the
5628 * HIGH/LOW bits so that we don't actually change
5629 * the current state.
5630 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005631 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03005632 val |= FORCE_DDR_FREQ_REQ_ACK;
5633 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
5634
5635 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
5636 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
5637 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
5638 "assuming DDR DVFS is disabled\n");
5639 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
5640 } else {
5641 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
5642 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
5643 wm->level = VLV_WM_LEVEL_DDR_DVFS;
5644 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005645
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01005646 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005647 }
5648
Ville Syrjäläff32c542017-03-02 19:14:57 +02005649 for_each_intel_crtc(dev, crtc) {
5650 struct intel_crtc_state *crtc_state =
5651 to_intel_crtc_state(crtc->base.state);
5652 struct vlv_wm_state *active = &crtc->wm.active.vlv;
5653 const struct vlv_fifo_state *fifo_state =
5654 &crtc_state->wm.vlv.fifo_state;
5655 enum pipe pipe = crtc->pipe;
5656 enum plane_id plane_id;
5657 int level;
5658
5659 vlv_get_fifo_size(crtc_state);
5660
5661 active->num_levels = wm->level + 1;
5662 active->cxsr = wm->cxsr;
5663
Ville Syrjäläff32c542017-03-02 19:14:57 +02005664 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005665 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02005666 &crtc_state->wm.vlv.raw[level];
5667
5668 active->sr[level].plane = wm->sr.plane;
5669 active->sr[level].cursor = wm->sr.cursor;
5670
5671 for_each_plane_id_on_crtc(crtc, plane_id) {
5672 active->wm[level].plane[plane_id] =
5673 wm->pipe[pipe].plane[plane_id];
5674
5675 raw->plane[plane_id] =
5676 vlv_invert_wm_value(active->wm[level].plane[plane_id],
5677 fifo_state->plane[plane_id]);
5678 }
5679 }
5680
5681 for_each_plane_id_on_crtc(crtc, plane_id)
5682 vlv_raw_plane_wm_set(crtc_state, level,
5683 plane_id, USHRT_MAX);
5684 vlv_invalidate_wms(crtc, active, level);
5685
5686 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02005687 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02005688
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005689 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 +02005690 pipe_name(pipe),
5691 wm->pipe[pipe].plane[PLANE_PRIMARY],
5692 wm->pipe[pipe].plane[PLANE_CURSOR],
5693 wm->pipe[pipe].plane[PLANE_SPRITE0],
5694 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02005695 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005696
5697 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
5698 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
5699}
5700
Ville Syrjälä602ae832017-03-02 19:15:02 +02005701void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
5702{
5703 struct intel_plane *plane;
5704 struct intel_crtc *crtc;
5705
5706 mutex_lock(&dev_priv->wm.wm_mutex);
5707
5708 for_each_intel_plane(&dev_priv->drm, plane) {
5709 struct intel_crtc *crtc =
5710 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5711 struct intel_crtc_state *crtc_state =
5712 to_intel_crtc_state(crtc->base.state);
5713 struct intel_plane_state *plane_state =
5714 to_intel_plane_state(plane->base.state);
5715 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
5716 const struct vlv_fifo_state *fifo_state =
5717 &crtc_state->wm.vlv.fifo_state;
5718 enum plane_id plane_id = plane->id;
5719 int level;
5720
5721 if (plane_state->base.visible)
5722 continue;
5723
5724 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03005725 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02005726 &crtc_state->wm.vlv.raw[level];
5727
5728 raw->plane[plane_id] = 0;
5729
5730 wm_state->wm[level].plane[plane_id] =
5731 vlv_invert_wm_value(raw->plane[plane_id],
5732 fifo_state->plane[plane_id]);
5733 }
5734 }
5735
5736 for_each_intel_crtc(&dev_priv->drm, crtc) {
5737 struct intel_crtc_state *crtc_state =
5738 to_intel_crtc_state(crtc->base.state);
5739
5740 crtc_state->wm.vlv.intermediate =
5741 crtc_state->wm.vlv.optimal;
5742 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
5743 }
5744
5745 vlv_program_watermarks(dev_priv);
5746
5747 mutex_unlock(&dev_priv->wm.wm_mutex);
5748}
5749
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005750void ilk_wm_get_hw_state(struct drm_device *dev)
5751{
Chris Wilsonfac5e232016-07-04 11:34:36 +01005752 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005753 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005754 struct drm_crtc *crtc;
5755
Damien Lespiau70e1e0e2014-05-13 23:32:24 +01005756 for_each_crtc(dev, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005757 ilk_pipe_wm_get_hw_state(crtc);
5758
5759 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
5760 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
5761 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
5762
5763 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005764 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02005765 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
5766 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
5767 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005768
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005769 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005770 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
5771 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01005772 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02005773 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
5774 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005775
5776 hw->enable_fbc_wm =
5777 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
5778}
5779
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005780/**
5781 * intel_update_watermarks - update FIFO watermark values based on current modes
5782 *
5783 * Calculate watermark values for the various WM regs based on current mode
5784 * and plane configuration.
5785 *
5786 * There are several cases to deal with here:
5787 * - normal (i.e. non-self-refresh)
5788 * - self-refresh (SR) mode
5789 * - lines are large relative to FIFO size (buffer can hold up to 2)
5790 * - lines are small relative to FIFO size (buffer can hold more than 2
5791 * lines), so need to account for TLB latency
5792 *
5793 * The normal calculation is:
5794 * watermark = dotclock * bytes per pixel * latency
5795 * where latency is platform & configuration dependent (we assume pessimal
5796 * values here).
5797 *
5798 * The SR calculation is:
5799 * watermark = (trunc(latency/line time)+1) * surface width *
5800 * bytes per pixel
5801 * where
5802 * line time = htotal / dotclock
5803 * surface width = hdisplay for normal plane and 64 for cursor
5804 * and latency is assumed to be high, as above.
5805 *
5806 * The final value programmed to the register should always be rounded up,
5807 * and include an extra 2 entries to account for clock crossings.
5808 *
5809 * We don't use the sprite, so we can ignore that. And on Crestline we have
5810 * to set the non-SR watermarks to 8.
5811 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02005812void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005813{
Ville Syrjälä432081b2016-10-31 22:37:03 +02005814 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005815
5816 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03005817 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03005818}
5819
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305820void intel_enable_ipc(struct drm_i915_private *dev_priv)
5821{
5822 u32 val;
5823
Rodrigo Vivi4d6ef0d2017-10-02 23:36:50 -07005824 /* Display WA #0477 WaDisableIPC: skl */
5825 if (IS_SKYLAKE(dev_priv)) {
5826 dev_priv->ipc_enabled = false;
5827 return;
5828 }
5829
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05305830 val = I915_READ(DISP_ARB_CTL2);
5831
5832 if (dev_priv->ipc_enabled)
5833 val |= DISP_IPC_ENABLE;
5834 else
5835 val &= ~DISP_IPC_ENABLE;
5836
5837 I915_WRITE(DISP_ARB_CTL2, val);
5838}
5839
5840void intel_init_ipc(struct drm_i915_private *dev_priv)
5841{
5842 dev_priv->ipc_enabled = false;
5843 if (!HAS_IPC(dev_priv))
5844 return;
5845
5846 dev_priv->ipc_enabled = true;
5847 intel_enable_ipc(dev_priv);
5848}
5849
Jani Nikulae2828912016-01-18 09:19:47 +02005850/*
Daniel Vetter92703882012-08-09 16:46:01 +02005851 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02005852 */
5853DEFINE_SPINLOCK(mchdev_lock);
5854
5855/* Global for IPS driver to get at the current i915 device. Protected by
5856 * mchdev_lock. */
5857static struct drm_i915_private *i915_mch_dev;
5858
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005859bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005860{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005861 u16 rgvswctl;
5862
Chris Wilson67520412017-03-02 13:28:01 +00005863 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02005864
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005865 rgvswctl = I915_READ16(MEMSWCTL);
5866 if (rgvswctl & MEMCTL_CMD_STS) {
5867 DRM_DEBUG("gpu busy, RCS change rejected\n");
5868 return false; /* still busy with another command */
5869 }
5870
5871 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
5872 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
5873 I915_WRITE16(MEMSWCTL, rgvswctl);
5874 POSTING_READ16(MEMSWCTL);
5875
5876 rgvswctl |= MEMCTL_CMD_STS;
5877 I915_WRITE16(MEMSWCTL, rgvswctl);
5878
5879 return true;
5880}
5881
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005882static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005883{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005884 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005885 u8 fmax, fmin, fstart, vstart;
5886
Daniel Vetter92703882012-08-09 16:46:01 +02005887 spin_lock_irq(&mchdev_lock);
5888
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00005889 rgvmodectl = I915_READ(MEMMODECTL);
5890
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005891 /* Enable temp reporting */
5892 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
5893 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
5894
5895 /* 100ms RC evaluation intervals */
5896 I915_WRITE(RCUPEI, 100000);
5897 I915_WRITE(RCDNEI, 100000);
5898
5899 /* Set max/min thresholds to 90ms and 80ms respectively */
5900 I915_WRITE(RCBMAXAVG, 90000);
5901 I915_WRITE(RCBMINAVG, 80000);
5902
5903 I915_WRITE(MEMIHYST, 1);
5904
5905 /* Set up min, max, and cur for interrupt handling */
5906 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
5907 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
5908 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
5909 MEMMODE_FSTART_SHIFT;
5910
Ville Syrjälä616847e2015-09-18 20:03:19 +03005911 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005912 PXVFREQ_PX_SHIFT;
5913
Daniel Vetter20e4d402012-08-08 23:35:39 +02005914 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
5915 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005916
Daniel Vetter20e4d402012-08-08 23:35:39 +02005917 dev_priv->ips.max_delay = fstart;
5918 dev_priv->ips.min_delay = fmin;
5919 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005920
5921 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
5922 fmax, fmin, fstart);
5923
5924 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
5925
5926 /*
5927 * Interrupts will be enabled in ironlake_irq_postinstall
5928 */
5929
5930 I915_WRITE(VIDSTART, vstart);
5931 POSTING_READ(VIDSTART);
5932
5933 rgvmodectl |= MEMMODE_SWMODE_EN;
5934 I915_WRITE(MEMMODECTL, rgvmodectl);
5935
Daniel Vetter92703882012-08-09 16:46:01 +02005936 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005937 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005938 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005939
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005940 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005941
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005942 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
5943 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02005944 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03005945 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00005946 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02005947
5948 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005949}
5950
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005951static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005952{
Daniel Vetter92703882012-08-09 16:46:01 +02005953 u16 rgvswctl;
5954
5955 spin_lock_irq(&mchdev_lock);
5956
5957 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005958
5959 /* Ack interrupts, disable EFC interrupt */
5960 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
5961 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
5962 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
5963 I915_WRITE(DEIIR, DE_PCU_EVENT);
5964 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
5965
5966 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01005967 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005968 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005969 rgvswctl |= MEMCTL_CMD_STS;
5970 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02005971 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005972
Daniel Vetter92703882012-08-09 16:46:01 +02005973 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005974}
5975
Daniel Vetteracbe9472012-07-26 11:50:05 +02005976/* There's a funny hw issue where the hw returns all 0 when reading from
5977 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
5978 * ourselves, instead of doing a rmw cycle (which might result in us clearing
5979 * all limits and the gpu stuck at whatever frequency it is at atm).
5980 */
Akash Goel74ef1172015-03-06 11:07:19 +05305981static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005982{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01005983 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01005984 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03005985
Daniel Vetter20b46e52012-07-26 11:16:14 +02005986 /* Only set the down limit when we've reached the lowest level to avoid
5987 * getting more interrupts, otherwise leave this clear. This prevents a
5988 * race in the hw when coming out of rc6: There's a tiny window where
5989 * the hw runs at the minimal clock before selecting the desired
5990 * frequency, if the down threshold expires in that window we will not
5991 * receive a down interrupt. */
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07005992 if (INTEL_GEN(dev_priv) >= 9) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01005993 limits = (rps->max_freq_softlimit) << 23;
5994 if (val <= rps->min_freq_softlimit)
5995 limits |= (rps->min_freq_softlimit) << 14;
Akash Goel74ef1172015-03-06 11:07:19 +05305996 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01005997 limits = rps->max_freq_softlimit << 24;
5998 if (val <= rps->min_freq_softlimit)
5999 limits |= rps->min_freq_softlimit << 16;
Akash Goel74ef1172015-03-06 11:07:19 +05306000 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02006001
6002 return limits;
6003}
6004
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006005static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
6006{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006007 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006008 int new_power;
Akash Goel8a586432015-03-06 11:07:18 +05306009 u32 threshold_up = 0, threshold_down = 0; /* in % */
6010 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006011
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006012 new_power = rps->power;
6013 switch (rps->power) {
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006014 case LOW_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006015 if (val > rps->efficient_freq + 1 &&
6016 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006017 new_power = BETWEEN;
6018 break;
6019
6020 case BETWEEN:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006021 if (val <= rps->efficient_freq &&
6022 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006023 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006024 else if (val >= rps->rp0_freq &&
6025 val > rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006026 new_power = HIGH_POWER;
6027 break;
6028
6029 case HIGH_POWER:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006030 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
6031 val < rps->cur_freq)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006032 new_power = BETWEEN;
6033 break;
6034 }
6035 /* Max/min bins are special */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006036 if (val <= rps->min_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006037 new_power = LOW_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006038 if (val >= rps->max_freq_softlimit)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006039 new_power = HIGH_POWER;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006040 if (new_power == rps->power)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006041 return;
6042
6043 /* Note the units here are not exactly 1us, but 1280ns. */
6044 switch (new_power) {
6045 case LOW_POWER:
6046 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05306047 ei_up = 16000;
6048 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006049
6050 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306051 ei_down = 32000;
6052 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006053 break;
6054
6055 case BETWEEN:
6056 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05306057 ei_up = 13000;
6058 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006059
6060 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306061 ei_down = 32000;
6062 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006063 break;
6064
6065 case HIGH_POWER:
6066 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05306067 ei_up = 10000;
6068 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006069
6070 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306071 ei_down = 32000;
6072 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006073 break;
6074 }
6075
Mika Kuoppala6067a272017-02-15 15:52:59 +02006076 /* When byt can survive without system hang with dynamic
6077 * sw freq adjustments, this restriction can be lifted.
6078 */
6079 if (IS_VALLEYVIEW(dev_priv))
6080 goto skip_hw_write;
6081
Akash Goel8a586432015-03-06 11:07:18 +05306082 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006083 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05306084 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006085 GT_INTERVAL_FROM_US(dev_priv,
6086 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306087
6088 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006089 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05306090 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006091 GT_INTERVAL_FROM_US(dev_priv,
6092 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306093
Chris Wilsona72b5622016-07-02 15:35:59 +01006094 I915_WRITE(GEN6_RP_CONTROL,
6095 GEN6_RP_MEDIA_TURBO |
6096 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6097 GEN6_RP_MEDIA_IS_GFX |
6098 GEN6_RP_ENABLE |
6099 GEN6_RP_UP_BUSY_AVG |
6100 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05306101
Mika Kuoppala6067a272017-02-15 15:52:59 +02006102skip_hw_write:
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006103 rps->power = new_power;
6104 rps->up_threshold = threshold_up;
6105 rps->down_threshold = threshold_down;
6106 rps->last_adj = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006107}
6108
Chris Wilson2876ce72014-03-28 08:03:34 +00006109static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
6110{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006111 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson2876ce72014-03-28 08:03:34 +00006112 u32 mask = 0;
6113
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006114 /* We use UP_EI_EXPIRED interupts for both up/down in manual mode */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006115 if (val > rps->min_freq_softlimit)
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006116 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 +01006117 if (val < rps->max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00006118 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00006119
Chris Wilson7b3c29f2014-07-10 20:31:19 +01006120 mask &= dev_priv->pm_rps_events;
6121
Imre Deak59d02a12014-12-19 19:33:26 +02006122 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00006123}
6124
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006125/* gen6_set_rps is called to update the frequency request, but should also be
6126 * called when the range (min_delay and max_delay) is modified so that we can
6127 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006128static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02006129{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006130 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6131
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006132 /* min/max delay may still have been modified so be sure to
6133 * write the limits value.
6134 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006135 if (val != rps->cur_freq) {
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006136 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006137
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006138 if (INTEL_GEN(dev_priv) >= 9)
Akash Goel57041952015-03-06 11:07:17 +05306139 I915_WRITE(GEN6_RPNSWREQ,
6140 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01006141 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006142 I915_WRITE(GEN6_RPNSWREQ,
6143 HSW_FREQUENCY(val));
6144 else
6145 I915_WRITE(GEN6_RPNSWREQ,
6146 GEN6_FREQUENCY(val) |
6147 GEN6_OFFSET(0) |
6148 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006149 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006150
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006151 /* Make sure we continue to get interrupts
6152 * until we hit the minimum or maximum frequencies.
6153 */
Akash Goel74ef1172015-03-06 11:07:19 +05306154 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00006155 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006156
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006157 rps->cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02006158 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006159
6160 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006161}
6162
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006163static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006164{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006165 int err;
6166
Chris Wilsondc979972016-05-10 14:10:04 +01006167 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006168 "Odd GPU freq value\n"))
6169 val &= ~1;
6170
Deepak Scd25dd52015-07-10 18:31:40 +05306171 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
6172
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006173 if (val != dev_priv->gt_pm.rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006174 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
6175 if (err)
6176 return err;
6177
Chris Wilsondb4c5e02017-02-10 15:03:46 +00006178 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01006179 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006180
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006181 dev_priv->gt_pm.rps.cur_freq = val;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006182 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006183
6184 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006185}
6186
Deepak Sa7f6e232015-05-09 18:04:44 +05306187/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05306188 *
6189 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05306190 * 1. Forcewake Media well.
6191 * 2. Request idle freq.
6192 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05306193*/
6194static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
6195{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006196 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6197 u32 val = rps->idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006198 int err;
Deepak S5549d252014-06-28 11:26:11 +05306199
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006200 if (rps->cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05306201 return;
6202
Chris Wilsonc9efef72017-01-02 15:28:45 +00006203 /* The punit delays the write of the frequency and voltage until it
6204 * determines the GPU is awake. During normal usage we don't want to
6205 * waste power changing the frequency if the GPU is sleeping (rc6).
6206 * However, the GPU and driver is now idle and we do not want to delay
6207 * switching to minimum voltage (reducing power whilst idle) as we do
6208 * not expect to be woken in the near future and so must flush the
6209 * change by waking the device.
6210 *
6211 * We choose to take the media powerwell (either would do to trick the
6212 * punit into committing the voltage change) as that takes a lot less
6213 * power than the render powerwell.
6214 */
Deepak Sa7f6e232015-05-09 18:04:44 +05306215 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006216 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05306217 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006218
6219 if (err)
6220 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05306221}
6222
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006223void gen6_rps_busy(struct drm_i915_private *dev_priv)
6224{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006225 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6226
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006227 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006228 if (rps->enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00006229 u8 freq;
6230
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006231 if (dev_priv->pm_rps_events & GEN6_PM_RP_UP_EI_EXPIRED)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006232 gen6_rps_reset_ei(dev_priv);
6233 I915_WRITE(GEN6_PMINTRMSK,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006234 gen6_rps_pm_mask(dev_priv, rps->cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02006235
Chris Wilsonc33d2472016-07-04 08:08:36 +01006236 gen6_enable_rps_interrupts(dev_priv);
6237
Chris Wilsonbd648182017-02-10 15:03:48 +00006238 /* Use the user's desired frequency as a guide, but for better
6239 * performance, jump directly to RPe as our starting frequency.
6240 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006241 freq = max(rps->cur_freq,
6242 rps->efficient_freq);
Chris Wilsonbd648182017-02-10 15:03:48 +00006243
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006244 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00006245 clamp(freq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006246 rps->min_freq_softlimit,
6247 rps->max_freq_softlimit)))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006248 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006249 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006250 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006251}
6252
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006253void gen6_rps_idle(struct drm_i915_private *dev_priv)
6254{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006255 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6256
Chris Wilsonc33d2472016-07-04 08:08:36 +01006257 /* Flush our bottom-half so that it does not race with us
6258 * setting the idle frequency and so that it is bounded by
6259 * our rpm wakeref. And then disable the interrupts to stop any
6260 * futher RPS reclocking whilst we are asleep.
6261 */
6262 gen6_disable_rps_interrupts(dev_priv);
6263
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006264 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006265 if (rps->enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01006266 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05306267 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006268 else
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006269 gen6_set_rps(dev_priv, rps->idle_freq);
6270 rps->last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03006271 I915_WRITE(GEN6_PMINTRMSK,
6272 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01006273 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006274 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006275}
6276
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006277void gen6_rps_boost(struct drm_i915_gem_request *rq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006278 struct intel_rps_client *rps_client)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006279{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006280 struct intel_rps *rps = &rq->i915->gt_pm.rps;
Chris Wilson74d290f2017-08-17 13:37:06 +01006281 unsigned long flags;
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006282 bool boost;
6283
Chris Wilson8d3afd72015-05-21 21:01:47 +01006284 /* This is intentionally racy! We peek at the state here, then
6285 * validate inside the RPS worker.
6286 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006287 if (!rps->enabled)
Chris Wilson8d3afd72015-05-21 21:01:47 +01006288 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006289
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006290 boost = false;
Chris Wilson74d290f2017-08-17 13:37:06 +01006291 spin_lock_irqsave(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006292 if (!rq->waitboost && !i915_gem_request_completed(rq)) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006293 atomic_inc(&rps->num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006294 rq->waitboost = true;
6295 boost = true;
Chris Wilsonc0951f02013-10-10 21:58:50 +01006296 }
Chris Wilson74d290f2017-08-17 13:37:06 +01006297 spin_unlock_irqrestore(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006298 if (!boost)
6299 return;
6300
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006301 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
6302 schedule_work(&rps->work);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006303
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006304 atomic_inc(rps_client ? &rps_client->boosts : &rps->boosts);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006305}
6306
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006307int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006308{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006309 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006310 int err;
6311
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006312 lockdep_assert_held(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006313 GEM_BUG_ON(val > rps->max_freq);
6314 GEM_BUG_ON(val < rps->min_freq);
Chris Wilsoncfd1c482017-02-20 09:47:07 +00006315
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006316 if (!rps->enabled) {
6317 rps->cur_freq = val;
Chris Wilson76e4e4b2017-02-20 09:47:08 +00006318 return 0;
6319 }
6320
Chris Wilsondc979972016-05-10 14:10:04 +01006321 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006322 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006323 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006324 err = gen6_set_rps(dev_priv, val);
6325
6326 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006327}
6328
Chris Wilsondc979972016-05-10 14:10:04 +01006329static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006330{
Zhe Wang20e49362014-11-04 17:07:05 +00006331 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006332 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006333}
6334
Chris Wilsondc979972016-05-10 14:10:04 +01006335static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05306336{
Akash Goel2030d682016-04-23 00:05:45 +05306337 I915_WRITE(GEN6_RP_CONTROL, 0);
6338}
6339
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006340static void gen6_disable_rc6(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006341{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006342 I915_WRITE(GEN6_RC_CONTROL, 0);
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006343}
6344
6345static void gen6_disable_rps(struct drm_i915_private *dev_priv)
6346{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006347 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05306348 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006349}
6350
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006351static void cherryview_disable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306352{
Deepak S38807742014-05-23 21:00:15 +05306353 I915_WRITE(GEN6_RC_CONTROL, 0);
6354}
6355
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006356static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
6357{
6358 I915_WRITE(GEN6_RP_CONTROL, 0);
6359}
6360
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006361static void valleyview_disable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006362{
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006363 /* We're doing forcewake before Disabling RC6,
Deepak S98a2e5f2014-08-18 10:35:27 -07006364 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006365 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07006366
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006367 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006368
Mika Kuoppala59bad942015-01-16 11:34:40 +02006369 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006370}
6371
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006372static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
6373{
6374 I915_WRITE(GEN6_RP_CONTROL, 0);
6375}
6376
Chris Wilsondc979972016-05-10 14:10:04 +01006377static void intel_print_rc6_info(struct drm_i915_private *dev_priv, u32 mode)
Ben Widawskydc39fff2013-10-18 12:32:07 -07006378{
Chris Wilsondc979972016-05-10 14:10:04 +01006379 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Imre Deak91ca6892014-04-14 20:24:25 +03006380 if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1)))
6381 mode = GEN6_RC_CTL_RC6_ENABLE;
6382 else
6383 mode = 0;
6384 }
Chris Wilsondc979972016-05-10 14:10:04 +01006385 if (HAS_RC6p(dev_priv))
Imre Deakb99d49c2016-06-29 19:13:54 +03006386 DRM_DEBUG_DRIVER("Enabling RC6 states: "
6387 "RC6 %s RC6p %s RC6pp %s\n",
6388 onoff(mode & GEN6_RC_CTL_RC6_ENABLE),
6389 onoff(mode & GEN6_RC_CTL_RC6p_ENABLE),
6390 onoff(mode & GEN6_RC_CTL_RC6pp_ENABLE));
Rodrigo Vivi58abf1d2014-10-07 07:06:50 -07006391
6392 else
Imre Deakb99d49c2016-06-29 19:13:54 +03006393 DRM_DEBUG_DRIVER("Enabling RC6 states: RC6 %s\n",
6394 onoff(mode & GEN6_RC_CTL_RC6_ENABLE));
Ben Widawskydc39fff2013-10-18 12:32:07 -07006395}
6396
Chris Wilsondc979972016-05-10 14:10:04 +01006397static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306398{
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006399 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306400 bool enable_rc6 = true;
6401 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03006402 u32 rc_ctl;
6403 int rc_sw_target;
6404
6405 rc_ctl = I915_READ(GEN6_RC_CONTROL);
6406 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
6407 RC_SW_TARGET_STATE_SHIFT;
6408 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
6409 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
6410 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
6411 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
6412 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306413
6414 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006415 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306416 enable_rc6 = false;
6417 }
6418
6419 /*
6420 * The exact context size is not known for BXT, so assume a page size
6421 * for this check.
6422 */
6423 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03006424 if (!((rc6_ctx_base >= ggtt->stolen_reserved_base) &&
6425 (rc6_ctx_base + PAGE_SIZE <= ggtt->stolen_reserved_base +
6426 ggtt->stolen_reserved_size))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006427 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306428 enable_rc6 = false;
6429 }
6430
6431 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
6432 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
6433 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
6434 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006435 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306436 enable_rc6 = false;
6437 }
6438
Imre Deakfc619842016-06-29 19:13:55 +03006439 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
6440 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
6441 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
6442 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
6443 enable_rc6 = false;
6444 }
6445
6446 if (!I915_READ(GEN6_GFXPAUSE)) {
6447 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
6448 enable_rc6 = false;
6449 }
6450
6451 if (!I915_READ(GEN8_MISC_CTRL0)) {
6452 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306453 enable_rc6 = false;
6454 }
6455
6456 return enable_rc6;
6457}
6458
Chris Wilsondc979972016-05-10 14:10:04 +01006459int sanitize_rc6_option(struct drm_i915_private *dev_priv, int enable_rc6)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006460{
Daniel Vettere7d66d82015-06-15 23:23:54 +02006461 /* No RC6 before Ironlake and code is gone for ilk. */
Chris Wilsondc979972016-05-10 14:10:04 +01006462 if (INTEL_INFO(dev_priv)->gen < 6)
Imre Deake6069ca2014-04-18 16:01:02 +03006463 return 0;
6464
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306465 if (!enable_rc6)
6466 return 0;
6467
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006468 if (IS_GEN9_LP(dev_priv) && !bxt_check_bios_rc6_setup(dev_priv)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306469 DRM_INFO("RC6 disabled by BIOS\n");
6470 return 0;
6471 }
6472
Daniel Vetter456470e2012-08-08 23:35:40 +02006473 /* Respect the kernel parameter if it is set */
Imre Deake6069ca2014-04-18 16:01:02 +03006474 if (enable_rc6 >= 0) {
6475 int mask;
6476
Chris Wilsondc979972016-05-10 14:10:04 +01006477 if (HAS_RC6p(dev_priv))
Imre Deake6069ca2014-04-18 16:01:02 +03006478 mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE |
6479 INTEL_RC6pp_ENABLE;
6480 else
6481 mask = INTEL_RC6_ENABLE;
6482
6483 if ((enable_rc6 & mask) != enable_rc6)
Imre Deakb99d49c2016-06-29 19:13:54 +03006484 DRM_DEBUG_DRIVER("Adjusting RC6 mask to %d "
6485 "(requested %d, valid %d)\n",
6486 enable_rc6 & mask, enable_rc6, mask);
Imre Deake6069ca2014-04-18 16:01:02 +03006487
6488 return enable_rc6 & mask;
6489 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006490
Chris Wilsondc979972016-05-10 14:10:04 +01006491 if (IS_IVYBRIDGE(dev_priv))
Ben Widawskycca84a12014-01-28 20:25:38 -08006492 return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE);
Ben Widawsky8bade1a2014-01-28 20:25:39 -08006493
6494 return INTEL_RC6_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006495}
6496
Chris Wilsondc979972016-05-10 14:10:04 +01006497static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03006498{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006499 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6500
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006501 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01006502
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006503 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006504 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006505 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006506 rps->rp0_freq = (rp_state_cap >> 16) & 0xff;
6507 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6508 rps->min_freq = (rp_state_cap >> 0) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006509 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006510 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006511 rps->rp0_freq = (rp_state_cap >> 0) & 0xff;
6512 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6513 rps->min_freq = (rp_state_cap >> 16) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006514 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006515 /* hw_max = RP0 until we check for overclocking */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006516 rps->max_freq = rps->rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006517
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006518 rps->efficient_freq = rps->rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006519 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006520 IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006521 u32 ddcc_status = 0;
6522
6523 if (sandybridge_pcode_read(dev_priv,
6524 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
6525 &ddcc_status) == 0)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006526 rps->efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08006527 clamp_t(u8,
6528 ((ddcc_status >> 8) & 0xff),
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006529 rps->min_freq,
6530 rps->max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006531 }
6532
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006533 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goelc5e06882015-06-29 14:50:19 +05306534 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01006535 * the natural hardware unit for SKL
6536 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006537 rps->rp0_freq *= GEN9_FREQ_SCALER;
6538 rps->rp1_freq *= GEN9_FREQ_SCALER;
6539 rps->min_freq *= GEN9_FREQ_SCALER;
6540 rps->max_freq *= GEN9_FREQ_SCALER;
6541 rps->efficient_freq *= GEN9_FREQ_SCALER;
Akash Goelc5e06882015-06-29 14:50:19 +05306542 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006543}
6544
Chris Wilson3a45b052016-07-13 09:10:32 +01006545static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006546 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01006547{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006548 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6549 u8 freq = rps->cur_freq;
Chris Wilson3a45b052016-07-13 09:10:32 +01006550
6551 /* force a reset */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006552 rps->power = -1;
6553 rps->cur_freq = -1;
Chris Wilson3a45b052016-07-13 09:10:32 +01006554
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006555 if (set(dev_priv, freq))
6556 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01006557}
6558
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006559/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01006560static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006561{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006562 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6563
Akash Goel0beb0592015-03-06 11:07:20 +05306564 /* Program defaults and thresholds for RPS*/
6565 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006566 GEN9_FREQUENCY(dev_priv->gt_pm.rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006567
Akash Goel0beb0592015-03-06 11:07:20 +05306568 /* 1 second timeout*/
6569 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
6570 GT_INTERVAL_FROM_US(dev_priv, 1000000));
6571
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006572 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006573
Akash Goel0beb0592015-03-06 11:07:20 +05306574 /* Leaning on the below call to gen6_set_rps to program/setup the
6575 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
6576 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01006577 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006578
6579 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6580}
6581
Chris Wilsondc979972016-05-10 14:10:04 +01006582static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00006583{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006584 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306585 enum intel_engine_id id;
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006586 u32 rc6_mode, rc6_mask = 0;
Zhe Wang20e49362014-11-04 17:07:05 +00006587
6588 /* 1a: Software RC state - RC0 */
6589 I915_WRITE(GEN6_RC_STATE, 0);
6590
6591 /* 1b: Get forcewake during program sequence. Although the driver
6592 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006593 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006594
6595 /* 2a: Disable RC states. */
6596 I915_WRITE(GEN6_RC_CONTROL, 0);
6597
6598 /* 2b: Program RC6 thresholds.*/
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006599 if (INTEL_GEN(dev_priv) >= 10) {
6600 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16 | 85);
6601 I915_WRITE(GEN10_MEDIA_WAKE_RATE_LIMIT, 150);
6602 } else if (IS_SKYLAKE(dev_priv)) {
6603 /*
6604 * WaRsDoubleRc6WrlWithCoarsePowerGating:skl Doubling WRL only
6605 * when CPG is enabled
6606 */
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306607 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006608 } else {
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05306609 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07006610 }
6611
Zhe Wang20e49362014-11-04 17:07:05 +00006612 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6613 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306614 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006615 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306616
Dave Gordon1a3d1892016-05-13 15:36:30 +01006617 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05306618 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
6619
Zhe Wang20e49362014-11-04 17:07:05 +00006620 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006621
Zhe Wang38c23522015-01-20 12:23:04 +00006622 /* 2c: Program Coarse Power Gating Policies. */
6623 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25);
6624 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25);
6625
Zhe Wang20e49362014-11-04 17:07:05 +00006626 /* 3a: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006627 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Zhe Wang20e49362014-11-04 17:07:05 +00006628 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Jani Nikula87ad3212016-01-14 12:53:34 +02006629 DRM_INFO("RC6 %s\n", onoff(rc6_mask & GEN6_RC_CTL_RC6_ENABLE));
Chris Wilson1c044f92017-01-25 17:26:01 +00006630 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006631
6632 /* WaRsUseTimeoutMode:cnl (pre-prod) */
6633 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_C0))
6634 rc6_mode = GEN7_RC_CTL_TO_MODE;
6635 else
6636 rc6_mode = GEN6_RC_CTL_EI_MODE(1);
6637
Chris Wilson1c044f92017-01-25 17:26:01 +00006638 I915_WRITE(GEN6_RC_CONTROL,
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07006639 GEN6_RC_CTL_HW_ENABLE | rc6_mode | rc6_mask);
Zhe Wang20e49362014-11-04 17:07:05 +00006640
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306641 /*
6642 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306643 * WaRsDisableCoarsePowerGating:skl,bxt - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05306644 */
Chris Wilsondc979972016-05-10 14:10:04 +01006645 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05306646 I915_WRITE(GEN9_PG_ENABLE, 0);
6647 else
6648 I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ?
6649 (GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE) : 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006650
Mika Kuoppala59bad942015-01-16 11:34:40 +02006651 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00006652}
6653
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006654static void gen8_enable_rc6(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006655{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006656 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306657 enum intel_engine_id id;
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006658 uint32_t rc6_mask = 0;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006659
6660 /* 1a: Software RC state - RC0 */
6661 I915_WRITE(GEN6_RC_STATE, 0);
6662
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006663 /* 1b: Get forcewake during program sequence. Although the driver
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006664 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02006665 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006666
6667 /* 2a: Disable RC states. */
6668 I915_WRITE(GEN6_RC_CONTROL, 0);
6669
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006670 /* 2b: Program RC6 thresholds.*/
6671 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
6672 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
6673 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05306674 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006675 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006676 I915_WRITE(GEN6_RC_SLEEP, 0);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006677 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006678
6679 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006680 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006681 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
Chris Wilsondc979972016-05-10 14:10:04 +01006682 intel_print_rc6_info(dev_priv, rc6_mask);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01006683
6684 I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE |
6685 GEN7_RC_CTL_TO_MODE |
6686 rc6_mask);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006687
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006688 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6689}
6690
6691static void gen8_enable_rps(struct drm_i915_private *dev_priv)
6692{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006693 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6694
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006695 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6696
6697 /* 1 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006698 I915_WRITE(GEN6_RPNSWREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006699 HSW_FREQUENCY(rps->rp1_freq));
Ben Widawskyf9bdc582014-03-31 17:16:41 -07006700 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006701 HSW_FREQUENCY(rps->rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02006702 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
6703 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006704
Daniel Vetter7526ed72014-09-29 15:07:19 +02006705 /* Docs recommend 900MHz, and 300 MHz respectively */
6706 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006707 rps->max_freq_softlimit << 24 |
6708 rps->min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006709
Daniel Vetter7526ed72014-09-29 15:07:19 +02006710 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
6711 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
6712 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
6713 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006714
Daniel Vetter7526ed72014-09-29 15:07:19 +02006715 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006716
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01006717 /* 2: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02006718 I915_WRITE(GEN6_RP_CONTROL,
6719 GEN6_RP_MEDIA_TURBO |
6720 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6721 GEN6_RP_MEDIA_IS_GFX |
6722 GEN6_RP_ENABLE |
6723 GEN6_RP_UP_BUSY_AVG |
6724 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006725
Chris Wilson3a45b052016-07-13 09:10:32 +01006726 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006727
Mika Kuoppala59bad942015-01-16 11:34:40 +02006728 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07006729}
6730
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006731static void gen6_enable_rc6(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006732{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006733 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05306734 enum intel_engine_id id;
Chris Wilson99ac9612016-07-13 09:10:34 +01006735 u32 rc6vids, rc6_mask = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006736 u32 gtfifodbg;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006737 int rc6_mode;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00006738 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006739
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006740 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006741
6742 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03006743 gtfifodbg = I915_READ(GTFIFODBG);
6744 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006745 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
6746 I915_WRITE(GTFIFODBG, gtfifodbg);
6747 }
6748
Mika Kuoppala59bad942015-01-16 11:34:40 +02006749 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006750
6751 /* disable the counters and set deterministic thresholds */
6752 I915_WRITE(GEN6_RC_CONTROL, 0);
6753
6754 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
6755 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
6756 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
6757 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
6758 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
6759
Akash Goel3b3f1652016-10-13 22:44:48 +05306760 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00006761 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006762
6763 I915_WRITE(GEN6_RC_SLEEP, 0);
6764 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01006765 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07006766 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
6767 else
6768 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08006769 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006770 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
6771
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006772 /* Check if we are enabling RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01006773 rc6_mode = intel_rc6_enabled();
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006774 if (rc6_mode & INTEL_RC6_ENABLE)
6775 rc6_mask |= GEN6_RC_CTL_RC6_ENABLE;
6776
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006777 /* We don't use those on Haswell */
Chris Wilsondc979972016-05-10 14:10:04 +01006778 if (!IS_HASWELL(dev_priv)) {
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006779 if (rc6_mode & INTEL_RC6p_ENABLE)
6780 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006781
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03006782 if (rc6_mode & INTEL_RC6pp_ENABLE)
6783 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
6784 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006785
Chris Wilsondc979972016-05-10 14:10:04 +01006786 intel_print_rc6_info(dev_priv, rc6_mask);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006787
6788 I915_WRITE(GEN6_RC_CONTROL,
6789 rc6_mask |
6790 GEN6_RC_CTL_EI_MODE(1) |
6791 GEN6_RC_CTL_HW_ENABLE);
6792
Ben Widawsky31643d52012-09-26 10:34:01 -07006793 rc6vids = 0;
6794 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01006795 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006796 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01006797 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07006798 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
6799 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
6800 rc6vids &= 0xffff00;
6801 rc6vids |= GEN6_ENCODE_RC6_VID(450);
6802 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
6803 if (ret)
6804 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
6805 }
6806
Mika Kuoppala59bad942015-01-16 11:34:40 +02006807 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006808}
6809
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006810static void gen6_enable_rps(struct drm_i915_private *dev_priv)
6811{
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006812 /* Here begins a magic sequence of register writes to enable
6813 * auto-downclocking.
6814 *
6815 * Perhaps there might be some value in exposing these to
6816 * userspace...
6817 */
6818 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
6819
6820 /* Power down if completely idle for over 50ms */
6821 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
6822 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
6823
6824 reset_rps(dev_priv, gen6_set_rps);
6825
6826 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
6827}
6828
Chris Wilsonfb7404e2016-07-13 09:10:38 +01006829static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006830{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006831 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006832 int min_freq = 15;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006833 unsigned int gpu_freq;
6834 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306835 unsigned int max_gpu_freq, min_gpu_freq;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006836 int scaling_factor = 180;
Ben Widawskyeda79642013-10-07 17:15:48 -03006837 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006838
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006839 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02006840
Ben Widawskyeda79642013-10-07 17:15:48 -03006841 policy = cpufreq_cpu_get(0);
6842 if (policy) {
6843 max_ia_freq = policy->cpuinfo.max_freq;
6844 cpufreq_cpu_put(policy);
6845 } else {
6846 /*
6847 * Default to measured freq if none found, PCU will ensure we
6848 * don't go over
6849 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006850 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03006851 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006852
6853 /* Convert from kHz to MHz */
6854 max_ia_freq /= 1000;
6855
Ben Widawsky153b4b952013-10-22 22:05:09 -07006856 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07006857 /* convert DDR frequency from units of 266.6MHz to bandwidth */
6858 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006859
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006860 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306861 /* Convert GT frequency to 50 HZ units */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006862 min_gpu_freq = rps->min_freq / GEN9_FREQ_SCALER;
6863 max_gpu_freq = rps->max_freq / GEN9_FREQ_SCALER;
Akash Goel4c8c7742015-06-29 14:50:20 +05306864 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006865 min_gpu_freq = rps->min_freq;
6866 max_gpu_freq = rps->max_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05306867 }
6868
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006869 /*
6870 * For each potential GPU frequency, load a ring frequency we'd like
6871 * to use for memory access. We do this by specifying the IA frequency
6872 * the PCU should use as a reference to determine the ring frequency.
6873 */
Akash Goel4c8c7742015-06-29 14:50:20 +05306874 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
6875 int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01006876 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006877
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006878 if (IS_GEN9_BC(dev_priv) || IS_CANNONLAKE(dev_priv)) {
Akash Goel4c8c7742015-06-29 14:50:20 +05306879 /*
6880 * ring_freq = 2 * GT. ring_freq is in 100MHz units
6881 * No floor required for ring frequency on SKL.
6882 */
6883 ring_freq = gpu_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006884 } else if (INTEL_INFO(dev_priv)->gen >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07006885 /* max(2 * GT, DDR). NB: GT is 50MHz units */
6886 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01006887 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07006888 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01006889 ring_freq = max(min_ring_freq, ring_freq);
6890 /* leave ia_freq as the default, chosen by cpufreq */
6891 } else {
6892 /* On older processors, there is no separate ring
6893 * clock domain, so in order to boost the bandwidth
6894 * of the ring, we need to upclock the CPU (ia_freq).
6895 *
6896 * For GPU frequencies less than 750MHz,
6897 * just use the lowest ring freq.
6898 */
6899 if (gpu_freq < min_freq)
6900 ia_freq = 800;
6901 else
6902 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
6903 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
6904 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006905
Ben Widawsky42c05262012-09-26 10:34:00 -07006906 sandybridge_pcode_write(dev_priv,
6907 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01006908 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
6909 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
6910 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006911 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006912}
6913
Ville Syrjälä03af2042014-06-28 02:03:53 +03006914static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05306915{
6916 u32 val, rp0;
6917
Jani Nikula5b5929c2015-10-07 11:17:46 +03006918 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05306919
Imre Deak43b67992016-08-31 19:13:02 +03006920 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03006921 case 8:
6922 /* (2 * 4) config */
6923 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
6924 break;
6925 case 12:
6926 /* (2 * 6) config */
6927 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
6928 break;
6929 case 16:
6930 /* (2 * 8) config */
6931 default:
6932 /* Setting (2 * 8) Min RP0 for any other combination */
6933 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
6934 break;
Deepak S095acd52015-01-17 11:05:59 +05306935 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03006936
6937 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
6938
Deepak S2b6b3a02014-05-27 15:59:30 +05306939 return rp0;
6940}
6941
6942static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6943{
6944 u32 val, rpe;
6945
6946 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
6947 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
6948
6949 return rpe;
6950}
6951
Deepak S7707df42014-07-12 18:46:14 +05306952static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
6953{
6954 u32 val, rp1;
6955
Jani Nikula5b5929c2015-10-07 11:17:46 +03006956 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
6957 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
6958
Deepak S7707df42014-07-12 18:46:14 +05306959 return rp1;
6960}
6961
Deepak S96676fe2016-08-12 18:46:41 +05306962static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
6963{
6964 u32 val, rpn;
6965
6966 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
6967 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
6968 FB_GFX_FREQ_FUSE_MASK);
6969
6970 return rpn;
6971}
6972
Deepak Sf8f2b002014-07-10 13:16:21 +05306973static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
6974{
6975 u32 val, rp1;
6976
6977 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
6978
6979 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
6980
6981 return rp1;
6982}
6983
Ville Syrjälä03af2042014-06-28 02:03:53 +03006984static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006985{
6986 u32 val, rp0;
6987
Jani Nikula64936252013-05-22 15:36:20 +03006988 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07006989
6990 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
6991 /* Clamp to max */
6992 rp0 = min_t(u32, rp0, 0xea);
6993
6994 return rp0;
6995}
6996
6997static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
6998{
6999 u32 val, rpe;
7000
Jani Nikula64936252013-05-22 15:36:20 +03007001 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007002 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03007003 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007004 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
7005
7006 return rpe;
7007}
7008
Ville Syrjälä03af2042014-06-28 02:03:53 +03007009static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007010{
Imre Deak36146032014-12-04 18:39:35 +02007011 u32 val;
7012
7013 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
7014 /*
7015 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
7016 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
7017 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
7018 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
7019 * to make sure it matches what Punit accepts.
7020 */
7021 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007022}
7023
Imre Deakae484342014-03-31 15:10:44 +03007024/* Check that the pctx buffer wasn't move under us. */
7025static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
7026{
7027 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7028
7029 WARN_ON(pctx_addr != dev_priv->mm.stolen_base +
7030 dev_priv->vlv_pctx->stolen->start);
7031}
7032
Deepak S38807742014-05-23 21:00:15 +05307033
7034/* Check that the pcbr address is not empty. */
7035static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
7036{
7037 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7038
7039 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
7040}
7041
Chris Wilsondc979972016-05-10 14:10:04 +01007042static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307043{
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007044 struct i915_ggtt *ggtt = &dev_priv->ggtt;
Joonas Lahtinen72e96d62016-03-30 16:57:10 +03007045 unsigned long pctx_paddr, paddr;
Deepak S38807742014-05-23 21:00:15 +05307046 u32 pcbr;
7047 int pctx_size = 32*1024;
7048
Deepak S38807742014-05-23 21:00:15 +05307049 pcbr = I915_READ(VLV_PCBR);
7050 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007051 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Deepak S38807742014-05-23 21:00:15 +05307052 paddr = (dev_priv->mm.stolen_base +
Joonas Lahtinen62106b42016-03-18 10:42:57 +02007053 (ggtt->stolen_size - pctx_size));
Deepak S38807742014-05-23 21:00:15 +05307054
7055 pctx_paddr = (paddr & (~4095));
7056 I915_WRITE(VLV_PCBR, pctx_paddr);
7057 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007058
7059 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05307060}
7061
Chris Wilsondc979972016-05-10 14:10:04 +01007062static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007063{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007064 struct drm_i915_gem_object *pctx;
7065 unsigned long pctx_paddr;
7066 u32 pcbr;
7067 int pctx_size = 24*1024;
7068
7069 pcbr = I915_READ(VLV_PCBR);
7070 if (pcbr) {
7071 /* BIOS set it up already, grab the pre-alloc'd space */
7072 int pcbr_offset;
7073
7074 pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007075 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007076 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02007077 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007078 pctx_size);
7079 goto out;
7080 }
7081
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007082 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
7083
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007084 /*
7085 * From the Gunit register HAS:
7086 * The Gfx driver is expected to program this register and ensure
7087 * proper allocation within Gfx stolen memory. For example, this
7088 * register should be programmed such than the PCBR range does not
7089 * overlap with other ranges, such as the frame buffer, protected
7090 * memory, or any other relevant ranges.
7091 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007092 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007093 if (!pctx) {
7094 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00007095 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007096 }
7097
7098 pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start;
7099 I915_WRITE(VLV_PCBR, pctx_paddr);
7100
7101out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007102 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007103 dev_priv->vlv_pctx = pctx;
7104}
7105
Chris Wilsondc979972016-05-10 14:10:04 +01007106static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007107{
Imre Deakae484342014-03-31 15:10:44 +03007108 if (WARN_ON(!dev_priv->vlv_pctx))
7109 return;
7110
Chris Wilsonf0cd5182016-10-28 13:58:43 +01007111 i915_gem_object_put(dev_priv->vlv_pctx);
Imre Deakae484342014-03-31 15:10:44 +03007112 dev_priv->vlv_pctx = NULL;
7113}
7114
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007115static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
7116{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007117 dev_priv->gt_pm.rps.gpll_ref_freq =
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007118 vlv_get_cck_clock(dev_priv, "GPLL ref",
7119 CCK_GPLL_CLOCK_CONTROL,
7120 dev_priv->czclk_freq);
7121
7122 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007123 dev_priv->gt_pm.rps.gpll_ref_freq);
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007124}
7125
Chris Wilsondc979972016-05-10 14:10:04 +01007126static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007127{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007128 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007129 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03007130
Chris Wilsondc979972016-05-10 14:10:04 +01007131 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007132
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007133 vlv_init_gpll_ref_freq(dev_priv);
7134
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007135 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7136 switch ((val >> 6) & 3) {
7137 case 0:
7138 case 1:
7139 dev_priv->mem_freq = 800;
7140 break;
7141 case 2:
7142 dev_priv->mem_freq = 1066;
7143 break;
7144 case 3:
7145 dev_priv->mem_freq = 1333;
7146 break;
7147 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007148 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007149
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007150 rps->max_freq = valleyview_rps_max_freq(dev_priv);
7151 rps->rp0_freq = rps->max_freq;
Imre Deak4e805192014-04-14 20:24:41 +03007152 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007153 intel_gpu_freq(dev_priv, rps->max_freq),
7154 rps->max_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007155
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007156 rps->efficient_freq = valleyview_rps_rpe_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007157 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007158 intel_gpu_freq(dev_priv, rps->efficient_freq),
7159 rps->efficient_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007160
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007161 rps->rp1_freq = valleyview_rps_guar_freq(dev_priv);
Deepak Sf8f2b002014-07-10 13:16:21 +05307162 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007163 intel_gpu_freq(dev_priv, rps->rp1_freq),
7164 rps->rp1_freq);
Deepak Sf8f2b002014-07-10 13:16:21 +05307165
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007166 rps->min_freq = valleyview_rps_min_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007167 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007168 intel_gpu_freq(dev_priv, rps->min_freq),
7169 rps->min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007170}
7171
Chris Wilsondc979972016-05-10 14:10:04 +01007172static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307173{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007174 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007175 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05307176
Chris Wilsondc979972016-05-10 14:10:04 +01007177 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307178
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007179 vlv_init_gpll_ref_freq(dev_priv);
7180
Ville Syrjäläa5805162015-05-26 20:42:30 +03007181 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007182 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007183 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007184
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007185 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007186 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007187 dev_priv->mem_freq = 2000;
7188 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007189 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007190 dev_priv->mem_freq = 1600;
7191 break;
7192 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007193 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007194
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007195 rps->max_freq = cherryview_rps_max_freq(dev_priv);
7196 rps->rp0_freq = rps->max_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05307197 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007198 intel_gpu_freq(dev_priv, rps->max_freq),
7199 rps->max_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307200
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007201 rps->efficient_freq = cherryview_rps_rpe_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307202 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007203 intel_gpu_freq(dev_priv, rps->efficient_freq),
7204 rps->efficient_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307205
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007206 rps->rp1_freq = cherryview_rps_guar_freq(dev_priv);
Deepak S7707df42014-07-12 18:46:14 +05307207 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007208 intel_gpu_freq(dev_priv, rps->rp1_freq),
7209 rps->rp1_freq);
Deepak S7707df42014-07-12 18:46:14 +05307210
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007211 rps->min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307212 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007213 intel_gpu_freq(dev_priv, rps->min_freq),
7214 rps->min_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307215
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007216 WARN_ONCE((rps->max_freq | rps->efficient_freq | rps->rp1_freq |
7217 rps->min_freq) & 1,
Ville Syrjälä1c147622014-08-18 14:42:43 +03007218 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05307219}
7220
Chris Wilsondc979972016-05-10 14:10:04 +01007221static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007222{
Chris Wilsondc979972016-05-10 14:10:04 +01007223 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007224}
7225
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007226static void cherryview_enable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307227{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007228 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307229 enum intel_engine_id id;
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007230 u32 gtfifodbg, rc6_mode = 0, pcbr;
Deepak S38807742014-05-23 21:00:15 +05307231
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007232 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
7233 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05307234 if (gtfifodbg) {
7235 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7236 gtfifodbg);
7237 I915_WRITE(GTFIFODBG, gtfifodbg);
7238 }
7239
7240 cherryview_check_pctx(dev_priv);
7241
7242 /* 1a & 1b: Get forcewake during program sequence. Although the driver
7243 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007244 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307245
Ville Syrjälä160614a2015-01-19 13:50:47 +02007246 /* Disable RC states. */
7247 I915_WRITE(GEN6_RC_CONTROL, 0);
7248
Deepak S38807742014-05-23 21:00:15 +05307249 /* 2a: Program RC6 thresholds.*/
7250 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7251 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7252 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
7253
Akash Goel3b3f1652016-10-13 22:44:48 +05307254 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007255 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05307256 I915_WRITE(GEN6_RC_SLEEP, 0);
7257
Deepak Sf4f71c72015-03-28 15:23:35 +05307258 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
7259 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05307260
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007261 /* Allows RC6 residency counter to work */
Deepak S38807742014-05-23 21:00:15 +05307262 I915_WRITE(VLV_COUNTER_CONTROL,
7263 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7264 VLV_MEDIA_RC6_COUNT_EN |
7265 VLV_RENDER_RC6_COUNT_EN));
7266
7267 /* For now we assume BIOS is allocating and populating the PCBR */
7268 pcbr = I915_READ(VLV_PCBR);
7269
Deepak S38807742014-05-23 21:00:15 +05307270 /* 3: Enable RC6 */
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007271 if ((intel_rc6_enabled() & INTEL_RC6_ENABLE) &&
Chris Wilsondc979972016-05-10 14:10:04 +01007272 (pcbr >> VLV_PCBR_ADDR_SHIFT))
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02007273 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05307274
7275 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7276
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007277 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7278}
7279
7280static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
7281{
7282 u32 val;
7283
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007284 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7285
7286 /* 1: Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02007287 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05307288 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7289 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7290 I915_WRITE(GEN6_RP_UP_EI, 66000);
7291 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7292
7293 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7294
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007295 /* 2: Enable RPS */
Deepak S2b6b3a02014-05-27 15:59:30 +05307296 I915_WRITE(GEN6_RP_CONTROL,
7297 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02007298 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05307299 GEN6_RP_ENABLE |
7300 GEN6_RP_UP_BUSY_AVG |
7301 GEN6_RP_DOWN_IDLE_AVG);
7302
Deepak S3ef62342015-04-29 08:36:24 +05307303 /* Setting Fixed Bias */
7304 val = VLV_OVERRIDE_EN |
7305 VLV_SOC_TDP_EN |
7306 CHV_BIAS_CPU_50_SOC_50;
7307 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7308
Deepak S2b6b3a02014-05-27 15:59:30 +05307309 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7310
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007311 /* RPS code assumes GPLL is used */
7312 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7313
Jani Nikula742f4912015-09-03 11:16:09 +03007314 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05307315 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7316
Chris Wilson3a45b052016-07-13 09:10:32 +01007317 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05307318
Mika Kuoppala59bad942015-01-16 11:34:40 +02007319 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307320}
7321
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007322static void valleyview_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007323{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007324 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307325 enum intel_engine_id id;
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007326 u32 gtfifodbg, rc6_mode = 0;
Jesse Barnes0a073b82013-04-17 15:54:58 -07007327
Imre Deakae484342014-03-31 15:10:44 +03007328 valleyview_check_pctx(dev_priv);
7329
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007330 gtfifodbg = I915_READ(GTFIFODBG);
7331 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07007332 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7333 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007334 I915_WRITE(GTFIFODBG, gtfifodbg);
7335 }
7336
Mika Kuoppala59bad942015-01-16 11:34:40 +02007337 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007338
Ville Syrjälä160614a2015-01-19 13:50:47 +02007339 /* Disable RC states. */
7340 I915_WRITE(GEN6_RC_CONTROL, 0);
7341
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007342 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
7343 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7344 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7345
7346 for_each_engine(engine, dev_priv, id)
7347 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
7348
7349 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
7350
7351 /* Allows RC6 residency counter to work */
7352 I915_WRITE(VLV_COUNTER_CONTROL,
7353 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7354 VLV_MEDIA_RC0_COUNT_EN |
7355 VLV_RENDER_RC0_COUNT_EN |
7356 VLV_MEDIA_RC6_COUNT_EN |
7357 VLV_RENDER_RC6_COUNT_EN));
7358
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01007359 if (intel_rc6_enabled() & INTEL_RC6_ENABLE)
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007360 rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL;
7361
7362 intel_print_rc6_info(dev_priv, rc6_mode);
7363
7364 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7365
7366 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7367}
7368
7369static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
7370{
7371 u32 val;
7372
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007373 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7374
Ville Syrjäläcad725f2015-01-19 13:50:48 +02007375 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007376 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7377 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7378 I915_WRITE(GEN6_RP_UP_EI, 66000);
7379 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7380
7381 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7382
7383 I915_WRITE(GEN6_RP_CONTROL,
7384 GEN6_RP_MEDIA_TURBO |
7385 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7386 GEN6_RP_MEDIA_IS_GFX |
7387 GEN6_RP_ENABLE |
7388 GEN6_RP_UP_BUSY_AVG |
7389 GEN6_RP_DOWN_IDLE_CONT);
7390
Deepak S3ef62342015-04-29 08:36:24 +05307391 /* Setting Fixed Bias */
7392 val = VLV_OVERRIDE_EN |
7393 VLV_SOC_TDP_EN |
7394 VLV_BIAS_CPU_125_SOC_875;
7395 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7396
Jani Nikula64936252013-05-22 15:36:20 +03007397 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007398
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007399 /* RPS code assumes GPLL is used */
7400 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7401
Jani Nikula742f4912015-09-03 11:16:09 +03007402 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07007403 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7404
Chris Wilson3a45b052016-07-13 09:10:32 +01007405 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007406
Mika Kuoppala59bad942015-01-16 11:34:40 +02007407 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007408}
7409
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007410static unsigned long intel_pxfreq(u32 vidfreq)
7411{
7412 unsigned long freq;
7413 int div = (vidfreq & 0x3f0000) >> 16;
7414 int post = (vidfreq & 0x3000) >> 12;
7415 int pre = (vidfreq & 0x7);
7416
7417 if (!pre)
7418 return 0;
7419
7420 freq = ((div * 133333) / ((1<<post) * pre));
7421
7422 return freq;
7423}
7424
Daniel Vettereb48eb02012-04-26 23:28:12 +02007425static const struct cparams {
7426 u16 i;
7427 u16 t;
7428 u16 m;
7429 u16 c;
7430} cparams[] = {
7431 { 1, 1333, 301, 28664 },
7432 { 1, 1066, 294, 24460 },
7433 { 1, 800, 294, 25192 },
7434 { 0, 1333, 276, 27605 },
7435 { 0, 1066, 276, 27605 },
7436 { 0, 800, 231, 23784 },
7437};
7438
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007439static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007440{
7441 u64 total_count, diff, ret;
7442 u32 count1, count2, count3, m = 0, c = 0;
7443 unsigned long now = jiffies_to_msecs(jiffies), diff1;
7444 int i;
7445
Chris Wilson67520412017-03-02 13:28:01 +00007446 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007447
Daniel Vetter20e4d402012-08-08 23:35:39 +02007448 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007449
7450 /* Prevent division-by-zero if we are asking too fast.
7451 * Also, we don't get interesting results if we are polling
7452 * faster than once in 10ms, so just return the saved value
7453 * in such cases.
7454 */
7455 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02007456 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007457
7458 count1 = I915_READ(DMIEC);
7459 count2 = I915_READ(DDREC);
7460 count3 = I915_READ(CSIEC);
7461
7462 total_count = count1 + count2 + count3;
7463
7464 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02007465 if (total_count < dev_priv->ips.last_count1) {
7466 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007467 diff += total_count;
7468 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007469 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007470 }
7471
7472 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007473 if (cparams[i].i == dev_priv->ips.c_m &&
7474 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02007475 m = cparams[i].m;
7476 c = cparams[i].c;
7477 break;
7478 }
7479 }
7480
7481 diff = div_u64(diff, diff1);
7482 ret = ((m * diff) + c);
7483 ret = div_u64(ret, 10);
7484
Daniel Vetter20e4d402012-08-08 23:35:39 +02007485 dev_priv->ips.last_count1 = total_count;
7486 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007487
Daniel Vetter20e4d402012-08-08 23:35:39 +02007488 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007489
7490 return ret;
7491}
7492
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007493unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
7494{
7495 unsigned long val;
7496
Chris Wilsondc979972016-05-10 14:10:04 +01007497 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007498 return 0;
7499
7500 spin_lock_irq(&mchdev_lock);
7501
7502 val = __i915_chipset_val(dev_priv);
7503
7504 spin_unlock_irq(&mchdev_lock);
7505
7506 return val;
7507}
7508
Daniel Vettereb48eb02012-04-26 23:28:12 +02007509unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
7510{
7511 unsigned long m, x, b;
7512 u32 tsfs;
7513
7514 tsfs = I915_READ(TSFS);
7515
7516 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
7517 x = I915_READ8(TR1);
7518
7519 b = tsfs & TSFS_INTR_MASK;
7520
7521 return ((m * x) / 127) - b;
7522}
7523
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007524static int _pxvid_to_vd(u8 pxvid)
7525{
7526 if (pxvid == 0)
7527 return 0;
7528
7529 if (pxvid >= 8 && pxvid < 31)
7530 pxvid = 31;
7531
7532 return (pxvid + 2) * 125;
7533}
7534
7535static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007536{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007537 const int vd = _pxvid_to_vd(pxvid);
7538 const int vm = vd - 1125;
7539
Chris Wilsondc979972016-05-10 14:10:04 +01007540 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007541 return vm > 0 ? vm : 0;
7542
7543 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007544}
7545
Daniel Vetter02d71952012-08-09 16:44:54 +02007546static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007547{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007548 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007549 u32 count;
7550
Chris Wilson67520412017-03-02 13:28:01 +00007551 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007552
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00007553 now = ktime_get_raw_ns();
7554 diffms = now - dev_priv->ips.last_time2;
7555 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007556
7557 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02007558 if (!diffms)
7559 return;
7560
7561 count = I915_READ(GFXEC);
7562
Daniel Vetter20e4d402012-08-08 23:35:39 +02007563 if (count < dev_priv->ips.last_count2) {
7564 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007565 diff += count;
7566 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007567 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007568 }
7569
Daniel Vetter20e4d402012-08-08 23:35:39 +02007570 dev_priv->ips.last_count2 = count;
7571 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007572
7573 /* More magic constants... */
7574 diff = diff * 1181;
7575 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02007576 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007577}
7578
Daniel Vetter02d71952012-08-09 16:44:54 +02007579void i915_update_gfx_val(struct drm_i915_private *dev_priv)
7580{
Chris Wilsondc979972016-05-10 14:10:04 +01007581 if (INTEL_INFO(dev_priv)->gen != 5)
Daniel Vetter02d71952012-08-09 16:44:54 +02007582 return;
7583
Daniel Vetter92703882012-08-09 16:46:01 +02007584 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007585
7586 __i915_update_gfx_val(dev_priv);
7587
Daniel Vetter92703882012-08-09 16:46:01 +02007588 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007589}
7590
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007591static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007592{
7593 unsigned long t, corr, state1, corr2, state2;
7594 u32 pxvid, ext_v;
7595
Chris Wilson67520412017-03-02 13:28:01 +00007596 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007597
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007598 pxvid = I915_READ(PXVFREQ(dev_priv->gt_pm.rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02007599 pxvid = (pxvid >> 24) & 0x7f;
7600 ext_v = pvid_to_extvid(dev_priv, pxvid);
7601
7602 state1 = ext_v;
7603
7604 t = i915_mch_val(dev_priv);
7605
7606 /* Revel in the empirically derived constants */
7607
7608 /* Correction factor in 1/100000 units */
7609 if (t > 80)
7610 corr = ((t * 2349) + 135940);
7611 else if (t >= 50)
7612 corr = ((t * 964) + 29317);
7613 else /* < 50 */
7614 corr = ((t * 301) + 1004);
7615
7616 corr = corr * ((150142 * state1) / 10000 - 78642);
7617 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02007618 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007619
7620 state2 = (corr2 * state1) / 10000;
7621 state2 /= 100; /* convert to mW */
7622
Daniel Vetter02d71952012-08-09 16:44:54 +02007623 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007624
Daniel Vetter20e4d402012-08-08 23:35:39 +02007625 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007626}
7627
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007628unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
7629{
7630 unsigned long val;
7631
Chris Wilsondc979972016-05-10 14:10:04 +01007632 if (INTEL_INFO(dev_priv)->gen != 5)
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007633 return 0;
7634
7635 spin_lock_irq(&mchdev_lock);
7636
7637 val = __i915_gfx_val(dev_priv);
7638
7639 spin_unlock_irq(&mchdev_lock);
7640
7641 return val;
7642}
7643
Daniel Vettereb48eb02012-04-26 23:28:12 +02007644/**
7645 * i915_read_mch_val - return value for IPS use
7646 *
7647 * Calculate and return a value for the IPS driver to use when deciding whether
7648 * we have thermal and power headroom to increase CPU or GPU power budget.
7649 */
7650unsigned long i915_read_mch_val(void)
7651{
7652 struct drm_i915_private *dev_priv;
7653 unsigned long chipset_val, graphics_val, ret = 0;
7654
Daniel Vetter92703882012-08-09 16:46:01 +02007655 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007656 if (!i915_mch_dev)
7657 goto out_unlock;
7658 dev_priv = i915_mch_dev;
7659
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007660 chipset_val = __i915_chipset_val(dev_priv);
7661 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007662
7663 ret = chipset_val + graphics_val;
7664
7665out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007666 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007667
7668 return ret;
7669}
7670EXPORT_SYMBOL_GPL(i915_read_mch_val);
7671
7672/**
7673 * i915_gpu_raise - raise GPU frequency limit
7674 *
7675 * Raise the limit; IPS indicates we have thermal headroom.
7676 */
7677bool i915_gpu_raise(void)
7678{
7679 struct drm_i915_private *dev_priv;
7680 bool ret = true;
7681
Daniel Vetter92703882012-08-09 16:46:01 +02007682 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007683 if (!i915_mch_dev) {
7684 ret = false;
7685 goto out_unlock;
7686 }
7687 dev_priv = i915_mch_dev;
7688
Daniel Vetter20e4d402012-08-08 23:35:39 +02007689 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
7690 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007691
7692out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007693 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007694
7695 return ret;
7696}
7697EXPORT_SYMBOL_GPL(i915_gpu_raise);
7698
7699/**
7700 * i915_gpu_lower - lower GPU frequency limit
7701 *
7702 * IPS indicates we're close to a thermal limit, so throttle back the GPU
7703 * frequency maximum.
7704 */
7705bool i915_gpu_lower(void)
7706{
7707 struct drm_i915_private *dev_priv;
7708 bool ret = true;
7709
Daniel Vetter92703882012-08-09 16:46:01 +02007710 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007711 if (!i915_mch_dev) {
7712 ret = false;
7713 goto out_unlock;
7714 }
7715 dev_priv = i915_mch_dev;
7716
Daniel Vetter20e4d402012-08-08 23:35:39 +02007717 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
7718 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007719
7720out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007721 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007722
7723 return ret;
7724}
7725EXPORT_SYMBOL_GPL(i915_gpu_lower);
7726
7727/**
7728 * i915_gpu_busy - indicate GPU business to IPS
7729 *
7730 * Tell the IPS driver whether or not the GPU is busy.
7731 */
7732bool i915_gpu_busy(void)
7733{
Daniel Vettereb48eb02012-04-26 23:28:12 +02007734 bool ret = false;
7735
Daniel Vetter92703882012-08-09 16:46:01 +02007736 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01007737 if (i915_mch_dev)
7738 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02007739 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007740
7741 return ret;
7742}
7743EXPORT_SYMBOL_GPL(i915_gpu_busy);
7744
7745/**
7746 * i915_gpu_turbo_disable - disable graphics turbo
7747 *
7748 * Disable graphics turbo by resetting the max frequency and setting the
7749 * current frequency to the default.
7750 */
7751bool i915_gpu_turbo_disable(void)
7752{
7753 struct drm_i915_private *dev_priv;
7754 bool ret = true;
7755
Daniel Vetter92703882012-08-09 16:46:01 +02007756 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007757 if (!i915_mch_dev) {
7758 ret = false;
7759 goto out_unlock;
7760 }
7761 dev_priv = i915_mch_dev;
7762
Daniel Vetter20e4d402012-08-08 23:35:39 +02007763 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007764
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01007765 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02007766 ret = false;
7767
7768out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02007769 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007770
7771 return ret;
7772}
7773EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
7774
7775/**
7776 * Tells the intel_ips driver that the i915 driver is now loaded, if
7777 * IPS got loaded first.
7778 *
7779 * This awkward dance is so that neither module has to depend on the
7780 * other in order for IPS to do the appropriate communication of
7781 * GPU turbo limits to i915.
7782 */
7783static void
7784ips_ping_for_i915_load(void)
7785{
7786 void (*link)(void);
7787
7788 link = symbol_get(ips_link_to_i915_driver);
7789 if (link) {
7790 link();
7791 symbol_put(ips_link_to_i915_driver);
7792 }
7793}
7794
7795void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
7796{
Daniel Vetter02d71952012-08-09 16:44:54 +02007797 /* We only register the i915 ips part with intel-ips once everything is
7798 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02007799 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007800 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02007801 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007802
7803 ips_ping_for_i915_load();
7804}
7805
7806void intel_gpu_ips_teardown(void)
7807{
Daniel Vetter92703882012-08-09 16:46:01 +02007808 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007809 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02007810 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02007811}
Deepak S76c3552f2014-01-30 23:08:16 +05307812
Chris Wilsondc979972016-05-10 14:10:04 +01007813static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007814{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007815 u32 lcfuse;
7816 u8 pxw[16];
7817 int i;
7818
7819 /* Disable to program */
7820 I915_WRITE(ECR, 0);
7821 POSTING_READ(ECR);
7822
7823 /* Program energy weights for various events */
7824 I915_WRITE(SDEW, 0x15040d00);
7825 I915_WRITE(CSIEW0, 0x007f0000);
7826 I915_WRITE(CSIEW1, 0x1e220004);
7827 I915_WRITE(CSIEW2, 0x04000004);
7828
7829 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007830 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007831 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007832 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007833
7834 /* Program P-state weights to account for frequency power adjustment */
7835 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03007836 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007837 unsigned long freq = intel_pxfreq(pxvidfreq);
7838 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
7839 PXVFREQ_PX_SHIFT;
7840 unsigned long val;
7841
7842 val = vid * vid;
7843 val *= (freq / 1000);
7844 val *= 255;
7845 val /= (127*127*900);
7846 if (val > 0xff)
7847 DRM_ERROR("bad pxval: %ld\n", val);
7848 pxw[i] = val;
7849 }
7850 /* Render standby states get 0 weight */
7851 pxw[14] = 0;
7852 pxw[15] = 0;
7853
7854 for (i = 0; i < 4; i++) {
7855 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
7856 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03007857 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007858 }
7859
7860 /* Adjust magic regs to magic values (more experimental results) */
7861 I915_WRITE(OGW0, 0);
7862 I915_WRITE(OGW1, 0);
7863 I915_WRITE(EG0, 0x00007f00);
7864 I915_WRITE(EG1, 0x0000000e);
7865 I915_WRITE(EG2, 0x000e0000);
7866 I915_WRITE(EG3, 0x68000300);
7867 I915_WRITE(EG4, 0x42000000);
7868 I915_WRITE(EG5, 0x00140031);
7869 I915_WRITE(EG6, 0);
7870 I915_WRITE(EG7, 0);
7871
7872 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03007873 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007874
7875 /* Enable PMON + select events */
7876 I915_WRITE(ECR, 0x80000019);
7877
7878 lcfuse = I915_READ(LCFUSE02);
7879
Daniel Vetter20e4d402012-08-08 23:35:39 +02007880 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007881}
7882
Chris Wilsondc979972016-05-10 14:10:04 +01007883void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007884{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007885 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7886
Imre Deakb268c692015-12-15 20:10:31 +02007887 /*
7888 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
7889 * requirement.
7890 */
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007891 if (!i915_modparams.enable_rc6) {
Imre Deakb268c692015-12-15 20:10:31 +02007892 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
7893 intel_runtime_pm_get(dev_priv);
7894 }
Imre Deake6069ca2014-04-18 16:01:02 +03007895
Chris Wilsonb5163db2016-08-10 13:58:24 +01007896 mutex_lock(&dev_priv->drm.struct_mutex);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007897 mutex_lock(&dev_priv->pcu_lock);
Chris Wilson773ea9a2016-07-13 09:10:33 +01007898
7899 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01007900 if (IS_CHERRYVIEW(dev_priv))
7901 cherryview_init_gt_powersave(dev_priv);
7902 else if (IS_VALLEYVIEW(dev_priv))
7903 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01007904 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01007905 gen6_init_rps_frequencies(dev_priv);
7906
7907 /* Derive initial user preferences/limits from the hardware limits */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007908 rps->idle_freq = rps->min_freq;
7909 rps->cur_freq = rps->idle_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007910
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007911 rps->max_freq_softlimit = rps->max_freq;
7912 rps->min_freq_softlimit = rps->min_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01007913
7914 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007915 rps->min_freq_softlimit =
Chris Wilson773ea9a2016-07-13 09:10:33 +01007916 max_t(int,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007917 rps->efficient_freq,
Chris Wilson773ea9a2016-07-13 09:10:33 +01007918 intel_freq_opcode(dev_priv, 450));
7919
Chris Wilson99ac9612016-07-13 09:10:34 +01007920 /* After setting max-softlimit, find the overclock max freq */
7921 if (IS_GEN6(dev_priv) ||
7922 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
7923 u32 params = 0;
7924
7925 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
7926 if (params & BIT(31)) { /* OC supported */
7927 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007928 (rps->max_freq & 0xff) * 50,
Chris Wilson99ac9612016-07-13 09:10:34 +01007929 (params & 0xff) * 50);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007930 rps->max_freq = params & 0xff;
Chris Wilson99ac9612016-07-13 09:10:34 +01007931 }
7932 }
7933
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007934 /* Finally allow us to boost to max by default */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007935 rps->boost_freq = rps->max_freq;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01007936
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007937 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb5163db2016-08-10 13:58:24 +01007938 mutex_unlock(&dev_priv->drm.struct_mutex);
Chris Wilson54b4f682016-07-21 21:16:19 +01007939
7940 intel_autoenable_gt_powersave(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007941}
7942
Chris Wilsondc979972016-05-10 14:10:04 +01007943void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007944{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03007945 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01007946 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02007947
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00007948 if (!i915_modparams.enable_rc6)
Imre Deakb268c692015-12-15 20:10:31 +02007949 intel_runtime_pm_put(dev_priv);
Imre Deakae484342014-03-31 15:10:44 +03007950}
7951
Chris Wilson54b4f682016-07-21 21:16:19 +01007952/**
7953 * intel_suspend_gt_powersave - suspend PM work and helper threads
7954 * @dev_priv: i915 device
7955 *
7956 * We don't want to disable RC6 or other features here, we just want
7957 * to make sure any work we've queued has finished and won't bother
7958 * us while we're suspended.
7959 */
7960void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
7961{
7962 if (INTEL_GEN(dev_priv) < 6)
7963 return;
7964
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007965 if (cancel_delayed_work_sync(&dev_priv->gt_pm.autoenable_work))
Chris Wilson54b4f682016-07-21 21:16:19 +01007966 intel_runtime_pm_put(dev_priv);
7967
7968 /* gen6_rps_idle() will be called later to disable interrupts */
7969}
7970
Chris Wilsonb7137e02016-07-13 09:10:37 +01007971void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
7972{
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007973 dev_priv->gt_pm.rps.enabled = true; /* force RPS disabling */
7974 dev_priv->gt_pm.rc6.enabled = true; /* force RC6 disabling */
Chris Wilsonb7137e02016-07-13 09:10:37 +01007975 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01007976
7977 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07007978}
7979
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007980static inline void intel_disable_llc_pstate(struct drm_i915_private *i915)
7981{
7982 lockdep_assert_held(&i915->pcu_lock);
7983
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007984 if (!i915->gt_pm.llc_pstate.enabled)
7985 return;
7986
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007987 /* Currently there is no HW configuration to be done to disable. */
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007988
7989 i915->gt_pm.llc_pstate.enabled = false;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01007990}
7991
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01007992static void intel_disable_rc6(struct drm_i915_private *dev_priv)
7993{
7994 lockdep_assert_held(&dev_priv->pcu_lock);
7995
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01007996 if (!dev_priv->gt_pm.rc6.enabled)
7997 return;
7998
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01007999 if (INTEL_GEN(dev_priv) >= 9)
8000 gen9_disable_rc6(dev_priv);
8001 else if (IS_CHERRYVIEW(dev_priv))
8002 cherryview_disable_rc6(dev_priv);
8003 else if (IS_VALLEYVIEW(dev_priv))
8004 valleyview_disable_rc6(dev_priv);
8005 else if (INTEL_GEN(dev_priv) >= 6)
8006 gen6_disable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008007
8008 dev_priv->gt_pm.rc6.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008009}
8010
8011static void intel_disable_rps(struct drm_i915_private *dev_priv)
8012{
8013 lockdep_assert_held(&dev_priv->pcu_lock);
8014
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008015 if (!dev_priv->gt_pm.rps.enabled)
8016 return;
8017
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008018 if (INTEL_GEN(dev_priv) >= 9)
8019 gen9_disable_rps(dev_priv);
8020 else if (IS_CHERRYVIEW(dev_priv))
8021 cherryview_disable_rps(dev_priv);
8022 else if (IS_VALLEYVIEW(dev_priv))
8023 valleyview_disable_rps(dev_priv);
8024 else if (INTEL_GEN(dev_priv) >= 6)
8025 gen6_disable_rps(dev_priv);
8026 else if (IS_IRONLAKE_M(dev_priv))
8027 ironlake_disable_drps(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008028
8029 dev_priv->gt_pm.rps.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008030}
8031
Chris Wilsondc979972016-05-10 14:10:04 +01008032void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008033{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008034 mutex_lock(&dev_priv->pcu_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008035
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008036 intel_disable_rc6(dev_priv);
8037 intel_disable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008038 if (HAS_LLC(dev_priv))
8039 intel_disable_llc_pstate(dev_priv);
8040
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008041 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008042}
8043
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008044static inline void intel_enable_llc_pstate(struct drm_i915_private *i915)
8045{
8046 lockdep_assert_held(&i915->pcu_lock);
8047
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008048 if (i915->gt_pm.llc_pstate.enabled)
8049 return;
8050
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008051 gen6_update_ring_freq(i915);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008052
8053 i915->gt_pm.llc_pstate.enabled = true;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008054}
8055
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008056static void intel_enable_rc6(struct drm_i915_private *dev_priv)
8057{
8058 lockdep_assert_held(&dev_priv->pcu_lock);
8059
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008060 if (dev_priv->gt_pm.rc6.enabled)
8061 return;
8062
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008063 if (IS_CHERRYVIEW(dev_priv))
8064 cherryview_enable_rc6(dev_priv);
8065 else if (IS_VALLEYVIEW(dev_priv))
8066 valleyview_enable_rc6(dev_priv);
8067 else if (INTEL_GEN(dev_priv) >= 9)
8068 gen9_enable_rc6(dev_priv);
8069 else if (IS_BROADWELL(dev_priv))
8070 gen8_enable_rc6(dev_priv);
8071 else if (INTEL_GEN(dev_priv) >= 6)
8072 gen6_enable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008073
8074 dev_priv->gt_pm.rc6.enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008075}
8076
8077static void intel_enable_rps(struct drm_i915_private *dev_priv)
8078{
8079 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8080
8081 lockdep_assert_held(&dev_priv->pcu_lock);
8082
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008083 if (rps->enabled)
8084 return;
8085
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008086 if (IS_CHERRYVIEW(dev_priv)) {
8087 cherryview_enable_rps(dev_priv);
8088 } else if (IS_VALLEYVIEW(dev_priv)) {
8089 valleyview_enable_rps(dev_priv);
8090 } else if (INTEL_GEN(dev_priv) >= 9) {
8091 gen9_enable_rps(dev_priv);
8092 } else if (IS_BROADWELL(dev_priv)) {
8093 gen8_enable_rps(dev_priv);
8094 } else if (INTEL_GEN(dev_priv) >= 6) {
8095 gen6_enable_rps(dev_priv);
8096 } else if (IS_IRONLAKE_M(dev_priv)) {
8097 ironlake_enable_drps(dev_priv);
8098 intel_init_emon(dev_priv);
8099 }
8100
8101 WARN_ON(rps->max_freq < rps->min_freq);
8102 WARN_ON(rps->idle_freq > rps->max_freq);
8103
8104 WARN_ON(rps->efficient_freq < rps->min_freq);
8105 WARN_ON(rps->efficient_freq > rps->max_freq);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008106
8107 rps->enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008108}
8109
Chris Wilsonb7137e02016-07-13 09:10:37 +01008110void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
8111{
Chris Wilsonb7137e02016-07-13 09:10:37 +01008112 /* Powersaving is controlled by the host when inside a VM */
8113 if (intel_vgpu_active(dev_priv))
8114 return;
8115
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008116 mutex_lock(&dev_priv->pcu_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02008117
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008118 intel_enable_rc6(dev_priv);
8119 intel_enable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008120 if (HAS_LLC(dev_priv))
8121 intel_enable_llc_pstate(dev_priv);
8122
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008123 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008124}
Imre Deakc6df39b2014-04-14 20:24:29 +03008125
Chris Wilson54b4f682016-07-21 21:16:19 +01008126static void __intel_autoenable_gt_powersave(struct work_struct *work)
8127{
8128 struct drm_i915_private *dev_priv =
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008129 container_of(work,
8130 typeof(*dev_priv),
8131 gt_pm.autoenable_work.work);
Chris Wilson54b4f682016-07-21 21:16:19 +01008132 struct intel_engine_cs *rcs;
8133 struct drm_i915_gem_request *req;
8134
Akash Goel3b3f1652016-10-13 22:44:48 +05308135 rcs = dev_priv->engine[RCS];
Chris Wilsone8a9c582016-12-18 15:37:20 +00008136 if (rcs->last_retired_context)
Chris Wilson54b4f682016-07-21 21:16:19 +01008137 goto out;
8138
8139 if (!rcs->init_context)
8140 goto out;
8141
8142 mutex_lock(&dev_priv->drm.struct_mutex);
8143
8144 req = i915_gem_request_alloc(rcs, dev_priv->kernel_context);
8145 if (IS_ERR(req))
8146 goto unlock;
8147
Michal Wajdeczko4f044a82017-09-19 19:38:44 +00008148 if (!i915_modparams.enable_execlists && i915_switch_context(req) == 0)
Chris Wilson54b4f682016-07-21 21:16:19 +01008149 rcs->init_context(req);
8150
8151 /* Mark the device busy, calling intel_enable_gt_powersave() */
Chris Wilsone642c852017-03-17 11:47:09 +00008152 i915_add_request(req);
Chris Wilson54b4f682016-07-21 21:16:19 +01008153
8154unlock:
8155 mutex_unlock(&dev_priv->drm.struct_mutex);
8156out:
8157 intel_runtime_pm_put(dev_priv);
8158}
8159
8160void intel_autoenable_gt_powersave(struct drm_i915_private *dev_priv)
8161{
Chris Wilson54b4f682016-07-21 21:16:19 +01008162 if (IS_IRONLAKE_M(dev_priv)) {
8163 ironlake_enable_drps(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008164 intel_init_emon(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008165 } else if (INTEL_INFO(dev_priv)->gen >= 6) {
8166 /*
8167 * PCU communication is slow and this doesn't need to be
8168 * done at any specific time, so do this out of our fast path
8169 * to make resume and init faster.
8170 *
8171 * We depend on the HW RC6 power context save/restore
8172 * mechanism when entering D3 through runtime PM suspend. So
8173 * disable RPM until RPS/RC6 is properly setup. We can only
8174 * get here via the driver load/system resume/runtime resume
8175 * paths, so the _noresume version is enough (and in case of
8176 * runtime resume it's necessary).
8177 */
8178 if (queue_delayed_work(dev_priv->wq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008179 &dev_priv->gt_pm.autoenable_work,
Chris Wilson54b4f682016-07-21 21:16:19 +01008180 round_jiffies_up_relative(HZ)))
8181 intel_runtime_pm_get_noresume(dev_priv);
8182 }
8183}
8184
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008185static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008186{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008187 /*
8188 * On Ibex Peak and Cougar Point, we need to disable clock
8189 * gating for the panel power sequencer or it will fail to
8190 * start up when no ports are active.
8191 */
8192 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
8193}
8194
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008195static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008196{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008197 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008198
Damien Lespiau055e3932014-08-18 13:49:10 +01008199 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008200 I915_WRITE(DSPCNTR(pipe),
8201 I915_READ(DSPCNTR(pipe)) |
8202 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008203
8204 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
8205 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008206 }
8207}
8208
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008209static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä017636c2013-12-05 15:51:37 +02008210{
Ville Syrjälä017636c2013-12-05 15:51:37 +02008211 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
8212 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
8213 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
8214
8215 /*
8216 * Don't touch WM1S_LP_EN here.
8217 * Doing so could cause underruns.
8218 */
8219}
8220
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008221static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008222{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008223 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008224
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01008225 /*
8226 * Required for FBC
8227 * WaFbcDisableDpfcClockGating:ilk
8228 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008229 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
8230 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
8231 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008232
8233 I915_WRITE(PCH_3DCGDIS0,
8234 MARIUNIT_CLOCK_GATE_DISABLE |
8235 SVSMUNIT_CLOCK_GATE_DISABLE);
8236 I915_WRITE(PCH_3DCGDIS1,
8237 VFMUNIT_CLOCK_GATE_DISABLE);
8238
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008239 /*
8240 * According to the spec the following bits should be set in
8241 * order to enable memory self-refresh
8242 * The bit 22/21 of 0x42004
8243 * The bit 5 of 0x42020
8244 * The bit 15 of 0x45000
8245 */
8246 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8247 (I915_READ(ILK_DISPLAY_CHICKEN2) |
8248 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008249 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008250 I915_WRITE(DISP_ARB_CTL,
8251 (I915_READ(DISP_ARB_CTL) |
8252 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02008253
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008254 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008255
8256 /*
8257 * Based on the document from hardware guys the following bits
8258 * should be set unconditionally in order to enable FBC.
8259 * The bit 22 of 0x42000
8260 * The bit 22 of 0x42004
8261 * The bit 7,8,9 of 0x42020.
8262 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008263 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01008264 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008265 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8266 I915_READ(ILK_DISPLAY_CHICKEN1) |
8267 ILK_FBCQ_DIS);
8268 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8269 I915_READ(ILK_DISPLAY_CHICKEN2) |
8270 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008271 }
8272
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008273 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
8274
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008275 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8276 I915_READ(ILK_DISPLAY_CHICKEN2) |
8277 ILK_ELPIN_409_SELECT);
8278 I915_WRITE(_3D_CHICKEN2,
8279 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
8280 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02008281
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008282 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02008283 I915_WRITE(CACHE_MODE_0,
8284 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01008285
Akash Goel4e046322014-04-04 17:14:38 +05308286 /* WaDisable_RenderCache_OperationalFlush:ilk */
8287 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8288
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008289 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03008290
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008291 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008292}
8293
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008294static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008295{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008296 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008297 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01008298
8299 /*
8300 * On Ibex Peak and Cougar Point, we need to disable clock
8301 * gating for the panel power sequencer or it will fail to
8302 * start up when no ports are active.
8303 */
Jesse Barnescd664072013-10-02 10:34:19 -07008304 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
8305 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
8306 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008307 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
8308 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01008309 /* The below fixes the weird display corruption, a few pixels shifted
8310 * downward, on (only) LVDS of some HP laptops with IVY.
8311 */
Damien Lespiau055e3932014-08-18 13:49:10 +01008312 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008313 val = I915_READ(TRANS_CHICKEN2(pipe));
8314 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
8315 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008316 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008317 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008318 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
8319 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
8320 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008321 I915_WRITE(TRANS_CHICKEN2(pipe), val);
8322 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01008323 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01008324 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01008325 I915_WRITE(TRANS_CHICKEN1(pipe),
8326 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
8327 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008328}
8329
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008330static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008331{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008332 uint32_t tmp;
8333
8334 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02008335 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
8336 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
8337 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008338}
8339
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008340static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008341{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008342 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008343
Damien Lespiau231e54f2012-10-19 17:55:41 +01008344 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008345
8346 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8347 I915_READ(ILK_DISPLAY_CHICKEN2) |
8348 ILK_ELPIN_409_SELECT);
8349
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008350 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01008351 I915_WRITE(_3D_CHICKEN,
8352 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
8353
Akash Goel4e046322014-04-04 17:14:38 +05308354 /* WaDisable_RenderCache_OperationalFlush:snb */
8355 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8356
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008357 /*
8358 * BSpec recoomends 8x4 when MSAA is used,
8359 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008360 *
8361 * Note that PS/WM thread counts depend on the WIZ hashing
8362 * disable bit, which we don't touch here, but it's good
8363 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008364 */
8365 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008366 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008367
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008368 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008369
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008370 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02008371 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008372
8373 I915_WRITE(GEN6_UCGCTL1,
8374 I915_READ(GEN6_UCGCTL1) |
8375 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
8376 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
8377
8378 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
8379 * gating disable must be set. Failure to set it results in
8380 * flickering pixels due to Z write ordering failures after
8381 * some amount of runtime in the Mesa "fire" demo, and Unigine
8382 * Sanctuary and Tropics, and apparently anything else with
8383 * alpha test or pixel discard.
8384 *
8385 * According to the spec, bit 11 (RCCUNIT) must also be set,
8386 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008387 *
Ville Syrjäläef593182014-01-22 21:32:47 +02008388 * WaDisableRCCUnitClockGating:snb
8389 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008390 */
8391 I915_WRITE(GEN6_UCGCTL2,
8392 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
8393 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
8394
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02008395 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02008396 I915_WRITE(_3D_CHICKEN3,
8397 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008398
8399 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02008400 * Bspec says:
8401 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
8402 * 3DSTATE_SF number of SF output attributes is more than 16."
8403 */
8404 I915_WRITE(_3D_CHICKEN3,
8405 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
8406
8407 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008408 * According to the spec the following bits should be
8409 * set in order to enable memory self-refresh and fbc:
8410 * The bit21 and bit22 of 0x42000
8411 * The bit21 and bit22 of 0x42004
8412 * The bit5 and bit7 of 0x42020
8413 * The bit14 of 0x70180
8414 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01008415 *
8416 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008417 */
8418 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8419 I915_READ(ILK_DISPLAY_CHICKEN1) |
8420 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
8421 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8422 I915_READ(ILK_DISPLAY_CHICKEN2) |
8423 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01008424 I915_WRITE(ILK_DSPCLK_GATE_D,
8425 I915_READ(ILK_DSPCLK_GATE_D) |
8426 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
8427 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008428
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008429 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07008430
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008431 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008432
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008433 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008434}
8435
8436static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
8437{
8438 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
8439
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008440 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02008441 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008442 *
8443 * This actually overrides the dispatch
8444 * mode for all thread types.
8445 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008446 reg &= ~GEN7_FF_SCHED_MASK;
8447 reg |= GEN7_FF_TS_SCHED_HW;
8448 reg |= GEN7_FF_VS_SCHED_HW;
8449 reg |= GEN7_FF_DS_SCHED_HW;
8450
8451 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
8452}
8453
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008454static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008455{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008456 /*
8457 * TODO: this bit should only be enabled when really needed, then
8458 * disabled when not needed anymore in order to save power.
8459 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008460 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008461 I915_WRITE(SOUTH_DSPCLK_GATE_D,
8462 I915_READ(SOUTH_DSPCLK_GATE_D) |
8463 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008464
8465 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03008466 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
8467 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008468 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008469}
8470
Ville Syrjälä712bf362016-10-31 22:37:23 +02008471static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008472{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008473 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03008474 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
8475
8476 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8477 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8478 }
8479}
8480
Imre Deak450174f2016-05-03 15:54:21 +03008481static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
8482 int general_prio_credits,
8483 int high_prio_credits)
8484{
8485 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07008486 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03008487
8488 /* WaTempDisableDOPClkGating:bdw */
8489 misccpctl = I915_READ(GEN7_MISCCPCTL);
8490 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
8491
Oscar Mateo930a7842017-10-17 13:25:45 -07008492 val = I915_READ(GEN8_L3SQCREG1);
8493 val &= ~L3_PRIO_CREDITS_MASK;
8494 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8495 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8496 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03008497
8498 /*
8499 * Wait at least 100 clocks before re-enabling clock gating.
8500 * See the definition of L3SQCREG1 in BSpec.
8501 */
8502 POSTING_READ(GEN8_L3SQCREG1);
8503 udelay(1);
8504 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
8505}
8506
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008507static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
8508{
8509 if (!HAS_PCH_CNP(dev_priv))
8510 return;
8511
8512 /* Wa #1181 */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07008513 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
8514 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008515}
8516
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008517static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008518{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008519 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008520 cnp_init_clock_gating(dev_priv);
8521
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07008522 /* This is not an Wa. Enable for better image quality */
8523 I915_WRITE(_3D_CHICKEN3,
8524 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
8525
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008526 /* WaEnableChickenDCPR:cnl */
8527 I915_WRITE(GEN8_CHICKEN_DCPR_1,
8528 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
8529
8530 /* WaFbcWakeMemOn:cnl */
8531 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
8532 DISP_FBC_MEMORY_WAKE);
8533
8534 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
8535 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
8536 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE,
8537 I915_READ(SLICE_UNIT_LEVEL_CLKGATE) |
8538 SARBUNIT_CLKGATE_DIS);
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008539
8540 /* Display WA #1133: WaFbcSkipSegments:cnl */
8541 val = I915_READ(ILK_DPFC_CHICKEN);
8542 val &= ~GLK_SKIP_SEG_COUNT_MASK;
8543 val |= GLK_SKIP_SEG_EN | GLK_SKIP_SEG_COUNT(1);
8544 I915_WRITE(ILK_DPFC_CHICKEN, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008545}
8546
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008547static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
8548{
8549 cnp_init_clock_gating(dev_priv);
8550 gen9_init_clock_gating(dev_priv);
8551
8552 /* WaFbcNukeOnHostModify:cfl */
8553 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8554 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
8555}
8556
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008557static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008558{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008559 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008560
8561 /* WaDisableSDEUnitClockGating:kbl */
8562 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8563 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8564 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03008565
8566 /* WaDisableGamClockGating:kbl */
8567 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8568 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8569 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008570
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008571 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008572 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8573 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008574}
8575
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008576static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008577{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008578 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03008579
8580 /* WAC6entrylatency:skl */
8581 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
8582 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008583
8584 /* WaFbcNukeOnHostModify:skl */
8585 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8586 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008587}
8588
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008589static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008590{
Matthew Auld8cb09832017-10-06 23:18:23 +01008591 /* The GTT cache must be disabled if the system is using 2M pages. */
8592 bool can_use_gtt_cache = !HAS_PAGE_SIZES(dev_priv,
8593 I915_GTT_PAGE_SIZE_2M);
Damien Lespiau07d27e22014-03-03 17:31:46 +00008594 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008595
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008596 ilk_init_lp_watermarks(dev_priv);
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008597
Ben Widawskyab57fff2013-12-12 15:28:04 -08008598 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008599 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008600
Ben Widawskyab57fff2013-12-12 15:28:04 -08008601 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008602 I915_WRITE(CHICKEN_PAR1_1,
8603 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
8604
Ben Widawskyab57fff2013-12-12 15:28:04 -08008605 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01008606 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00008607 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02008608 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02008609 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008610 }
Ben Widawsky63801f22013-12-12 17:26:03 -08008611
Ben Widawskyab57fff2013-12-12 15:28:04 -08008612 /* WaVSRefCountFullforceMissDisable:bdw */
8613 /* WaDSRefCountFullforceMissDisable:bdw */
8614 I915_WRITE(GEN7_FF_THREAD_MODE,
8615 I915_READ(GEN7_FF_THREAD_MODE) &
8616 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02008617
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02008618 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8619 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02008620
8621 /* WaDisableSDEUnitClockGating:bdw */
8622 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8623 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00008624
Imre Deak450174f2016-05-03 15:54:21 +03008625 /* WaProgramL3SqcReg1Default:bdw */
8626 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03008627
Matthew Auld8cb09832017-10-06 23:18:23 +01008628 /* WaGttCachingOffByDefault:bdw */
8629 I915_WRITE(HSW_GTT_CACHE_EN, can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008630
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03008631 /* WaKVMNotificationOnConfigChange:bdw */
8632 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
8633 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
8634
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008635 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00008636
8637 /* WaDisableDopClockGating:bdw
8638 *
8639 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
8640 * clock gating.
8641 */
8642 I915_WRITE(GEN6_UCGCTL1,
8643 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008644}
8645
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008646static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008647{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008648 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008649
Francisco Jerezf3fc4882013-10-02 15:53:16 -07008650 /* L3 caching of data atomics doesn't work -- disable it. */
8651 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
8652 I915_WRITE(HSW_ROW_CHICKEN3,
8653 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
8654
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008655 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008656 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8657 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8658 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8659
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02008660 /* WaVSRefCountFullforceMissDisable:hsw */
8661 I915_WRITE(GEN7_FF_THREAD_MODE,
8662 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008663
Akash Goel4e046322014-04-04 17:14:38 +05308664 /* WaDisable_RenderCache_OperationalFlush:hsw */
8665 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8666
Chia-I Wufe27c602014-01-28 13:29:33 +08008667 /* enable HiZ Raw Stall Optimization */
8668 I915_WRITE(CACHE_MODE_0_GEN7,
8669 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8670
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008671 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008672 I915_WRITE(CACHE_MODE_1,
8673 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008674
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008675 /*
8676 * BSpec recommends 8x4 when MSAA is used,
8677 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008678 *
8679 * Note that PS/WM thread counts depend on the WIZ hashing
8680 * disable bit, which we don't touch here, but it's good
8681 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008682 */
8683 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008684 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02008685
Kenneth Graunke94411592014-12-31 16:23:00 -08008686 /* WaSampleCChickenBitEnable:hsw */
8687 I915_WRITE(HALF_SLICE_CHICKEN3,
8688 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
8689
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008690 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07008691 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
8692
Paulo Zanoni90a88642013-05-03 17:23:45 -03008693 /* WaRsPkgCStateDisplayPMReq:hsw */
8694 I915_WRITE(CHICKEN_PAR1_1,
8695 I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES);
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03008696
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008697 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03008698}
8699
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008700static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008701{
Ben Widawsky20848222012-05-04 18:58:59 -07008702 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008703
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008704 ilk_init_lp_watermarks(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008705
Damien Lespiau231e54f2012-10-19 17:55:41 +01008706 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008707
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008708 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05008709 I915_WRITE(_3D_CHICKEN3,
8710 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8711
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008712 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008713 I915_WRITE(IVB_CHICKEN3,
8714 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8715 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8716
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008717 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008718 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07008719 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
8720 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008721
Akash Goel4e046322014-04-04 17:14:38 +05308722 /* WaDisable_RenderCache_OperationalFlush:ivb */
8723 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8724
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008725 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008726 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
8727 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
8728
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008729 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008730 I915_WRITE(GEN7_L3CNTLREG1,
8731 GEN7_WA_FOR_GEN7_L3_CONTROL);
8732 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07008733 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008734 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07008735 I915_WRITE(GEN7_ROW_CHICKEN2,
8736 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008737 else {
8738 /* must write both registers */
8739 I915_WRITE(GEN7_ROW_CHICKEN2,
8740 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07008741 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
8742 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02008743 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008744
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008745 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05008746 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8747 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8748
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02008749 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008750 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008751 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008752 */
8753 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02008754 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008755
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008756 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008757 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8758 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8759 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8760
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008761 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008762
8763 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02008764
Chris Wilson22721342014-03-04 09:41:43 +00008765 if (0) { /* causes HiZ corruption on ivb:gt1 */
8766 /* enable HiZ Raw Stall Optimization */
8767 I915_WRITE(CACHE_MODE_0_GEN7,
8768 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
8769 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08008770
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008771 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02008772 I915_WRITE(CACHE_MODE_1,
8773 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07008774
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008775 /*
8776 * BSpec recommends 8x4 when MSAA is used,
8777 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008778 *
8779 * Note that PS/WM thread counts depend on the WIZ hashing
8780 * disable bit, which we don't touch here, but it's good
8781 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008782 */
8783 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008784 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02008785
Ben Widawsky20848222012-05-04 18:58:59 -07008786 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
8787 snpcr &= ~GEN6_MBC_SNPCR_MASK;
8788 snpcr |= GEN6_MBC_SNPCR_MED;
8789 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008790
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01008791 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008792 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008793
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008794 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008795}
8796
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008797static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008798{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008799 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05008800 I915_WRITE(_3D_CHICKEN3,
8801 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
8802
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008803 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008804 I915_WRITE(IVB_CHICKEN3,
8805 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
8806 CHICKEN3_DGMG_DONE_FIX_DISABLE);
8807
Ville Syrjäläfad7d362014-01-22 21:32:39 +02008808 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008809 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07008810 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08008811 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
8812 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07008813
Akash Goel4e046322014-04-04 17:14:38 +05308814 /* WaDisable_RenderCache_OperationalFlush:vlv */
8815 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8816
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008817 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05008818 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
8819 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
8820
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008821 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07008822 I915_WRITE(GEN7_ROW_CHICKEN2,
8823 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
8824
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008825 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008826 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
8827 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
8828 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
8829
Ville Syrjälä46680e02014-01-22 21:33:01 +02008830 gen7_setup_fixed_func_scheduler(dev_priv);
8831
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008832 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07008833 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008834 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008835 */
8836 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02008837 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07008838
Akash Goelc98f5062014-03-24 23:00:07 +05308839 /* WaDisableL3Bank2xClockGate:vlv
8840 * Disabling L3 clock gating- MMIO 940c[25] = 1
8841 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
8842 I915_WRITE(GEN7_UCGCTL4,
8843 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07008844
Ville Syrjäläafd58e72014-01-22 21:33:03 +02008845 /*
8846 * BSpec says this must be set, even though
8847 * WaDisable4x2SubspanOptimization isn't listed for VLV.
8848 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02008849 I915_WRITE(CACHE_MODE_1,
8850 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07008851
8852 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02008853 * BSpec recommends 8x4 when MSAA is used,
8854 * however in practice 16x4 seems fastest.
8855 *
8856 * Note that PS/WM thread counts depend on the WIZ hashing
8857 * disable bit, which we don't touch here, but it's good
8858 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
8859 */
8860 I915_WRITE(GEN7_GT_MODE,
8861 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
8862
8863 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02008864 * WaIncreaseL3CreditsForVLVB0:vlv
8865 * This is the hardware default actually.
8866 */
8867 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
8868
8869 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008870 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07008871 * Disable clock gating on th GCFG unit to prevent a delay
8872 * in the reporting of vblank events.
8873 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02008874 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008875}
8876
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008877static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008878{
Ville Syrjälä232ce332014-04-09 13:28:35 +03008879 /* WaVSRefCountFullforceMissDisable:chv */
8880 /* WaDSRefCountFullforceMissDisable:chv */
8881 I915_WRITE(GEN7_FF_THREAD_MODE,
8882 I915_READ(GEN7_FF_THREAD_MODE) &
8883 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03008884
8885 /* WaDisableSemaphoreAndSyncFlipWait:chv */
8886 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
8887 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03008888
8889 /* WaDisableCSUnitClockGating:chv */
8890 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8891 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03008892
8893 /* WaDisableSDEUnitClockGating:chv */
8894 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8895 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008896
8897 /*
Imre Deak450174f2016-05-03 15:54:21 +03008898 * WaProgramL3SqcReg1Default:chv
8899 * See gfxspecs/Related Documents/Performance Guide/
8900 * LSQC Setting Recommendations.
8901 */
8902 gen8_set_l3sqc_credits(dev_priv, 38, 2);
8903
8904 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03008905 * GTT cache may not work with big pages, so if those
8906 * are ever enabled GTT cache may need to be disabled.
8907 */
8908 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03008909}
8910
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008911static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008912{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008913 uint32_t dspclk_gate;
8914
8915 I915_WRITE(RENCLK_GATE_D1, 0);
8916 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
8917 GS_UNIT_CLOCK_GATE_DISABLE |
8918 CL_UNIT_CLOCK_GATE_DISABLE);
8919 I915_WRITE(RAMCLK_GATE_D, 0);
8920 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
8921 OVRUNIT_CLOCK_GATE_DISABLE |
8922 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008923 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008924 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
8925 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02008926
8927 /* WaDisableRenderCachePipelinedFlush */
8928 I915_WRITE(CACHE_MODE_0,
8929 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03008930
Akash Goel4e046322014-04-04 17:14:38 +05308931 /* WaDisable_RenderCache_OperationalFlush:g4x */
8932 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8933
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008934 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008935}
8936
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008937static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008938{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008939 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
8940 I915_WRITE(RENCLK_GATE_D2, 0);
8941 I915_WRITE(DSPCLK_GATE_D, 0);
8942 I915_WRITE(RAMCLK_GATE_D, 0);
8943 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008944 I915_WRITE(MI_ARB_STATE,
8945 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308946
8947 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8948 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008949}
8950
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008951static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008952{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008953 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
8954 I965_RCC_CLOCK_GATE_DISABLE |
8955 I965_RCPB_CLOCK_GATE_DISABLE |
8956 I965_ISC_CLOCK_GATE_DISABLE |
8957 I965_FBC_CLOCK_GATE_DISABLE);
8958 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03008959 I915_WRITE(MI_ARB_STATE,
8960 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05308961
8962 /* WaDisable_RenderCache_OperationalFlush:gen4 */
8963 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008964}
8965
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008966static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008967{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008968 u32 dstate = I915_READ(D_STATE);
8969
8970 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
8971 DSTATE_DOT_CLOCK_GATING;
8972 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01008973
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02008974 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01008975 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02008976
8977 /* IIR "flip pending" means done if this bit is set */
8978 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02008979
8980 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02008981 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02008982
8983 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
8984 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008985
8986 I915_WRITE(MI_ARB_STATE,
8987 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008988}
8989
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008990static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008991{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008992 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02008993
8994 /* interrupts should cause a wake up from C3 */
8995 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
8996 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03008997
8998 I915_WRITE(MEM_MODE,
8999 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009000}
9001
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009002static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009003{
Ville Syrjälä10383922014-08-15 01:21:54 +03009004 I915_WRITE(MEM_MODE,
9005 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
9006 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009007}
9008
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009009void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009010{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009011 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009012}
9013
Ville Syrjälä712bf362016-10-31 22:37:23 +02009014void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03009015{
Ville Syrjälä712bf362016-10-31 22:37:23 +02009016 if (HAS_PCH_LPT(dev_priv))
9017 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03009018}
9019
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009020static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02009021{
9022 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
9023}
9024
9025/**
9026 * intel_init_clock_gating_hooks - setup the clock gating hooks
9027 * @dev_priv: device private
9028 *
9029 * Setup the hooks that configure which clocks of a given platform can be
9030 * gated and also apply various GT and display specific workarounds for these
9031 * platforms. Note that some GT specific workarounds are applied separately
9032 * when GPU contexts or batchbuffers start their execution.
9033 */
9034void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
9035{
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009036 if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009037 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009038 else if (IS_COFFEELAKE(dev_priv))
9039 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009040 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009041 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009042 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009043 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009044 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02009045 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009046 else if (IS_GEMINILAKE(dev_priv))
9047 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009048 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009049 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009050 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009051 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009052 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009053 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009054 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009055 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009056 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009057 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009058 else if (IS_GEN6(dev_priv))
9059 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
9060 else if (IS_GEN5(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009061 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009062 else if (IS_G4X(dev_priv))
9063 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009064 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009065 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009066 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009067 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009068 else if (IS_GEN3(dev_priv))
9069 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
9070 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
9071 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
9072 else if (IS_GEN2(dev_priv))
9073 dev_priv->display.init_clock_gating = i830_init_clock_gating;
9074 else {
9075 MISSING_CASE(INTEL_DEVID(dev_priv));
9076 dev_priv->display.init_clock_gating = nop_init_clock_gating;
9077 }
9078}
9079
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009080/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009081void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009082{
Rodrigo Vivi7ff0ebc2014-12-08 14:09:10 -02009083 intel_fbc_init(dev_priv);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009084
Daniel Vetterc921aba2012-04-26 23:28:17 +02009085 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009086 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009087 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009088 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009089 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02009090
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009091 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009092 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009093 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01009094 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01009095 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07009096 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009097 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009098 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03009099
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009100 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009101 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009102 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009103 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07009104 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08009105 dev_priv->display.compute_intermediate_wm =
9106 ilk_compute_intermediate_wm;
9107 dev_priv->display.initial_watermarks =
9108 ilk_initial_watermarks;
9109 dev_priv->display.optimize_watermarks =
9110 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02009111 } else {
9112 DRM_DEBUG_KMS("Failed to read display plane latency. "
9113 "Disable CxSR\n");
9114 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02009115 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009116 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02009117 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009118 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009119 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009120 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009121 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03009122 } else if (IS_G4X(dev_priv)) {
9123 g4x_setup_wm_latency(dev_priv);
9124 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
9125 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
9126 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
9127 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009128 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009129 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009130 dev_priv->is_ddr3,
9131 dev_priv->fsb_freq,
9132 dev_priv->mem_freq)) {
9133 DRM_INFO("failed to find known CxSR latency "
9134 "(found ddr%s fsb freq %d, mem freq %d), "
9135 "disabling CxSR\n",
9136 (dev_priv->is_ddr3 == 1) ? "3" : "2",
9137 dev_priv->fsb_freq, dev_priv->mem_freq);
9138 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03009139 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009140 dev_priv->display.update_wm = NULL;
9141 } else
9142 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009143 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009144 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009145 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009146 dev_priv->display.update_wm = i9xx_update_wm;
9147 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009148 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009149 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009150 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009151 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009152 } else {
9153 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009154 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009155 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009156 } else {
9157 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009158 }
9159}
9160
Lyude87660502016-08-17 15:55:53 -04009161static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
9162{
9163 uint32_t flags =
9164 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9165
9166 switch (flags) {
9167 case GEN6_PCODE_SUCCESS:
9168 return 0;
9169 case GEN6_PCODE_UNIMPLEMENTED_CMD:
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009170 return -ENODEV;
Lyude87660502016-08-17 15:55:53 -04009171 case GEN6_PCODE_ILLEGAL_CMD:
9172 return -ENXIO;
9173 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01009174 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04009175 return -EOVERFLOW;
9176 case GEN6_PCODE_TIMEOUT:
9177 return -ETIMEDOUT;
9178 default:
Michal Wajdeczkof0d66152017-03-28 08:45:12 +00009179 MISSING_CASE(flags);
Lyude87660502016-08-17 15:55:53 -04009180 return 0;
9181 }
9182}
9183
9184static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
9185{
9186 uint32_t flags =
9187 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9188
9189 switch (flags) {
9190 case GEN6_PCODE_SUCCESS:
9191 return 0;
9192 case GEN6_PCODE_ILLEGAL_CMD:
9193 return -ENXIO;
9194 case GEN7_PCODE_TIMEOUT:
9195 return -ETIMEDOUT;
9196 case GEN7_PCODE_ILLEGAL_DATA:
9197 return -EINVAL;
9198 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
9199 return -EOVERFLOW;
9200 default:
9201 MISSING_CASE(flags);
9202 return 0;
9203 }
9204}
9205
Tom O'Rourke151a49d2014-11-13 18:50:10 -08009206int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009207{
Lyude87660502016-08-17 15:55:53 -04009208 int status;
9209
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009210 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009211
Chris Wilson3f5582d2016-06-30 15:32:45 +01009212 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9213 * use te fw I915_READ variants to reduce the amount of work
9214 * required when reading/writing.
9215 */
9216
9217 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009218 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps\n",
9219 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009220 return -EAGAIN;
9221 }
9222
Chris Wilson3f5582d2016-06-30 15:32:45 +01009223 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
9224 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
9225 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009226
Chris Wilsone09a3032017-04-11 11:13:39 +01009227 if (__intel_wait_for_register_fw(dev_priv,
9228 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9229 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009230 DRM_ERROR("timeout waiting for pcode read (from mbox %x) to finish for %ps\n",
9231 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009232 return -ETIMEDOUT;
9233 }
9234
Chris Wilson3f5582d2016-06-30 15:32:45 +01009235 *val = I915_READ_FW(GEN6_PCODE_DATA);
9236 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009237
Lyude87660502016-08-17 15:55:53 -04009238 if (INTEL_GEN(dev_priv) > 6)
9239 status = gen7_check_mailbox_status(dev_priv);
9240 else
9241 status = gen6_check_mailbox_status(dev_priv);
9242
9243 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009244 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
9245 mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009246 return status;
9247 }
9248
Ben Widawsky42c05262012-09-26 10:34:00 -07009249 return 0;
9250}
9251
Chris Wilson3f5582d2016-06-30 15:32:45 +01009252int sandybridge_pcode_write(struct drm_i915_private *dev_priv,
Lyude87660502016-08-17 15:55:53 -04009253 u32 mbox, u32 val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009254{
Lyude87660502016-08-17 15:55:53 -04009255 int status;
9256
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009257 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009258
Chris Wilson3f5582d2016-06-30 15:32:45 +01009259 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9260 * use te fw I915_READ variants to reduce the amount of work
9261 * required when reading/writing.
9262 */
9263
9264 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009265 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps\n",
9266 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009267 return -EAGAIN;
9268 }
9269
Chris Wilson3f5582d2016-06-30 15:32:45 +01009270 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02009271 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01009272 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009273
Chris Wilsone09a3032017-04-11 11:13:39 +01009274 if (__intel_wait_for_register_fw(dev_priv,
9275 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9276 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009277 DRM_ERROR("timeout waiting for pcode write of 0x%08x to mbox %x to finish for %ps\n",
9278 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009279 return -ETIMEDOUT;
9280 }
9281
Chris Wilson3f5582d2016-06-30 15:32:45 +01009282 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009283
Lyude87660502016-08-17 15:55:53 -04009284 if (INTEL_GEN(dev_priv) > 6)
9285 status = gen7_check_mailbox_status(dev_priv);
9286 else
9287 status = gen6_check_mailbox_status(dev_priv);
9288
9289 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009290 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
9291 val, mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009292 return status;
9293 }
9294
Ben Widawsky42c05262012-09-26 10:34:00 -07009295 return 0;
9296}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07009297
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009298static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
9299 u32 request, u32 reply_mask, u32 reply,
9300 u32 *status)
9301{
9302 u32 val = request;
9303
9304 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
9305
9306 return *status || ((val & reply_mask) == reply);
9307}
9308
9309/**
9310 * skl_pcode_request - send PCODE request until acknowledgment
9311 * @dev_priv: device private
9312 * @mbox: PCODE mailbox ID the request is targeted for
9313 * @request: request ID
9314 * @reply_mask: mask used to check for request acknowledgment
9315 * @reply: value used to check for request acknowledgment
9316 * @timeout_base_ms: timeout for polling with preemption enabled
9317 *
9318 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02009319 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009320 * The request is acknowledged once the PCODE reply dword equals @reply after
9321 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02009322 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009323 * preemption disabled.
9324 *
9325 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
9326 * other error as reported by PCODE.
9327 */
9328int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
9329 u32 reply_mask, u32 reply, int timeout_base_ms)
9330{
9331 u32 status;
9332 int ret;
9333
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009334 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009335
9336#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
9337 &status)
9338
9339 /*
9340 * Prime the PCODE by doing a request first. Normally it guarantees
9341 * that a subsequent request, at most @timeout_base_ms later, succeeds.
9342 * _wait_for() doesn't guarantee when its passed condition is evaluated
9343 * first, so send the first request explicitly.
9344 */
9345 if (COND) {
9346 ret = 0;
9347 goto out;
9348 }
9349 ret = _wait_for(COND, timeout_base_ms * 1000, 10);
9350 if (!ret)
9351 goto out;
9352
9353 /*
9354 * The above can time out if the number of requests was low (2 in the
9355 * worst case) _and_ PCODE was busy for some reason even after a
9356 * (queued) request and @timeout_base_ms delay. As a workaround retry
9357 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02009358 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009359 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02009360 * requests, and for any quirks of the PCODE firmware that delays
9361 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009362 */
9363 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
9364 WARN_ON_ONCE(timeout_base_ms > 3);
9365 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02009366 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009367 preempt_enable();
9368
9369out:
9370 return ret ? ret : status;
9371#undef COND
9372}
9373
Ville Syrjälädd06f882014-11-10 22:55:12 +02009374static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
9375{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009376 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9377
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009378 /*
9379 * N = val - 0xb7
9380 * Slow = Fast = GPLL ref * N
9381 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009382 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009383}
9384
Fengguang Wub55dd642014-07-12 11:21:39 +02009385static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009386{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009387 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9388
9389 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009390}
9391
Fengguang Wub55dd642014-07-12 11:21:39 +02009392static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309393{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009394 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9395
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009396 /*
9397 * N = val / 2
9398 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
9399 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009400 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05309401}
9402
Fengguang Wub55dd642014-07-12 11:21:39 +02009403static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309404{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009405 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9406
Ville Syrjälä1c147622014-08-18 14:42:43 +03009407 /* CHV needs even values */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009408 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05309409}
9410
Ville Syrjälä616bc822015-01-23 21:04:25 +02009411int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
9412{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009413 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009414 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
9415 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009416 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009417 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009418 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009419 return byt_gpu_freq(dev_priv, val);
9420 else
9421 return val * GT_FREQUENCY_MULTIPLIER;
9422}
9423
Ville Syrjälä616bc822015-01-23 21:04:25 +02009424int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
9425{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009426 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009427 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
9428 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009429 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009430 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009431 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009432 return byt_freq_opcode(dev_priv, val);
9433 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009434 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05309435}
9436
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00009437void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01009438{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009439 mutex_init(&dev_priv->pcu_lock);
Daniel Vetterf742a552013-12-06 10:17:53 +01009440
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009441 INIT_DELAYED_WORK(&dev_priv->gt_pm.autoenable_work,
Chris Wilson54b4f682016-07-21 21:16:19 +01009442 __intel_autoenable_gt_powersave);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009443 atomic_set(&dev_priv->gt_pm.rps.num_waiters, 0);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03009444
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01009445 dev_priv->runtime_pm.suspended = false;
9446 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01009447}
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009448
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009449static u64 vlv_residency_raw(struct drm_i915_private *dev_priv,
9450 const i915_reg_t reg)
9451{
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009452 u32 lower, upper, tmp;
Chris Wilson71cc2b12017-03-24 16:54:18 +00009453 int loop = 2;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009454
9455 /* The register accessed do not need forcewake. We borrow
9456 * uncore lock to prevent concurrent access to range reg.
9457 */
9458 spin_lock_irq(&dev_priv->uncore.lock);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009459
9460 /* vlv and chv residency counters are 40 bits in width.
9461 * With a control bit, we can choose between upper or lower
9462 * 32bit window into this counter.
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009463 *
9464 * Although we always use the counter in high-range mode elsewhere,
9465 * userspace may attempt to read the value before rc6 is initialised,
9466 * before we have set the default VLV_COUNTER_CONTROL value. So always
9467 * set the high bit to be safe.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009468 */
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009469 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9470 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009471 upper = I915_READ_FW(reg);
9472 do {
9473 tmp = upper;
9474
9475 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9476 _MASKED_BIT_DISABLE(VLV_COUNT_RANGE_HIGH));
9477 lower = I915_READ_FW(reg);
9478
9479 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9480 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
9481 upper = I915_READ_FW(reg);
Chris Wilson71cc2b12017-03-24 16:54:18 +00009482 } while (upper != tmp && --loop);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009483
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009484 /* Everywhere else we always use VLV_COUNTER_CONTROL with the
9485 * VLV_COUNT_RANGE_HIGH bit set - so it is safe to leave it set
9486 * now.
9487 */
9488
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009489 spin_unlock_irq(&dev_priv->uncore.lock);
9490
9491 return lower | (u64)upper << 8;
9492}
9493
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009494u64 intel_rc6_residency_us(struct drm_i915_private *dev_priv,
9495 const i915_reg_t reg)
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009496{
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009497 u64 time_hw, units, div;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009498
Sagar Arun Kamble771decb2017-10-10 22:30:07 +01009499 if (!intel_rc6_enabled())
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009500 return 0;
9501
9502 intel_runtime_pm_get(dev_priv);
9503
9504 /* On VLV and CHV, residency time is in CZ units rather than 1.28us */
9505 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009506 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009507 div = dev_priv->czclk_freq;
9508
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009509 time_hw = vlv_residency_raw(dev_priv, reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009510 } else if (IS_GEN9_LP(dev_priv)) {
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009511 units = 1000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009512 div = 1200; /* 833.33ns */
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009513
9514 time_hw = I915_READ(reg);
9515 } else {
9516 units = 128000; /* 1.28us */
9517 div = 100000;
9518
9519 time_hw = I915_READ(reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009520 }
9521
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009522 intel_runtime_pm_put(dev_priv);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009523 return DIV_ROUND_UP_ULL(time_hw * units, div);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009524}