blob: 2bba5315b764bf25a88bad6cdfb340cca9959cec [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>
Chris Wilson08ea70a2018-08-12 23:36:31 +010029#include <linux/pm_runtime.h>
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -070030#include <drm/drm_plane_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030031#include "i915_drv.h"
32#include "intel_drv.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020033#include "../../../platform/x86/intel_ips.h"
34#include <linux/module.h>
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +020035#include <drm/drm_atomic_helper.h>
Eugeni Dodonov85208be2012-04-16 22:20:34 -030036
Ben Widawskydc39fff2013-10-18 12:32:07 -070037/**
Jani Nikula18afd442016-01-18 09:19:48 +020038 * DOC: RC6
39 *
Ben Widawskydc39fff2013-10-18 12:32:07 -070040 * RC6 is a special power stage which allows the GPU to enter an very
41 * low-voltage mode when idle, using down to 0V while at this stage. This
42 * stage is entered automatically when the GPU is idle when RC6 support is
43 * enabled, and as soon as new workload arises GPU wakes up automatically as well.
44 *
45 * There are different RC6 modes available in Intel GPU, which differentiate
46 * among each other with the latency required to enter and leave RC6 and
47 * voltage consumed by the GPU in different states.
48 *
49 * The combination of the following flags define which states GPU is allowed
50 * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and
51 * RC6pp is deepest RC6. Their support by hardware varies according to the
52 * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one
53 * which brings the most power savings; deeper states save more power, but
54 * require higher latency to switch to and wake up.
55 */
Ben Widawskydc39fff2013-10-18 12:32:07 -070056
Ville Syrjälä46f16e62016-10-31 22:37:22 +020057static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030058{
Ville Syrjälä93564042017-08-24 22:10:51 +030059 if (HAS_LLC(dev_priv)) {
60 /*
61 * WaCompressedResourceDisplayNewHashMode:skl,kbl
Lucas De Marchie0403cb2017-12-05 11:01:17 -080062 * Display WA #0390: skl,kbl
Ville Syrjälä93564042017-08-24 22:10:51 +030063 *
64 * Must match Sampler, Pixel Back End, and Media. See
65 * WaCompressedResourceSamplerPbeMediaNewHashMode.
66 */
67 I915_WRITE(CHICKEN_PAR1_1,
68 I915_READ(CHICKEN_PAR1_1) |
69 SKL_DE_COMPRESSED_HASH_MODE);
70 }
71
Rodrigo Vivi82525c12017-06-08 08:50:00 -070072 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
Mika Kuoppalab033bb62016-06-07 17:19:04 +030073 I915_WRITE(CHICKEN_PAR1_1,
74 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
75
Rodrigo Vivi82525c12017-06-08 08:50:00 -070076 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030077 I915_WRITE(GEN8_CHICKEN_DCPR_1,
78 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030079
Rodrigo Vivi82525c12017-06-08 08:50:00 -070080 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
81 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030082 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
83 DISP_FBC_WM_DIS |
84 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030085
Rodrigo Vivi82525c12017-06-08 08:50:00 -070086 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030087 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
88 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +053089
90 if (IS_SKYLAKE(dev_priv)) {
91 /* WaDisableDopClockGating */
92 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
93 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
94 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +030095}
96
Ville Syrjälä46f16e62016-10-31 22:37:22 +020097static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +020098{
Ville Syrjälä46f16e62016-10-31 22:37:22 +020099 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +0200100
Nick Hoatha7546152015-06-29 14:07:32 +0100101 /* WaDisableSDEUnitClockGating:bxt */
102 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
103 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
104
Imre Deak32608ca2015-03-11 11:10:27 +0200105 /*
106 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200107 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200108 */
Imre Deak32608ca2015-03-11 11:10:27 +0200109 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200110 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200111
112 /*
113 * Wa: Backlight PWM may stop in the asserted state, causing backlight
114 * to stay fully on.
115 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200116 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
117 PWM1_GATING_DIS | PWM2_GATING_DIS);
Imre Deaka82abe42015-03-27 14:00:04 +0200118}
119
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200120static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
121{
122 gen9_init_clock_gating(dev_priv);
123
124 /*
125 * WaDisablePWMClockGating:glk
126 * Backlight PWM may stop in the asserted state, causing backlight
127 * to stay fully on.
128 */
129 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
130 PWM1_GATING_DIS | PWM2_GATING_DIS);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200131
132 /* WaDDIIOTimeout:glk */
133 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
134 u32 val = I915_READ(CHICKEN_MISC_2);
135 val &= ~(GLK_CL0_PWR_DOWN |
136 GLK_CL1_PWR_DOWN |
137 GLK_CL2_PWR_DOWN);
138 I915_WRITE(CHICKEN_MISC_2, val);
139 }
140
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200141}
142
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200143static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200144{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200145 u32 tmp;
146
147 tmp = I915_READ(CLKCFG);
148
149 switch (tmp & CLKCFG_FSB_MASK) {
150 case CLKCFG_FSB_533:
151 dev_priv->fsb_freq = 533; /* 133*4 */
152 break;
153 case CLKCFG_FSB_800:
154 dev_priv->fsb_freq = 800; /* 200*4 */
155 break;
156 case CLKCFG_FSB_667:
157 dev_priv->fsb_freq = 667; /* 167*4 */
158 break;
159 case CLKCFG_FSB_400:
160 dev_priv->fsb_freq = 400; /* 100*4 */
161 break;
162 }
163
164 switch (tmp & CLKCFG_MEM_MASK) {
165 case CLKCFG_MEM_533:
166 dev_priv->mem_freq = 533;
167 break;
168 case CLKCFG_MEM_667:
169 dev_priv->mem_freq = 667;
170 break;
171 case CLKCFG_MEM_800:
172 dev_priv->mem_freq = 800;
173 break;
174 }
175
176 /* detect pineview DDR3 setting */
177 tmp = I915_READ(CSHRDDR3CTL);
178 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
179}
180
Ville Syrjälä148ac1f2016-10-31 22:37:16 +0200181static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200182{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200183 u16 ddrpll, csipll;
184
185 ddrpll = I915_READ16(DDRMPLL1);
186 csipll = I915_READ16(CSIPLL0);
187
188 switch (ddrpll & 0xff) {
189 case 0xc:
190 dev_priv->mem_freq = 800;
191 break;
192 case 0x10:
193 dev_priv->mem_freq = 1066;
194 break;
195 case 0x14:
196 dev_priv->mem_freq = 1333;
197 break;
198 case 0x18:
199 dev_priv->mem_freq = 1600;
200 break;
201 default:
202 DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n",
203 ddrpll & 0xff);
204 dev_priv->mem_freq = 0;
205 break;
206 }
207
Daniel Vetter20e4d402012-08-08 23:35:39 +0200208 dev_priv->ips.r_t = dev_priv->mem_freq;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200209
210 switch (csipll & 0x3ff) {
211 case 0x00c:
212 dev_priv->fsb_freq = 3200;
213 break;
214 case 0x00e:
215 dev_priv->fsb_freq = 3733;
216 break;
217 case 0x010:
218 dev_priv->fsb_freq = 4266;
219 break;
220 case 0x012:
221 dev_priv->fsb_freq = 4800;
222 break;
223 case 0x014:
224 dev_priv->fsb_freq = 5333;
225 break;
226 case 0x016:
227 dev_priv->fsb_freq = 5866;
228 break;
229 case 0x018:
230 dev_priv->fsb_freq = 6400;
231 break;
232 default:
233 DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n",
234 csipll & 0x3ff);
235 dev_priv->fsb_freq = 0;
236 break;
237 }
238
239 if (dev_priv->fsb_freq == 3200) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200240 dev_priv->ips.c_m = 0;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200241 } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200242 dev_priv->ips.c_m = 1;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200243 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +0200244 dev_priv->ips.c_m = 2;
Daniel Vetterc921aba2012-04-26 23:28:17 +0200245 }
246}
247
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300248static const struct cxsr_latency cxsr_latency_table[] = {
249 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
250 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
251 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
252 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
253 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
254
255 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
256 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
257 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
258 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
259 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
260
261 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
262 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
263 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
264 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
265 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
266
267 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
268 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
269 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
270 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
271 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
272
273 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
274 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
275 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
276 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
277 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
278
279 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
280 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
281 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
282 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
283 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
284};
285
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100286static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
287 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300288 int fsb,
289 int mem)
290{
291 const struct cxsr_latency *latency;
292 int i;
293
294 if (fsb == 0 || mem == 0)
295 return NULL;
296
297 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
298 latency = &cxsr_latency_table[i];
299 if (is_desktop == latency->is_desktop &&
300 is_ddr3 == latency->is_ddr3 &&
301 fsb == latency->fsb_freq && mem == latency->mem_freq)
302 return latency;
303 }
304
305 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
306
307 return NULL;
308}
309
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200310static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
311{
312 u32 val;
313
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100314 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200315
316 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
317 if (enable)
318 val &= ~FORCE_DDR_HIGH_FREQ;
319 else
320 val |= FORCE_DDR_HIGH_FREQ;
321 val &= ~FORCE_DDR_LOW_FREQ;
322 val |= FORCE_DDR_FREQ_REQ_ACK;
323 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
324
325 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
326 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
327 DRM_ERROR("timed out waiting for Punit DDR DVFS request\n");
328
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100329 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200330}
331
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200332static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
333{
334 u32 val;
335
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100336 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200337
338 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
339 if (enable)
340 val |= DSP_MAXFIFO_PM5_ENABLE;
341 else
342 val &= ~DSP_MAXFIFO_PM5_ENABLE;
343 vlv_punit_write(dev_priv, PUNIT_REG_DSPFREQ, val);
344
Sagar Arun Kamble9f817502017-10-10 22:30:05 +0100345 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200346}
347
Ville Syrjäläf4998962015-03-10 17:02:21 +0200348#define FW_WM(value, plane) \
349 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
350
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200351static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300352{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200353 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300354 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300355
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100356 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200357 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300358 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300359 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200360 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200361 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300362 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300363 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200364 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200365 val = I915_READ(DSPFW3);
366 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
367 if (enable)
368 val |= PINEVIEW_SELF_REFRESH_EN;
369 else
370 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300371 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300372 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100373 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200374 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300375 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
376 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
377 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300378 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100379 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300380 /*
381 * FIXME can't find a bit like this for 915G, and
382 * and yet it does have the related watermark in
383 * FW_BLC_SELF. What's going on?
384 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200385 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300386 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
387 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
388 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300389 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300390 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200391 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300392 }
393
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200394 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
395
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200396 DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n",
397 enableddisabled(enable),
398 enableddisabled(was_enabled));
399
400 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300401}
402
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300403/**
404 * intel_set_memory_cxsr - Configure CxSR state
405 * @dev_priv: i915 device
406 * @enable: Allow vs. disallow CxSR
407 *
408 * Allow or disallow the system to enter a special CxSR
409 * (C-state self refresh) state. What typically happens in CxSR mode
410 * is that several display FIFOs may get combined into a single larger
411 * FIFO for a particular plane (so called max FIFO mode) to allow the
412 * system to defer memory fetches longer, and the memory will enter
413 * self refresh.
414 *
415 * Note that enabling CxSR does not guarantee that the system enter
416 * this special mode, nor does it guarantee that the system stays
417 * in that mode once entered. So this just allows/disallows the system
418 * to autonomously utilize the CxSR mode. Other factors such as core
419 * C-states will affect when/if the system actually enters/exits the
420 * CxSR mode.
421 *
422 * Note that on VLV/CHV this actually only controls the max FIFO mode,
423 * and the system is free to enter/exit memory self refresh at any time
424 * even when the use of CxSR has been disallowed.
425 *
426 * While the system is actually in the CxSR/max FIFO mode, some plane
427 * control registers will not get latched on vblank. Thus in order to
428 * guarantee the system will respond to changes in the plane registers
429 * we must always disallow CxSR prior to making changes to those registers.
430 * Unfortunately the system will re-evaluate the CxSR conditions at
431 * frame start which happens after vblank start (which is when the plane
432 * registers would get latched), so we can't proceed with the plane update
433 * during the same frame where we disallowed CxSR.
434 *
435 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
436 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
437 * the hardware w.r.t. HPLL SR when writing to plane registers.
438 * Disallowing just CxSR is sufficient.
439 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200440bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200441{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200442 bool ret;
443
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200444 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200445 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300446 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
447 dev_priv->wm.vlv.cxsr = enable;
448 else if (IS_G4X(dev_priv))
449 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200450 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200451
452 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200453}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200454
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300455/*
456 * Latency for FIFO fetches is dependent on several factors:
457 * - memory configuration (speed, channels)
458 * - chipset
459 * - current MCH state
460 * It can be fairly high in some situations, so here we assume a fairly
461 * pessimal value. It's a tradeoff between extra memory fetches (if we
462 * set this value too high, the FIFO will fetch frequently to stay full)
463 * and power consumption (set it too low to save power and we might see
464 * FIFO underruns and display "flicker").
465 *
466 * A value of 5us seems to be a good balance; safe for very low end
467 * platforms but not overly aggressive on lower latency configs.
468 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100469static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300470
Ville Syrjäläb5004722015-03-05 21:19:47 +0200471#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
472 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
473
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200474static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200475{
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200476 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200477 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200478 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200479 enum pipe pipe = crtc->pipe;
480 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200481
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200482 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200483 uint32_t dsparb, dsparb2, dsparb3;
484 case PIPE_A:
485 dsparb = I915_READ(DSPARB);
486 dsparb2 = I915_READ(DSPARB2);
487 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
488 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
489 break;
490 case PIPE_B:
491 dsparb = I915_READ(DSPARB);
492 dsparb2 = I915_READ(DSPARB2);
493 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
494 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
495 break;
496 case PIPE_C:
497 dsparb2 = I915_READ(DSPARB2);
498 dsparb3 = I915_READ(DSPARB3);
499 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
500 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
501 break;
502 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200503 MISSING_CASE(pipe);
504 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200505 }
506
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200507 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
508 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
509 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
510 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200511}
512
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200513static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv,
514 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300515{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300516 uint32_t dsparb = I915_READ(DSPARB);
517 int size;
518
519 size = dsparb & 0x7f;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200520 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300521 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
522
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200523 DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n",
524 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300525
526 return size;
527}
528
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200529static int i830_get_fifo_size(struct drm_i915_private *dev_priv,
530 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300532 uint32_t dsparb = I915_READ(DSPARB);
533 int size;
534
535 size = dsparb & 0x1ff;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200536 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300537 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
538 size >>= 1; /* Convert to cachelines */
539
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200540 DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n",
541 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300542
543 return size;
544}
545
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200546static int i845_get_fifo_size(struct drm_i915_private *dev_priv,
547 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548{
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300549 uint32_t dsparb = I915_READ(DSPARB);
550 int size;
551
552 size = dsparb & 0x7f;
553 size >>= 2; /* Convert to cachelines */
554
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200555 DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n",
556 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557
558 return size;
559}
560
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300561/* Pineview has different values for various configs */
562static const struct intel_watermark_params pineview_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300563 .fifo_size = PINEVIEW_DISPLAY_FIFO,
564 .max_wm = PINEVIEW_MAX_WM,
565 .default_wm = PINEVIEW_DFT_WM,
566 .guard_size = PINEVIEW_GUARD_WM,
567 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300568};
569static const struct intel_watermark_params pineview_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300570 .fifo_size = PINEVIEW_DISPLAY_FIFO,
571 .max_wm = PINEVIEW_MAX_WM,
572 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
573 .guard_size = PINEVIEW_GUARD_WM,
574 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300575};
576static const struct intel_watermark_params pineview_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300577 .fifo_size = PINEVIEW_CURSOR_FIFO,
578 .max_wm = PINEVIEW_CURSOR_MAX_WM,
579 .default_wm = PINEVIEW_CURSOR_DFT_WM,
580 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
581 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300582};
583static const struct intel_watermark_params pineview_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300584 .fifo_size = PINEVIEW_CURSOR_FIFO,
585 .max_wm = PINEVIEW_CURSOR_MAX_WM,
586 .default_wm = PINEVIEW_CURSOR_DFT_WM,
587 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
588 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300589};
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300590static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300591 .fifo_size = I965_CURSOR_FIFO,
592 .max_wm = I965_CURSOR_MAX_WM,
593 .default_wm = I965_CURSOR_DFT_WM,
594 .guard_size = 2,
595 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300596};
597static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300598 .fifo_size = I945_FIFO_SIZE,
599 .max_wm = I915_MAX_WM,
600 .default_wm = 1,
601 .guard_size = 2,
602 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300603};
604static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300605 .fifo_size = I915_FIFO_SIZE,
606 .max_wm = I915_MAX_WM,
607 .default_wm = 1,
608 .guard_size = 2,
609 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300610};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300611static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300612 .fifo_size = I855GM_FIFO_SIZE,
613 .max_wm = I915_MAX_WM,
614 .default_wm = 1,
615 .guard_size = 2,
616 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300617};
Ville Syrjälä9d539102014-08-15 01:21:53 +0300618static const struct intel_watermark_params i830_bc_wm_info = {
619 .fifo_size = I855GM_FIFO_SIZE,
620 .max_wm = I915_MAX_WM/2,
621 .default_wm = 1,
622 .guard_size = 2,
623 .cacheline_size = I830_FIFO_LINE_SIZE,
624};
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200625static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300626 .fifo_size = I830_FIFO_SIZE,
627 .max_wm = I915_MAX_WM,
628 .default_wm = 1,
629 .guard_size = 2,
630 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300631};
632
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300633/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300634 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
635 * @pixel_rate: Pipe pixel rate in kHz
636 * @cpp: Plane bytes per pixel
637 * @latency: Memory wakeup latency in 0.1us units
638 *
639 * Compute the watermark using the method 1 or "small buffer"
640 * formula. The caller may additonally add extra cachelines
641 * to account for TLB misses and clock crossings.
642 *
643 * This method is concerned with the short term drain rate
644 * of the FIFO, ie. it does not account for blanking periods
645 * which would effectively reduce the average drain rate across
646 * a longer period. The name "small" refers to the fact the
647 * FIFO is relatively small compared to the amount of data
648 * fetched.
649 *
650 * The FIFO level vs. time graph might look something like:
651 *
652 * |\ |\
653 * | \ | \
654 * __---__---__ (- plane active, _ blanking)
655 * -> time
656 *
657 * or perhaps like this:
658 *
659 * |\|\ |\|\
660 * __----__----__ (- plane active, _ blanking)
661 * -> time
662 *
663 * Returns:
664 * The watermark in bytes
665 */
666static unsigned int intel_wm_method1(unsigned int pixel_rate,
667 unsigned int cpp,
668 unsigned int latency)
669{
670 uint64_t ret;
671
672 ret = (uint64_t) pixel_rate * cpp * latency;
673 ret = DIV_ROUND_UP_ULL(ret, 10000);
674
675 return ret;
676}
677
678/**
679 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
680 * @pixel_rate: Pipe pixel rate in kHz
681 * @htotal: Pipe horizontal total
682 * @width: Plane width in pixels
683 * @cpp: Plane bytes per pixel
684 * @latency: Memory wakeup latency in 0.1us units
685 *
686 * Compute the watermark using the method 2 or "large buffer"
687 * formula. The caller may additonally add extra cachelines
688 * to account for TLB misses and clock crossings.
689 *
690 * This method is concerned with the long term drain rate
691 * of the FIFO, ie. it does account for blanking periods
692 * which effectively reduce the average drain rate across
693 * a longer period. The name "large" refers to the fact the
694 * FIFO is relatively large compared to the amount of data
695 * fetched.
696 *
697 * The FIFO level vs. time graph might look something like:
698 *
699 * |\___ |\___
700 * | \___ | \___
701 * | \ | \
702 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
703 * -> time
704 *
705 * Returns:
706 * The watermark in bytes
707 */
708static unsigned int intel_wm_method2(unsigned int pixel_rate,
709 unsigned int htotal,
710 unsigned int width,
711 unsigned int cpp,
712 unsigned int latency)
713{
714 unsigned int ret;
715
716 /*
717 * FIXME remove once all users are computing
718 * watermarks in the correct place.
719 */
720 if (WARN_ON_ONCE(htotal == 0))
721 htotal = 1;
722
723 ret = (latency * pixel_rate) / (htotal * 10000);
724 ret = (ret + 1) * width * cpp;
725
726 return ret;
727}
728
729/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300730 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300731 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300732 * @wm: chip FIFO params
Chris Wilson31383412018-02-14 14:03:03 +0000733 * @fifo_size: size of the FIFO buffer
Ville Syrjäläac484962016-01-20 21:05:26 +0200734 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 * @latency_ns: memory latency for the platform
736 *
737 * Calculate the watermark level (the level at which the display plane will
738 * start fetching from memory again). Each chip has a different display
739 * FIFO size and allocation, so the caller needs to figure that out and pass
740 * in the correct intel_watermark_params structure.
741 *
742 * As the pixel clock runs, the FIFO will be drained at a rate that depends
743 * on the pixel size. When it reaches the watermark level, it'll start
744 * fetching FIFO line sized based chunks from memory until the FIFO fills
745 * past the watermark point. If the FIFO drains completely, a FIFO underrun
746 * will occur, and a display engine hang could result.
747 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300748static unsigned int intel_calculate_wm(int pixel_rate,
749 const struct intel_watermark_params *wm,
750 int fifo_size, int cpp,
751 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300752{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300753 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300754
755 /*
756 * Note: we need to make sure we don't overflow for various clock &
757 * latency values.
758 * clocks go from a few thousand to several hundred thousand.
759 * latency is usually a few thousand
760 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300761 entries = intel_wm_method1(pixel_rate, cpp,
762 latency_ns / 100);
763 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
764 wm->guard_size;
765 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300766
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300767 wm_size = fifo_size - entries;
768 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300769
770 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300771 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300772 wm_size = wm->max_wm;
773 if (wm_size <= 0)
774 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300775
776 /*
777 * Bspec seems to indicate that the value shouldn't be lower than
778 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
779 * Lets go for 8 which is the burst size since certain platforms
780 * already use a hardcoded 8 (which is what the spec says should be
781 * done).
782 */
783 if (wm_size <= 8)
784 wm_size = 8;
785
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300786 return wm_size;
787}
788
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300789static bool is_disabling(int old, int new, int threshold)
790{
791 return old >= threshold && new < threshold;
792}
793
794static bool is_enabling(int old, int new, int threshold)
795{
796 return old < threshold && new >= threshold;
797}
798
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300799static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
800{
801 return dev_priv->wm.max_level + 1;
802}
803
Ville Syrjälä24304d812017-03-14 17:10:49 +0200804static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
805 const struct intel_plane_state *plane_state)
806{
807 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
808
809 /* FIXME check the 'enable' instead */
810 if (!crtc_state->base.active)
811 return false;
812
813 /*
814 * Treat cursor with fb as always visible since cursor updates
815 * can happen faster than the vrefresh rate, and the current
816 * watermark code doesn't handle that correctly. Cursor updates
817 * which set/clear the fb or change the cursor size are going
818 * to get throttled by intel_legacy_cursor_update() to work
819 * around this problem with the watermark code.
820 */
821 if (plane->id == PLANE_CURSOR)
822 return plane_state->base.fb != NULL;
823 else
824 return plane_state->base.visible;
825}
826
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200827static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300828{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200829 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300830
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200831 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200832 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300833 if (enabled)
834 return NULL;
835 enabled = crtc;
836 }
837 }
838
839 return enabled;
840}
841
Ville Syrjälä432081b2016-10-31 22:37:03 +0200842static void pineview_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300843{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200844 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200845 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300846 const struct cxsr_latency *latency;
847 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300848 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300849
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100850 latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
851 dev_priv->is_ddr3,
852 dev_priv->fsb_freq,
853 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300854 if (!latency) {
855 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300856 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300857 return;
858 }
859
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200860 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300861 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200862 const struct drm_display_mode *adjusted_mode =
863 &crtc->config->base.adjusted_mode;
864 const struct drm_framebuffer *fb =
865 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200866 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300867 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300868
869 /* Display SR */
870 wm = intel_calculate_wm(clock, &pineview_display_wm,
871 pineview_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200872 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300873 reg = I915_READ(DSPFW1);
874 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200875 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300876 I915_WRITE(DSPFW1, reg);
877 DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg);
878
879 /* cursor SR */
880 wm = intel_calculate_wm(clock, &pineview_cursor_wm,
881 pineview_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300882 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300883 reg = I915_READ(DSPFW3);
884 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200885 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300886 I915_WRITE(DSPFW3, reg);
887
888 /* Display HPLL off SR */
889 wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm,
890 pineview_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200891 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300892 reg = I915_READ(DSPFW3);
893 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200894 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300895 I915_WRITE(DSPFW3, reg);
896
897 /* cursor HPLL off SR */
898 wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm,
899 pineview_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300900 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300901 reg = I915_READ(DSPFW3);
902 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200903 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300904 I915_WRITE(DSPFW3, reg);
905 DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg);
906
Imre Deak5209b1f2014-07-01 12:36:17 +0300907 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300908 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300909 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300910 }
911}
912
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300913/*
914 * Documentation says:
915 * "If the line size is small, the TLB fetches can get in the way of the
916 * data fetches, causing some lag in the pixel data return which is not
917 * accounted for in the above formulas. The following adjustment only
918 * needs to be applied if eight whole lines fit in the buffer at once.
919 * The WM is adjusted upwards by the difference between the FIFO size
920 * and the size of 8 whole lines. This adjustment is always performed
921 * in the actual pixel depth regardless of whether FBC is enabled or not."
922 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000923static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300924{
925 int tlb_miss = fifo_size * 64 - width * cpp * 8;
926
927 return max(0, tlb_miss);
928}
929
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300930static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
931 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300932{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300933 enum pipe pipe;
934
935 for_each_pipe(dev_priv, pipe)
936 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
937
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300938 I915_WRITE(DSPFW1,
939 FW_WM(wm->sr.plane, SR) |
940 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
941 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
942 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
943 I915_WRITE(DSPFW2,
944 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
945 FW_WM(wm->sr.fbc, FBC_SR) |
946 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
947 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
948 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
949 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
950 I915_WRITE(DSPFW3,
951 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
952 FW_WM(wm->sr.cursor, CURSOR_SR) |
953 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
954 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300955
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300956 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300957}
958
Ville Syrjälä15665972015-03-10 16:16:28 +0200959#define FW_WM_VLV(value, plane) \
960 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
961
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200962static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200963 const struct vlv_wm_values *wm)
964{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200965 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200966
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200967 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200968 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
969
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200970 I915_WRITE(VLV_DDL(pipe),
971 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
972 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
973 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
974 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
975 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200976
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200977 /*
978 * Zero the (unused) WM1 watermarks, and also clear all the
979 * high order bits so that there are no out of bounds values
980 * present in the registers during the reprogramming.
981 */
982 I915_WRITE(DSPHOWM, 0);
983 I915_WRITE(DSPHOWM1, 0);
984 I915_WRITE(DSPFW4, 0);
985 I915_WRITE(DSPFW5, 0);
986 I915_WRITE(DSPFW6, 0);
987
Ville Syrjäläae801522015-03-05 21:19:49 +0200988 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200989 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +0200990 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
991 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
992 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200993 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +0200994 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
995 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
996 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +0200997 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +0200998 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +0200999
1000 if (IS_CHERRYVIEW(dev_priv)) {
1001 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001002 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1003 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001004 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001005 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1006 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001007 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001008 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1009 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001010 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001011 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001012 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1013 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1014 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1015 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1016 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1017 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1018 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1019 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1020 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001021 } else {
1022 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001023 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1024 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001025 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001026 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001027 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1028 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1029 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1030 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1031 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1032 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001033 }
1034
1035 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001036}
1037
Ville Syrjälä15665972015-03-10 16:16:28 +02001038#undef FW_WM_VLV
1039
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001040static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1041{
1042 /* all latencies in usec */
1043 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1044 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001045 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001046
Ville Syrjälä79d94302017-04-21 21:14:30 +03001047 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001048}
1049
1050static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1051{
1052 /*
1053 * DSPCNTR[13] supposedly controls whether the
1054 * primary plane can use the FIFO space otherwise
1055 * reserved for the sprite plane. It's not 100% clear
1056 * what the actual FIFO size is, but it looks like we
1057 * can happily set both primary and sprite watermarks
1058 * up to 127 cachelines. So that would seem to mean
1059 * that either DSPCNTR[13] doesn't do anything, or that
1060 * the total FIFO is >= 256 cachelines in size. Either
1061 * way, we don't seem to have to worry about this
1062 * repartitioning as the maximum watermark value the
1063 * register can hold for each plane is lower than the
1064 * minimum FIFO size.
1065 */
1066 switch (plane_id) {
1067 case PLANE_CURSOR:
1068 return 63;
1069 case PLANE_PRIMARY:
1070 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1071 case PLANE_SPRITE0:
1072 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1073 default:
1074 MISSING_CASE(plane_id);
1075 return 0;
1076 }
1077}
1078
1079static int g4x_fbc_fifo_size(int level)
1080{
1081 switch (level) {
1082 case G4X_WM_LEVEL_SR:
1083 return 7;
1084 case G4X_WM_LEVEL_HPLL:
1085 return 15;
1086 default:
1087 MISSING_CASE(level);
1088 return 0;
1089 }
1090}
1091
1092static uint16_t g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1093 const struct intel_plane_state *plane_state,
1094 int level)
1095{
1096 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1097 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1098 const struct drm_display_mode *adjusted_mode =
1099 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001100 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1101 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001102
1103 if (latency == 0)
1104 return USHRT_MAX;
1105
1106 if (!intel_wm_plane_visible(crtc_state, plane_state))
1107 return 0;
1108
1109 /*
1110 * Not 100% sure which way ELK should go here as the
1111 * spec only says CL/CTG should assume 32bpp and BW
1112 * doesn't need to. But as these things followed the
1113 * mobile vs. desktop lines on gen3 as well, let's
1114 * assume ELK doesn't need this.
1115 *
1116 * The spec also fails to list such a restriction for
1117 * the HPLL watermark, which seems a little strange.
1118 * Let's use 32bpp for the HPLL watermark as well.
1119 */
1120 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1121 level != G4X_WM_LEVEL_NORMAL)
1122 cpp = 4;
1123 else
1124 cpp = plane_state->base.fb->format->cpp[0];
1125
1126 clock = adjusted_mode->crtc_clock;
1127 htotal = adjusted_mode->crtc_htotal;
1128
1129 if (plane->id == PLANE_CURSOR)
1130 width = plane_state->base.crtc_w;
1131 else
1132 width = drm_rect_width(&plane_state->base.dst);
1133
1134 if (plane->id == PLANE_CURSOR) {
1135 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1136 } else if (plane->id == PLANE_PRIMARY &&
1137 level == G4X_WM_LEVEL_NORMAL) {
1138 wm = intel_wm_method1(clock, cpp, latency);
1139 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001140 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001141
1142 small = intel_wm_method1(clock, cpp, latency);
1143 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1144
1145 wm = min(small, large);
1146 }
1147
1148 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1149 width, cpp);
1150
1151 wm = DIV_ROUND_UP(wm, 64) + 2;
1152
Chris Wilson1a1f1282017-11-07 14:03:38 +00001153 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001154}
1155
1156static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1157 int level, enum plane_id plane_id, u16 value)
1158{
1159 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1160 bool dirty = false;
1161
1162 for (; level < intel_wm_num_levels(dev_priv); level++) {
1163 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1164
1165 dirty |= raw->plane[plane_id] != value;
1166 raw->plane[plane_id] = value;
1167 }
1168
1169 return dirty;
1170}
1171
1172static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1173 int level, u16 value)
1174{
1175 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1176 bool dirty = false;
1177
1178 /* NORMAL level doesn't have an FBC watermark */
1179 level = max(level, G4X_WM_LEVEL_SR);
1180
1181 for (; level < intel_wm_num_levels(dev_priv); level++) {
1182 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1183
1184 dirty |= raw->fbc != value;
1185 raw->fbc = value;
1186 }
1187
1188 return dirty;
1189}
1190
1191static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
1192 const struct intel_plane_state *pstate,
1193 uint32_t pri_val);
1194
1195static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1196 const struct intel_plane_state *plane_state)
1197{
1198 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1199 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1200 enum plane_id plane_id = plane->id;
1201 bool dirty = false;
1202 int level;
1203
1204 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1205 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1206 if (plane_id == PLANE_PRIMARY)
1207 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1208 goto out;
1209 }
1210
1211 for (level = 0; level < num_levels; level++) {
1212 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1213 int wm, max_wm;
1214
1215 wm = g4x_compute_wm(crtc_state, plane_state, level);
1216 max_wm = g4x_plane_fifo_size(plane_id, level);
1217
1218 if (wm > max_wm)
1219 break;
1220
1221 dirty |= raw->plane[plane_id] != wm;
1222 raw->plane[plane_id] = wm;
1223
1224 if (plane_id != PLANE_PRIMARY ||
1225 level == G4X_WM_LEVEL_NORMAL)
1226 continue;
1227
1228 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1229 raw->plane[plane_id]);
1230 max_wm = g4x_fbc_fifo_size(level);
1231
1232 /*
1233 * FBC wm is not mandatory as we
1234 * can always just disable its use.
1235 */
1236 if (wm > max_wm)
1237 wm = USHRT_MAX;
1238
1239 dirty |= raw->fbc != wm;
1240 raw->fbc = wm;
1241 }
1242
1243 /* mark watermarks as invalid */
1244 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1245
1246 if (plane_id == PLANE_PRIMARY)
1247 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1248
1249 out:
1250 if (dirty) {
1251 DRM_DEBUG_KMS("%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1252 plane->base.name,
1253 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1254 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1255 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
1256
1257 if (plane_id == PLANE_PRIMARY)
1258 DRM_DEBUG_KMS("FBC watermarks: SR=%d, HPLL=%d\n",
1259 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1260 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
1261 }
1262
1263 return dirty;
1264}
1265
1266static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1267 enum plane_id plane_id, int level)
1268{
1269 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1270
1271 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1272}
1273
1274static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1275 int level)
1276{
1277 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1278
1279 if (level > dev_priv->wm.max_level)
1280 return false;
1281
1282 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1283 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1284 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1285}
1286
1287/* mark all levels starting from 'level' as invalid */
1288static void g4x_invalidate_wms(struct intel_crtc *crtc,
1289 struct g4x_wm_state *wm_state, int level)
1290{
1291 if (level <= G4X_WM_LEVEL_NORMAL) {
1292 enum plane_id plane_id;
1293
1294 for_each_plane_id_on_crtc(crtc, plane_id)
1295 wm_state->wm.plane[plane_id] = USHRT_MAX;
1296 }
1297
1298 if (level <= G4X_WM_LEVEL_SR) {
1299 wm_state->cxsr = false;
1300 wm_state->sr.cursor = USHRT_MAX;
1301 wm_state->sr.plane = USHRT_MAX;
1302 wm_state->sr.fbc = USHRT_MAX;
1303 }
1304
1305 if (level <= G4X_WM_LEVEL_HPLL) {
1306 wm_state->hpll_en = false;
1307 wm_state->hpll.cursor = USHRT_MAX;
1308 wm_state->hpll.plane = USHRT_MAX;
1309 wm_state->hpll.fbc = USHRT_MAX;
1310 }
1311}
1312
1313static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1314{
1315 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1316 struct intel_atomic_state *state =
1317 to_intel_atomic_state(crtc_state->base.state);
1318 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
1319 int num_active_planes = hweight32(crtc_state->active_planes &
1320 ~BIT(PLANE_CURSOR));
1321 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001322 const struct intel_plane_state *old_plane_state;
1323 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001324 struct intel_plane *plane;
1325 enum plane_id plane_id;
1326 int i, level;
1327 unsigned int dirty = 0;
1328
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001329 for_each_oldnew_intel_plane_in_state(state, plane,
1330 old_plane_state,
1331 new_plane_state, i) {
1332 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001333 old_plane_state->base.crtc != &crtc->base)
1334 continue;
1335
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001336 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001337 dirty |= BIT(plane->id);
1338 }
1339
1340 if (!dirty)
1341 return 0;
1342
1343 level = G4X_WM_LEVEL_NORMAL;
1344 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1345 goto out;
1346
1347 raw = &crtc_state->wm.g4x.raw[level];
1348 for_each_plane_id_on_crtc(crtc, plane_id)
1349 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1350
1351 level = G4X_WM_LEVEL_SR;
1352
1353 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1354 goto out;
1355
1356 raw = &crtc_state->wm.g4x.raw[level];
1357 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1358 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1359 wm_state->sr.fbc = raw->fbc;
1360
1361 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1362
1363 level = G4X_WM_LEVEL_HPLL;
1364
1365 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1366 goto out;
1367
1368 raw = &crtc_state->wm.g4x.raw[level];
1369 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1370 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1371 wm_state->hpll.fbc = raw->fbc;
1372
1373 wm_state->hpll_en = wm_state->cxsr;
1374
1375 level++;
1376
1377 out:
1378 if (level == G4X_WM_LEVEL_NORMAL)
1379 return -EINVAL;
1380
1381 /* invalidate the higher levels */
1382 g4x_invalidate_wms(crtc, wm_state, level);
1383
1384 /*
1385 * Determine if the FBC watermark(s) can be used. IF
1386 * this isn't the case we prefer to disable the FBC
1387 ( watermark(s) rather than disable the SR/HPLL
1388 * level(s) entirely.
1389 */
1390 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1391
1392 if (level >= G4X_WM_LEVEL_SR &&
1393 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1394 wm_state->fbc_en = false;
1395 else if (level >= G4X_WM_LEVEL_HPLL &&
1396 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1397 wm_state->fbc_en = false;
1398
1399 return 0;
1400}
1401
Matt Ropercd1d3ee2018-12-10 13:54:14 -08001402static int g4x_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001403{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08001404 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->base.crtc);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001405 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1406 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1407 struct intel_atomic_state *intel_state =
1408 to_intel_atomic_state(new_crtc_state->base.state);
1409 const struct intel_crtc_state *old_crtc_state =
1410 intel_atomic_get_old_crtc_state(intel_state, crtc);
1411 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001412 enum plane_id plane_id;
1413
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001414 if (!new_crtc_state->base.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->base)) {
1415 *intermediate = *optimal;
1416
1417 intermediate->cxsr = false;
1418 intermediate->hpll_en = false;
1419 goto out;
1420 }
1421
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001422 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001423 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001424 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001425 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001426 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1427
1428 for_each_plane_id_on_crtc(crtc, plane_id) {
1429 intermediate->wm.plane[plane_id] =
1430 max(optimal->wm.plane[plane_id],
1431 active->wm.plane[plane_id]);
1432
1433 WARN_ON(intermediate->wm.plane[plane_id] >
1434 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1435 }
1436
1437 intermediate->sr.plane = max(optimal->sr.plane,
1438 active->sr.plane);
1439 intermediate->sr.cursor = max(optimal->sr.cursor,
1440 active->sr.cursor);
1441 intermediate->sr.fbc = max(optimal->sr.fbc,
1442 active->sr.fbc);
1443
1444 intermediate->hpll.plane = max(optimal->hpll.plane,
1445 active->hpll.plane);
1446 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1447 active->hpll.cursor);
1448 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1449 active->hpll.fbc);
1450
1451 WARN_ON((intermediate->sr.plane >
1452 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1453 intermediate->sr.cursor >
1454 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1455 intermediate->cxsr);
1456 WARN_ON((intermediate->sr.plane >
1457 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1458 intermediate->sr.cursor >
1459 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1460 intermediate->hpll_en);
1461
1462 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1463 intermediate->fbc_en && intermediate->cxsr);
1464 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1465 intermediate->fbc_en && intermediate->hpll_en);
1466
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001467out:
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001468 /*
1469 * If our intermediate WM are identical to the final WM, then we can
1470 * omit the post-vblank programming; only update if it's different.
1471 */
1472 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001473 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001474
1475 return 0;
1476}
1477
1478static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1479 struct g4x_wm_values *wm)
1480{
1481 struct intel_crtc *crtc;
1482 int num_active_crtcs = 0;
1483
1484 wm->cxsr = true;
1485 wm->hpll_en = true;
1486 wm->fbc_en = true;
1487
1488 for_each_intel_crtc(&dev_priv->drm, crtc) {
1489 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1490
1491 if (!crtc->active)
1492 continue;
1493
1494 if (!wm_state->cxsr)
1495 wm->cxsr = false;
1496 if (!wm_state->hpll_en)
1497 wm->hpll_en = false;
1498 if (!wm_state->fbc_en)
1499 wm->fbc_en = false;
1500
1501 num_active_crtcs++;
1502 }
1503
1504 if (num_active_crtcs != 1) {
1505 wm->cxsr = false;
1506 wm->hpll_en = false;
1507 wm->fbc_en = false;
1508 }
1509
1510 for_each_intel_crtc(&dev_priv->drm, crtc) {
1511 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1512 enum pipe pipe = crtc->pipe;
1513
1514 wm->pipe[pipe] = wm_state->wm;
1515 if (crtc->active && wm->cxsr)
1516 wm->sr = wm_state->sr;
1517 if (crtc->active && wm->hpll_en)
1518 wm->hpll = wm_state->hpll;
1519 }
1520}
1521
1522static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1523{
1524 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1525 struct g4x_wm_values new_wm = {};
1526
1527 g4x_merge_wm(dev_priv, &new_wm);
1528
1529 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1530 return;
1531
1532 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1533 _intel_set_memory_cxsr(dev_priv, false);
1534
1535 g4x_write_wm_values(dev_priv, &new_wm);
1536
1537 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1538 _intel_set_memory_cxsr(dev_priv, true);
1539
1540 *old_wm = new_wm;
1541}
1542
1543static void g4x_initial_watermarks(struct intel_atomic_state *state,
1544 struct intel_crtc_state *crtc_state)
1545{
1546 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1547 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
1548
1549 mutex_lock(&dev_priv->wm.wm_mutex);
1550 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1551 g4x_program_watermarks(dev_priv);
1552 mutex_unlock(&dev_priv->wm.wm_mutex);
1553}
1554
1555static void g4x_optimize_watermarks(struct intel_atomic_state *state,
1556 struct intel_crtc_state *crtc_state)
1557{
1558 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
1559 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
1560
1561 if (!crtc_state->wm.need_postvbl_update)
1562 return;
1563
1564 mutex_lock(&dev_priv->wm.wm_mutex);
1565 intel_crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
1566 g4x_program_watermarks(dev_priv);
1567 mutex_unlock(&dev_priv->wm.wm_mutex);
1568}
1569
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001570/* latency must be in 0.1us units. */
1571static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001572 unsigned int htotal,
1573 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001574 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001575 unsigned int latency)
1576{
1577 unsigned int ret;
1578
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001579 ret = intel_wm_method2(pixel_rate, htotal,
1580 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001581 ret = DIV_ROUND_UP(ret, 64);
1582
1583 return ret;
1584}
1585
Ville Syrjäläbb726512016-10-31 22:37:24 +02001586static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001587{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001588 /* all latencies in usec */
1589 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1590
Ville Syrjälä58590c12015-09-08 21:05:12 +03001591 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1592
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001593 if (IS_CHERRYVIEW(dev_priv)) {
1594 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1595 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001596
1597 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001598 }
1599}
1600
Ville Syrjäläe339d672016-11-28 19:37:17 +02001601static uint16_t vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1602 const struct intel_plane_state *plane_state,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001603 int level)
1604{
Ville Syrjäläe339d672016-11-28 19:37:17 +02001605 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001606 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001607 const struct drm_display_mode *adjusted_mode =
1608 &crtc_state->base.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001609 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001610
1611 if (dev_priv->wm.pri_latency[level] == 0)
1612 return USHRT_MAX;
1613
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001614 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001615 return 0;
1616
Daniel Vetteref426c12017-01-04 11:41:10 +01001617 cpp = plane_state->base.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001618 clock = adjusted_mode->crtc_clock;
1619 htotal = adjusted_mode->crtc_htotal;
1620 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001621
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001622 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001623 /*
1624 * FIXME the formula gives values that are
1625 * too big for the cursor FIFO, and hence we
1626 * would never be able to use cursors. For
1627 * now just hardcode the watermark.
1628 */
1629 wm = 63;
1630 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001631 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001632 dev_priv->wm.pri_latency[level] * 10);
1633 }
1634
Chris Wilson1a1f1282017-11-07 14:03:38 +00001635 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001636}
1637
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001638static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1639{
1640 return (active_planes & (BIT(PLANE_SPRITE0) |
1641 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1642}
1643
Ville Syrjälä5012e602017-03-02 19:14:56 +02001644static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001645{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001646 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001647 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001648 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001649 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001650 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1651 int num_active_planes = hweight32(active_planes);
1652 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001653 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001654 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001655 unsigned int total_rate;
1656 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001657
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001658 /*
1659 * When enabling sprite0 after sprite1 has already been enabled
1660 * we tend to get an underrun unless sprite0 already has some
1661 * FIFO space allcoated. Hence we always allocate at least one
1662 * cacheline for sprite0 whenever sprite1 is enabled.
1663 *
1664 * All other plane enable sequences appear immune to this problem.
1665 */
1666 if (vlv_need_sprite0_fifo_workaround(active_planes))
1667 sprite0_fifo_extra = 1;
1668
Ville Syrjälä5012e602017-03-02 19:14:56 +02001669 total_rate = raw->plane[PLANE_PRIMARY] +
1670 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001671 raw->plane[PLANE_SPRITE1] +
1672 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001673
Ville Syrjälä5012e602017-03-02 19:14:56 +02001674 if (total_rate > fifo_size)
1675 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001676
Ville Syrjälä5012e602017-03-02 19:14:56 +02001677 if (total_rate == 0)
1678 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001679
Ville Syrjälä5012e602017-03-02 19:14:56 +02001680 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001681 unsigned int rate;
1682
Ville Syrjälä5012e602017-03-02 19:14:56 +02001683 if ((active_planes & BIT(plane_id)) == 0) {
1684 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001685 continue;
1686 }
1687
Ville Syrjälä5012e602017-03-02 19:14:56 +02001688 rate = raw->plane[plane_id];
1689 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1690 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001691 }
1692
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001693 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1694 fifo_left -= sprite0_fifo_extra;
1695
Ville Syrjälä5012e602017-03-02 19:14:56 +02001696 fifo_state->plane[PLANE_CURSOR] = 63;
1697
1698 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001699
1700 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001701 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001702 int plane_extra;
1703
1704 if (fifo_left == 0)
1705 break;
1706
Ville Syrjälä5012e602017-03-02 19:14:56 +02001707 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001708 continue;
1709
1710 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001711 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001712 fifo_left -= plane_extra;
1713 }
1714
Ville Syrjälä5012e602017-03-02 19:14:56 +02001715 WARN_ON(active_planes != 0 && fifo_left != 0);
1716
1717 /* give it all to the first plane if none are active */
1718 if (active_planes == 0) {
1719 WARN_ON(fifo_left != fifo_size);
1720 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1721 }
1722
1723 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001724}
1725
Ville Syrjäläff32c542017-03-02 19:14:57 +02001726/* mark all levels starting from 'level' as invalid */
1727static void vlv_invalidate_wms(struct intel_crtc *crtc,
1728 struct vlv_wm_state *wm_state, int level)
1729{
1730 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1731
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001732 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001733 enum plane_id plane_id;
1734
1735 for_each_plane_id_on_crtc(crtc, plane_id)
1736 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1737
1738 wm_state->sr[level].cursor = USHRT_MAX;
1739 wm_state->sr[level].plane = USHRT_MAX;
1740 }
1741}
1742
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001743static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1744{
1745 if (wm > fifo_size)
1746 return USHRT_MAX;
1747 else
1748 return fifo_size - wm;
1749}
1750
Ville Syrjäläff32c542017-03-02 19:14:57 +02001751/*
1752 * Starting from 'level' set all higher
1753 * levels to 'value' in the "raw" watermarks.
1754 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001755static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001756 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001757{
Ville Syrjäläff32c542017-03-02 19:14:57 +02001758 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001759 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001760 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001761
Ville Syrjäläff32c542017-03-02 19:14:57 +02001762 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001763 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001764
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001765 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001766 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001767 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001768
1769 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001770}
1771
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001772static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1773 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001774{
1775 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
1776 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001777 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001778 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001779 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001780
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001781 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001782 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1783 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001784 }
1785
1786 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001787 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001788 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1789 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1790
Ville Syrjäläff32c542017-03-02 19:14:57 +02001791 if (wm > max_wm)
1792 break;
1793
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001794 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001795 raw->plane[plane_id] = wm;
1796 }
1797
1798 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001799 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001800
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001801out:
1802 if (dirty)
Ville Syrjälä57a65282017-04-21 21:14:22 +03001803 DRM_DEBUG_KMS("%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001804 plane->base.name,
1805 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1806 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1807 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1808
1809 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001810}
1811
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001812static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1813 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001814{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001815 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001816 &crtc_state->wm.vlv.raw[level];
1817 const struct vlv_fifo_state *fifo_state =
1818 &crtc_state->wm.vlv.fifo_state;
1819
1820 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1821}
1822
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001823static 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 +02001824{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001825 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1826 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1827 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1828 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001829}
1830
1831static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001832{
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001833 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001834 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001835 struct intel_atomic_state *state =
1836 to_intel_atomic_state(crtc_state->base.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001837 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001838 const struct vlv_fifo_state *fifo_state =
1839 &crtc_state->wm.vlv.fifo_state;
1840 int num_active_planes = hweight32(crtc_state->active_planes &
1841 ~BIT(PLANE_CURSOR));
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001842 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->base);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001843 const struct intel_plane_state *old_plane_state;
1844 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001845 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001846 enum plane_id plane_id;
1847 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001848 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001849
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001850 for_each_oldnew_intel_plane_in_state(state, plane,
1851 old_plane_state,
1852 new_plane_state, i) {
1853 if (new_plane_state->base.crtc != &crtc->base &&
Ville Syrjäläff32c542017-03-02 19:14:57 +02001854 old_plane_state->base.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001855 continue;
1856
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001857 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001858 dirty |= BIT(plane->id);
1859 }
1860
1861 /*
1862 * DSPARB registers may have been reset due to the
1863 * power well being turned off. Make sure we restore
1864 * them to a consistent state even if no primary/sprite
1865 * planes are initially active.
1866 */
1867 if (needs_modeset)
1868 crtc_state->fifo_changed = true;
1869
1870 if (!dirty)
1871 return 0;
1872
1873 /* cursor changes don't warrant a FIFO recompute */
1874 if (dirty & ~BIT(PLANE_CURSOR)) {
1875 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001876 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001877 const struct vlv_fifo_state *old_fifo_state =
1878 &old_crtc_state->wm.vlv.fifo_state;
1879
1880 ret = vlv_compute_fifo(crtc_state);
1881 if (ret)
1882 return ret;
1883
1884 if (needs_modeset ||
1885 memcmp(old_fifo_state, fifo_state,
1886 sizeof(*fifo_state)) != 0)
1887 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001888 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001889
Ville Syrjäläff32c542017-03-02 19:14:57 +02001890 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001891 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001892 /*
1893 * Note that enabling cxsr with no primary/sprite planes
1894 * enabled can wedge the pipe. Hence we only allow cxsr
1895 * with exactly one enabled primary/sprite plane.
1896 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001897 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001898
Ville Syrjälä5012e602017-03-02 19:14:56 +02001899 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001900 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001901 const int sr_fifo_size = INTEL_INFO(dev_priv)->num_pipes * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001902
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001903 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001904 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001905
Ville Syrjäläff32c542017-03-02 19:14:57 +02001906 for_each_plane_id_on_crtc(crtc, plane_id) {
1907 wm_state->wm[level].plane[plane_id] =
1908 vlv_invert_wm_value(raw->plane[plane_id],
1909 fifo_state->plane[plane_id]);
1910 }
1911
1912 wm_state->sr[level].plane =
1913 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001914 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001915 raw->plane[PLANE_SPRITE1]),
1916 sr_fifo_size);
1917
1918 wm_state->sr[level].cursor =
1919 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1920 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001921 }
1922
Ville Syrjäläff32c542017-03-02 19:14:57 +02001923 if (level == 0)
1924 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001925
Ville Syrjäläff32c542017-03-02 19:14:57 +02001926 /* limit to only levels we can actually handle */
1927 wm_state->num_levels = level;
1928
1929 /* invalidate the higher levels */
1930 vlv_invalidate_wms(crtc, wm_state, level);
1931
1932 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001933}
1934
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001935#define VLV_FIFO(plane, value) \
1936 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1937
Ville Syrjäläff32c542017-03-02 19:14:57 +02001938static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
1939 struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001940{
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001941 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001942 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001943 const struct vlv_fifo_state *fifo_state =
1944 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001945 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001946
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001947 if (!crtc_state->fifo_changed)
1948 return;
1949
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001950 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1951 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1952 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001953
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001954 WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63);
1955 WARN_ON(fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001956
Ville Syrjäläc137d662017-03-02 19:15:06 +02001957 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1958
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001959 /*
1960 * uncore.lock serves a double purpose here. It allows us to
1961 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1962 * it protects the DSPARB registers from getting clobbered by
1963 * parallel updates from multiple pipes.
1964 *
1965 * intel_pipe_update_start() has already disabled interrupts
1966 * for us, so a plain spin_lock() is sufficient here.
1967 */
1968 spin_lock(&dev_priv->uncore.lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001969
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001970 switch (crtc->pipe) {
1971 uint32_t dsparb, dsparb2, dsparb3;
1972 case PIPE_A:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001973 dsparb = I915_READ_FW(DSPARB);
1974 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001975
1976 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1977 VLV_FIFO(SPRITEB, 0xff));
1978 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1979 VLV_FIFO(SPRITEB, sprite1_start));
1980
1981 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1982 VLV_FIFO(SPRITEB_HI, 0x1));
1983 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
1984 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
1985
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001986 I915_WRITE_FW(DSPARB, dsparb);
1987 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001988 break;
1989 case PIPE_B:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001990 dsparb = I915_READ_FW(DSPARB);
1991 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001992
1993 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
1994 VLV_FIFO(SPRITED, 0xff));
1995 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
1996 VLV_FIFO(SPRITED, sprite1_start));
1997
1998 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
1999 VLV_FIFO(SPRITED_HI, 0xff));
2000 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2001 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2002
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002003 I915_WRITE_FW(DSPARB, dsparb);
2004 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002005 break;
2006 case PIPE_C:
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002007 dsparb3 = I915_READ_FW(DSPARB3);
2008 dsparb2 = I915_READ_FW(DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002009
2010 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2011 VLV_FIFO(SPRITEF, 0xff));
2012 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2013 VLV_FIFO(SPRITEF, sprite1_start));
2014
2015 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2016 VLV_FIFO(SPRITEF_HI, 0xff));
2017 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2018 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2019
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002020 I915_WRITE_FW(DSPARB3, dsparb3);
2021 I915_WRITE_FW(DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002022 break;
2023 default:
2024 break;
2025 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002026
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002027 POSTING_READ_FW(DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002028
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002029 spin_unlock(&dev_priv->uncore.lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002030}
2031
2032#undef VLV_FIFO
2033
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002034static int vlv_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002035{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002036 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->base.crtc);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002037 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2038 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2039 struct intel_atomic_state *intel_state =
2040 to_intel_atomic_state(new_crtc_state->base.state);
2041 const struct intel_crtc_state *old_crtc_state =
2042 intel_atomic_get_old_crtc_state(intel_state, crtc);
2043 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002044 int level;
2045
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002046 if (!new_crtc_state->base.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->base)) {
2047 *intermediate = *optimal;
2048
2049 intermediate->cxsr = false;
2050 goto out;
2051 }
2052
Ville Syrjälä4841da52017-03-02 19:14:59 +02002053 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002054 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002055 !new_crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002056
2057 for (level = 0; level < intermediate->num_levels; level++) {
2058 enum plane_id plane_id;
2059
2060 for_each_plane_id_on_crtc(crtc, plane_id) {
2061 intermediate->wm[level].plane[plane_id] =
2062 min(optimal->wm[level].plane[plane_id],
2063 active->wm[level].plane[plane_id]);
2064 }
2065
2066 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2067 active->sr[level].plane);
2068 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2069 active->sr[level].cursor);
2070 }
2071
2072 vlv_invalidate_wms(crtc, intermediate, level);
2073
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002074out:
Ville Syrjälä4841da52017-03-02 19:14:59 +02002075 /*
2076 * If our intermediate WM are identical to the final WM, then we can
2077 * omit the post-vblank programming; only update if it's different.
2078 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002079 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002080 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002081
2082 return 0;
2083}
2084
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002085static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002086 struct vlv_wm_values *wm)
2087{
2088 struct intel_crtc *crtc;
2089 int num_active_crtcs = 0;
2090
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002091 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002092 wm->cxsr = true;
2093
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002094 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002095 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002096
2097 if (!crtc->active)
2098 continue;
2099
2100 if (!wm_state->cxsr)
2101 wm->cxsr = false;
2102
2103 num_active_crtcs++;
2104 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2105 }
2106
2107 if (num_active_crtcs != 1)
2108 wm->cxsr = false;
2109
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002110 if (num_active_crtcs > 1)
2111 wm->level = VLV_WM_LEVEL_PM2;
2112
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002113 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002114 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002115 enum pipe pipe = crtc->pipe;
2116
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002117 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002118 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002119 wm->sr = wm_state->sr[wm->level];
2120
Ville Syrjälä1b313892016-11-28 19:37:08 +02002121 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2122 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2123 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2124 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002125 }
2126}
2127
Ville Syrjäläff32c542017-03-02 19:14:57 +02002128static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002129{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002130 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2131 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002132
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002133 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002134
Ville Syrjäläff32c542017-03-02 19:14:57 +02002135 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002136 return;
2137
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002138 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002139 chv_set_memory_dvfs(dev_priv, false);
2140
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002141 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002142 chv_set_memory_pm5(dev_priv, false);
2143
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002144 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002145 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002146
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002147 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002148
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002149 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002150 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002151
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002152 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002153 chv_set_memory_pm5(dev_priv, true);
2154
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002155 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002156 chv_set_memory_dvfs(dev_priv, true);
2157
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002158 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002159}
2160
Ville Syrjäläff32c542017-03-02 19:14:57 +02002161static void vlv_initial_watermarks(struct intel_atomic_state *state,
2162 struct intel_crtc_state *crtc_state)
2163{
2164 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2165 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
2166
2167 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002168 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2169 vlv_program_watermarks(dev_priv);
2170 mutex_unlock(&dev_priv->wm.wm_mutex);
2171}
2172
2173static void vlv_optimize_watermarks(struct intel_atomic_state *state,
2174 struct intel_crtc_state *crtc_state)
2175{
2176 struct drm_i915_private *dev_priv = to_i915(crtc_state->base.crtc->dev);
2177 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
2178
2179 if (!crtc_state->wm.need_postvbl_update)
2180 return;
2181
2182 mutex_lock(&dev_priv->wm.wm_mutex);
2183 intel_crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002184 vlv_program_watermarks(dev_priv);
2185 mutex_unlock(&dev_priv->wm.wm_mutex);
2186}
2187
Ville Syrjälä432081b2016-10-31 22:37:03 +02002188static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002189{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002190 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002191 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002192 int srwm = 1;
2193 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002194 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002195
2196 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002197 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002198 if (crtc) {
2199 /* self-refresh has much higher latency */
2200 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002201 const struct drm_display_mode *adjusted_mode =
2202 &crtc->config->base.adjusted_mode;
2203 const struct drm_framebuffer *fb =
2204 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002205 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002206 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002207 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002208 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002209 int entries;
2210
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002211 entries = intel_wm_method2(clock, htotal,
2212 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002213 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2214 srwm = I965_FIFO_SIZE - entries;
2215 if (srwm < 0)
2216 srwm = 1;
2217 srwm &= 0x1ff;
2218 DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n",
2219 entries, srwm);
2220
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002221 entries = intel_wm_method2(clock, htotal,
2222 crtc->base.cursor->state->crtc_w, 4,
2223 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002224 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002225 i965_cursor_wm_info.cacheline_size) +
2226 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002227
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002228 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002229 if (cursor_sr > i965_cursor_wm_info.max_wm)
2230 cursor_sr = i965_cursor_wm_info.max_wm;
2231
2232 DRM_DEBUG_KMS("self-refresh watermark: display plane %d "
2233 "cursor %d\n", srwm, cursor_sr);
2234
Imre Deak98584252014-06-13 14:54:20 +03002235 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002236 } else {
Imre Deak98584252014-06-13 14:54:20 +03002237 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002238 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002239 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002240 }
2241
2242 DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2243 srwm);
2244
2245 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002246 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2247 FW_WM(8, CURSORB) |
2248 FW_WM(8, PLANEB) |
2249 FW_WM(8, PLANEA));
2250 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2251 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002252 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002253 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002254
2255 if (cxsr_enabled)
2256 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002257}
2258
Ville Syrjäläf4998962015-03-10 17:02:21 +02002259#undef FW_WM
2260
Ville Syrjälä432081b2016-10-31 22:37:03 +02002261static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002262{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002263 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002264 const struct intel_watermark_params *wm_info;
2265 uint32_t fwater_lo;
2266 uint32_t fwater_hi;
2267 int cwm, srwm = 1;
2268 int fifo_size;
2269 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002270 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002271
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002272 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002273 wm_info = &i945_wm_info;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002274 else if (!IS_GEN2(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002275 wm_info = &i915_wm_info;
2276 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002277 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002278
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002279 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A);
2280 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002281 if (intel_crtc_active(crtc)) {
2282 const struct drm_display_mode *adjusted_mode =
2283 &crtc->config->base.adjusted_mode;
2284 const struct drm_framebuffer *fb =
2285 crtc->base.primary->state->fb;
2286 int cpp;
2287
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002288 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002289 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002290 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002291 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002292
Damien Lespiau241bfc32013-09-25 16:45:37 +01002293 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002294 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002295 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002296 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002297 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002298 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002299 if (planea_wm > (long)wm_info->max_wm)
2300 planea_wm = wm_info->max_wm;
2301 }
2302
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002303 if (IS_GEN2(dev_priv))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002304 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002305
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002306 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B);
2307 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002308 if (intel_crtc_active(crtc)) {
2309 const struct drm_display_mode *adjusted_mode =
2310 &crtc->config->base.adjusted_mode;
2311 const struct drm_framebuffer *fb =
2312 crtc->base.primary->state->fb;
2313 int cpp;
2314
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002315 if (IS_GEN2(dev_priv))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002316 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002317 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002318 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002319
Damien Lespiau241bfc32013-09-25 16:45:37 +01002320 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002321 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002322 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002323 if (enabled == NULL)
2324 enabled = crtc;
2325 else
2326 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002327 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002328 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002329 if (planeb_wm > (long)wm_info->max_wm)
2330 planeb_wm = wm_info->max_wm;
2331 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002332
2333 DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2334
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002335 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002336 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002337
Ville Syrjäläefc26112016-10-31 22:37:04 +02002338 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002339
2340 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002341 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002342 enabled = NULL;
2343 }
2344
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002345 /*
2346 * Overlay gets an aggressive default since video jitter is bad.
2347 */
2348 cwm = 2;
2349
2350 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002351 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002352
2353 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002354 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002355 /* self-refresh has much higher latency */
2356 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002357 const struct drm_display_mode *adjusted_mode =
2358 &enabled->config->base.adjusted_mode;
2359 const struct drm_framebuffer *fb =
2360 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002361 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002362 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002363 int hdisplay = enabled->config->pipe_src_w;
2364 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002365 int entries;
2366
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002367 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002368 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002369 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002370 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002371
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002372 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2373 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002374 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
2375 DRM_DEBUG_KMS("self-refresh entries: %d\n", entries);
2376 srwm = wm_info->fifo_size - entries;
2377 if (srwm < 0)
2378 srwm = 1;
2379
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002380 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002381 I915_WRITE(FW_BLC_SELF,
2382 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002383 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002384 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2385 }
2386
2387 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2388 planea_wm, planeb_wm, cwm, srwm);
2389
2390 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2391 fwater_hi = (cwm & 0x1f);
2392
2393 /* Set request length to 8 cachelines per fetch */
2394 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2395 fwater_hi = fwater_hi | (1 << 8);
2396
2397 I915_WRITE(FW_BLC, fwater_lo);
2398 I915_WRITE(FW_BLC2, fwater_hi);
2399
Imre Deak5209b1f2014-07-01 12:36:17 +03002400 if (enabled)
2401 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002402}
2403
Ville Syrjälä432081b2016-10-31 22:37:03 +02002404static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002405{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002406 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002407 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002408 const struct drm_display_mode *adjusted_mode;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002409 uint32_t fwater_lo;
2410 int planea_wm;
2411
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002412 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002413 if (crtc == NULL)
2414 return;
2415
Ville Syrjäläefc26112016-10-31 22:37:04 +02002416 adjusted_mode = &crtc->config->base.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002417 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002418 &i845_wm_info,
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002419 dev_priv->display.get_fifo_size(dev_priv, PLANE_A),
Chris Wilson5aef6002014-09-03 11:56:07 +01002420 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002421 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2422 fwater_lo |= (3<<8) | planea_wm;
2423
2424 DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm);
2425
2426 I915_WRITE(FW_BLC, fwater_lo);
2427}
2428
Ville Syrjälä37126462013-08-01 16:18:55 +03002429/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002430static unsigned int ilk_wm_method1(unsigned int pixel_rate,
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_method1(pixel_rate, cpp, latency);
2437 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002438
2439 return ret;
2440}
2441
Ville Syrjälä37126462013-08-01 16:18:55 +03002442/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002443static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2444 unsigned int htotal,
2445 unsigned int width,
2446 unsigned int cpp,
2447 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002448{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002449 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002450
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002451 ret = intel_wm_method2(pixel_rate, htotal,
2452 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002453 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002454
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002455 return ret;
2456}
2457
Ville Syrjälä23297042013-07-05 11:57:17 +03002458static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels,
Ville Syrjäläac484962016-01-20 21:05:26 +02002459 uint8_t cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002460{
Matt Roper15126882015-12-03 11:37:40 -08002461 /*
2462 * Neither of these should be possible since this function shouldn't be
2463 * called if the CRTC is off or the plane is invisible. But let's be
2464 * extra paranoid to avoid a potential divide-by-zero if we screw up
2465 * elsewhere in the driver.
2466 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002467 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002468 return 0;
2469 if (WARN_ON(!horiz_pixels))
2470 return 0;
2471
Ville Syrjäläac484962016-01-20 21:05:26 +02002472 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002473}
2474
Imre Deak820c1982013-12-17 14:46:36 +02002475struct ilk_wm_maximums {
Paulo Zanonicca32e92013-05-31 11:45:06 -03002476 uint16_t pri;
2477 uint16_t spr;
2478 uint16_t cur;
2479 uint16_t fbc;
2480};
2481
Ville Syrjälä37126462013-08-01 16:18:55 +03002482/*
2483 * For both WM_PIPE and WM_LP.
2484 * mem_value must be in 0.1us units.
2485 */
Matt Roper7221fc32015-09-24 15:53:08 -07002486static uint32_t ilk_compute_pri_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002487 const struct intel_plane_state *pstate,
Paulo Zanonicca32e92013-05-31 11:45:06 -03002488 uint32_t mem_value,
2489 bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002490{
Paulo Zanonicca32e92013-05-31 11:45:06 -03002491 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002492 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002493
Ville Syrjälä03981c62018-11-14 19:34:40 +02002494 if (mem_value == 0)
2495 return U32_MAX;
2496
Ville Syrjälä24304d812017-03-14 17:10:49 +02002497 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002498 return 0;
2499
Ville Syrjälä353c8592016-12-14 23:30:57 +02002500 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002501
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002502 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002503
2504 if (!is_lp)
2505 return method1;
2506
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002507 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002508 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002509 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002510 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002511
2512 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002513}
2514
Ville Syrjälä37126462013-08-01 16:18:55 +03002515/*
2516 * For both WM_PIPE and WM_LP.
2517 * mem_value must be in 0.1us units.
2518 */
Matt Roper7221fc32015-09-24 15:53:08 -07002519static uint32_t ilk_compute_spr_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002520 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002521 uint32_t mem_value)
2522{
2523 uint32_t method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002524 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002525
Ville Syrjälä03981c62018-11-14 19:34:40 +02002526 if (mem_value == 0)
2527 return U32_MAX;
2528
Ville Syrjälä24304d812017-03-14 17:10:49 +02002529 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002530 return 0;
2531
Ville Syrjälä353c8592016-12-14 23:30:57 +02002532 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002533
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002534 method1 = ilk_wm_method1(cstate->pixel_rate, cpp, mem_value);
2535 method2 = ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002536 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002537 drm_rect_width(&pstate->base.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002538 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002539 return min(method1, method2);
2540}
2541
Ville Syrjälä37126462013-08-01 16:18:55 +03002542/*
2543 * For both WM_PIPE and WM_LP.
2544 * mem_value must be in 0.1us units.
2545 */
Matt Roper7221fc32015-09-24 15:53:08 -07002546static uint32_t ilk_compute_cur_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002547 const struct intel_plane_state *pstate,
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002548 uint32_t mem_value)
2549{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002550 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002551
Ville Syrjälä03981c62018-11-14 19:34:40 +02002552 if (mem_value == 0)
2553 return U32_MAX;
2554
Ville Syrjälä24304d812017-03-14 17:10:49 +02002555 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002556 return 0;
2557
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002558 cpp = pstate->base.fb->format->cpp[0];
2559
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02002560 return ilk_wm_method2(cstate->pixel_rate,
Matt Roper7221fc32015-09-24 15:53:08 -07002561 cstate->base.adjusted_mode.crtc_htotal,
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002562 pstate->base.crtc_w, cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002563}
2564
Paulo Zanonicca32e92013-05-31 11:45:06 -03002565/* Only for WM_LP. */
Matt Roper7221fc32015-09-24 15:53:08 -07002566static uint32_t ilk_compute_fbc_wm(const struct intel_crtc_state *cstate,
Matt Roper43d59ed2015-09-24 15:53:07 -07002567 const struct intel_plane_state *pstate,
Ville Syrjälä1fda9882013-07-05 11:57:19 +03002568 uint32_t pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002569{
Ville Syrjälä83054942016-11-18 21:53:00 +02002570 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002571
Ville Syrjälä24304d812017-03-14 17:10:49 +02002572 if (!intel_wm_plane_visible(cstate, pstate))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002573 return 0;
2574
Ville Syrjälä353c8592016-12-14 23:30:57 +02002575 cpp = pstate->base.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002576
Ville Syrjälä936e71e2016-07-26 19:06:59 +03002577 return ilk_wm_fbc(pri_val, drm_rect_width(&pstate->base.dst), cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002578}
2579
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002580static unsigned int
2581ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002582{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002583 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002584 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002585 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002586 return 768;
2587 else
2588 return 512;
2589}
2590
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002591static unsigned int
2592ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2593 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002594{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002595 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002596 /* BDW primary/sprite plane watermarks */
2597 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002598 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002599 /* IVB/HSW primary/sprite plane watermarks */
2600 return level == 0 ? 127 : 1023;
2601 else if (!is_sprite)
2602 /* ILK/SNB primary plane watermarks */
2603 return level == 0 ? 127 : 511;
2604 else
2605 /* ILK/SNB sprite plane watermarks */
2606 return level == 0 ? 63 : 255;
2607}
2608
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002609static unsigned int
2610ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002611{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002612 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002613 return level == 0 ? 63 : 255;
2614 else
2615 return level == 0 ? 31 : 63;
2616}
2617
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002618static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002619{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002620 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002621 return 31;
2622 else
2623 return 15;
2624}
2625
Ville Syrjälä158ae642013-08-07 13:28:19 +03002626/* Calculate the maximum primary/sprite plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002627static unsigned int ilk_plane_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002628 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002629 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002630 enum intel_ddb_partitioning ddb_partitioning,
2631 bool is_sprite)
2632{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002633 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002634
2635 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002636 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002637 return 0;
2638
2639 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002640 if (level == 0 || config->num_pipes_active > 1) {
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002641 fifo_size /= INTEL_INFO(dev_priv)->num_pipes;
Ville Syrjälä158ae642013-08-07 13:28:19 +03002642
2643 /*
2644 * For some reason the non self refresh
2645 * FIFO size is only half of the self
2646 * refresh FIFO size on ILK/SNB.
2647 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002648 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002649 fifo_size /= 2;
2650 }
2651
Ville Syrjälä240264f2013-08-07 13:29:12 +03002652 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002653 /* level 0 is always calculated with 1:1 split */
2654 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2655 if (is_sprite)
2656 fifo_size *= 5;
2657 fifo_size /= 6;
2658 } else {
2659 fifo_size /= 2;
2660 }
2661 }
2662
2663 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002664 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002665}
2666
2667/* Calculate the maximum cursor plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002668static unsigned int ilk_cursor_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002669 int level,
2670 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002671{
2672 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002673 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002674 return 64;
2675
2676 /* otherwise just report max that registers can hold */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002677 return ilk_cursor_wm_reg_max(dev_priv, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002678}
2679
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002680static void ilk_compute_wm_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002681 int level,
2682 const struct intel_wm_config *config,
2683 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002684 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002685{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002686 max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false);
2687 max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true);
2688 max->cur = ilk_cursor_wm_max(dev_priv, level, config);
2689 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002690}
2691
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002692static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002693 int level,
2694 struct ilk_wm_maximums *max)
2695{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002696 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2697 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2698 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2699 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002700}
2701
Ville Syrjäläd9395652013-10-09 19:18:10 +03002702static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002703 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002704 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002705{
2706 bool ret;
2707
2708 /* already determined to be invalid? */
2709 if (!result->enable)
2710 return false;
2711
2712 result->enable = result->pri_val <= max->pri &&
2713 result->spr_val <= max->spr &&
2714 result->cur_val <= max->cur;
2715
2716 ret = result->enable;
2717
2718 /*
2719 * HACK until we can pre-compute everything,
2720 * and thus fail gracefully if LP0 watermarks
2721 * are exceeded...
2722 */
2723 if (level == 0 && !result->enable) {
2724 if (result->pri_val > max->pri)
2725 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2726 level, result->pri_val, max->pri);
2727 if (result->spr_val > max->spr)
2728 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2729 level, result->spr_val, max->spr);
2730 if (result->cur_val > max->cur)
2731 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2732 level, result->cur_val, max->cur);
2733
2734 result->pri_val = min_t(uint32_t, result->pri_val, max->pri);
2735 result->spr_val = min_t(uint32_t, result->spr_val, max->spr);
2736 result->cur_val = min_t(uint32_t, result->cur_val, max->cur);
2737 result->enable = true;
2738 }
2739
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002740 return ret;
2741}
2742
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002743static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002744 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002745 int level,
Matt Roper7221fc32015-09-24 15:53:08 -07002746 struct intel_crtc_state *cstate,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002747 const struct intel_plane_state *pristate,
2748 const struct intel_plane_state *sprstate,
2749 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002750 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002751{
2752 uint16_t pri_latency = dev_priv->wm.pri_latency[level];
2753 uint16_t spr_latency = dev_priv->wm.spr_latency[level];
2754 uint16_t cur_latency = dev_priv->wm.cur_latency[level];
2755
2756 /* WM1+ latency values stored in 0.5us units */
2757 if (level > 0) {
2758 pri_latency *= 5;
2759 spr_latency *= 5;
2760 cur_latency *= 5;
2761 }
2762
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002763 if (pristate) {
2764 result->pri_val = ilk_compute_pri_wm(cstate, pristate,
2765 pri_latency, level);
2766 result->fbc_val = ilk_compute_fbc_wm(cstate, pristate, result->pri_val);
2767 }
2768
2769 if (sprstate)
2770 result->spr_val = ilk_compute_spr_wm(cstate, sprstate, spr_latency);
2771
2772 if (curstate)
2773 result->cur_val = ilk_compute_cur_wm(cstate, curstate, cur_latency);
2774
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002775 result->enable = true;
2776}
2777
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002778static uint32_t
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002779hsw_compute_linetime_wm(const struct intel_crtc_state *cstate)
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002780{
Ville Syrjälä532f7a72016-04-29 17:31:17 +03002781 const struct intel_atomic_state *intel_state =
2782 to_intel_atomic_state(cstate->base.state);
Matt Roperee91a152015-12-03 11:37:39 -08002783 const struct drm_display_mode *adjusted_mode =
2784 &cstate->base.adjusted_mode;
Paulo Zanoni85a02de2013-05-03 17:23:43 -03002785 u32 linetime, ips_linetime;
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002786
Matt Roperee91a152015-12-03 11:37:39 -08002787 if (!cstate->base.active)
2788 return 0;
2789 if (WARN_ON(adjusted_mode->crtc_clock == 0))
2790 return 0;
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002791 if (WARN_ON(intel_state->cdclk.logical.cdclk == 0))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002792 return 0;
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03002793
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002794 /* The WM are computed with base on how long it takes to fill a single
2795 * row at the given clock rate, multiplied by 8.
2796 * */
Ville Syrjälä124abe02015-09-08 13:40:45 +03002797 linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
2798 adjusted_mode->crtc_clock);
2799 ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8,
Ville Syrjäläbb0f4aa2017-01-20 20:21:59 +02002800 intel_state->cdclk.logical.cdclk);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002801
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002802 return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) |
2803 PIPE_WM_LINETIME_TIME(linetime);
Eugeni Dodonov1f8eeab2012-05-09 15:37:24 -03002804}
2805
Ville Syrjäläbb726512016-10-31 22:37:24 +02002806static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2807 uint16_t wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002808{
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002809 if (INTEL_GEN(dev_priv) >= 9) {
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002810 uint32_t val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002811 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002812 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002813
2814 /* read the first set of memory latencies[0:3] */
2815 val = 0; /* data0 to be programmed to 0 for first set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002816 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002817 ret = sandybridge_pcode_read(dev_priv,
2818 GEN9_PCODE_READ_MEM_LATENCY,
2819 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002820 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002821
2822 if (ret) {
2823 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2824 return;
2825 }
2826
2827 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2828 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2829 GEN9_MEM_LATENCY_LEVEL_MASK;
2830 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2831 GEN9_MEM_LATENCY_LEVEL_MASK;
2832 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2833 GEN9_MEM_LATENCY_LEVEL_MASK;
2834
2835 /* read the second set of memory latencies[4:7] */
2836 val = 1; /* data0 to be programmed to 1 for second set */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002837 mutex_lock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002838 ret = sandybridge_pcode_read(dev_priv,
2839 GEN9_PCODE_READ_MEM_LATENCY,
2840 &val);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01002841 mutex_unlock(&dev_priv->pcu_lock);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002842 if (ret) {
2843 DRM_ERROR("SKL Mailbox read error = %d\n", ret);
2844 return;
2845 }
2846
2847 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2848 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2849 GEN9_MEM_LATENCY_LEVEL_MASK;
2850 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2851 GEN9_MEM_LATENCY_LEVEL_MASK;
2852 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2853 GEN9_MEM_LATENCY_LEVEL_MASK;
2854
Vandana Kannan367294b2014-11-04 17:06:46 +00002855 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002856 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2857 * need to be disabled. We make sure to sanitize the values out
2858 * of the punit to satisfy this requirement.
2859 */
2860 for (level = 1; level <= max_level; level++) {
2861 if (wm[level] == 0) {
2862 for (i = level + 1; i <= max_level; i++)
2863 wm[i] = 0;
2864 break;
2865 }
2866 }
2867
2868 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002869 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002870 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002871 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002872 * to add 2us to the various latency levels we retrieve from the
2873 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002874 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002875 if (wm[0] == 0) {
2876 wm[0] += 2;
2877 for (level = 1; level <= max_level; level++) {
2878 if (wm[level] == 0)
2879 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002880 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002881 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002882 }
2883
Mahesh Kumar86b59282018-08-31 16:39:42 +05302884 /*
2885 * WA Level-0 adjustment for 16GB DIMMs: SKL+
2886 * If we could not get dimm info enable this WA to prevent from
2887 * any underrun. If not able to get Dimm info assume 16GB dimm
2888 * to avoid any underrun.
2889 */
Ville Syrjälä5d6f36b2018-10-23 21:21:02 +03002890 if (dev_priv->dram_info.is_16gb_dimm)
Mahesh Kumar86b59282018-08-31 16:39:42 +05302891 wm[0] += 1;
2892
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002893 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002894 uint64_t sskpd = I915_READ64(MCH_SSKPD);
2895
2896 wm[0] = (sskpd >> 56) & 0xFF;
2897 if (wm[0] == 0)
2898 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002899 wm[1] = (sskpd >> 4) & 0xFF;
2900 wm[2] = (sskpd >> 12) & 0xFF;
2901 wm[3] = (sskpd >> 20) & 0x1FF;
2902 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002903 } else if (INTEL_GEN(dev_priv) >= 6) {
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002904 uint32_t sskpd = I915_READ(MCH_SSKPD);
2905
2906 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2907 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2908 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2909 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002910 } else if (INTEL_GEN(dev_priv) >= 5) {
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002911 uint32_t mltr = I915_READ(MLTR_ILK);
2912
2913 /* ILK primary LP0 latency is 700 ns */
2914 wm[0] = 7;
2915 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2916 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002917 } else {
2918 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002919 }
2920}
2921
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002922static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2923 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002924{
2925 /* ILK sprite LP0 latency is 1300 ns */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002926 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002927 wm[0] = 13;
2928}
2929
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002930static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2931 uint16_t wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002932{
2933 /* ILK cursor LP0 latency is 1300 ns */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002934 if (IS_GEN5(dev_priv))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002935 wm[0] = 13;
Ville Syrjälä53615a52013-08-01 16:18:50 +03002936}
2937
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002938int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002939{
2940 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002941 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002942 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002943 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002944 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002945 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002946 return 3;
2947 else
2948 return 2;
2949}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002950
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002951static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002952 const char *name,
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002953 const uint16_t wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002954{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002955 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002956
2957 for (level = 0; level <= max_level; level++) {
2958 unsigned int latency = wm[level];
2959
2960 if (latency == 0) {
Chris Wilson86c1c872018-07-26 17:15:27 +01002961 DRM_DEBUG_KMS("%s WM%d latency not provided\n",
2962 name, level);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002963 continue;
2964 }
2965
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002966 /*
2967 * - latencies are in us on gen9.
2968 * - before then, WM1+ latency values are in 0.5us units
2969 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002970 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002971 latency *= 10;
2972 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002973 latency *= 5;
2974
2975 DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n",
2976 name, level, wm[level],
2977 latency / 10, latency % 10);
2978 }
2979}
2980
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002981static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
2982 uint16_t wm[5], uint16_t min)
2983{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002984 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002985
2986 if (wm[0] >= min)
2987 return false;
2988
2989 wm[0] = max(wm[0], min);
2990 for (level = 1; level <= max_level; level++)
2991 wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5));
2992
2993 return true;
2994}
2995
Ville Syrjäläbb726512016-10-31 22:37:24 +02002996static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002997{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002998 bool changed;
2999
3000 /*
3001 * The BIOS provided WM memory latency values are often
3002 * inadequate for high resolution displays. Adjust them.
3003 */
3004 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
3005 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
3006 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
3007
3008 if (!changed)
3009 return;
3010
3011 DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003012 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3013 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3014 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003015}
3016
Ville Syrjälä03981c62018-11-14 19:34:40 +02003017static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv)
3018{
3019 /*
3020 * On some SNB machines (Thinkpad X220 Tablet at least)
3021 * LP3 usage can cause vblank interrupts to be lost.
3022 * The DEIIR bit will go high but it looks like the CPU
3023 * never gets interrupted.
3024 *
3025 * It's not clear whether other interrupt source could
3026 * be affected or if this is somehow limited to vblank
3027 * interrupts only. To play it safe we disable LP3
3028 * watermarks entirely.
3029 */
3030 if (dev_priv->wm.pri_latency[3] == 0 &&
3031 dev_priv->wm.spr_latency[3] == 0 &&
3032 dev_priv->wm.cur_latency[3] == 0)
3033 return;
3034
3035 dev_priv->wm.pri_latency[3] = 0;
3036 dev_priv->wm.spr_latency[3] = 0;
3037 dev_priv->wm.cur_latency[3] = 0;
3038
3039 DRM_DEBUG_KMS("LP3 watermarks disabled due to potential for lost interrupts\n");
3040 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3041 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3042 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
3043}
3044
Ville Syrjäläbb726512016-10-31 22:37:24 +02003045static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03003046{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003047 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003048
3049 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
3050 sizeof(dev_priv->wm.pri_latency));
3051 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
3052 sizeof(dev_priv->wm.pri_latency));
3053
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003054 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003055 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003056
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003057 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3058 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3059 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003060
Ville Syrjälä03981c62018-11-14 19:34:40 +02003061 if (IS_GEN6(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02003062 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä03981c62018-11-14 19:34:40 +02003063 snb_wm_lp3_irq_quirk(dev_priv);
3064 }
Ville Syrjälä53615a52013-08-01 16:18:50 +03003065}
3066
Ville Syrjäläbb726512016-10-31 22:37:24 +02003067static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003068{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003069 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003070 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003071}
3072
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003073static bool ilk_validate_pipe_wm(const struct drm_i915_private *dev_priv,
Matt Ropered4a6a72016-02-23 17:20:13 -08003074 struct intel_pipe_wm *pipe_wm)
3075{
3076 /* LP0 watermark maximums depend on this pipe alone */
3077 const struct intel_wm_config config = {
3078 .num_pipes_active = 1,
3079 .sprites_enabled = pipe_wm->sprites_enabled,
3080 .sprites_scaled = pipe_wm->sprites_scaled,
3081 };
3082 struct ilk_wm_maximums max;
3083
3084 /* LP0 watermarks always use 1/2 DDB partitioning */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003085 ilk_compute_wm_maximums(dev_priv, 0, &config, INTEL_DDB_PART_1_2, &max);
Matt Ropered4a6a72016-02-23 17:20:13 -08003086
3087 /* At least LP0 must be valid */
3088 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
3089 DRM_DEBUG_KMS("LP0 watermark invalid\n");
3090 return false;
3091 }
3092
3093 return true;
3094}
3095
Matt Roper261a27d2015-10-08 15:28:25 -07003096/* Compute new watermarks for the pipe */
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003097static int ilk_compute_pipe_wm(struct intel_crtc_state *cstate)
Matt Roper261a27d2015-10-08 15:28:25 -07003098{
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003099 struct drm_atomic_state *state = cstate->base.state;
3100 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003101 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003102 struct drm_device *dev = state->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01003103 const struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003104 struct drm_plane *plane;
3105 const struct drm_plane_state *plane_state;
3106 const struct intel_plane_state *pristate = NULL;
3107 const struct intel_plane_state *sprstate = NULL;
3108 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003109 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003110 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003111
Matt Ropere8f1f022016-05-12 07:05:55 -07003112 pipe_wm = &cstate->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003113
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003114 drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, &cstate->base) {
3115 const struct intel_plane_state *ps = to_intel_plane_state(plane_state);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003116
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003117 if (plane->type == DRM_PLANE_TYPE_PRIMARY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003118 pristate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003119 else if (plane->type == DRM_PLANE_TYPE_OVERLAY)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003120 sprstate = ps;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003121 else if (plane->type == DRM_PLANE_TYPE_CURSOR)
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003122 curstate = ps;
Matt Roper43d59ed2015-09-24 15:53:07 -07003123 }
3124
Matt Ropered4a6a72016-02-23 17:20:13 -08003125 pipe_wm->pipe_enabled = cstate->base.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003126 if (sprstate) {
Ville Syrjälä936e71e2016-07-26 19:06:59 +03003127 pipe_wm->sprites_enabled = sprstate->base.visible;
3128 pipe_wm->sprites_scaled = sprstate->base.visible &&
3129 (drm_rect_width(&sprstate->base.dst) != drm_rect_width(&sprstate->base.src) >> 16 ||
3130 drm_rect_height(&sprstate->base.dst) != drm_rect_height(&sprstate->base.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003131 }
3132
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003133 usable_level = max_level;
3134
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003135 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003136 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003137 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003138
3139 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003140 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003141 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003142
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003143 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003144 ilk_compute_wm_level(dev_priv, intel_crtc, 0, cstate,
3145 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003146
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003147 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjälä532f7a72016-04-29 17:31:17 +03003148 pipe_wm->linetime = hsw_compute_linetime_wm(cstate);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003149
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003150 if (!ilk_validate_pipe_wm(dev_priv, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003151 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003152
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003153 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003154
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003155 for (level = 1; level <= usable_level; level++) {
3156 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003157
Matt Roper86c8bbb2015-09-24 15:53:16 -07003158 ilk_compute_wm_level(dev_priv, intel_crtc, level, cstate,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003159 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003160
3161 /*
3162 * Disable any watermark level that exceeds the
3163 * register maximums since such watermarks are
3164 * always invalid.
3165 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003166 if (!ilk_validate_wm_level(level, &max, wm)) {
3167 memset(wm, 0, sizeof(*wm));
3168 break;
3169 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003170 }
3171
Matt Roper86c8bbb2015-09-24 15:53:16 -07003172 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003173}
3174
3175/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003176 * Build a set of 'intermediate' watermark values that satisfy both the old
3177 * state and the new state. These can be programmed to the hardware
3178 * immediately.
3179 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003180static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08003181{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003182 struct intel_crtc *intel_crtc = to_intel_crtc(newstate->base.crtc);
3183 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Matt Ropere8f1f022016-05-12 07:05:55 -07003184 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003185 struct intel_atomic_state *intel_state =
3186 to_intel_atomic_state(newstate->base.state);
3187 const struct intel_crtc_state *oldstate =
3188 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3189 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003190 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08003191
3192 /*
3193 * Start with the final, target watermarks, then combine with the
3194 * currently active watermarks to get values that are safe both before
3195 * and after the vblank.
3196 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003197 *a = newstate->wm.ilk.optimal;
Ville Syrjäläf255c622018-11-08 17:10:13 +02003198 if (!newstate->base.active || drm_atomic_crtc_needs_modeset(&newstate->base) ||
3199 intel_state->skip_intermediate_wm)
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003200 return 0;
3201
Matt Ropered4a6a72016-02-23 17:20:13 -08003202 a->pipe_enabled |= b->pipe_enabled;
3203 a->sprites_enabled |= b->sprites_enabled;
3204 a->sprites_scaled |= b->sprites_scaled;
3205
3206 for (level = 0; level <= max_level; level++) {
3207 struct intel_wm_level *a_wm = &a->wm[level];
3208 const struct intel_wm_level *b_wm = &b->wm[level];
3209
3210 a_wm->enable &= b_wm->enable;
3211 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3212 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3213 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3214 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3215 }
3216
3217 /*
3218 * We need to make sure that these merged watermark values are
3219 * actually a valid configuration themselves. If they're not,
3220 * there's no safe way to transition from the old state to
3221 * the new state, so we need to fail the atomic transaction.
3222 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003223 if (!ilk_validate_pipe_wm(dev_priv, a))
Matt Ropered4a6a72016-02-23 17:20:13 -08003224 return -EINVAL;
3225
3226 /*
3227 * If our intermediate WM are identical to the final WM, then we can
3228 * omit the post-vblank programming; only update if it's different.
3229 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003230 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3231 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003232
3233 return 0;
3234}
3235
3236/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003237 * Merge the watermarks from all active pipes for a specific level.
3238 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003239static void ilk_merge_wm_level(struct drm_i915_private *dev_priv,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003240 int level,
3241 struct intel_wm_level *ret_wm)
3242{
3243 const struct intel_crtc *intel_crtc;
3244
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003245 ret_wm->enable = true;
3246
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003247 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003248 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003249 const struct intel_wm_level *wm = &active->wm[level];
3250
3251 if (!active->pipe_enabled)
3252 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003253
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003254 /*
3255 * The watermark values may have been used in the past,
3256 * so we must maintain them in the registers for some
3257 * time even if the level is now disabled.
3258 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003259 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003260 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003261
3262 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3263 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3264 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3265 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3266 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003267}
3268
3269/*
3270 * Merge all low power watermarks for all active pipes.
3271 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003272static void ilk_wm_merge(struct drm_i915_private *dev_priv,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003273 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003274 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003275 struct intel_pipe_wm *merged)
3276{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003277 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003278 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003279
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003280 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003281 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003282 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003283 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003284
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003285 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003286 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003287
3288 /* merge each WM1+ level */
3289 for (level = 1; level <= max_level; level++) {
3290 struct intel_wm_level *wm = &merged->wm[level];
3291
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003292 ilk_merge_wm_level(dev_priv, level, wm);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003293
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003294 if (level > last_enabled_level)
3295 wm->enable = false;
3296 else if (!ilk_validate_wm_level(level, max, wm))
3297 /* make sure all following levels get disabled */
3298 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003299
3300 /*
3301 * The spec says it is preferred to disable
3302 * FBC WMs instead of disabling a WM level.
3303 */
3304 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003305 if (wm->enable)
3306 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003307 wm->fbc_val = 0;
3308 }
3309 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003310
3311 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3312 /*
3313 * FIXME this is racy. FBC might get enabled later.
3314 * What we should check here is whether FBC can be
3315 * enabled sometime later.
3316 */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003317 if (IS_GEN5(dev_priv) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003318 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003319 for (level = 2; level <= max_level; level++) {
3320 struct intel_wm_level *wm = &merged->wm[level];
3321
3322 wm->enable = false;
3323 }
3324 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003325}
3326
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003327static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3328{
3329 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3330 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3331}
3332
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003333/* The value we need to program into the WM_LPx latency field */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003334static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv,
3335 int level)
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003336{
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003337 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003338 return 2 * level;
3339 else
3340 return dev_priv->wm.pri_latency[level];
3341}
3342
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003343static void ilk_compute_wm_results(struct drm_i915_private *dev_priv,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003344 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003345 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003346 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003347{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003348 struct intel_crtc *intel_crtc;
3349 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003350
Ville Syrjälä0362c782013-10-09 19:17:57 +03003351 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003352 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003353
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003354 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003355 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003356 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003357
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003358 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003359
Ville Syrjälä0362c782013-10-09 19:17:57 +03003360 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003361
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003362 /*
3363 * Maintain the watermark values even if the level is
3364 * disabled. Doing otherwise could cause underruns.
3365 */
3366 results->wm_lp[wm_lp - 1] =
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003367 (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003368 (r->pri_val << WM1_LP_SR_SHIFT) |
3369 r->cur_val;
3370
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003371 if (r->enable)
3372 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3373
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003374 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003375 results->wm_lp[wm_lp - 1] |=
3376 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3377 else
3378 results->wm_lp[wm_lp - 1] |=
3379 r->fbc_val << WM1_LP_FBC_SHIFT;
3380
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003381 /*
3382 * Always set WM1S_LP_EN when spr_val != 0, even if the
3383 * level is disabled. Doing otherwise could cause underruns.
3384 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003385 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003386 WARN_ON(wm_lp != 1);
3387 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3388 } else
3389 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003390 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003391
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003392 /* LP0 register values */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003393 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003394 enum pipe pipe = intel_crtc->pipe;
Matt Ropered4a6a72016-02-23 17:20:13 -08003395 const struct intel_wm_level *r =
3396 &intel_crtc->wm.active.ilk.wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003397
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003398 if (WARN_ON(!r->enable))
3399 continue;
3400
Matt Ropered4a6a72016-02-23 17:20:13 -08003401 results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003402
3403 results->wm_pipe[pipe] =
3404 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3405 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3406 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003407 }
3408}
3409
Paulo Zanoni861f3382013-05-31 10:19:21 -03003410/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3411 * case both are at the same level. Prefer r1 in case they're the same. */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003412static struct intel_pipe_wm *
3413ilk_find_best_result(struct drm_i915_private *dev_priv,
3414 struct intel_pipe_wm *r1,
3415 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003416{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003417 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003418 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003419
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003420 for (level = 1; level <= max_level; level++) {
3421 if (r1->wm[level].enable)
3422 level1 = level;
3423 if (r2->wm[level].enable)
3424 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003425 }
3426
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003427 if (level1 == level2) {
3428 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003429 return r2;
3430 else
3431 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003432 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003433 return r1;
3434 } else {
3435 return r2;
3436 }
3437}
3438
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003439/* dirty bits used to track which watermarks need changes */
3440#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3441#define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe)))
3442#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3443#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3444#define WM_DIRTY_FBC (1 << 24)
3445#define WM_DIRTY_DDB (1 << 25)
3446
Damien Lespiau055e3932014-08-18 13:49:10 +01003447static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003448 const struct ilk_wm_values *old,
3449 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003450{
3451 unsigned int dirty = 0;
3452 enum pipe pipe;
3453 int wm_lp;
3454
Damien Lespiau055e3932014-08-18 13:49:10 +01003455 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003456 if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) {
3457 dirty |= WM_DIRTY_LINETIME(pipe);
3458 /* Must disable LP1+ watermarks too */
3459 dirty |= WM_DIRTY_LP_ALL;
3460 }
3461
3462 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3463 dirty |= WM_DIRTY_PIPE(pipe);
3464 /* Must disable LP1+ watermarks too */
3465 dirty |= WM_DIRTY_LP_ALL;
3466 }
3467 }
3468
3469 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3470 dirty |= WM_DIRTY_FBC;
3471 /* Must disable LP1+ watermarks too */
3472 dirty |= WM_DIRTY_LP_ALL;
3473 }
3474
3475 if (old->partitioning != new->partitioning) {
3476 dirty |= WM_DIRTY_DDB;
3477 /* Must disable LP1+ watermarks too */
3478 dirty |= WM_DIRTY_LP_ALL;
3479 }
3480
3481 /* LP1+ watermarks already deemed dirty, no need to continue */
3482 if (dirty & WM_DIRTY_LP_ALL)
3483 return dirty;
3484
3485 /* Find the lowest numbered LP1+ watermark in need of an update... */
3486 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3487 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3488 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3489 break;
3490 }
3491
3492 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3493 for (; wm_lp <= 3; wm_lp++)
3494 dirty |= WM_DIRTY_LP(wm_lp);
3495
3496 return dirty;
3497}
3498
Ville Syrjälä8553c182013-12-05 15:51:39 +02003499static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3500 unsigned int dirty)
3501{
Imre Deak820c1982013-12-17 14:46:36 +02003502 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003503 bool changed = false;
3504
3505 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3506 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3507 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3508 changed = true;
3509 }
3510 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3511 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3512 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3513 changed = true;
3514 }
3515 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3516 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3517 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3518 changed = true;
3519 }
3520
3521 /*
3522 * Don't touch WM1S_LP_EN here.
3523 * Doing so could cause underruns.
3524 */
3525
3526 return changed;
3527}
3528
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003529/*
3530 * The spec says we shouldn't write when we don't need, because every write
3531 * causes WMs to be re-evaluated, expending some power.
3532 */
Imre Deak820c1982013-12-17 14:46:36 +02003533static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3534 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003535{
Imre Deak820c1982013-12-17 14:46:36 +02003536 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003537 unsigned int dirty;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003538 uint32_t val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003539
Damien Lespiau055e3932014-08-18 13:49:10 +01003540 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003541 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003542 return;
3543
Ville Syrjälä8553c182013-12-05 15:51:39 +02003544 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003545
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003546 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003547 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003548 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003549 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003550 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003551 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3552
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003553 if (dirty & WM_DIRTY_LINETIME(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003554 I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003555 if (dirty & WM_DIRTY_LINETIME(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003556 I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003557 if (dirty & WM_DIRTY_LINETIME(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003558 I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]);
3559
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003560 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003561 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003562 val = I915_READ(WM_MISC);
3563 if (results->partitioning == INTEL_DDB_PART_1_2)
3564 val &= ~WM_MISC_DATA_PARTITION_5_6;
3565 else
3566 val |= WM_MISC_DATA_PARTITION_5_6;
3567 I915_WRITE(WM_MISC, val);
3568 } else {
3569 val = I915_READ(DISP_ARB_CTL2);
3570 if (results->partitioning == INTEL_DDB_PART_1_2)
3571 val &= ~DISP_DATA_PARTITION_5_6;
3572 else
3573 val |= DISP_DATA_PARTITION_5_6;
3574 I915_WRITE(DISP_ARB_CTL2, val);
3575 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003576 }
3577
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003578 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003579 val = I915_READ(DISP_ARB_CTL);
3580 if (results->enable_fbc_wm)
3581 val &= ~DISP_FBC_WM_DIS;
3582 else
3583 val |= DISP_FBC_WM_DIS;
3584 I915_WRITE(DISP_ARB_CTL, val);
3585 }
3586
Imre Deak954911e2013-12-17 14:46:34 +02003587 if (dirty & WM_DIRTY_LP(1) &&
3588 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3589 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3590
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003591 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003592 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3593 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3594 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3595 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3596 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003597
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003598 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003599 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003600 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003601 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003602 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003603 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003604
3605 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003606}
3607
Matt Ropered4a6a72016-02-23 17:20:13 -08003608bool ilk_disable_lp_wm(struct drm_device *dev)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003609{
Chris Wilsonfac5e232016-07-04 11:34:36 +01003610 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä8553c182013-12-05 15:51:39 +02003611
3612 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3613}
3614
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303615static u8 intel_enabled_dbuf_slices_num(struct drm_i915_private *dev_priv)
3616{
3617 u8 enabled_slices;
3618
3619 /* Slice 1 will always be enabled */
3620 enabled_slices = 1;
3621
3622 /* Gen prior to GEN11 have only one DBuf slice */
3623 if (INTEL_GEN(dev_priv) < 11)
3624 return enabled_slices;
3625
3626 if (I915_READ(DBUF_CTL_S2) & DBUF_POWER_STATE)
3627 enabled_slices++;
3628
3629 return enabled_slices;
3630}
3631
Matt Roper024c9042015-09-24 15:53:11 -07003632/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003633 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3634 * so assume we'll always need it in order to avoid underruns.
3635 */
3636static bool skl_needs_memory_bw_wa(struct intel_atomic_state *state)
3637{
3638 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3639
Rodrigo Vivib976dc52017-01-23 10:32:37 -08003640 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003641 return true;
3642
3643 return false;
3644}
3645
Paulo Zanoni56feca92016-09-22 18:00:28 -03003646static bool
3647intel_has_sagv(struct drm_i915_private *dev_priv)
3648{
Rodrigo Vivi1ca2b062018-10-26 13:03:17 -07003649 return (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) &&
3650 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003651}
3652
Lyude656d1b82016-08-17 15:55:54 -04003653/*
3654 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3655 * depending on power and performance requirements. The display engine access
3656 * to system memory is blocked during the adjustment time. Because of the
3657 * blocking time, having this enabled can cause full system hangs and/or pipe
3658 * underruns if we don't meet all of the following requirements:
3659 *
3660 * - <= 1 pipe enabled
3661 * - All planes can enable watermarks for latencies >= SAGV engine block time
3662 * - We're not using an interlaced display configuration
3663 */
3664int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003665intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003666{
3667 int ret;
3668
Paulo Zanoni56feca92016-09-22 18:00:28 -03003669 if (!intel_has_sagv(dev_priv))
3670 return 0;
3671
3672 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003673 return 0;
3674
3675 DRM_DEBUG_KMS("Enabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003676 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003677
3678 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3679 GEN9_SAGV_ENABLE);
3680
3681 /* We don't need to wait for the SAGV when enabling */
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003682 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003683
3684 /*
3685 * Some skl systems, pre-release machines in particular,
3686 * don't actually have an SAGV.
3687 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003688 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003689 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003690 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003691 return 0;
3692 } else if (ret < 0) {
3693 DRM_ERROR("Failed to enable the SAGV\n");
3694 return ret;
3695 }
3696
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003697 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003698 return 0;
3699}
3700
Lyude656d1b82016-08-17 15:55:54 -04003701int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003702intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003703{
Imre Deakb3b8e992016-12-05 18:27:38 +02003704 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003705
Paulo Zanoni56feca92016-09-22 18:00:28 -03003706 if (!intel_has_sagv(dev_priv))
3707 return 0;
3708
3709 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003710 return 0;
3711
3712 DRM_DEBUG_KMS("Disabling the SAGV\n");
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003713 mutex_lock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003714
3715 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003716 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3717 GEN9_SAGV_DISABLE,
3718 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3719 1);
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01003720 mutex_unlock(&dev_priv->pcu_lock);
Lyude656d1b82016-08-17 15:55:54 -04003721
Lyude656d1b82016-08-17 15:55:54 -04003722 /*
3723 * Some skl systems, pre-release machines in particular,
3724 * don't actually have an SAGV.
3725 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003726 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Lyude656d1b82016-08-17 15:55:54 -04003727 DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003728 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003729 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003730 } else if (ret < 0) {
3731 DRM_ERROR("Failed to disable the SAGV (%d)\n", ret);
3732 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003733 }
3734
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003735 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003736 return 0;
3737}
3738
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003739bool intel_can_enable_sagv(struct drm_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003740{
3741 struct drm_device *dev = state->dev;
3742 struct drm_i915_private *dev_priv = to_i915(dev);
3743 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003744 struct intel_crtc *crtc;
3745 struct intel_plane *plane;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003746 struct intel_crtc_state *cstate;
Lyude656d1b82016-08-17 15:55:54 -04003747 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003748 int level, latency;
Paulo Zanoni4357ce02018-01-30 11:49:15 -02003749 int sagv_block_time_us;
Lyude656d1b82016-08-17 15:55:54 -04003750
Paulo Zanoni56feca92016-09-22 18:00:28 -03003751 if (!intel_has_sagv(dev_priv))
3752 return false;
3753
Paulo Zanoni4357ce02018-01-30 11:49:15 -02003754 if (IS_GEN9(dev_priv))
3755 sagv_block_time_us = 30;
3756 else if (IS_GEN10(dev_priv))
3757 sagv_block_time_us = 20;
3758 else
3759 sagv_block_time_us = 10;
3760
Lyude656d1b82016-08-17 15:55:54 -04003761 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003762 * SKL+ workaround: bspec recommends we disable the SAGV when we have
Lyude656d1b82016-08-17 15:55:54 -04003763 * more then one pipe enabled
3764 *
3765 * If there are no active CRTCs, no additional checks need be performed
3766 */
3767 if (hweight32(intel_state->active_crtcs) == 0)
3768 return true;
3769 else if (hweight32(intel_state->active_crtcs) > 1)
3770 return false;
3771
3772 /* Since we're now guaranteed to only have one active CRTC... */
3773 pipe = ffs(intel_state->active_crtcs) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003774 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003775 cstate = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003776
Paulo Zanonic89cadd2016-10-10 17:30:59 -03003777 if (crtc->base.state->adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003778 return false;
3779
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003780 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003781 struct skl_plane_wm *wm =
3782 &cstate->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003783
Lyude656d1b82016-08-17 15:55:54 -04003784 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003785 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003786 continue;
3787
3788 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003789 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003790 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003791 { }
3792
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003793 latency = dev_priv->wm.skl_latency[level];
3794
3795 if (skl_needs_memory_bw_wa(intel_state) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003796 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003797 I915_FORMAT_MOD_X_TILED)
3798 latency += 15;
3799
Lyude656d1b82016-08-17 15:55:54 -04003800 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003801 * If any of the planes on this pipe don't enable wm levels that
3802 * incur memory latencies higher than sagv_block_time_us we
3803 * can't enable the SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003804 */
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003805 if (latency < sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003806 return false;
3807 }
3808
3809 return true;
3810}
3811
Mahesh Kumaraaa02372018-07-31 19:54:44 +05303812static u16 intel_get_ddb_size(struct drm_i915_private *dev_priv,
3813 const struct intel_crtc_state *cstate,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003814 const u64 total_data_rate,
Mahesh Kumaraaa02372018-07-31 19:54:44 +05303815 const int num_active,
3816 struct skl_ddb_allocation *ddb)
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303817{
3818 const struct drm_display_mode *adjusted_mode;
3819 u64 total_data_bw;
3820 u16 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3821
3822 WARN_ON(ddb_size == 0);
3823
3824 if (INTEL_GEN(dev_priv) < 11)
3825 return ddb_size - 4; /* 4 blocks for bypass path allocation */
3826
3827 adjusted_mode = &cstate->base.adjusted_mode;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003828 total_data_bw = total_data_rate * drm_mode_vrefresh(adjusted_mode);
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303829
3830 /*
3831 * 12GB/s is maximum BW supported by single DBuf slice.
3832 */
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003833 if (num_active > 1 || total_data_bw >= GBps(12)) {
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303834 ddb->enabled_slices = 2;
3835 } else {
3836 ddb->enabled_slices = 1;
3837 ddb_size /= 2;
3838 }
3839
3840 return ddb_size;
3841}
3842
Damien Lespiaub9cec072014-11-04 17:06:43 +00003843static void
Maarten Lankhorstb048a002018-10-18 13:51:30 +02003844skl_ddb_get_pipe_allocation_limits(struct drm_i915_private *dev_priv,
Matt Roper024c9042015-09-24 15:53:11 -07003845 const struct intel_crtc_state *cstate,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003846 const u64 total_data_rate,
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303847 struct skl_ddb_allocation *ddb,
Matt Roperc107acf2016-05-12 07:06:01 -07003848 struct skl_ddb_entry *alloc, /* out */
3849 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003850{
Matt Roperc107acf2016-05-12 07:06:01 -07003851 struct drm_atomic_state *state = cstate->base.state;
3852 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Matt Roper024c9042015-09-24 15:53:11 -07003853 struct drm_crtc *for_crtc = cstate->base.crtc;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303854 const struct drm_crtc_state *crtc_state;
3855 const struct drm_crtc *crtc;
3856 u32 pipe_width = 0, total_width = 0, width_before_pipe = 0;
3857 enum pipe for_pipe = to_intel_crtc(for_crtc)->pipe;
3858 u16 ddb_size;
3859 u32 i;
Matt Roperc107acf2016-05-12 07:06:01 -07003860
Matt Ropera6d3460e2016-05-12 07:06:04 -07003861 if (WARN_ON(!state) || !cstate->base.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003862 alloc->start = 0;
3863 alloc->end = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003864 *num_active = hweight32(dev_priv->active_crtcs);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003865 return;
3866 }
3867
Matt Ropera6d3460e2016-05-12 07:06:04 -07003868 if (intel_state->active_pipe_changes)
3869 *num_active = hweight32(intel_state->active_crtcs);
3870 else
3871 *num_active = hweight32(dev_priv->active_crtcs);
3872
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303873 ddb_size = intel_get_ddb_size(dev_priv, cstate, total_data_rate,
3874 *num_active, ddb);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003875
Matt Roperc107acf2016-05-12 07:06:01 -07003876 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303877 * If the state doesn't change the active CRTC's or there is no
3878 * modeset request, then there's no need to recalculate;
3879 * the existing pipe allocation limits should remain unchanged.
3880 * Note that we're safe from racing commits since any racing commit
3881 * that changes the active CRTC list or do modeset would need to
3882 * grab _all_ crtc locks, including the one we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003883 */
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303884 if (!intel_state->active_pipe_changes && !intel_state->modeset) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003885 /*
3886 * alloc may be cleared by clear_intel_crtc_state,
3887 * copy from old state to be sure
3888 */
3889 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003890 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003891 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003892
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303893 /*
3894 * Watermark/ddb requirement highly depends upon width of the
3895 * framebuffer, So instead of allocating DDB equally among pipes
3896 * distribute DDB based on resolution/width of the display.
3897 */
3898 for_each_new_crtc_in_state(state, crtc, crtc_state, i) {
3899 const struct drm_display_mode *adjusted_mode;
3900 int hdisplay, vdisplay;
3901 enum pipe pipe;
3902
3903 if (!crtc_state->enable)
3904 continue;
3905
3906 pipe = to_intel_crtc(crtc)->pipe;
3907 adjusted_mode = &crtc_state->adjusted_mode;
3908 drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay);
3909 total_width += hdisplay;
3910
3911 if (pipe < for_pipe)
3912 width_before_pipe += hdisplay;
3913 else if (pipe == for_pipe)
3914 pipe_width = hdisplay;
3915 }
3916
3917 alloc->start = ddb_size * width_before_pipe / total_width;
3918 alloc->end = ddb_size * (width_before_pipe + pipe_width) / total_width;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003919}
3920
Matt Roperc107acf2016-05-12 07:06:01 -07003921static unsigned int skl_cursor_allocation(int num_active)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003922{
Matt Roperc107acf2016-05-12 07:06:01 -07003923 if (num_active == 1)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003924 return 32;
3925
3926 return 8;
3927}
3928
Mahesh Kumar37cde112018-04-26 19:55:17 +05303929static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv,
3930 struct skl_ddb_entry *entry, u32 reg)
Damien Lespiaua269c582014-11-04 17:06:49 +00003931{
Mahesh Kumar37cde112018-04-26 19:55:17 +05303932 u16 mask;
3933
3934 if (INTEL_GEN(dev_priv) >= 11)
3935 mask = ICL_DDB_ENTRY_MASK;
3936 else
3937 mask = SKL_DDB_ENTRY_MASK;
3938 entry->start = reg & mask;
3939 entry->end = (reg >> DDB_ENTRY_END_SHIFT) & mask;
3940
Damien Lespiau16160e32014-11-04 17:06:53 +00003941 if (entry->end)
3942 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00003943}
3944
Mahesh Kumarddf34312018-04-09 09:11:03 +05303945static void
3946skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv,
3947 const enum pipe pipe,
3948 const enum plane_id plane_id,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003949 struct skl_ddb_entry *ddb_y,
3950 struct skl_ddb_entry *ddb_uv)
Mahesh Kumarddf34312018-04-09 09:11:03 +05303951{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003952 u32 val, val2;
3953 u32 fourcc = 0;
Mahesh Kumarddf34312018-04-09 09:11:03 +05303954
3955 /* Cursor doesn't support NV12/planar, so no extra calculation needed */
3956 if (plane_id == PLANE_CURSOR) {
3957 val = I915_READ(CUR_BUF_CFG(pipe));
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003958 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
Mahesh Kumarddf34312018-04-09 09:11:03 +05303959 return;
3960 }
3961
3962 val = I915_READ(PLANE_CTL(pipe, plane_id));
3963
3964 /* No DDB allocated for disabled planes */
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003965 if (val & PLANE_CTL_ENABLE)
3966 fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK,
3967 val & PLANE_CTL_ORDER_RGBX,
3968 val & PLANE_CTL_ALPHA_MASK);
Mahesh Kumarddf34312018-04-09 09:11:03 +05303969
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003970 if (INTEL_GEN(dev_priv) >= 11) {
3971 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
3972 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
3973 } else {
3974 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
Paulo Zanoni12a6c932018-07-31 17:46:14 -07003975 val2 = I915_READ(PLANE_NV12_BUF_CFG(pipe, plane_id));
Mahesh Kumarddf34312018-04-09 09:11:03 +05303976
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003977 if (fourcc == DRM_FORMAT_NV12)
3978 swap(val, val2);
3979
3980 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
3981 skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2);
Mahesh Kumarddf34312018-04-09 09:11:03 +05303982 }
3983}
3984
Ville Syrjäläff43bc32018-11-27 18:59:00 +02003985void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc,
3986 struct skl_ddb_entry *ddb_y,
3987 struct skl_ddb_entry *ddb_uv)
3988{
3989 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
3990 enum intel_display_power_domain power_domain;
3991 enum pipe pipe = crtc->pipe;
3992 enum plane_id plane_id;
3993
3994 power_domain = POWER_DOMAIN_PIPE(pipe);
3995 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
3996 return;
3997
3998 for_each_plane_id_on_crtc(crtc, plane_id)
3999 skl_ddb_get_hw_plane_state(dev_priv, pipe,
4000 plane_id,
4001 &ddb_y[plane_id],
4002 &ddb_uv[plane_id]);
4003
4004 intel_display_power_put(dev_priv, power_domain);
4005}
4006
Damien Lespiau08db6652014-11-04 17:06:52 +00004007void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv,
4008 struct skl_ddb_allocation *ddb /* out */)
Damien Lespiaua269c582014-11-04 17:06:49 +00004009{
Mahesh Kumar74bd8002018-04-26 19:55:15 +05304010 ddb->enabled_slices = intel_enabled_dbuf_slices_num(dev_priv);
Damien Lespiaua269c582014-11-04 17:06:49 +00004011}
4012
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004013/*
4014 * Determines the downscale amount of a plane for the purposes of watermark calculations.
4015 * The bspec defines downscale amount as:
4016 *
4017 * """
4018 * Horizontal down scale amount = maximum[1, Horizontal source size /
4019 * Horizontal destination size]
4020 * Vertical down scale amount = maximum[1, Vertical source size /
4021 * Vertical destination size]
4022 * Total down scale amount = Horizontal down scale amount *
4023 * Vertical down scale amount
4024 * """
4025 *
4026 * Return value is provided in 16.16 fixed point form to retain fractional part.
4027 * Caller should take care of dividing & rounding off the value.
4028 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304029static uint_fixed_16_16_t
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004030skl_plane_downscale_amount(const struct intel_crtc_state *cstate,
4031 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004032{
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004033 struct intel_plane *plane = to_intel_plane(pstate->base.plane);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004034 uint32_t src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304035 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
4036 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004037
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004038 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304039 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004040
4041 /* n.b., src is 16.16 fixed point, dst is whole integer */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004042 if (plane->id == PLANE_CURSOR) {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004043 /*
4044 * Cursors only support 0/180 degree rotation,
4045 * hence no need to account for rotation here.
4046 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304047 src_w = pstate->base.src_w >> 16;
4048 src_h = pstate->base.src_h >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004049 dst_w = pstate->base.crtc_w;
4050 dst_h = pstate->base.crtc_h;
4051 } else {
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004052 /*
4053 * Src coordinates are already rotated by 270 degrees for
4054 * the 90/270 degree plane rotation cases (to match the
4055 * GTT mapping), hence no need to account for rotation here.
4056 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304057 src_w = drm_rect_width(&pstate->base.src) >> 16;
4058 src_h = drm_rect_height(&pstate->base.src) >> 16;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004059 dst_w = drm_rect_width(&pstate->base.dst);
4060 dst_h = drm_rect_height(&pstate->base.dst);
4061 }
4062
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304063 fp_w_ratio = div_fixed16(src_w, dst_w);
4064 fp_h_ratio = div_fixed16(src_h, dst_h);
4065 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
4066 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004067
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304068 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004069}
4070
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304071static uint_fixed_16_16_t
4072skl_pipe_downscale_amount(const struct intel_crtc_state *crtc_state)
4073{
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304074 uint_fixed_16_16_t pipe_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304075
4076 if (!crtc_state->base.enable)
4077 return pipe_downscale;
4078
4079 if (crtc_state->pch_pfit.enabled) {
4080 uint32_t src_w, src_h, dst_w, dst_h;
4081 uint32_t pfit_size = crtc_state->pch_pfit.size;
4082 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
4083 uint_fixed_16_16_t downscale_h, downscale_w;
4084
4085 src_w = crtc_state->pipe_src_w;
4086 src_h = crtc_state->pipe_src_h;
4087 dst_w = pfit_size >> 16;
4088 dst_h = pfit_size & 0xffff;
4089
4090 if (!dst_w || !dst_h)
4091 return pipe_downscale;
4092
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304093 fp_w_ratio = div_fixed16(src_w, dst_w);
4094 fp_h_ratio = div_fixed16(src_h, dst_h);
4095 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
4096 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304097
4098 pipe_downscale = mul_fixed16(downscale_w, downscale_h);
4099 }
4100
4101 return pipe_downscale;
4102}
4103
4104int skl_check_pipe_max_pixel_rate(struct intel_crtc *intel_crtc,
4105 struct intel_crtc_state *cstate)
4106{
Rodrigo Vivi43037c82017-10-03 15:31:42 -07004107 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304108 struct drm_crtc_state *crtc_state = &cstate->base;
4109 struct drm_atomic_state *state = crtc_state->state;
4110 struct drm_plane *plane;
4111 const struct drm_plane_state *pstate;
4112 struct intel_plane_state *intel_pstate;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02004113 int crtc_clock, dotclk;
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304114 uint32_t pipe_max_pixel_rate;
4115 uint_fixed_16_16_t pipe_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304116 uint_fixed_16_16_t max_downscale = u32_to_fixed16(1);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304117
4118 if (!cstate->base.enable)
4119 return 0;
4120
4121 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
4122 uint_fixed_16_16_t plane_downscale;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304123 uint_fixed_16_16_t fp_9_div_8 = div_fixed16(9, 8);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304124 int bpp;
4125
4126 if (!intel_wm_plane_visible(cstate,
4127 to_intel_plane_state(pstate)))
4128 continue;
4129
4130 if (WARN_ON(!pstate->fb))
4131 return -EINVAL;
4132
4133 intel_pstate = to_intel_plane_state(pstate);
4134 plane_downscale = skl_plane_downscale_amount(cstate,
4135 intel_pstate);
4136 bpp = pstate->fb->format->cpp[0] * 8;
4137 if (bpp == 64)
4138 plane_downscale = mul_fixed16(plane_downscale,
4139 fp_9_div_8);
4140
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304141 max_downscale = max_fixed16(plane_downscale, max_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304142 }
4143 pipe_downscale = skl_pipe_downscale_amount(cstate);
4144
4145 pipe_downscale = mul_fixed16(pipe_downscale, max_downscale);
4146
4147 crtc_clock = crtc_state->adjusted_mode.crtc_clock;
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02004148 dotclk = to_intel_atomic_state(state)->cdclk.logical.cdclk;
4149
Rodrigo Vivi43037c82017-10-03 15:31:42 -07004150 if (IS_GEMINILAKE(dev_priv) || INTEL_GEN(dev_priv) >= 10)
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02004151 dotclk *= 2;
4152
4153 pipe_max_pixel_rate = div_round_up_u32_fixed16(dotclk, pipe_downscale);
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304154
4155 if (pipe_max_pixel_rate < crtc_clock) {
Maarten Lankhorst789f35d2017-06-01 12:34:13 +02004156 DRM_DEBUG_KMS("Max supported pixel clock with scaling exceeded\n");
Mahesh Kumar73b0ca82017-05-26 20:45:46 +05304157 return -EINVAL;
4158 }
4159
4160 return 0;
4161}
4162
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004163static u64
Matt Roper024c9042015-09-24 15:53:11 -07004164skl_plane_relative_data_rate(const struct intel_crtc_state *cstate,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004165 const struct intel_plane_state *intel_pstate,
Mahesh Kumarb879d582018-04-09 09:11:01 +05304166 const int plane)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004167{
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004168 struct intel_plane *intel_plane =
4169 to_intel_plane(intel_pstate->base.plane);
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304170 uint32_t data_rate;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004171 uint32_t width = 0, height = 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004172 struct drm_framebuffer *fb;
4173 u32 format;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304174 uint_fixed_16_16_t down_scale_amount;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004175 u64 rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004176
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004177 if (!intel_pstate->base.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004178 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004179
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004180 fb = intel_pstate->base.fb;
Ville Syrjälä438b74a2016-12-14 23:32:55 +02004181 format = fb->format->format;
Ville Syrjälä83054942016-11-18 21:53:00 +02004182
Mahesh Kumarb879d582018-04-09 09:11:01 +05304183 if (intel_plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004184 return 0;
Mahesh Kumarb879d582018-04-09 09:11:01 +05304185 if (plane == 1 && format != DRM_FORMAT_NV12)
Matt Ropera1de91e2016-05-12 07:05:57 -07004186 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004187
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004188 /*
4189 * Src coordinates are already rotated by 270 degrees for
4190 * the 90/270 degree plane rotation cases (to match the
4191 * GTT mapping), hence no need to account for rotation here.
4192 */
Ville Syrjälä936e71e2016-07-26 19:06:59 +03004193 width = drm_rect_width(&intel_pstate->base.src) >> 16;
4194 height = drm_rect_height(&intel_pstate->base.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004195
Mahesh Kumarb879d582018-04-09 09:11:01 +05304196 /* UV plane does 1/2 pixel sub-sampling */
4197 if (plane == 1 && format == DRM_FORMAT_NV12) {
4198 width /= 2;
4199 height /= 2;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004200 }
4201
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004202 data_rate = width * height;
Mahesh Kumarb879d582018-04-09 09:11:01 +05304203
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004204 down_scale_amount = skl_plane_downscale_amount(cstate, intel_pstate);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004205
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004206 rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount);
4207
4208 rate *= fb->format->cpp[plane];
4209 return rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004210}
4211
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004212static u64
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004213skl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004214 u64 *plane_data_rate,
4215 u64 *uv_plane_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004216{
Matt Roper9c74d822016-05-12 07:05:58 -07004217 struct drm_crtc_state *cstate = &intel_cstate->base;
4218 struct drm_atomic_state *state = cstate->state;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004219 struct drm_plane *plane;
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004220 const struct drm_plane_state *pstate;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004221 u64 total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004222
4223 if (WARN_ON(!state))
4224 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004225
Matt Ropera1de91e2016-05-12 07:05:57 -07004226 /* Calculate and cache data rate for each plane */
Maarten Lankhorstc8fe32c2016-10-26 15:41:29 +02004227 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004228 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004229 u64 rate;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004230 const struct intel_plane_state *intel_pstate =
4231 to_intel_plane_state(pstate);
Matt Roper024c9042015-09-24 15:53:11 -07004232
Mahesh Kumarb879d582018-04-09 09:11:01 +05304233 /* packed/y */
Matt Ropera6d3460e2016-05-12 07:06:04 -07004234 rate = skl_plane_relative_data_rate(intel_cstate,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004235 intel_pstate, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004236 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004237 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004238
Mahesh Kumarb879d582018-04-09 09:11:01 +05304239 /* uv-plane */
Matt Ropera6d3460e2016-05-12 07:06:04 -07004240 rate = skl_plane_relative_data_rate(intel_cstate,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004241 intel_pstate, 1);
Mahesh Kumarb879d582018-04-09 09:11:01 +05304242 uv_plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004243 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004244 }
4245
4246 return total_data_rate;
4247}
4248
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004249static u64
4250icl_get_total_relative_data_rate(struct intel_crtc_state *intel_cstate,
4251 u64 *plane_data_rate)
4252{
4253 struct drm_crtc_state *cstate = &intel_cstate->base;
4254 struct drm_atomic_state *state = cstate->state;
4255 struct drm_plane *plane;
4256 const struct drm_plane_state *pstate;
4257 u64 total_data_rate = 0;
4258
4259 if (WARN_ON(!state))
4260 return 0;
4261
4262 /* Calculate and cache data rate for each plane */
4263 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, cstate) {
4264 const struct intel_plane_state *intel_pstate =
4265 to_intel_plane_state(pstate);
4266 enum plane_id plane_id = to_intel_plane(plane)->id;
4267 u64 rate;
4268
4269 if (!intel_pstate->linked_plane) {
4270 rate = skl_plane_relative_data_rate(intel_cstate,
4271 intel_pstate, 0);
4272 plane_data_rate[plane_id] = rate;
4273 total_data_rate += rate;
4274 } else {
4275 enum plane_id y_plane_id;
4276
4277 /*
4278 * The slave plane might not iterate in
4279 * drm_atomic_crtc_state_for_each_plane_state(),
4280 * and needs the master plane state which may be
4281 * NULL if we try get_new_plane_state(), so we
4282 * always calculate from the master.
4283 */
4284 if (intel_pstate->slave)
4285 continue;
4286
4287 /* Y plane rate is calculated on the slave */
4288 rate = skl_plane_relative_data_rate(intel_cstate,
4289 intel_pstate, 0);
4290 y_plane_id = intel_pstate->linked_plane->id;
4291 plane_data_rate[y_plane_id] = rate;
4292 total_data_rate += rate;
4293
4294 rate = skl_plane_relative_data_rate(intel_cstate,
4295 intel_pstate, 1);
4296 plane_data_rate[plane_id] = rate;
4297 total_data_rate += rate;
4298 }
4299 }
4300
4301 return total_data_rate;
4302}
4303
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004304static uint16_t
Matt Ropercd1d3ee2018-12-10 13:54:14 -08004305skl_ddb_min_alloc(const struct intel_plane_state *plane_state, const int plane)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004306{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08004307 struct drm_framebuffer *fb = plane_state->base.fb;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004308 uint32_t src_w, src_h;
4309 uint32_t min_scanlines = 8;
4310 uint8_t plane_bpp;
4311
4312 if (WARN_ON(!fb))
4313 return 0;
4314
Mahesh Kumarb879d582018-04-09 09:11:01 +05304315 /* For packed formats, and uv-plane, return 0 */
4316 if (plane == 1 && fb->format->format != DRM_FORMAT_NV12)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004317 return 0;
4318
4319 /* For Non Y-tile return 8-blocks */
Ville Syrjäläbae781b2016-11-16 13:33:16 +02004320 if (fb->modifier != I915_FORMAT_MOD_Y_TILED &&
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004321 fb->modifier != I915_FORMAT_MOD_Yf_TILED &&
4322 fb->modifier != I915_FORMAT_MOD_Y_TILED_CCS &&
4323 fb->modifier != I915_FORMAT_MOD_Yf_TILED_CCS)
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004324 return 8;
4325
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004326 /*
4327 * Src coordinates are already rotated by 270 degrees for
4328 * the 90/270 degree plane rotation cases (to match the
4329 * GTT mapping), hence no need to account for rotation here.
4330 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08004331 src_w = drm_rect_width(&plane_state->base.src) >> 16;
4332 src_h = drm_rect_height(&plane_state->base.src) >> 16;
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004333
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004334 /* Halve UV plane width and height for NV12 */
Mahesh Kumarb879d582018-04-09 09:11:01 +05304335 if (plane == 1) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004336 src_w /= 2;
4337 src_h /= 2;
4338 }
4339
Mahesh Kumarb879d582018-04-09 09:11:01 +05304340 plane_bpp = fb->format->cpp[plane];
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004341
Matt Ropercd1d3ee2018-12-10 13:54:14 -08004342 if (drm_rotation_90_or_270(plane_state->base.rotation)) {
Kumar, Maheshcbcfd142016-05-31 09:58:59 -07004343 switch (plane_bpp) {
4344 case 1:
4345 min_scanlines = 32;
4346 break;
4347 case 2:
4348 min_scanlines = 16;
4349 break;
4350 case 4:
4351 min_scanlines = 8;
4352 break;
4353 case 8:
4354 min_scanlines = 4;
4355 break;
4356 default:
4357 WARN(1, "Unsupported pixel depth %u for rotation",
4358 plane_bpp);
4359 min_scanlines = 32;
4360 }
4361 }
4362
4363 return DIV_ROUND_UP((4 * src_w * plane_bpp), 512) * min_scanlines/4 + 3;
4364}
4365
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004366static void
4367skl_ddb_calc_min(const struct intel_crtc_state *cstate, int num_active,
Mahesh Kumarb879d582018-04-09 09:11:01 +05304368 uint16_t *minimum, uint16_t *uv_minimum)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004369{
4370 const struct drm_plane_state *pstate;
4371 struct drm_plane *plane;
4372
4373 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, &cstate->base) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004374 enum plane_id plane_id = to_intel_plane(plane)->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004375 struct intel_plane_state *plane_state = to_intel_plane_state(pstate);
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004376
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004377 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004378 continue;
4379
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004380 /* slave plane must be invisible and calculated from master */
4381 if (!pstate->visible || WARN_ON(plane_state->slave))
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004382 continue;
4383
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004384 if (!plane_state->linked_plane) {
Matt Ropercd1d3ee2018-12-10 13:54:14 -08004385 minimum[plane_id] = skl_ddb_min_alloc(plane_state, 0);
4386 uv_minimum[plane_id] =
4387 skl_ddb_min_alloc(plane_state, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004388 } else {
4389 enum plane_id y_plane_id =
4390 plane_state->linked_plane->id;
4391
Matt Ropercd1d3ee2018-12-10 13:54:14 -08004392 minimum[y_plane_id] = skl_ddb_min_alloc(plane_state, 0);
4393 minimum[plane_id] = skl_ddb_min_alloc(plane_state, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004394 }
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004395 }
4396
4397 minimum[PLANE_CURSOR] = skl_cursor_allocation(num_active);
4398}
4399
Matt Roperc107acf2016-05-12 07:06:01 -07004400static int
Matt Roper024c9042015-09-24 15:53:11 -07004401skl_allocate_pipe_ddb(struct intel_crtc_state *cstate,
Damien Lespiaub9cec072014-11-04 17:06:43 +00004402 struct skl_ddb_allocation *ddb /* out */)
4403{
Matt Roperc107acf2016-05-12 07:06:01 -07004404 struct drm_atomic_state *state = cstate->base.state;
Matt Roper024c9042015-09-24 15:53:11 -07004405 struct drm_crtc *crtc = cstate->base.crtc;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004406 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004407 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Lyudece0ba282016-09-15 10:46:35 -04004408 struct skl_ddb_entry *alloc = &cstate->wm.skl.ddb;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004409 uint16_t alloc_size, start;
Maarten Lankhorstfefdd812016-10-26 15:41:33 +02004410 uint16_t minimum[I915_MAX_PLANES] = {};
Mahesh Kumarb879d582018-04-09 09:11:01 +05304411 uint16_t uv_minimum[I915_MAX_PLANES] = {};
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004412 u64 total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004413 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004414 int num_active;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004415 u64 plane_data_rate[I915_MAX_PLANES] = {};
4416 u64 uv_plane_data_rate[I915_MAX_PLANES] = {};
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304417 uint16_t total_min_blocks = 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004418
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004419 /* Clear the partitioning for disabled planes. */
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004420 memset(cstate->wm.skl.plane_ddb_y, 0, sizeof(cstate->wm.skl.plane_ddb_y));
4421 memset(cstate->wm.skl.plane_ddb_uv, 0, sizeof(cstate->wm.skl.plane_ddb_uv));
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004422
Matt Ropera6d3460e2016-05-12 07:06:04 -07004423 if (WARN_ON(!state))
4424 return 0;
4425
Matt Roperc107acf2016-05-12 07:06:01 -07004426 if (!cstate->base.active) {
Lyudece0ba282016-09-15 10:46:35 -04004427 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004428 return 0;
4429 }
4430
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004431 if (INTEL_GEN(dev_priv) < 11)
4432 total_data_rate =
4433 skl_get_total_relative_data_rate(cstate,
4434 plane_data_rate,
4435 uv_plane_data_rate);
4436 else
4437 total_data_rate =
4438 icl_get_total_relative_data_rate(cstate,
4439 plane_data_rate);
4440
4441 skl_ddb_get_pipe_allocation_limits(dev_priv, cstate, total_data_rate,
4442 ddb, alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004443 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304444 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004445 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004446
Mahesh Kumarb879d582018-04-09 09:11:01 +05304447 skl_ddb_calc_min(cstate, num_active, minimum, uv_minimum);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004448
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004449 /*
4450 * 1. Allocate the mininum required blocks for each active plane
4451 * and allocate the cursor, it doesn't require extra allocation
4452 * proportional to the data rate.
4453 */
Damien Lespiaub9cec072014-11-04 17:06:43 +00004454
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004455 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304456 total_min_blocks += minimum[plane_id];
Mahesh Kumarb879d582018-04-09 09:11:01 +05304457 total_min_blocks += uv_minimum[plane_id];
Damien Lespiau80958152015-02-09 13:35:10 +00004458 }
4459
Kumar, Mahesh5ba6faa2017-05-17 17:28:26 +05304460 if (total_min_blocks > alloc_size) {
4461 DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations");
4462 DRM_DEBUG_KMS("minimum required %d/%d\n", total_min_blocks,
4463 alloc_size);
4464 return -EINVAL;
4465 }
4466
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004467 alloc_size -= total_min_blocks;
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004468 cstate->wm.skl.plane_ddb_y[PLANE_CURSOR].start = alloc->end - minimum[PLANE_CURSOR];
4469 cstate->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004470
Damien Lespiaub9cec072014-11-04 17:06:43 +00004471 /*
Damien Lespiau80958152015-02-09 13:35:10 +00004472 * 2. Distribute the remaining space in proportion to the amount of
4473 * data each plane needs to fetch from memory.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004474 *
4475 * FIXME: we may not allocate every single block here.
4476 */
Matt Ropera1de91e2016-05-12 07:05:57 -07004477 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004478 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004479
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004480 start = alloc->start;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004481 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004482 u64 data_rate, uv_data_rate;
Mahesh Kumarb879d582018-04-09 09:11:01 +05304483 uint16_t plane_blocks, uv_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004484
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004485 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004486 continue;
4487
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004488 data_rate = plane_data_rate[plane_id];
Damien Lespiaub9cec072014-11-04 17:06:43 +00004489
4490 /*
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004491 * allocation for (packed formats) or (uv-plane part of planar format):
Damien Lespiaub9cec072014-11-04 17:06:43 +00004492 * promote the expression to 64 bits to avoid overflowing, the
4493 * result is < available as data_rate / total_data_rate < 1
4494 */
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004495 plane_blocks = minimum[plane_id];
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004496 plane_blocks += div64_u64(alloc_size * data_rate, total_data_rate);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004497
Matt Roperc107acf2016-05-12 07:06:01 -07004498 /* Leave disabled planes at (0,0) */
4499 if (data_rate) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004500 cstate->wm.skl.plane_ddb_y[plane_id].start = start;
4501 cstate->wm.skl.plane_ddb_y[plane_id].end = start + plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004502 }
Damien Lespiaub9cec072014-11-04 17:06:43 +00004503
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004504 start += plane_blocks;
4505
Mahesh Kumarb879d582018-04-09 09:11:01 +05304506 /* Allocate DDB for UV plane for planar format/NV12 */
4507 uv_data_rate = uv_plane_data_rate[plane_id];
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004508
Mahesh Kumarb879d582018-04-09 09:11:01 +05304509 uv_plane_blocks = uv_minimum[plane_id];
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004510 uv_plane_blocks += div64_u64(alloc_size * uv_data_rate, total_data_rate);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004511
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004512 /* Gen11+ uses a separate plane for UV watermarks */
4513 WARN_ON(INTEL_GEN(dev_priv) >= 11 && uv_plane_blocks);
4514
Mahesh Kumarb879d582018-04-09 09:11:01 +05304515 if (uv_data_rate) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004516 cstate->wm.skl.plane_ddb_uv[plane_id].start = start;
4517 cstate->wm.skl.plane_ddb_uv[plane_id].end =
Mahesh Kumarb879d582018-04-09 09:11:01 +05304518 start + uv_plane_blocks;
Matt Roperc107acf2016-05-12 07:06:01 -07004519 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004520
Mahesh Kumarb879d582018-04-09 09:11:01 +05304521 start += uv_plane_blocks;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004522 }
4523
Matt Roperc107acf2016-05-12 07:06:01 -07004524 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004525}
4526
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004527/*
4528 * 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 +02004529 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004530 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4531 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4532*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004533static uint_fixed_16_16_t
4534skl_wm_method1(const struct drm_i915_private *dev_priv, uint32_t pixel_rate,
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004535 uint8_t cpp, uint32_t latency, uint32_t dbuf_block_size)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004536{
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304537 uint32_t wm_intermediate_val;
4538 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004539
4540 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304541 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004542
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304543 wm_intermediate_val = latency * pixel_rate * cpp;
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004544 ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004545
4546 if (INTEL_GEN(dev_priv) >= 10)
4547 ret = add_fixed16_u32(ret, 1);
4548
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004549 return ret;
4550}
4551
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304552static uint_fixed_16_16_t skl_wm_method2(uint32_t pixel_rate,
4553 uint32_t pipe_htotal,
4554 uint32_t latency,
4555 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004556{
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004557 uint32_t wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304558 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004559
4560 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304561 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004562
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004563 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304564 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4565 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304566 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004567 return ret;
4568}
4569
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304570static uint_fixed_16_16_t
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004571intel_get_linetime_us(const struct intel_crtc_state *cstate)
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304572{
4573 uint32_t pixel_rate;
4574 uint32_t crtc_htotal;
4575 uint_fixed_16_16_t linetime_us;
4576
4577 if (!cstate->base.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304578 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304579
4580 pixel_rate = cstate->pixel_rate;
4581
4582 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304583 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304584
4585 crtc_htotal = cstate->base.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304586 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304587
4588 return linetime_us;
4589}
4590
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304591static uint32_t
4592skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *cstate,
4593 const struct intel_plane_state *pstate)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004594{
4595 uint64_t adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304596 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004597
4598 /* Shouldn't reach here on disabled planes... */
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004599 if (WARN_ON(!intel_wm_plane_visible(cstate, pstate)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004600 return 0;
4601
4602 /*
4603 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4604 * with additional adjustments for plane-specific scaling.
4605 */
Ville Syrjäläa7d1b3f2017-01-26 21:50:31 +02004606 adjusted_pixel_rate = cstate->pixel_rate;
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004607 downscale_amount = skl_plane_downscale_amount(cstate, pstate);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004608
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304609 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4610 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004611}
4612
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304613static int
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004614skl_compute_plane_wm_params(const struct intel_crtc_state *cstate,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304615 const struct intel_plane_state *intel_pstate,
Ville Syrjälä45bee432018-11-14 23:07:28 +02004616 struct skl_wm_params *wp, int color_plane)
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304617{
4618 struct intel_plane *plane = to_intel_plane(intel_pstate->base.plane);
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004619 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304620 const struct drm_plane_state *pstate = &intel_pstate->base;
4621 const struct drm_framebuffer *fb = pstate->fb;
4622 uint32_t interm_pbpl;
4623 struct intel_atomic_state *state =
4624 to_intel_atomic_state(cstate->base.state);
4625 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
4626
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304627 /* only NV12 format has two planes */
Ville Syrjälä45bee432018-11-14 23:07:28 +02004628 if (color_plane == 1 && fb->format->format != DRM_FORMAT_NV12) {
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304629 DRM_DEBUG_KMS("Non NV12 format have single plane\n");
4630 return -EINVAL;
4631 }
4632
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304633 wp->y_tiled = fb->modifier == I915_FORMAT_MOD_Y_TILED ||
4634 fb->modifier == I915_FORMAT_MOD_Yf_TILED ||
4635 fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4636 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4637 wp->x_tiled = fb->modifier == I915_FORMAT_MOD_X_TILED;
4638 wp->rc_surface = fb->modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4639 fb->modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304640 wp->is_planar = fb->format->format == DRM_FORMAT_NV12;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304641
4642 if (plane->id == PLANE_CURSOR) {
4643 wp->width = intel_pstate->base.crtc_w;
4644 } else {
4645 /*
4646 * Src coordinates are already rotated by 270 degrees for
4647 * the 90/270 degree plane rotation cases (to match the
4648 * GTT mapping), hence no need to account for rotation here.
4649 */
4650 wp->width = drm_rect_width(&intel_pstate->base.src) >> 16;
4651 }
4652
Ville Syrjälä45bee432018-11-14 23:07:28 +02004653 if (color_plane == 1 && wp->is_planar)
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304654 wp->width /= 2;
4655
Ville Syrjälä45bee432018-11-14 23:07:28 +02004656 wp->cpp = fb->format->cpp[color_plane];
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304657 wp->plane_pixel_rate = skl_adjusted_plane_pixel_rate(cstate,
4658 intel_pstate);
4659
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004660 if (INTEL_GEN(dev_priv) >= 11 &&
4661 fb->modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 8)
4662 wp->dbuf_block_size = 256;
4663 else
4664 wp->dbuf_block_size = 512;
4665
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304666 if (drm_rotation_90_or_270(pstate->rotation)) {
4667
4668 switch (wp->cpp) {
4669 case 1:
4670 wp->y_min_scanlines = 16;
4671 break;
4672 case 2:
4673 wp->y_min_scanlines = 8;
4674 break;
4675 case 4:
4676 wp->y_min_scanlines = 4;
4677 break;
4678 default:
4679 MISSING_CASE(wp->cpp);
4680 return -EINVAL;
4681 }
4682 } else {
4683 wp->y_min_scanlines = 4;
4684 }
4685
4686 if (apply_memory_bw_wa)
4687 wp->y_min_scanlines *= 2;
4688
4689 wp->plane_bytes_per_line = wp->width * wp->cpp;
4690 if (wp->y_tiled) {
4691 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004692 wp->y_min_scanlines,
4693 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304694
4695 if (INTEL_GEN(dev_priv) >= 10)
4696 interm_pbpl++;
4697
4698 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4699 wp->y_min_scanlines);
4700 } else if (wp->x_tiled && IS_GEN9(dev_priv)) {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004701 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
4702 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304703 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4704 } else {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004705 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
4706 wp->dbuf_block_size) + 1;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304707 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4708 }
4709
4710 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4711 wp->plane_blocks_per_line);
4712 wp->linetime_us = fixed16_to_u32_round_up(
4713 intel_get_linetime_us(cstate));
4714
4715 return 0;
4716}
4717
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004718static int skl_compute_plane_wm(const struct intel_crtc_state *cstate,
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304719 const struct intel_plane_state *intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004720 uint16_t ddb_allocation,
Matt Roper55994c22016-05-12 07:06:08 -07004721 int level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304722 const struct skl_wm_params *wp,
Mahesh Kumar8b2b53c2018-04-09 09:11:06 +05304723 const struct skl_wm_level *result_prev,
Mahesh Kumar62027b72018-04-09 09:11:05 +05304724 struct skl_wm_level *result /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004725{
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004726 struct drm_i915_private *dev_priv =
4727 to_i915(intel_pstate->base.plane->dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05304728 const struct drm_plane_state *pstate = &intel_pstate->base;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004729 uint32_t latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304730 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304731 uint_fixed_16_16_t selected_result;
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004732 uint32_t res_blocks, res_lines;
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004733 struct intel_atomic_state *state =
4734 to_intel_atomic_state(cstate->base.state);
4735 bool apply_memory_bw_wa = skl_needs_memory_bw_wa(state);
Mahesh Kumar5b695af2018-01-30 11:49:12 -02004736 uint32_t min_disp_buf_needed;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004737
Ville Syrjäläce110ec2018-11-14 23:07:21 +02004738 if (latency == 0)
4739 return level == 0 ? -EINVAL : 0;
4740
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004741 /* Display WA #1141: kbl,cfl */
Kumar, Maheshd86ba622017-08-17 19:15:26 +05304742 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv) ||
4743 IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) &&
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004744 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304745 latency += 4;
4746
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304747 if (apply_memory_bw_wa && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004748 latency += 15;
4749
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304750 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004751 wp->cpp, latency, wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304752 method2 = skl_wm_method2(wp->plane_pixel_rate,
Matt Roper024c9042015-09-24 15:53:11 -07004753 cstate->base.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004754 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304755 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004756
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304757 if (wp->y_tiled) {
4758 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004759 } else {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304760 if ((wp->cpp * cstate->base.adjusted_mode.crtc_htotal /
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004761 wp->dbuf_block_size < 1) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07004762 (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004763 selected_result = method2;
Paulo Zanoni077b5822018-10-04 16:15:57 -07004764 } else if (ddb_allocation >=
4765 fixed16_to_u32_round_up(wp->plane_blocks_per_line)) {
Rodrigo Vivi9e783372018-10-26 12:51:42 -07004766 if (IS_GEN9(dev_priv) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07004767 !IS_GEMINILAKE(dev_priv))
4768 selected_result = min_fixed16(method1, method2);
4769 else
4770 selected_result = method2;
4771 } else if (latency >= wp->linetime_us) {
Rodrigo Vivi9e783372018-10-26 12:51:42 -07004772 if (IS_GEN9(dev_priv) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07004773 !IS_GEMINILAKE(dev_priv))
4774 selected_result = min_fixed16(method1, method2);
4775 else
4776 selected_result = method2;
4777 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004778 selected_result = method1;
Paulo Zanoni077b5822018-10-04 16:15:57 -07004779 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004780 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004781
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304782 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05304783 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304784 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00004785
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004786 /* Display WA #1125: skl,bxt,kbl,glk */
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304787 if (level == 0 && wp->rc_surface)
4788 res_blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07004789
4790 /* Display WA #1126: skl,bxt,kbl,glk */
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004791 if (level >= 1 && level <= 7) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304792 if (wp->y_tiled) {
4793 res_blocks += fixed16_to_u32_round_up(
4794 wp->y_tile_minimum);
4795 res_lines += wp->y_min_scanlines;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004796 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004797 res_blocks++;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03004798 }
Mahesh Kumar8b2b53c2018-04-09 09:11:06 +05304799
4800 /*
4801 * Make sure result blocks for higher latency levels are atleast
4802 * as high as level below the current level.
4803 * Assumption in DDB algorithm optimization for special cases.
4804 * Also covers Display WA #1125 for RC.
4805 */
4806 if (result_prev->plane_res_b > res_blocks)
4807 res_blocks = result_prev->plane_res_b;
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004808 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00004809
Mahesh Kumar5b695af2018-01-30 11:49:12 -02004810 if (INTEL_GEN(dev_priv) >= 11) {
4811 if (wp->y_tiled) {
4812 uint32_t extra_lines;
4813 uint_fixed_16_16_t fp_min_disp_buf_needed;
4814
4815 if (res_lines % wp->y_min_scanlines == 0)
4816 extra_lines = wp->y_min_scanlines;
4817 else
4818 extra_lines = wp->y_min_scanlines * 2 -
4819 res_lines % wp->y_min_scanlines;
4820
4821 fp_min_disp_buf_needed = mul_u32_fixed16(res_lines +
4822 extra_lines,
4823 wp->plane_blocks_per_line);
4824 min_disp_buf_needed = fixed16_to_u32_round_up(
4825 fp_min_disp_buf_needed);
4826 } else {
4827 min_disp_buf_needed = DIV_ROUND_UP(res_blocks * 11, 10);
4828 }
4829 } else {
4830 min_disp_buf_needed = res_blocks;
4831 }
4832
Maarten Lankhorst31dade72018-02-05 11:58:41 +01004833 if ((level > 0 && res_lines > 31) ||
4834 res_blocks >= ddb_allocation ||
Mahesh Kumar5b695af2018-01-30 11:49:12 -02004835 min_disp_buf_needed >= ddb_allocation) {
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004836 /*
4837 * If there are no valid level 0 watermarks, then we can't
4838 * support this display configuration.
4839 */
4840 if (level) {
4841 return 0;
4842 } else {
4843 struct drm_plane *plane = pstate->plane;
4844
4845 DRM_DEBUG_KMS("Requested display configuration exceeds system watermark limitations\n");
4846 DRM_DEBUG_KMS("[PLANE:%d:%s] blocks required = %u/%u, lines required = %u/31\n",
4847 plane->base.id, plane->name,
4848 res_blocks, ddb_allocation, res_lines);
4849 return -EINVAL;
4850 }
Matt Roper55994c22016-05-12 07:06:08 -07004851 }
Damien Lespiaue6d66172014-11-04 17:06:55 +00004852
Maarten Lankhorst31dade72018-02-05 11:58:41 +01004853 /* The number of lines are ignored for the level 0 watermark. */
Mahesh Kumar62027b72018-04-09 09:11:05 +05304854 result->plane_res_b = res_blocks;
4855 result->plane_res_l = res_lines;
4856 result->plane_en = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004857
Matt Roper55994c22016-05-12 07:06:08 -07004858 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004859}
4860
Matt Roperf4a96752016-05-12 07:06:06 -07004861static int
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004862skl_compute_wm_levels(const struct intel_crtc_state *cstate,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304863 const struct intel_plane_state *intel_pstate,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004864 uint16_t ddb_blocks,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304865 const struct skl_wm_params *wm_params,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004866 struct skl_wm_level *levels)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004867{
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004868 struct drm_i915_private *dev_priv =
4869 to_i915(intel_pstate->base.plane->dev);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304870 int level, max_level = ilk_wm_max_level(dev_priv);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004871 struct skl_wm_level *result_prev = &levels[0];
Matt Roper55994c22016-05-12 07:06:08 -07004872 int ret;
Lyudea62163e2016-10-04 14:28:20 -04004873
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304874 for (level = 0; level <= max_level; level++) {
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004875 struct skl_wm_level *result = &levels[level];
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304876
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004877 ret = skl_compute_plane_wm(cstate,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304878 intel_pstate,
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004879 ddb_blocks,
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304880 level,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304881 wm_params,
Mahesh Kumar8b2b53c2018-04-09 09:11:06 +05304882 result_prev,
Mahesh Kumar62027b72018-04-09 09:11:05 +05304883 result);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304884 if (ret)
4885 return ret;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004886
4887 result_prev = result;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05304888 }
Matt Roperf4a96752016-05-12 07:06:06 -07004889
4890 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004891}
4892
Damien Lespiau407b50f2014-11-04 17:06:57 +00004893static uint32_t
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004894skl_compute_linetime_wm(const struct intel_crtc_state *cstate)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004895{
Mahesh Kumara3a89862016-12-01 21:19:34 +05304896 struct drm_atomic_state *state = cstate->base.state;
4897 struct drm_i915_private *dev_priv = to_i915(state->dev);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304898 uint_fixed_16_16_t linetime_us;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304899 uint32_t linetime_wm;
Paulo Zanoni30d1b5f2016-10-07 17:28:58 -03004900
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304901 linetime_us = intel_get_linetime_us(cstate);
4902
4903 if (is_fixed16_zero(linetime_us))
Damien Lespiau407b50f2014-11-04 17:06:57 +00004904 return 0;
4905
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304906 linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us));
Mahesh Kumara3a89862016-12-01 21:19:34 +05304907
Kumar, Mahesh446e8502017-08-17 19:15:25 +05304908 /* Display WA #1135: bxt:ALL GLK:ALL */
4909 if ((IS_BROXTON(dev_priv) || IS_GEMINILAKE(dev_priv)) &&
4910 dev_priv->ipc_enabled)
4911 linetime_wm /= 2;
Mahesh Kumara3a89862016-12-01 21:19:34 +05304912
4913 return linetime_wm;
Damien Lespiau407b50f2014-11-04 17:06:57 +00004914}
4915
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004916static void skl_compute_transition_wm(const struct intel_crtc_state *cstate,
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02004917 const struct skl_wm_params *wp,
4918 struct skl_plane_wm *wm,
4919 uint16_t ddb_allocation)
Damien Lespiau407b50f2014-11-04 17:06:57 +00004920{
Kumar, Maheshca476672017-08-17 19:15:24 +05304921 struct drm_device *dev = cstate->base.crtc->dev;
4922 const struct drm_i915_private *dev_priv = to_i915(dev);
4923 uint16_t trans_min, trans_y_tile_min;
4924 const uint16_t trans_amount = 10; /* This is configurable amount */
Paulo Zanonicbacc792018-10-04 16:15:58 -07004925 uint16_t wm0_sel_res_b, trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00004926
Kumar, Maheshca476672017-08-17 19:15:24 +05304927 /* Transition WM are not recommended by HW team for GEN9 */
4928 if (INTEL_GEN(dev_priv) <= 9)
Ville Syrjälä14a43062018-11-14 23:07:22 +02004929 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05304930
4931 /* Transition WM don't make any sense if ipc is disabled */
4932 if (!dev_priv->ipc_enabled)
Ville Syrjälä14a43062018-11-14 23:07:22 +02004933 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05304934
Paulo Zanoni91961a82018-10-04 16:15:56 -07004935 trans_min = 14;
4936 if (INTEL_GEN(dev_priv) >= 11)
Kumar, Maheshca476672017-08-17 19:15:24 +05304937 trans_min = 4;
4938
4939 trans_offset_b = trans_min + trans_amount;
4940
Paulo Zanonicbacc792018-10-04 16:15:58 -07004941 /*
4942 * The spec asks for Selected Result Blocks for wm0 (the real value),
4943 * not Result Blocks (the integer value). Pay attention to the capital
4944 * letters. The value wm_l0->plane_res_b is actually Result Blocks, but
4945 * since Result Blocks is the ceiling of Selected Result Blocks plus 1,
4946 * and since we later will have to get the ceiling of the sum in the
4947 * transition watermarks calculation, we can just pretend Selected
4948 * Result Blocks is Result Blocks minus 1 and it should work for the
4949 * current platforms.
4950 */
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02004951 wm0_sel_res_b = wm->wm[0].plane_res_b - 1;
Paulo Zanonicbacc792018-10-04 16:15:58 -07004952
Kumar, Maheshca476672017-08-17 19:15:24 +05304953 if (wp->y_tiled) {
4954 trans_y_tile_min = (uint16_t) mul_round_up_u32_fixed16(2,
4955 wp->y_tile_minimum);
Paulo Zanonicbacc792018-10-04 16:15:58 -07004956 res_blocks = max(wm0_sel_res_b, trans_y_tile_min) +
Kumar, Maheshca476672017-08-17 19:15:24 +05304957 trans_offset_b;
4958 } else {
Paulo Zanonicbacc792018-10-04 16:15:58 -07004959 res_blocks = wm0_sel_res_b + trans_offset_b;
Kumar, Maheshca476672017-08-17 19:15:24 +05304960
4961 /* WA BUG:1938466 add one block for non y-tile planes */
4962 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
4963 res_blocks += 1;
4964
4965 }
4966
4967 res_blocks += 1;
4968
4969 if (res_blocks < ddb_allocation) {
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02004970 wm->trans_wm.plane_res_b = res_blocks;
4971 wm->trans_wm.plane_en = true;
Kumar, Maheshca476672017-08-17 19:15:24 +05304972 }
Damien Lespiau407b50f2014-11-04 17:06:57 +00004973}
4974
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004975static int skl_build_plane_wm_single(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02004976 const struct intel_plane_state *plane_state,
4977 enum plane_id plane_id, int color_plane)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004978{
Ville Syrjälä83158472018-11-27 18:57:26 +02004979 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004980 u16 ddb_blocks = skl_ddb_entry_size(&crtc_state->wm.skl.plane_ddb_y[plane_id]);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004981 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004982 int ret;
4983
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004984 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02004985 &wm_params, color_plane);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004986 if (ret)
4987 return ret;
4988
Ville Syrjälä51de9c62018-11-14 23:07:25 +02004989 ret = skl_compute_wm_levels(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02004990 ddb_blocks, &wm_params, wm->wm);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004991 if (ret)
4992 return ret;
4993
Ville Syrjälä83158472018-11-27 18:57:26 +02004994 skl_compute_transition_wm(crtc_state, &wm_params, wm, ddb_blocks);
4995
4996 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004997}
4998
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004999static int skl_build_plane_wm_uv(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005000 const struct intel_plane_state *plane_state,
5001 enum plane_id plane_id)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005002{
Ville Syrjälä83158472018-11-27 18:57:26 +02005003 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005004 u16 ddb_blocks = skl_ddb_entry_size(&crtc_state->wm.skl.plane_ddb_uv[plane_id]);
Ville Syrjälä83158472018-11-27 18:57:26 +02005005 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005006 int ret;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005007
Ville Syrjälä83158472018-11-27 18:57:26 +02005008 wm->is_planar = true;
5009
5010 /* uv plane watermarks must also be validated for NV12/Planar */
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005011 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005012 &wm_params, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005013 if (ret)
5014 return ret;
5015
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005016 ret = skl_compute_wm_levels(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005017 ddb_blocks, &wm_params, wm->uv_wm);
5018 if (ret)
5019 return ret;
5020
5021 return 0;
5022}
5023
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005024static int skl_build_plane_wm(struct skl_pipe_wm *pipe_wm,
Ville Syrjälä83158472018-11-27 18:57:26 +02005025 struct intel_crtc_state *crtc_state,
5026 const struct intel_plane_state *plane_state)
5027{
5028 struct intel_plane *plane = to_intel_plane(plane_state->base.plane);
5029 const struct drm_framebuffer *fb = plane_state->base.fb;
5030 enum plane_id plane_id = plane->id;
5031 int ret;
5032
5033 if (!intel_wm_plane_visible(crtc_state, plane_state))
5034 return 0;
5035
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005036 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005037 plane_id, 0);
5038 if (ret)
5039 return ret;
5040
5041 if (fb->format->is_yuv && fb->format->num_planes > 1) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005042 ret = skl_build_plane_wm_uv(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005043 plane_id);
5044 if (ret)
5045 return ret;
5046 }
5047
5048 return 0;
5049}
5050
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005051static int icl_build_plane_wm(struct skl_pipe_wm *pipe_wm,
Ville Syrjälä83158472018-11-27 18:57:26 +02005052 struct intel_crtc_state *crtc_state,
5053 const struct intel_plane_state *plane_state)
5054{
5055 enum plane_id plane_id = to_intel_plane(plane_state->base.plane)->id;
5056 int ret;
5057
5058 /* Watermarks calculated in master */
5059 if (plane_state->slave)
5060 return 0;
5061
5062 if (plane_state->linked_plane) {
5063 const struct drm_framebuffer *fb = plane_state->base.fb;
5064 enum plane_id y_plane_id = plane_state->linked_plane->id;
5065
5066 WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state));
5067 WARN_ON(!fb->format->is_yuv ||
5068 fb->format->num_planes == 1);
5069
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005070 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005071 y_plane_id, 0);
5072 if (ret)
5073 return ret;
5074
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005075 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005076 plane_id, 1);
5077 if (ret)
5078 return ret;
5079 } else if (intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005080 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005081 plane_id, 0);
5082 if (ret)
5083 return ret;
5084 }
5085
5086 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005087}
5088
Matt Roper55994c22016-05-12 07:06:08 -07005089static int skl_build_pipe_wm(struct intel_crtc_state *cstate,
Matt Roper55994c22016-05-12 07:06:08 -07005090 struct skl_pipe_wm *pipe_wm)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005091{
Ville Syrjälä83158472018-11-27 18:57:26 +02005092 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305093 struct drm_crtc_state *crtc_state = &cstate->base;
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305094 struct drm_plane *plane;
5095 const struct drm_plane_state *pstate;
Matt Roper55994c22016-05-12 07:06:08 -07005096 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005097
Lyudea62163e2016-10-04 14:28:20 -04005098 /*
5099 * We'll only calculate watermarks for planes that are actually
5100 * enabled, so make sure all other planes are set as disabled.
5101 */
5102 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
5103
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305104 drm_atomic_crtc_state_for_each_plane_state(plane, pstate, crtc_state) {
5105 const struct intel_plane_state *intel_pstate =
5106 to_intel_plane_state(pstate);
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305107
Ville Syrjälä83158472018-11-27 18:57:26 +02005108 if (INTEL_GEN(dev_priv) >= 11)
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005109 ret = icl_build_plane_wm(pipe_wm,
Ville Syrjälä83158472018-11-27 18:57:26 +02005110 cstate, intel_pstate);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005111 else
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005112 ret = skl_build_plane_wm(pipe_wm,
Ville Syrjälä83158472018-11-27 18:57:26 +02005113 cstate, intel_pstate);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305114 if (ret)
5115 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005116 }
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05305117
Matt Roper024c9042015-09-24 15:53:11 -07005118 pipe_wm->linetime = skl_compute_linetime_wm(cstate);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005119
Matt Roper55994c22016-05-12 07:06:08 -07005120 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005121}
5122
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005123static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
5124 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00005125 const struct skl_ddb_entry *entry)
5126{
5127 if (entry->end)
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005128 I915_WRITE_FW(reg, (entry->end - 1) << 16 | entry->start);
Damien Lespiau16160e32014-11-04 17:06:53 +00005129 else
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005130 I915_WRITE_FW(reg, 0);
Damien Lespiau16160e32014-11-04 17:06:53 +00005131}
5132
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005133static void skl_write_wm_level(struct drm_i915_private *dev_priv,
5134 i915_reg_t reg,
5135 const struct skl_wm_level *level)
5136{
5137 uint32_t val = 0;
5138
5139 if (level->plane_en) {
5140 val |= PLANE_WM_EN;
5141 val |= level->plane_res_b;
5142 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
5143 }
5144
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005145 I915_WRITE_FW(reg, val);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005146}
5147
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005148void skl_write_plane_wm(struct intel_plane *plane,
5149 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005150{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005151 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005152 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005153 enum plane_id plane_id = plane->id;
5154 enum pipe pipe = plane->pipe;
5155 const struct skl_plane_wm *wm =
5156 &crtc_state->wm.skl.optimal.planes[plane_id];
5157 const struct skl_ddb_entry *ddb_y =
5158 &crtc_state->wm.skl.plane_ddb_y[plane_id];
5159 const struct skl_ddb_entry *ddb_uv =
5160 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005161
5162 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005163 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005164 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005165 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005166 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005167 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005168
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005169 if (INTEL_GEN(dev_priv) >= 11) {
Mahesh Kumar234059d2018-01-30 11:49:13 -02005170 skl_ddb_entry_write(dev_priv,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005171 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5172 return;
Mahesh Kumarb879d582018-04-09 09:11:01 +05305173 }
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005174
5175 if (wm->is_planar)
5176 swap(ddb_y, ddb_uv);
5177
5178 skl_ddb_entry_write(dev_priv,
5179 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5180 skl_ddb_entry_write(dev_priv,
5181 PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv);
Lyude62e0fb82016-08-22 12:50:08 -04005182}
5183
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005184void skl_write_cursor_wm(struct intel_plane *plane,
5185 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005186{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005187 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005188 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005189 enum plane_id plane_id = plane->id;
5190 enum pipe pipe = plane->pipe;
5191 const struct skl_plane_wm *wm =
5192 &crtc_state->wm.skl.optimal.planes[plane_id];
5193 const struct skl_ddb_entry *ddb =
5194 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005195
5196 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005197 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
5198 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005199 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005200 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005201
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005202 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb);
Lyude62e0fb82016-08-22 12:50:08 -04005203}
5204
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005205bool skl_wm_level_equals(const struct skl_wm_level *l1,
5206 const struct skl_wm_level *l2)
5207{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005208 return l1->plane_en == l2->plane_en &&
5209 l1->plane_res_l == l2->plane_res_l &&
5210 l1->plane_res_b == l2->plane_res_b;
5211}
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005212
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005213static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv,
5214 const struct skl_plane_wm *wm1,
5215 const struct skl_plane_wm *wm2)
5216{
5217 int level, max_level = ilk_wm_max_level(dev_priv);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005218
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005219 for (level = 0; level <= max_level; level++) {
5220 if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]) ||
5221 !skl_wm_level_equals(&wm1->uv_wm[level], &wm2->uv_wm[level]))
5222 return false;
5223 }
5224
5225 return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005226}
5227
Lyude27082492016-08-24 07:48:10 +02005228static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
5229 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005230{
Lyude27082492016-08-24 07:48:10 +02005231 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005232}
5233
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005234bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb,
5235 const struct skl_ddb_entry entries[],
5236 int num_entries, int ignore_idx)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005237{
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005238 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005239
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005240 for (i = 0; i < num_entries; i++) {
5241 if (i != ignore_idx &&
5242 skl_ddb_entries_overlap(ddb, &entries[i]))
Lyude27082492016-08-24 07:48:10 +02005243 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03005244 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005245
Lyude27082492016-08-24 07:48:10 +02005246 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005247}
5248
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005249static int skl_update_pipe_wm(struct intel_crtc_state *cstate,
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005250 const struct skl_pipe_wm *old_pipe_wm,
Matt Roper55994c22016-05-12 07:06:08 -07005251 struct skl_pipe_wm *pipe_wm, /* out */
5252 bool *changed /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005253{
Matt Roper55994c22016-05-12 07:06:08 -07005254 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005255
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005256 ret = skl_build_pipe_wm(cstate, pipe_wm);
Matt Roper55994c22016-05-12 07:06:08 -07005257 if (ret)
5258 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005259
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005260 if (!memcmp(old_pipe_wm, pipe_wm, sizeof(*pipe_wm)))
Matt Roper55994c22016-05-12 07:06:08 -07005261 *changed = false;
5262 else
5263 *changed = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005264
Matt Roper55994c22016-05-12 07:06:08 -07005265 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005266}
5267
Matt Roper9b613022016-06-27 16:42:44 -07005268static uint32_t
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005269pipes_modified(struct intel_atomic_state *state)
Matt Roper9b613022016-06-27 16:42:44 -07005270{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005271 struct intel_crtc *crtc;
5272 struct intel_crtc_state *cstate;
Matt Roper9b613022016-06-27 16:42:44 -07005273 uint32_t i, ret = 0;
5274
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005275 for_each_new_intel_crtc_in_state(state, crtc, cstate, i)
5276 ret |= drm_crtc_mask(&crtc->base);
Matt Roper9b613022016-06-27 16:42:44 -07005277
5278 return ret;
5279}
5280
Jani Nikulabb7791b2016-10-04 12:29:17 +03005281static int
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005282skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state,
5283 struct intel_crtc_state *new_crtc_state)
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005284{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005285 struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->base.state);
5286 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->base.crtc);
5287 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5288 struct intel_plane *plane;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005289
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005290 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5291 struct intel_plane_state *plane_state;
5292 enum plane_id plane_id = plane->id;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005293
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005294 if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id],
5295 &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) &&
5296 skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id],
5297 &new_crtc_state->wm.skl.plane_ddb_uv[plane_id]))
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005298 continue;
5299
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005300 plane_state = intel_atomic_get_plane_state(state, plane);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005301 if (IS_ERR(plane_state))
5302 return PTR_ERR(plane_state);
Maarten Lankhorst1ab554b2018-10-22 15:51:52 +02005303
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005304 new_crtc_state->update_planes |= BIT(plane_id);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005305 }
5306
5307 return 0;
5308}
5309
5310static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005311skl_compute_ddb(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005312{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005313 const struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5314 struct skl_ddb_allocation *ddb = &state->wm_results.ddb;
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005315 struct intel_crtc_state *old_crtc_state;
5316 struct intel_crtc_state *new_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305317 struct intel_crtc *crtc;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305318 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005319
Paulo Zanoni5a920b82016-10-04 14:37:32 -03005320 memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb));
5321
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005322 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005323 new_crtc_state, i) {
5324 ret = skl_allocate_pipe_ddb(new_crtc_state, ddb);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005325 if (ret)
5326 return ret;
5327
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005328 ret = skl_ddb_add_affected_planes(old_crtc_state,
5329 new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005330 if (ret)
5331 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07005332 }
5333
5334 return 0;
5335}
5336
Matt Roper2722efb2016-08-17 15:55:55 -04005337static void
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005338skl_print_wm_changes(struct intel_atomic_state *state)
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005339{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005340 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5341 const struct intel_crtc_state *old_crtc_state;
5342 const struct intel_crtc_state *new_crtc_state;
5343 struct intel_plane *plane;
5344 struct intel_crtc *crtc;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005345 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005346
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005347 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5348 new_crtc_state, i) {
5349 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5350 enum plane_id plane_id = plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005351 const struct skl_ddb_entry *old, *new;
5352
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005353 old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id];
5354 new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005355
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005356 if (skl_ddb_entry_equal(old, new))
5357 continue;
5358
Paulo Zanonib9117142018-10-04 16:16:00 -07005359 DRM_DEBUG_KMS("[PLANE:%d:%s] ddb (%d - %d) -> (%d - %d)\n",
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005360 plane->base.base.id, plane->base.name,
Paulo Zanonib9117142018-10-04 16:16:00 -07005361 old->start, old->end,
5362 new->start, new->end);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005363 }
5364 }
5365}
5366
Matt Roper98d39492016-05-12 07:06:03 -07005367static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005368skl_ddb_add_affected_pipes(struct intel_atomic_state *state, bool *changed)
Matt Roper98d39492016-05-12 07:06:03 -07005369{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005370 struct drm_device *dev = state->base.dev;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305371 const struct drm_i915_private *dev_priv = to_i915(dev);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005372 struct intel_crtc *crtc;
5373 struct intel_crtc_state *crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305374 uint32_t realloc_pipes = pipes_modified(state);
Matt Roper734fa012016-05-12 15:11:40 -07005375 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005376
5377 /*
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005378 * When we distrust bios wm we always need to recompute to set the
5379 * expected DDB allocations for each CRTC.
5380 */
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305381 if (dev_priv->wm.distrust_bios_wm)
5382 (*changed) = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005383
5384 /*
Matt Roper98d39492016-05-12 07:06:03 -07005385 * If this transaction isn't actually touching any CRTC's, don't
5386 * bother with watermark calculation. Note that if we pass this
5387 * test, we're guaranteed to hold at least one CRTC state mutex,
5388 * which means we can safely use values like dev_priv->active_crtcs
5389 * since any racing commits that want to update them would need to
5390 * hold _all_ CRTC state mutexes.
5391 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005392 for_each_new_intel_crtc_in_state(state, crtc, crtc_state, i)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305393 (*changed) = true;
Maarten Lankhorst367d73d2017-05-31 17:42:36 +02005394
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305395 if (!*changed)
Matt Roper98d39492016-05-12 07:06:03 -07005396 return 0;
5397
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305398 /*
5399 * If this is our first atomic update following hardware readout,
5400 * we can't trust the DDB that the BIOS programmed for us. Let's
5401 * pretend that all pipes switched active status so that we'll
5402 * ensure a full DDB recompute.
5403 */
5404 if (dev_priv->wm.distrust_bios_wm) {
5405 ret = drm_modeset_lock(&dev->mode_config.connection_mutex,
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005406 state->base.acquire_ctx);
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305407 if (ret)
5408 return ret;
5409
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005410 state->active_pipe_changes = ~0;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305411
5412 /*
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005413 * We usually only initialize state->active_crtcs if we
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305414 * we're doing a modeset; make sure this field is always
5415 * initialized during the sanitization process that happens
5416 * on the first commit too.
5417 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005418 if (!state->modeset)
5419 state->active_crtcs = dev_priv->active_crtcs;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305420 }
5421
5422 /*
5423 * If the modeset changes which CRTC's are active, we need to
5424 * recompute the DDB allocation for *all* active pipes, even
5425 * those that weren't otherwise being modified in any way by this
5426 * atomic commit. Due to the shrinking of the per-pipe allocations
5427 * when new active CRTC's are added, it's possible for a pipe that
5428 * we were already using and aren't changing at all here to suddenly
5429 * become invalid if its DDB needs exceeds its new allocation.
5430 *
5431 * Note that if we wind up doing a full DDB recompute, we can't let
5432 * any other display updates race with this transaction, so we need
5433 * to grab the lock on *all* CRTC's.
5434 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005435 if (state->active_pipe_changes || state->modeset) {
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305436 realloc_pipes = ~0;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005437 state->wm_results.dirty_pipes = ~0;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305438 }
5439
5440 /*
5441 * We're not recomputing for the pipes not included in the commit, so
5442 * make sure we start with the current state.
5443 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005444 for_each_intel_crtc_mask(dev, crtc, realloc_pipes) {
5445 crtc_state = intel_atomic_get_crtc_state(&state->base, crtc);
5446 if (IS_ERR(crtc_state))
5447 return PTR_ERR(crtc_state);
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305448 }
5449
5450 return 0;
5451}
5452
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005453/*
5454 * To make sure the cursor watermark registers are always consistent
5455 * with our computed state the following scenario needs special
5456 * treatment:
5457 *
5458 * 1. enable cursor
5459 * 2. move cursor entirely offscreen
5460 * 3. disable cursor
5461 *
5462 * Step 2. does call .disable_plane() but does not zero the watermarks
5463 * (since we consider an offscreen cursor still active for the purposes
5464 * of watermarks). Step 3. would not normally call .disable_plane()
5465 * because the actual plane visibility isn't changing, and we don't
5466 * deallocate the cursor ddb until the pipe gets disabled. So we must
5467 * force step 3. to call .disable_plane() to update the watermark
5468 * registers properly.
5469 *
5470 * Other planes do not suffer from this issues as their watermarks are
5471 * calculated based on the actual plane visibility. The only time this
5472 * can trigger for the other planes is during the initial readout as the
5473 * default value of the watermarks registers is not zero.
5474 */
5475static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
5476 struct intel_crtc *crtc)
5477{
5478 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5479 const struct intel_crtc_state *old_crtc_state =
5480 intel_atomic_get_old_crtc_state(state, crtc);
5481 struct intel_crtc_state *new_crtc_state =
5482 intel_atomic_get_new_crtc_state(state, crtc);
5483 struct intel_plane *plane;
5484
5485 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5486 struct intel_plane_state *plane_state;
5487 enum plane_id plane_id = plane->id;
5488
5489 /*
5490 * Force a full wm update for every plane on modeset.
5491 * Required because the reset value of the wm registers
5492 * is non-zero, whereas we want all disabled planes to
5493 * have zero watermarks. So if we turn off the relevant
5494 * power well the hardware state will go out of sync
5495 * with the software state.
5496 */
5497 if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->base) &&
5498 skl_plane_wm_equals(dev_priv,
5499 &old_crtc_state->wm.skl.optimal.planes[plane_id],
5500 &new_crtc_state->wm.skl.optimal.planes[plane_id]))
5501 continue;
5502
5503 plane_state = intel_atomic_get_plane_state(state, plane);
5504 if (IS_ERR(plane_state))
5505 return PTR_ERR(plane_state);
5506
5507 new_crtc_state->update_planes |= BIT(plane_id);
5508 }
5509
5510 return 0;
5511}
5512
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305513static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005514skl_compute_wm(struct intel_atomic_state *state)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305515{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005516 struct intel_crtc *crtc;
5517 struct intel_crtc_state *cstate;
5518 struct intel_crtc_state *old_crtc_state;
5519 struct skl_ddb_values *results = &state->wm_results;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305520 struct skl_pipe_wm *pipe_wm;
5521 bool changed = false;
5522 int ret, i;
5523
Matt Roper734fa012016-05-12 15:11:40 -07005524 /* Clear all dirty flags */
5525 results->dirty_pipes = 0;
5526
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305527 ret = skl_ddb_add_affected_pipes(state, &changed);
5528 if (ret || !changed)
5529 return ret;
5530
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005531 ret = skl_compute_ddb(state);
Matt Roper98d39492016-05-12 07:06:03 -07005532 if (ret)
5533 return ret;
5534
Matt Roper734fa012016-05-12 15:11:40 -07005535 /*
5536 * Calculate WM's for all pipes that are part of this transaction.
5537 * Note that the DDB allocation above may have added more CRTC's that
5538 * weren't otherwise being modified (and set bits in dirty_pipes) if
5539 * pipe allocations had to change.
Matt Roper734fa012016-05-12 15:11:40 -07005540 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005541 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5542 cstate, i) {
Maarten Lankhorst03af79e2016-10-26 15:41:36 +02005543 const struct skl_pipe_wm *old_pipe_wm =
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005544 &old_crtc_state->wm.skl.optimal;
Matt Roper734fa012016-05-12 15:11:40 -07005545
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005546 pipe_wm = &cstate->wm.skl.optimal;
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005547 ret = skl_update_pipe_wm(cstate, old_pipe_wm, pipe_wm, &changed);
5548 if (ret)
5549 return ret;
5550
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005551 ret = skl_wm_add_affected_planes(state, crtc);
Matt Roper734fa012016-05-12 15:11:40 -07005552 if (ret)
5553 return ret;
5554
5555 if (changed)
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005556 results->dirty_pipes |= drm_crtc_mask(&crtc->base);
Matt Roper734fa012016-05-12 15:11:40 -07005557 }
5558
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005559 skl_print_wm_changes(state);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005560
Matt Roper98d39492016-05-12 07:06:03 -07005561 return 0;
5562}
5563
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005564static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state,
5565 struct intel_crtc_state *cstate)
5566{
5567 struct intel_crtc *crtc = to_intel_crtc(cstate->base.crtc);
5568 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5569 struct skl_pipe_wm *pipe_wm = &cstate->wm.skl.optimal;
5570 enum pipe pipe = crtc->pipe;
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005571
5572 if (!(state->wm_results.dirty_pipes & drm_crtc_mask(&crtc->base)))
5573 return;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005574
5575 I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime);
5576}
5577
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005578static void skl_initial_wm(struct intel_atomic_state *state,
5579 struct intel_crtc_state *cstate)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005580{
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005581 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjälä432081b2016-10-31 22:37:03 +02005582 struct drm_device *dev = intel_crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005583 struct drm_i915_private *dev_priv = to_i915(dev);
Mahesh Kumar60f8e872018-04-09 09:11:00 +05305584 struct skl_ddb_values *results = &state->wm_results;
Bob Paauweadda50b2015-07-21 10:42:53 -07005585
Ville Syrjälä432081b2016-10-31 22:37:03 +02005586 if ((results->dirty_pipes & drm_crtc_mask(&intel_crtc->base)) == 0)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005587 return;
5588
Matt Roper734fa012016-05-12 15:11:40 -07005589 mutex_lock(&dev_priv->wm.wm_mutex);
5590
Maarten Lankhorste62929b2016-11-08 13:55:33 +01005591 if (cstate->base.active_changed)
5592 skl_atomic_update_crtc_wm(state, cstate);
Lyude27082492016-08-24 07:48:10 +02005593
Matt Roper734fa012016-05-12 15:11:40 -07005594 mutex_unlock(&dev_priv->wm.wm_mutex);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005595}
5596
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005597static void ilk_compute_wm_config(struct drm_i915_private *dev_priv,
Ville Syrjäläd8905652016-01-14 14:53:35 +02005598 struct intel_wm_config *config)
5599{
5600 struct intel_crtc *crtc;
5601
5602 /* Compute the currently _active_ config */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005603 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläd8905652016-01-14 14:53:35 +02005604 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5605
5606 if (!wm->pipe_enabled)
5607 continue;
5608
5609 config->sprites_enabled |= wm->sprites_enabled;
5610 config->sprites_scaled |= wm->sprites_scaled;
5611 config->num_pipes_active++;
5612 }
5613}
5614
Matt Ropered4a6a72016-02-23 17:20:13 -08005615static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005616{
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005617 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005618 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005619 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005620 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005621 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005622
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005623 ilk_compute_wm_config(dev_priv, &config);
Ville Syrjäläd8905652016-01-14 14:53:35 +02005624
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005625 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max);
5626 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005627
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005628 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005629 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005630 config.num_pipes_active == 1 && config.sprites_enabled) {
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005631 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max);
5632 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005633
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005634 best_lp_wm = ilk_find_best_result(dev_priv, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005635 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005636 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005637 }
5638
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005639 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005640 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005641
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005642 ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005643
Imre Deak820c1982013-12-17 14:46:36 +02005644 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005645}
5646
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005647static void ilk_initial_watermarks(struct intel_atomic_state *state,
5648 struct intel_crtc_state *cstate)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005649{
Matt Ropered4a6a72016-02-23 17:20:13 -08005650 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5651 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005652
Matt Ropered4a6a72016-02-23 17:20:13 -08005653 mutex_lock(&dev_priv->wm.wm_mutex);
Matt Ropere8f1f022016-05-12 07:05:55 -07005654 intel_crtc->wm.active.ilk = cstate->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005655 ilk_program_watermarks(dev_priv);
5656 mutex_unlock(&dev_priv->wm.wm_mutex);
5657}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005658
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005659static void ilk_optimize_watermarks(struct intel_atomic_state *state,
5660 struct intel_crtc_state *cstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08005661{
5662 struct drm_i915_private *dev_priv = to_i915(cstate->base.crtc->dev);
5663 struct intel_crtc *intel_crtc = to_intel_crtc(cstate->base.crtc);
5664
5665 mutex_lock(&dev_priv->wm.wm_mutex);
5666 if (cstate->wm.need_postvbl_update) {
Matt Ropere8f1f022016-05-12 07:05:55 -07005667 intel_crtc->wm.active.ilk = cstate->wm.ilk.optimal;
Matt Ropered4a6a72016-02-23 17:20:13 -08005668 ilk_program_watermarks(dev_priv);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005669 }
Matt Ropered4a6a72016-02-23 17:20:13 -08005670 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005671}
5672
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005673static inline void skl_wm_level_from_reg_val(uint32_t val,
5674 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005675{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005676 level->plane_en = val & PLANE_WM_EN;
5677 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5678 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5679 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005680}
5681
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005682void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005683 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005684{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005685 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5686 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005687 int level, max_level;
5688 enum plane_id plane_id;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005689 uint32_t val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005690
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005691 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005692
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005693 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005694 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005695
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005696 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005697 if (plane_id != PLANE_CURSOR)
5698 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005699 else
5700 val = I915_READ(CUR_WM(pipe, level));
5701
5702 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5703 }
5704
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005705 if (plane_id != PLANE_CURSOR)
5706 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005707 else
5708 val = I915_READ(CUR_WM_TRANS(pipe));
5709
5710 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5711 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005712
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005713 if (!crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005714 return;
5715
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005716 out->linetime = I915_READ(PIPE_WM_LINETIME(pipe));
Pradeep Bhat30789992014-11-04 17:06:45 +00005717}
5718
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005719void skl_wm_get_hw_state(struct drm_i915_private *dev_priv)
Pradeep Bhat30789992014-11-04 17:06:45 +00005720{
Mahesh Kumar60f8e872018-04-09 09:11:00 +05305721 struct skl_ddb_values *hw = &dev_priv->wm.skl_hw;
Damien Lespiaua269c582014-11-04 17:06:49 +00005722 struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005723 struct intel_crtc *crtc;
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005724 struct intel_crtc_state *cstate;
Pradeep Bhat30789992014-11-04 17:06:45 +00005725
Damien Lespiaua269c582014-11-04 17:06:49 +00005726 skl_ddb_get_hw_state(dev_priv, ddb);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005727 for_each_intel_crtc(&dev_priv->drm, crtc) {
5728 cstate = to_intel_crtc_state(crtc->base.state);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005729
5730 skl_pipe_wm_get_hw_state(crtc, &cstate->wm.skl.optimal);
5731
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005732 if (crtc->active)
5733 hw->dirty_pipes |= drm_crtc_mask(&crtc->base);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005734 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005735
Matt Roper279e99d2016-05-12 07:06:02 -07005736 if (dev_priv->active_crtcs) {
5737 /* Fully recompute DDB on first atomic commit */
5738 dev_priv->wm.distrust_bios_wm = true;
Matt Roper279e99d2016-05-12 07:06:02 -07005739 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005740}
5741
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005742static void ilk_pipe_wm_get_hw_state(struct intel_crtc *crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005743{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005744 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005745 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005746 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005747 struct intel_crtc_state *cstate = to_intel_crtc_state(crtc->base.state);
Matt Ropere8f1f022016-05-12 07:05:55 -07005748 struct intel_pipe_wm *active = &cstate->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005749 enum pipe pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005750 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005751 [PIPE_A] = WM0_PIPEA_ILK,
5752 [PIPE_B] = WM0_PIPEB_ILK,
5753 [PIPE_C] = WM0_PIPEC_IVB,
5754 };
5755
5756 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Tvrtko Ursulin86527442016-10-13 11:03:00 +01005757 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläce0e0712013-12-05 15:51:36 +02005758 hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe));
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005759
Ville Syrjälä15606532016-05-13 17:55:17 +03005760 memset(active, 0, sizeof(*active));
5761
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005762 active->pipe_enabled = crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005763
5764 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005765 u32 tmp = hw->wm_pipe[pipe];
5766
5767 /*
5768 * For active pipes LP0 watermark is marked as
5769 * enabled, and LP1+ watermaks as disabled since
5770 * we can't really reverse compute them in case
5771 * multiple pipes are active.
5772 */
5773 active->wm[0].enable = true;
5774 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5775 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5776 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
5777 active->linetime = hw->wm_linetime[pipe];
5778 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005779 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005780
5781 /*
5782 * For inactive pipes, all watermark levels
5783 * should be marked as enabled but zeroed,
5784 * which is what we'd compute them to.
5785 */
5786 for (level = 0; level <= max_level; level++)
5787 active->wm[level].enable = true;
5788 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005789
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005790 crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005791}
5792
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005793#define _FW_WM(value, plane) \
5794 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5795#define _FW_WM_VLV(value, plane) \
5796 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5797
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005798static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5799 struct g4x_wm_values *wm)
5800{
5801 uint32_t tmp;
5802
5803 tmp = I915_READ(DSPFW1);
5804 wm->sr.plane = _FW_WM(tmp, SR);
5805 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5806 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5807 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5808
5809 tmp = I915_READ(DSPFW2);
5810 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5811 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5812 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5813 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5814 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5815 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5816
5817 tmp = I915_READ(DSPFW3);
5818 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5819 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5820 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5821 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5822}
5823
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005824static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5825 struct vlv_wm_values *wm)
5826{
5827 enum pipe pipe;
5828 uint32_t tmp;
5829
5830 for_each_pipe(dev_priv, pipe) {
5831 tmp = I915_READ(VLV_DDL(pipe));
5832
Ville Syrjälä1b313892016-11-28 19:37:08 +02005833 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005834 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005835 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005836 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005837 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005838 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005839 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005840 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
5841 }
5842
5843 tmp = I915_READ(DSPFW1);
5844 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005845 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5846 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
5847 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005848
5849 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005850 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
5851 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5852 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005853
5854 tmp = I915_READ(DSPFW3);
5855 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5856
5857 if (IS_CHERRYVIEW(dev_priv)) {
5858 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005859 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5860 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005861
5862 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005863 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
5864 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005865
5866 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005867 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
5868 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005869
5870 tmp = I915_READ(DSPHOWM);
5871 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005872 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
5873 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
5874 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
5875 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5876 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5877 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5878 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5879 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5880 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005881 } else {
5882 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005883 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
5884 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005885
5886 tmp = I915_READ(DSPHOWM);
5887 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02005888 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
5889 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
5890 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
5891 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
5892 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
5893 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005894 }
5895}
5896
5897#undef _FW_WM
5898#undef _FW_WM_VLV
5899
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005900void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005901{
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005902 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
5903 struct intel_crtc *crtc;
5904
5905 g4x_read_wm_values(dev_priv, wm);
5906
5907 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
5908
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005909 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005910 struct intel_crtc_state *crtc_state =
5911 to_intel_crtc_state(crtc->base.state);
5912 struct g4x_wm_state *active = &crtc->wm.active.g4x;
5913 struct g4x_pipe_wm *raw;
5914 enum pipe pipe = crtc->pipe;
5915 enum plane_id plane_id;
5916 int level, max_level;
5917
5918 active->cxsr = wm->cxsr;
5919 active->hpll_en = wm->hpll_en;
5920 active->fbc_en = wm->fbc_en;
5921
5922 active->sr = wm->sr;
5923 active->hpll = wm->hpll;
5924
5925 for_each_plane_id_on_crtc(crtc, plane_id) {
5926 active->wm.plane[plane_id] =
5927 wm->pipe[pipe].plane[plane_id];
5928 }
5929
5930 if (wm->cxsr && wm->hpll_en)
5931 max_level = G4X_WM_LEVEL_HPLL;
5932 else if (wm->cxsr)
5933 max_level = G4X_WM_LEVEL_SR;
5934 else
5935 max_level = G4X_WM_LEVEL_NORMAL;
5936
5937 level = G4X_WM_LEVEL_NORMAL;
5938 raw = &crtc_state->wm.g4x.raw[level];
5939 for_each_plane_id_on_crtc(crtc, plane_id)
5940 raw->plane[plane_id] = active->wm.plane[plane_id];
5941
5942 if (++level > max_level)
5943 goto out;
5944
5945 raw = &crtc_state->wm.g4x.raw[level];
5946 raw->plane[PLANE_PRIMARY] = active->sr.plane;
5947 raw->plane[PLANE_CURSOR] = active->sr.cursor;
5948 raw->plane[PLANE_SPRITE0] = 0;
5949 raw->fbc = active->sr.fbc;
5950
5951 if (++level > max_level)
5952 goto out;
5953
5954 raw = &crtc_state->wm.g4x.raw[level];
5955 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
5956 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
5957 raw->plane[PLANE_SPRITE0] = 0;
5958 raw->fbc = active->hpll.fbc;
5959
5960 out:
5961 for_each_plane_id_on_crtc(crtc, plane_id)
5962 g4x_raw_plane_wm_set(crtc_state, level,
5963 plane_id, USHRT_MAX);
5964 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
5965
5966 crtc_state->wm.g4x.optimal = *active;
5967 crtc_state->wm.g4x.intermediate = *active;
5968
5969 DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
5970 pipe_name(pipe),
5971 wm->pipe[pipe].plane[PLANE_PRIMARY],
5972 wm->pipe[pipe].plane[PLANE_CURSOR],
5973 wm->pipe[pipe].plane[PLANE_SPRITE0]);
5974 }
5975
5976 DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
5977 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
5978 DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
5979 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
5980 DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n",
5981 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
5982}
5983
5984void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
5985{
5986 struct intel_plane *plane;
5987 struct intel_crtc *crtc;
5988
5989 mutex_lock(&dev_priv->wm.wm_mutex);
5990
5991 for_each_intel_plane(&dev_priv->drm, plane) {
5992 struct intel_crtc *crtc =
5993 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
5994 struct intel_crtc_state *crtc_state =
5995 to_intel_crtc_state(crtc->base.state);
5996 struct intel_plane_state *plane_state =
5997 to_intel_plane_state(plane->base.state);
5998 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
5999 enum plane_id plane_id = plane->id;
6000 int level;
6001
6002 if (plane_state->base.visible)
6003 continue;
6004
6005 for (level = 0; level < 3; level++) {
6006 struct g4x_pipe_wm *raw =
6007 &crtc_state->wm.g4x.raw[level];
6008
6009 raw->plane[plane_id] = 0;
6010 wm_state->wm.plane[plane_id] = 0;
6011 }
6012
6013 if (plane_id == PLANE_PRIMARY) {
6014 for (level = 0; level < 3; level++) {
6015 struct g4x_pipe_wm *raw =
6016 &crtc_state->wm.g4x.raw[level];
6017 raw->fbc = 0;
6018 }
6019
6020 wm_state->sr.fbc = 0;
6021 wm_state->hpll.fbc = 0;
6022 wm_state->fbc_en = false;
6023 }
6024 }
6025
6026 for_each_intel_crtc(&dev_priv->drm, crtc) {
6027 struct intel_crtc_state *crtc_state =
6028 to_intel_crtc_state(crtc->base.state);
6029
6030 crtc_state->wm.g4x.intermediate =
6031 crtc_state->wm.g4x.optimal;
6032 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
6033 }
6034
6035 g4x_program_watermarks(dev_priv);
6036
6037 mutex_unlock(&dev_priv->wm.wm_mutex);
6038}
6039
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006040void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006041{
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006042 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02006043 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006044 u32 val;
6045
6046 vlv_read_wm_values(dev_priv, wm);
6047
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006048 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
6049 wm->level = VLV_WM_LEVEL_PM2;
6050
6051 if (IS_CHERRYVIEW(dev_priv)) {
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006052 mutex_lock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006053
6054 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPFREQ);
6055 if (val & DSP_MAXFIFO_PM5_ENABLE)
6056 wm->level = VLV_WM_LEVEL_PM5;
6057
Ville Syrjälä58590c12015-09-08 21:05:12 +03006058 /*
6059 * If DDR DVFS is disabled in the BIOS, Punit
6060 * will never ack the request. So if that happens
6061 * assume we don't have to enable/disable DDR DVFS
6062 * dynamically. To test that just set the REQ_ACK
6063 * bit to poke the Punit, but don't change the
6064 * HIGH/LOW bits so that we don't actually change
6065 * the current state.
6066 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006067 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03006068 val |= FORCE_DDR_FREQ_REQ_ACK;
6069 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
6070
6071 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
6072 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
6073 DRM_DEBUG_KMS("Punit not acking DDR DVFS request, "
6074 "assuming DDR DVFS is disabled\n");
6075 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
6076 } else {
6077 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
6078 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
6079 wm->level = VLV_WM_LEVEL_DDR_DVFS;
6080 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006081
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006082 mutex_unlock(&dev_priv->pcu_lock);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006083 }
6084
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006085 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02006086 struct intel_crtc_state *crtc_state =
6087 to_intel_crtc_state(crtc->base.state);
6088 struct vlv_wm_state *active = &crtc->wm.active.vlv;
6089 const struct vlv_fifo_state *fifo_state =
6090 &crtc_state->wm.vlv.fifo_state;
6091 enum pipe pipe = crtc->pipe;
6092 enum plane_id plane_id;
6093 int level;
6094
6095 vlv_get_fifo_size(crtc_state);
6096
6097 active->num_levels = wm->level + 1;
6098 active->cxsr = wm->cxsr;
6099
Ville Syrjäläff32c542017-03-02 19:14:57 +02006100 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006101 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02006102 &crtc_state->wm.vlv.raw[level];
6103
6104 active->sr[level].plane = wm->sr.plane;
6105 active->sr[level].cursor = wm->sr.cursor;
6106
6107 for_each_plane_id_on_crtc(crtc, plane_id) {
6108 active->wm[level].plane[plane_id] =
6109 wm->pipe[pipe].plane[plane_id];
6110
6111 raw->plane[plane_id] =
6112 vlv_invert_wm_value(active->wm[level].plane[plane_id],
6113 fifo_state->plane[plane_id]);
6114 }
6115 }
6116
6117 for_each_plane_id_on_crtc(crtc, plane_id)
6118 vlv_raw_plane_wm_set(crtc_state, level,
6119 plane_id, USHRT_MAX);
6120 vlv_invalidate_wms(crtc, active, level);
6121
6122 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02006123 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02006124
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006125 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 +02006126 pipe_name(pipe),
6127 wm->pipe[pipe].plane[PLANE_PRIMARY],
6128 wm->pipe[pipe].plane[PLANE_CURSOR],
6129 wm->pipe[pipe].plane[PLANE_SPRITE0],
6130 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02006131 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006132
6133 DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
6134 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
6135}
6136
Ville Syrjälä602ae832017-03-02 19:15:02 +02006137void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
6138{
6139 struct intel_plane *plane;
6140 struct intel_crtc *crtc;
6141
6142 mutex_lock(&dev_priv->wm.wm_mutex);
6143
6144 for_each_intel_plane(&dev_priv->drm, plane) {
6145 struct intel_crtc *crtc =
6146 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6147 struct intel_crtc_state *crtc_state =
6148 to_intel_crtc_state(crtc->base.state);
6149 struct intel_plane_state *plane_state =
6150 to_intel_plane_state(plane->base.state);
6151 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
6152 const struct vlv_fifo_state *fifo_state =
6153 &crtc_state->wm.vlv.fifo_state;
6154 enum plane_id plane_id = plane->id;
6155 int level;
6156
6157 if (plane_state->base.visible)
6158 continue;
6159
6160 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006161 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02006162 &crtc_state->wm.vlv.raw[level];
6163
6164 raw->plane[plane_id] = 0;
6165
6166 wm_state->wm[level].plane[plane_id] =
6167 vlv_invert_wm_value(raw->plane[plane_id],
6168 fifo_state->plane[plane_id]);
6169 }
6170 }
6171
6172 for_each_intel_crtc(&dev_priv->drm, crtc) {
6173 struct intel_crtc_state *crtc_state =
6174 to_intel_crtc_state(crtc->base.state);
6175
6176 crtc_state->wm.vlv.intermediate =
6177 crtc_state->wm.vlv.optimal;
6178 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
6179 }
6180
6181 vlv_program_watermarks(dev_priv);
6182
6183 mutex_unlock(&dev_priv->wm.wm_mutex);
6184}
6185
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006186/*
6187 * FIXME should probably kill this and improve
6188 * the real watermark readout/sanitation instead
6189 */
6190static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
6191{
6192 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6193 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6194 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6195
6196 /*
6197 * Don't touch WM1S_LP_EN here.
6198 * Doing so could cause underruns.
6199 */
6200}
6201
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006202void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006203{
Imre Deak820c1982013-12-17 14:46:36 +02006204 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006205 struct intel_crtc *crtc;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006206
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006207 ilk_init_lp_watermarks(dev_priv);
6208
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006209 for_each_intel_crtc(&dev_priv->drm, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006210 ilk_pipe_wm_get_hw_state(crtc);
6211
6212 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
6213 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
6214 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
6215
6216 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00006217 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02006218 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
6219 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
6220 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006221
Tvrtko Ursulin86527442016-10-13 11:03:00 +01006222 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006223 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
6224 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01006225 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006226 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
6227 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006228
6229 hw->enable_fbc_wm =
6230 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
6231}
6232
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006233/**
6234 * intel_update_watermarks - update FIFO watermark values based on current modes
Chris Wilson31383412018-02-14 14:03:03 +00006235 * @crtc: the #intel_crtc on which to compute the WM
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006236 *
6237 * Calculate watermark values for the various WM regs based on current mode
6238 * and plane configuration.
6239 *
6240 * There are several cases to deal with here:
6241 * - normal (i.e. non-self-refresh)
6242 * - self-refresh (SR) mode
6243 * - lines are large relative to FIFO size (buffer can hold up to 2)
6244 * - lines are small relative to FIFO size (buffer can hold more than 2
6245 * lines), so need to account for TLB latency
6246 *
6247 * The normal calculation is:
6248 * watermark = dotclock * bytes per pixel * latency
6249 * where latency is platform & configuration dependent (we assume pessimal
6250 * values here).
6251 *
6252 * The SR calculation is:
6253 * watermark = (trunc(latency/line time)+1) * surface width *
6254 * bytes per pixel
6255 * where
6256 * line time = htotal / dotclock
6257 * surface width = hdisplay for normal plane and 64 for cursor
6258 * and latency is assumed to be high, as above.
6259 *
6260 * The final value programmed to the register should always be rounded up,
6261 * and include an extra 2 entries to account for clock crossings.
6262 *
6263 * We don't use the sprite, so we can ignore that. And on Crestline we have
6264 * to set the non-SR watermarks to 8.
6265 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02006266void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006267{
Ville Syrjälä432081b2016-10-31 22:37:03 +02006268 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006269
6270 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006271 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006272}
6273
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306274void intel_enable_ipc(struct drm_i915_private *dev_priv)
6275{
6276 u32 val;
6277
José Roberto de Souzafd847b82018-09-18 13:47:11 -07006278 if (!HAS_IPC(dev_priv))
6279 return;
6280
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306281 val = I915_READ(DISP_ARB_CTL2);
6282
6283 if (dev_priv->ipc_enabled)
6284 val |= DISP_IPC_ENABLE;
6285 else
6286 val &= ~DISP_IPC_ENABLE;
6287
6288 I915_WRITE(DISP_ARB_CTL2, val);
6289}
6290
6291void intel_init_ipc(struct drm_i915_private *dev_priv)
6292{
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306293 if (!HAS_IPC(dev_priv))
6294 return;
6295
José Roberto de Souzac9b818d2018-09-18 13:47:13 -07006296 /* Display WA #1141: SKL:all KBL:all CFL */
6297 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
6298 dev_priv->ipc_enabled = dev_priv->dram_info.symmetric_memory;
6299 else
6300 dev_priv->ipc_enabled = true;
6301
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306302 intel_enable_ipc(dev_priv);
6303}
6304
Jani Nikulae2828912016-01-18 09:19:47 +02006305/*
Daniel Vetter92703882012-08-09 16:46:01 +02006306 * Lock protecting IPS related data structures
Daniel Vetter92703882012-08-09 16:46:01 +02006307 */
6308DEFINE_SPINLOCK(mchdev_lock);
6309
6310/* Global for IPS driver to get at the current i915 device. Protected by
6311 * mchdev_lock. */
6312static struct drm_i915_private *i915_mch_dev;
6313
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006314bool ironlake_set_drps(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006315{
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006316 u16 rgvswctl;
6317
Chris Wilson67520412017-03-02 13:28:01 +00006318 lockdep_assert_held(&mchdev_lock);
Daniel Vetter92703882012-08-09 16:46:01 +02006319
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006320 rgvswctl = I915_READ16(MEMSWCTL);
6321 if (rgvswctl & MEMCTL_CMD_STS) {
6322 DRM_DEBUG("gpu busy, RCS change rejected\n");
6323 return false; /* still busy with another command */
6324 }
6325
6326 rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) |
6327 (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM;
6328 I915_WRITE16(MEMSWCTL, rgvswctl);
6329 POSTING_READ16(MEMSWCTL);
6330
6331 rgvswctl |= MEMCTL_CMD_STS;
6332 I915_WRITE16(MEMSWCTL, rgvswctl);
6333
6334 return true;
6335}
6336
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006337static void ironlake_enable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006338{
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00006339 u32 rgvmodectl;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006340 u8 fmax, fmin, fstart, vstart;
6341
Daniel Vetter92703882012-08-09 16:46:01 +02006342 spin_lock_irq(&mchdev_lock);
6343
Tvrtko Ursulin84f1b202016-02-11 10:27:32 +00006344 rgvmodectl = I915_READ(MEMMODECTL);
6345
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006346 /* Enable temp reporting */
6347 I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN);
6348 I915_WRITE16(TSC1, I915_READ(TSC1) | TSE);
6349
6350 /* 100ms RC evaluation intervals */
6351 I915_WRITE(RCUPEI, 100000);
6352 I915_WRITE(RCDNEI, 100000);
6353
6354 /* Set max/min thresholds to 90ms and 80ms respectively */
6355 I915_WRITE(RCBMAXAVG, 90000);
6356 I915_WRITE(RCBMINAVG, 80000);
6357
6358 I915_WRITE(MEMIHYST, 1);
6359
6360 /* Set up min, max, and cur for interrupt handling */
6361 fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT;
6362 fmin = (rgvmodectl & MEMMODE_FMIN_MASK);
6363 fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >>
6364 MEMMODE_FSTART_SHIFT;
6365
Ville Syrjälä616847e2015-09-18 20:03:19 +03006366 vstart = (I915_READ(PXVFREQ(fstart)) & PXVFREQ_PX_MASK) >>
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006367 PXVFREQ_PX_SHIFT;
6368
Daniel Vetter20e4d402012-08-08 23:35:39 +02006369 dev_priv->ips.fmax = fmax; /* IPS callback will increase this */
6370 dev_priv->ips.fstart = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006371
Daniel Vetter20e4d402012-08-08 23:35:39 +02006372 dev_priv->ips.max_delay = fstart;
6373 dev_priv->ips.min_delay = fmin;
6374 dev_priv->ips.cur_delay = fstart;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006375
6376 DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n",
6377 fmax, fmin, fstart);
6378
6379 I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN);
6380
6381 /*
6382 * Interrupts will be enabled in ironlake_irq_postinstall
6383 */
6384
6385 I915_WRITE(VIDSTART, vstart);
6386 POSTING_READ(VIDSTART);
6387
6388 rgvmodectl |= MEMMODE_SWMODE_EN;
6389 I915_WRITE(MEMMODECTL, rgvmodectl);
6390
Daniel Vetter92703882012-08-09 16:46:01 +02006391 if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10))
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006392 DRM_ERROR("stuck trying to change perf mode\n");
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006393 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006394
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006395 ironlake_set_drps(dev_priv, fstart);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006396
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03006397 dev_priv->ips.last_count1 = I915_READ(DMIEC) +
6398 I915_READ(DDREC) + I915_READ(CSIEC);
Daniel Vetter20e4d402012-08-08 23:35:39 +02006399 dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies);
Ville Syrjälä7d81c3e2015-09-18 20:03:20 +03006400 dev_priv->ips.last_count2 = I915_READ(GFXEC);
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00006401 dev_priv->ips.last_time2 = ktime_get_raw_ns();
Daniel Vetter92703882012-08-09 16:46:01 +02006402
6403 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006404}
6405
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006406static void ironlake_disable_drps(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006407{
Daniel Vetter92703882012-08-09 16:46:01 +02006408 u16 rgvswctl;
6409
6410 spin_lock_irq(&mchdev_lock);
6411
6412 rgvswctl = I915_READ16(MEMSWCTL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006413
6414 /* Ack interrupts, disable EFC interrupt */
6415 I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN);
6416 I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG);
6417 I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT);
6418 I915_WRITE(DEIIR, DE_PCU_EVENT);
6419 I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT);
6420
6421 /* Go back to the starting frequency */
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01006422 ironlake_set_drps(dev_priv, dev_priv->ips.fstart);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006423 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006424 rgvswctl |= MEMCTL_CMD_STS;
6425 I915_WRITE(MEMSWCTL, rgvswctl);
Daniel Vetterdd92d8d2015-07-20 10:58:21 +02006426 mdelay(1);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006427
Daniel Vetter92703882012-08-09 16:46:01 +02006428 spin_unlock_irq(&mchdev_lock);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006429}
6430
Daniel Vetteracbe9472012-07-26 11:50:05 +02006431/* There's a funny hw issue where the hw returns all 0 when reading from
6432 * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value
6433 * ourselves, instead of doing a rmw cycle (which might result in us clearing
6434 * all limits and the gpu stuck at whatever frequency it is at atm).
6435 */
Akash Goel74ef1172015-03-06 11:07:19 +05306436static u32 intel_rps_limits(struct drm_i915_private *dev_priv, u8 val)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006437{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006438 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006439 u32 limits;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006440
Daniel Vetter20b46e52012-07-26 11:16:14 +02006441 /* Only set the down limit when we've reached the lowest level to avoid
6442 * getting more interrupts, otherwise leave this clear. This prevents a
6443 * race in the hw when coming out of rc6: There's a tiny window where
6444 * the hw runs at the minimal clock before selecting the desired
6445 * frequency, if the down threshold expires in that window we will not
6446 * receive a down interrupt. */
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006447 if (INTEL_GEN(dev_priv) >= 9) {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006448 limits = (rps->max_freq_softlimit) << 23;
6449 if (val <= rps->min_freq_softlimit)
6450 limits |= (rps->min_freq_softlimit) << 14;
Akash Goel74ef1172015-03-06 11:07:19 +05306451 } else {
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006452 limits = rps->max_freq_softlimit << 24;
6453 if (val <= rps->min_freq_softlimit)
6454 limits |= rps->min_freq_softlimit << 16;
Akash Goel74ef1172015-03-06 11:07:19 +05306455 }
Daniel Vetter20b46e52012-07-26 11:16:14 +02006456
6457 return limits;
6458}
6459
Chris Wilson60548c52018-07-31 14:26:29 +01006460static void rps_set_power(struct drm_i915_private *dev_priv, int new_power)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006461{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006462 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Akash Goel8a586432015-03-06 11:07:18 +05306463 u32 threshold_up = 0, threshold_down = 0; /* in % */
6464 u32 ei_up = 0, ei_down = 0;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006465
Chris Wilson60548c52018-07-31 14:26:29 +01006466 lockdep_assert_held(&rps->power.mutex);
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006467
Chris Wilson60548c52018-07-31 14:26:29 +01006468 if (new_power == rps->power.mode)
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006469 return;
6470
6471 /* Note the units here are not exactly 1us, but 1280ns. */
6472 switch (new_power) {
6473 case LOW_POWER:
6474 /* Upclock if more than 95% busy over 16ms */
Akash Goel8a586432015-03-06 11:07:18 +05306475 ei_up = 16000;
6476 threshold_up = 95;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006477
6478 /* Downclock if less than 85% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306479 ei_down = 32000;
6480 threshold_down = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006481 break;
6482
6483 case BETWEEN:
6484 /* Upclock if more than 90% busy over 13ms */
Akash Goel8a586432015-03-06 11:07:18 +05306485 ei_up = 13000;
6486 threshold_up = 90;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006487
6488 /* Downclock if less than 75% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306489 ei_down = 32000;
6490 threshold_down = 75;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006491 break;
6492
6493 case HIGH_POWER:
6494 /* Upclock if more than 85% busy over 10ms */
Akash Goel8a586432015-03-06 11:07:18 +05306495 ei_up = 10000;
6496 threshold_up = 85;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006497
6498 /* Downclock if less than 60% busy over 32ms */
Akash Goel8a586432015-03-06 11:07:18 +05306499 ei_down = 32000;
6500 threshold_down = 60;
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006501 break;
6502 }
6503
Mika Kuoppala6067a272017-02-15 15:52:59 +02006504 /* When byt can survive without system hang with dynamic
6505 * sw freq adjustments, this restriction can be lifted.
6506 */
6507 if (IS_VALLEYVIEW(dev_priv))
6508 goto skip_hw_write;
6509
Akash Goel8a586432015-03-06 11:07:18 +05306510 I915_WRITE(GEN6_RP_UP_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006511 GT_INTERVAL_FROM_US(dev_priv, ei_up));
Akash Goel8a586432015-03-06 11:07:18 +05306512 I915_WRITE(GEN6_RP_UP_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006513 GT_INTERVAL_FROM_US(dev_priv,
6514 ei_up * threshold_up / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306515
6516 I915_WRITE(GEN6_RP_DOWN_EI,
Chris Wilsona72b5622016-07-02 15:35:59 +01006517 GT_INTERVAL_FROM_US(dev_priv, ei_down));
Akash Goel8a586432015-03-06 11:07:18 +05306518 I915_WRITE(GEN6_RP_DOWN_THRESHOLD,
Chris Wilsona72b5622016-07-02 15:35:59 +01006519 GT_INTERVAL_FROM_US(dev_priv,
6520 ei_down * threshold_down / 100));
Akash Goel8a586432015-03-06 11:07:18 +05306521
Chris Wilsona72b5622016-07-02 15:35:59 +01006522 I915_WRITE(GEN6_RP_CONTROL,
6523 GEN6_RP_MEDIA_TURBO |
6524 GEN6_RP_MEDIA_HW_NORMAL_MODE |
6525 GEN6_RP_MEDIA_IS_GFX |
6526 GEN6_RP_ENABLE |
6527 GEN6_RP_UP_BUSY_AVG |
6528 GEN6_RP_DOWN_IDLE_AVG);
Akash Goel8a586432015-03-06 11:07:18 +05306529
Mika Kuoppala6067a272017-02-15 15:52:59 +02006530skip_hw_write:
Chris Wilson60548c52018-07-31 14:26:29 +01006531 rps->power.mode = new_power;
6532 rps->power.up_threshold = threshold_up;
6533 rps->power.down_threshold = threshold_down;
6534}
6535
6536static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val)
6537{
6538 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6539 int new_power;
6540
6541 new_power = rps->power.mode;
6542 switch (rps->power.mode) {
6543 case LOW_POWER:
6544 if (val > rps->efficient_freq + 1 &&
6545 val > rps->cur_freq)
6546 new_power = BETWEEN;
6547 break;
6548
6549 case BETWEEN:
6550 if (val <= rps->efficient_freq &&
6551 val < rps->cur_freq)
6552 new_power = LOW_POWER;
6553 else if (val >= rps->rp0_freq &&
6554 val > rps->cur_freq)
6555 new_power = HIGH_POWER;
6556 break;
6557
6558 case HIGH_POWER:
6559 if (val < (rps->rp1_freq + rps->rp0_freq) >> 1 &&
6560 val < rps->cur_freq)
6561 new_power = BETWEEN;
6562 break;
6563 }
6564 /* Max/min bins are special */
6565 if (val <= rps->min_freq_softlimit)
6566 new_power = LOW_POWER;
6567 if (val >= rps->max_freq_softlimit)
6568 new_power = HIGH_POWER;
6569
6570 mutex_lock(&rps->power.mutex);
6571 if (rps->power.interactive)
6572 new_power = HIGH_POWER;
6573 rps_set_power(dev_priv, new_power);
6574 mutex_unlock(&rps->power.mutex);
Chris Wilsondd75fdc2013-09-25 17:34:57 +01006575}
6576
Chris Wilson60548c52018-07-31 14:26:29 +01006577void intel_rps_mark_interactive(struct drm_i915_private *i915, bool interactive)
6578{
6579 struct intel_rps *rps = &i915->gt_pm.rps;
6580
6581 if (INTEL_GEN(i915) < 6)
6582 return;
6583
6584 mutex_lock(&rps->power.mutex);
6585 if (interactive) {
6586 if (!rps->power.interactive++ && READ_ONCE(i915->gt.awake))
6587 rps_set_power(i915, HIGH_POWER);
6588 } else {
6589 GEM_BUG_ON(!rps->power.interactive);
6590 rps->power.interactive--;
6591 }
6592 mutex_unlock(&rps->power.mutex);
6593}
6594
Chris Wilson2876ce72014-03-28 08:03:34 +00006595static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val)
6596{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006597 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson2876ce72014-03-28 08:03:34 +00006598 u32 mask = 0;
6599
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006600 /* We use UP_EI_EXPIRED interupts for both up/down in manual mode */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006601 if (val > rps->min_freq_softlimit)
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006602 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 +01006603 if (val < rps->max_freq_softlimit)
Chris Wilson6f4b12f82015-03-18 09:48:23 +00006604 mask |= GEN6_PM_RP_UP_EI_EXPIRED | GEN6_PM_RP_UP_THRESHOLD;
Chris Wilson2876ce72014-03-28 08:03:34 +00006605
Chris Wilson7b3c29f2014-07-10 20:31:19 +01006606 mask &= dev_priv->pm_rps_events;
6607
Imre Deak59d02a12014-12-19 19:33:26 +02006608 return gen6_sanitize_rps_pm_mask(dev_priv, ~mask);
Chris Wilson2876ce72014-03-28 08:03:34 +00006609}
6610
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006611/* gen6_set_rps is called to update the frequency request, but should also be
6612 * called when the range (min_delay and max_delay) is modified so that we can
6613 * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006614static int gen6_set_rps(struct drm_i915_private *dev_priv, u8 val)
Daniel Vetter20b46e52012-07-26 11:16:14 +02006615{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006616 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6617
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006618 /* min/max delay may still have been modified so be sure to
6619 * write the limits value.
6620 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006621 if (val != rps->cur_freq) {
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006622 gen6_set_rps_thresholds(dev_priv, val);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006623
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07006624 if (INTEL_GEN(dev_priv) >= 9)
Akash Goel57041952015-03-06 11:07:17 +05306625 I915_WRITE(GEN6_RPNSWREQ,
6626 GEN9_FREQUENCY(val));
Chris Wilsondc979972016-05-10 14:10:04 +01006627 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Chris Wilsoneb64cad2014-03-27 08:24:20 +00006628 I915_WRITE(GEN6_RPNSWREQ,
6629 HSW_FREQUENCY(val));
6630 else
6631 I915_WRITE(GEN6_RPNSWREQ,
6632 GEN6_FREQUENCY(val) |
6633 GEN6_OFFSET(0) |
6634 GEN6_AGGRESSIVE_TURBO);
Jeff McGeeb8a5ff82014-02-04 11:37:01 -06006635 }
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006636
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006637 /* Make sure we continue to get interrupts
6638 * until we hit the minimum or maximum frequencies.
6639 */
Akash Goel74ef1172015-03-06 11:07:19 +05306640 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, intel_rps_limits(dev_priv, val));
Chris Wilson2876ce72014-03-28 08:03:34 +00006641 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
Chris Wilson7b9e0ae2012-04-28 08:56:39 +01006642
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006643 rps->cur_freq = val;
Mika Kuoppala0f945922015-11-17 18:14:26 +02006644 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006645
6646 return 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006647}
6648
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006649static int valleyview_set_rps(struct drm_i915_private *dev_priv, u8 val)
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006650{
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006651 int err;
6652
Chris Wilsondc979972016-05-10 14:10:04 +01006653 if (WARN_ONCE(IS_CHERRYVIEW(dev_priv) && (val & 1),
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006654 "Odd GPU freq value\n"))
6655 val &= ~1;
6656
Deepak Scd25dd52015-07-10 18:31:40 +05306657 I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val));
6658
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006659 if (val != dev_priv->gt_pm.rps.cur_freq) {
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006660 err = vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val);
6661 if (err)
6662 return err;
6663
Chris Wilsondb4c5e02017-02-10 15:03:46 +00006664 gen6_set_rps_thresholds(dev_priv, val);
Chris Wilson8fb55192015-04-07 16:20:28 +01006665 }
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006666
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006667 dev_priv->gt_pm.rps.cur_freq = val;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006668 trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val));
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006669
6670 return 0;
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006671}
6672
Deepak Sa7f6e232015-05-09 18:04:44 +05306673/* vlv_set_rps_idle: Set the frequency to idle, if Gfx clocks are down
Deepak S76c3552f2014-01-30 23:08:16 +05306674 *
6675 * * If Gfx is Idle, then
Deepak Sa7f6e232015-05-09 18:04:44 +05306676 * 1. Forcewake Media well.
6677 * 2. Request idle freq.
6678 * 3. Release Forcewake of Media well.
Deepak S76c3552f2014-01-30 23:08:16 +05306679*/
6680static void vlv_set_rps_idle(struct drm_i915_private *dev_priv)
6681{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006682 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6683 u32 val = rps->idle_freq;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006684 int err;
Deepak S5549d252014-06-28 11:26:11 +05306685
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006686 if (rps->cur_freq <= val)
Deepak S76c3552f2014-01-30 23:08:16 +05306687 return;
6688
Chris Wilsonc9efef72017-01-02 15:28:45 +00006689 /* The punit delays the write of the frequency and voltage until it
6690 * determines the GPU is awake. During normal usage we don't want to
6691 * waste power changing the frequency if the GPU is sleeping (rc6).
6692 * However, the GPU and driver is now idle and we do not want to delay
6693 * switching to minimum voltage (reducing power whilst idle) as we do
6694 * not expect to be woken in the near future and so must flush the
6695 * change by waking the device.
6696 *
6697 * We choose to take the media powerwell (either would do to trick the
6698 * punit into committing the voltage change) as that takes a lot less
6699 * power than the render powerwell.
6700 */
Deepak Sa7f6e232015-05-09 18:04:44 +05306701 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006702 err = valleyview_set_rps(dev_priv, val);
Deepak Sa7f6e232015-05-09 18:04:44 +05306703 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_MEDIA);
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006704
6705 if (err)
6706 DRM_ERROR("Failed to set RPS for idle\n");
Deepak S76c3552f2014-01-30 23:08:16 +05306707}
6708
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006709void gen6_rps_busy(struct drm_i915_private *dev_priv)
6710{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006711 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6712
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006713 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006714 if (rps->enabled) {
Chris Wilsonbd648182017-02-10 15:03:48 +00006715 u8 freq;
6716
Chris Wilsone0e8c7c2017-03-09 21:12:30 +00006717 if (dev_priv->pm_rps_events & GEN6_PM_RP_UP_EI_EXPIRED)
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006718 gen6_rps_reset_ei(dev_priv);
6719 I915_WRITE(GEN6_PMINTRMSK,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006720 gen6_rps_pm_mask(dev_priv, rps->cur_freq));
Michał Winiarski2b83c4c2016-06-20 11:58:27 +02006721
Chris Wilsonc33d2472016-07-04 08:08:36 +01006722 gen6_enable_rps_interrupts(dev_priv);
6723
Chris Wilsonbd648182017-02-10 15:03:48 +00006724 /* Use the user's desired frequency as a guide, but for better
6725 * performance, jump directly to RPe as our starting frequency.
6726 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006727 freq = max(rps->cur_freq,
6728 rps->efficient_freq);
Chris Wilsonbd648182017-02-10 15:03:48 +00006729
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006730 if (intel_set_rps(dev_priv,
Chris Wilsonbd648182017-02-10 15:03:48 +00006731 clamp(freq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006732 rps->min_freq_softlimit,
6733 rps->max_freq_softlimit)))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006734 DRM_DEBUG_DRIVER("Failed to set idle frequency\n");
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006735 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006736 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006737}
6738
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006739void gen6_rps_idle(struct drm_i915_private *dev_priv)
6740{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006741 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6742
Chris Wilsonc33d2472016-07-04 08:08:36 +01006743 /* Flush our bottom-half so that it does not race with us
6744 * setting the idle frequency and so that it is bounded by
6745 * our rpm wakeref. And then disable the interrupts to stop any
6746 * futher RPS reclocking whilst we are asleep.
6747 */
6748 gen6_disable_rps_interrupts(dev_priv);
6749
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006750 mutex_lock(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006751 if (rps->enabled) {
Chris Wilsondc979972016-05-10 14:10:04 +01006752 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Deepak S76c3552f2014-01-30 23:08:16 +05306753 vlv_set_rps_idle(dev_priv);
Daniel Vetter7526ed72014-09-29 15:07:19 +02006754 else
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006755 gen6_set_rps(dev_priv, rps->idle_freq);
6756 rps->last_adj = 0;
Ville Syrjälä12c100b2016-05-23 17:42:48 +03006757 I915_WRITE(GEN6_PMINTRMSK,
6758 gen6_sanitize_rps_pm_mask(dev_priv, ~0));
Chris Wilsonc0951f02013-10-10 21:58:50 +01006759 }
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006760 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006761}
6762
Chris Wilsone61e0f52018-02-21 09:56:36 +00006763void gen6_rps_boost(struct i915_request *rq,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006764 struct intel_rps_client *rps_client)
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006765{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006766 struct intel_rps *rps = &rq->i915->gt_pm.rps;
Chris Wilson74d290f2017-08-17 13:37:06 +01006767 unsigned long flags;
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006768 bool boost;
6769
Chris Wilson8d3afd72015-05-21 21:01:47 +01006770 /* This is intentionally racy! We peek at the state here, then
6771 * validate inside the RPS worker.
6772 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006773 if (!rps->enabled)
Chris Wilson8d3afd72015-05-21 21:01:47 +01006774 return;
Chris Wilson43cf3bf2015-03-18 09:48:22 +00006775
Chris Wilson253a2812018-02-06 14:31:37 +00006776 if (test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &rq->fence.flags))
6777 return;
6778
Chris Wilsone61e0f52018-02-21 09:56:36 +00006779 /* Serializes with i915_request_retire() */
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006780 boost = false;
Chris Wilson74d290f2017-08-17 13:37:06 +01006781 spin_lock_irqsave(&rq->lock, flags);
Chris Wilson253a2812018-02-06 14:31:37 +00006782 if (!rq->waitboost && !dma_fence_is_signaled_locked(&rq->fence)) {
6783 boost = !atomic_fetch_inc(&rps->num_waiters);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006784 rq->waitboost = true;
Chris Wilsonc0951f02013-10-10 21:58:50 +01006785 }
Chris Wilson74d290f2017-08-17 13:37:06 +01006786 spin_unlock_irqrestore(&rq->lock, flags);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006787 if (!boost)
6788 return;
6789
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006790 if (READ_ONCE(rps->cur_freq) < rps->boost_freq)
6791 schedule_work(&rps->work);
Chris Wilson7b92c1b2017-06-28 13:35:48 +01006792
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006793 atomic_inc(rps_client ? &rps_client->boosts : &rps->boosts);
Chris Wilsonb29c19b2013-09-25 17:34:56 +01006794}
6795
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006796int intel_set_rps(struct drm_i915_private *dev_priv, u8 val)
Jesse Barnes0a073b82013-04-17 15:54:58 -07006797{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006798 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006799 int err;
6800
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01006801 lockdep_assert_held(&dev_priv->pcu_lock);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006802 GEM_BUG_ON(val > rps->max_freq);
6803 GEM_BUG_ON(val < rps->min_freq);
Chris Wilsoncfd1c482017-02-20 09:47:07 +00006804
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006805 if (!rps->enabled) {
6806 rps->cur_freq = val;
Chris Wilson76e4e4b2017-02-20 09:47:08 +00006807 return 0;
6808 }
6809
Chris Wilsondc979972016-05-10 14:10:04 +01006810 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006811 err = valleyview_set_rps(dev_priv, val);
Ville Syrjäläffe02b42015-02-02 19:09:50 +02006812 else
Chris Wilson9fcee2f2017-01-26 10:19:19 +00006813 err = gen6_set_rps(dev_priv, val);
6814
6815 return err;
Jesse Barnes0a073b82013-04-17 15:54:58 -07006816}
6817
Chris Wilsondc979972016-05-10 14:10:04 +01006818static void gen9_disable_rc6(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00006819{
Zhe Wang20e49362014-11-04 17:07:05 +00006820 I915_WRITE(GEN6_RC_CONTROL, 0);
Zhe Wang38c23522015-01-20 12:23:04 +00006821 I915_WRITE(GEN9_PG_ENABLE, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00006822}
6823
Chris Wilsondc979972016-05-10 14:10:04 +01006824static void gen9_disable_rps(struct drm_i915_private *dev_priv)
Akash Goel2030d682016-04-23 00:05:45 +05306825{
Akash Goel2030d682016-04-23 00:05:45 +05306826 I915_WRITE(GEN6_RP_CONTROL, 0);
6827}
6828
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006829static void gen6_disable_rc6(struct drm_i915_private *dev_priv)
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006830{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006831 I915_WRITE(GEN6_RC_CONTROL, 0);
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01006832}
6833
6834static void gen6_disable_rps(struct drm_i915_private *dev_priv)
6835{
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006836 I915_WRITE(GEN6_RPNSWREQ, 1 << 31);
Akash Goel2030d682016-04-23 00:05:45 +05306837 I915_WRITE(GEN6_RP_CONTROL, 0);
Daniel Vetter44fc7d52013-07-12 22:43:27 +02006838}
6839
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006840static void cherryview_disable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05306841{
Deepak S38807742014-05-23 21:00:15 +05306842 I915_WRITE(GEN6_RC_CONTROL, 0);
6843}
6844
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01006845static void cherryview_disable_rps(struct drm_i915_private *dev_priv)
6846{
6847 I915_WRITE(GEN6_RP_CONTROL, 0);
6848}
6849
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006850static void valleyview_disable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006851{
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006852 /* We're doing forcewake before Disabling RC6,
Deepak S98a2e5f2014-08-18 10:35:27 -07006853 * This what the BIOS expects when going into suspend */
Mika Kuoppala59bad942015-01-16 11:34:40 +02006854 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S98a2e5f2014-08-18 10:35:27 -07006855
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006856 I915_WRITE(GEN6_RC_CONTROL, 0);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006857
Mika Kuoppala59bad942015-01-16 11:34:40 +02006858 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnesd20d4f02013-04-23 10:09:28 -07006859}
6860
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01006861static void valleyview_disable_rps(struct drm_i915_private *dev_priv)
6862{
6863 I915_WRITE(GEN6_RP_CONTROL, 0);
6864}
6865
Chris Wilsondc979972016-05-10 14:10:04 +01006866static bool bxt_check_bios_rc6_setup(struct drm_i915_private *dev_priv)
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306867{
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306868 bool enable_rc6 = true;
6869 unsigned long rc6_ctx_base;
Imre Deakfc619842016-06-29 19:13:55 +03006870 u32 rc_ctl;
6871 int rc_sw_target;
6872
6873 rc_ctl = I915_READ(GEN6_RC_CONTROL);
6874 rc_sw_target = (I915_READ(GEN6_RC_STATE) & RC_SW_TARGET_STATE_MASK) >>
6875 RC_SW_TARGET_STATE_SHIFT;
6876 DRM_DEBUG_DRIVER("BIOS enabled RC states: "
6877 "HW_CTRL %s HW_RC6 %s SW_TARGET_STATE %x\n",
6878 onoff(rc_ctl & GEN6_RC_CTL_HW_ENABLE),
6879 onoff(rc_ctl & GEN6_RC_CTL_RC6_ENABLE),
6880 rc_sw_target);
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306881
6882 if (!(I915_READ(RC6_LOCATION) & RC6_CTX_IN_DRAM)) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006883 DRM_DEBUG_DRIVER("RC6 Base location not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306884 enable_rc6 = false;
6885 }
6886
6887 /*
6888 * The exact context size is not known for BXT, so assume a page size
6889 * for this check.
6890 */
6891 rc6_ctx_base = I915_READ(RC6_CTX_BASE) & RC6_CTX_BASE_MASK;
Matthew Auld17a05342017-12-11 15:18:19 +00006892 if (!((rc6_ctx_base >= dev_priv->dsm_reserved.start) &&
6893 (rc6_ctx_base + PAGE_SIZE < dev_priv->dsm_reserved.end))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006894 DRM_DEBUG_DRIVER("RC6 Base address not as expected.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306895 enable_rc6 = false;
6896 }
6897
6898 if (!(((I915_READ(PWRCTX_MAXCNT_RCSUNIT) & IDLE_TIME_MASK) > 1) &&
6899 ((I915_READ(PWRCTX_MAXCNT_VCSUNIT0) & IDLE_TIME_MASK) > 1) &&
6900 ((I915_READ(PWRCTX_MAXCNT_BCSUNIT) & IDLE_TIME_MASK) > 1) &&
6901 ((I915_READ(PWRCTX_MAXCNT_VECSUNIT) & IDLE_TIME_MASK) > 1))) {
Imre Deakb99d49c2016-06-29 19:13:54 +03006902 DRM_DEBUG_DRIVER("Engine Idle wait time not set properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306903 enable_rc6 = false;
6904 }
6905
Imre Deakfc619842016-06-29 19:13:55 +03006906 if (!I915_READ(GEN8_PUSHBUS_CONTROL) ||
6907 !I915_READ(GEN8_PUSHBUS_ENABLE) ||
6908 !I915_READ(GEN8_PUSHBUS_SHIFT)) {
6909 DRM_DEBUG_DRIVER("Pushbus not setup properly.\n");
6910 enable_rc6 = false;
6911 }
6912
6913 if (!I915_READ(GEN6_GFXPAUSE)) {
6914 DRM_DEBUG_DRIVER("GFX pause not setup properly.\n");
6915 enable_rc6 = false;
6916 }
6917
6918 if (!I915_READ(GEN8_MISC_CTRL0)) {
6919 DRM_DEBUG_DRIVER("GPM control not setup properly.\n");
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306920 enable_rc6 = false;
6921 }
6922
6923 return enable_rc6;
6924}
6925
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006926static bool sanitize_rc6(struct drm_i915_private *i915)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006927{
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006928 struct intel_device_info *info = mkwrite_device_info(i915);
Imre Deake6069ca2014-04-18 16:01:02 +03006929
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006930 /* Powersaving is controlled by the host when inside a VM */
6931 if (intel_vgpu_active(i915))
6932 info->has_rc6 = 0;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306933
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006934 if (info->has_rc6 &&
6935 IS_GEN9_LP(i915) && !bxt_check_bios_rc6_setup(i915)) {
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306936 DRM_INFO("RC6 disabled by BIOS\n");
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006937 info->has_rc6 = 0;
Sagar Arun Kamble274008e2016-02-06 00:13:29 +05306938 }
6939
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006940 /*
6941 * We assume that we do not have any deep rc6 levels if we don't have
6942 * have the previous rc6 level supported, i.e. we use HAS_RC6()
6943 * as the initial coarse check for rc6 in general, moving on to
6944 * progressively finer/deeper levels.
6945 */
6946 if (!info->has_rc6 && info->has_rc6p)
6947 info->has_rc6p = 0;
Imre Deake6069ca2014-04-18 16:01:02 +03006948
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00006949 return info->has_rc6;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03006950}
6951
Chris Wilsondc979972016-05-10 14:10:04 +01006952static void gen6_init_rps_frequencies(struct drm_i915_private *dev_priv)
Imre Deake6069ca2014-04-18 16:01:02 +03006953{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006954 struct intel_rps *rps = &dev_priv->gt_pm.rps;
6955
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006956 /* All of these values are in units of 50MHz */
Chris Wilson773ea9a2016-07-13 09:10:33 +01006957
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006958 /* static values from HW: RP0 > RP1 > RPn (min_freq) */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02006959 if (IS_GEN9_LP(dev_priv)) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006960 u32 rp_state_cap = I915_READ(BXT_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006961 rps->rp0_freq = (rp_state_cap >> 16) & 0xff;
6962 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6963 rps->min_freq = (rp_state_cap >> 0) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006964 } else {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006965 u32 rp_state_cap = I915_READ(GEN6_RP_STATE_CAP);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006966 rps->rp0_freq = (rp_state_cap >> 0) & 0xff;
6967 rps->rp1_freq = (rp_state_cap >> 8) & 0xff;
6968 rps->min_freq = (rp_state_cap >> 16) & 0xff;
Bob Paauwe35040562015-06-25 14:54:07 -07006969 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006970 /* hw_max = RP0 until we check for overclocking */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006971 rps->max_freq = rps->rp0_freq;
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006972
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006973 rps->efficient_freq = rps->rp1_freq;
Chris Wilsondc979972016-05-10 14:10:04 +01006974 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv) ||
Oscar Mateo2b2874e2018-04-05 17:00:52 +03006975 IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) {
Chris Wilson773ea9a2016-07-13 09:10:33 +01006976 u32 ddcc_status = 0;
6977
6978 if (sandybridge_pcode_read(dev_priv,
6979 HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL,
6980 &ddcc_status) == 0)
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006981 rps->efficient_freq =
Tom O'Rourke46efa4a2015-02-10 23:06:46 -08006982 clamp_t(u8,
6983 ((ddcc_status >> 8) & 0xff),
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006984 rps->min_freq,
6985 rps->max_freq);
Tom O'Rourke93ee2922014-11-19 14:21:52 -08006986 }
6987
Oscar Mateo2b2874e2018-04-05 17:00:52 +03006988 if (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) {
Akash Goelc5e06882015-06-29 14:50:19 +05306989 /* Store the frequency values in 16.66 MHZ units, which is
Chris Wilson773ea9a2016-07-13 09:10:33 +01006990 * the natural hardware unit for SKL
6991 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01006992 rps->rp0_freq *= GEN9_FREQ_SCALER;
6993 rps->rp1_freq *= GEN9_FREQ_SCALER;
6994 rps->min_freq *= GEN9_FREQ_SCALER;
6995 rps->max_freq *= GEN9_FREQ_SCALER;
6996 rps->efficient_freq *= GEN9_FREQ_SCALER;
Akash Goelc5e06882015-06-29 14:50:19 +05306997 }
Ben Widawsky3280e8b2014-03-31 17:16:42 -07006998}
6999
Chris Wilson3a45b052016-07-13 09:10:32 +01007000static void reset_rps(struct drm_i915_private *dev_priv,
Chris Wilson9fcee2f2017-01-26 10:19:19 +00007001 int (*set)(struct drm_i915_private *, u8))
Chris Wilson3a45b052016-07-13 09:10:32 +01007002{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007003 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7004 u8 freq = rps->cur_freq;
Chris Wilson3a45b052016-07-13 09:10:32 +01007005
7006 /* force a reset */
Chris Wilson60548c52018-07-31 14:26:29 +01007007 rps->power.mode = -1;
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007008 rps->cur_freq = -1;
Chris Wilson3a45b052016-07-13 09:10:32 +01007009
Chris Wilson9fcee2f2017-01-26 10:19:19 +00007010 if (set(dev_priv, freq))
7011 DRM_ERROR("Failed to reset RPS to initial values\n");
Chris Wilson3a45b052016-07-13 09:10:32 +01007012}
7013
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007014/* See the Gen9_GT_PM_Programming_Guide doc for the below */
Chris Wilsondc979972016-05-10 14:10:04 +01007015static void gen9_enable_rps(struct drm_i915_private *dev_priv)
Zhe Wang20e49362014-11-04 17:07:05 +00007016{
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007017 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7018
David Weinehall36fe7782017-11-17 10:01:46 +02007019 /* Program defaults and thresholds for RPS */
7020 if (IS_GEN9(dev_priv))
7021 I915_WRITE(GEN6_RC_VIDEO_FREQ,
7022 GEN9_FREQUENCY(dev_priv->gt_pm.rps.rp1_freq));
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007023
Akash Goel0beb0592015-03-06 11:07:20 +05307024 /* 1 second timeout*/
7025 I915_WRITE(GEN6_RP_DOWN_TIMEOUT,
7026 GT_INTERVAL_FROM_US(dev_priv, 1000000));
7027
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007028 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007029
Akash Goel0beb0592015-03-06 11:07:20 +05307030 /* Leaning on the below call to gen6_set_rps to program/setup the
7031 * Up/Down EI & threshold registers, as well as the RP_CONTROL,
7032 * RP_INTERRUPT_LIMITS & RPNSWREQ registers */
Chris Wilson3a45b052016-07-13 09:10:32 +01007033 reset_rps(dev_priv, gen6_set_rps);
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007034
7035 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7036}
7037
Chris Wilsondc979972016-05-10 14:10:04 +01007038static void gen9_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnesb6fef0e2015-01-16 18:07:25 +00007039{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007040 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307041 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007042 u32 rc6_mode;
Zhe Wang20e49362014-11-04 17:07:05 +00007043
7044 /* 1a: Software RC state - RC0 */
7045 I915_WRITE(GEN6_RC_STATE, 0);
7046
7047 /* 1b: Get forcewake during program sequence. Although the driver
7048 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007049 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00007050
7051 /* 2a: Disable RC states. */
7052 I915_WRITE(GEN6_RC_CONTROL, 0);
7053
7054 /* 2b: Program RC6 thresholds.*/
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07007055 if (INTEL_GEN(dev_priv) >= 10) {
7056 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16 | 85);
7057 I915_WRITE(GEN10_MEDIA_WAKE_RATE_LIMIT, 150);
7058 } else if (IS_SKYLAKE(dev_priv)) {
7059 /*
7060 * WaRsDoubleRc6WrlWithCoarsePowerGating:skl Doubling WRL only
7061 * when CPG is enabled
7062 */
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05307063 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 108 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07007064 } else {
Sagar Arun Kamble63a4dec2015-09-12 10:17:53 +05307065 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16);
Rodrigo Vivi0aab2012017-10-23 15:46:12 -07007066 }
7067
Zhe Wang20e49362014-11-04 17:07:05 +00007068 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7069 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05307070 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007071 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05307072
Dave Gordon1a3d1892016-05-13 15:36:30 +01007073 if (HAS_GUC(dev_priv))
Sagar Arun Kamble97c322e2015-09-12 10:17:54 +05307074 I915_WRITE(GUC_MAX_IDLE_COUNT, 0xA);
7075
Zhe Wang20e49362014-11-04 17:07:05 +00007076 I915_WRITE(GEN6_RC_SLEEP, 0);
Zhe Wang20e49362014-11-04 17:07:05 +00007077
Chris Wilsonc1beabc2018-01-22 13:55:41 +00007078 /*
7079 * 2c: Program Coarse Power Gating Policies.
7080 *
7081 * Bspec's guidance is to use 25us (really 25 * 1280ns) here. What we
7082 * use instead is a more conservative estimate for the maximum time
7083 * it takes us to service a CS interrupt and submit a new ELSP - that
7084 * is the time which the GPU is idle waiting for the CPU to select the
7085 * next request to execute. If the idle hysteresis is less than that
7086 * interrupt service latency, the hardware will automatically gate
7087 * the power well and we will then incur the wake up cost on top of
7088 * the service latency. A similar guide from intel_pstate is that we
7089 * do not want the enable hysteresis to less than the wakeup latency.
7090 *
7091 * igt/gem_exec_nop/sequential provides a rough estimate for the
7092 * service latency, and puts it around 10us for Broadwell (and other
7093 * big core) and around 40us for Broxton (and other low power cores).
7094 * [Note that for legacy ringbuffer submission, this is less than 1us!]
7095 * However, the wakeup latency on Broxton is closer to 100us. To be
7096 * conservative, we have to factor in a context switch on top (due
7097 * to ksoftirqd).
7098 */
7099 I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 250);
7100 I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 250);
Zhe Wang38c23522015-01-20 12:23:04 +00007101
Zhe Wang20e49362014-11-04 17:07:05 +00007102 /* 3a: Enable RC6 */
Chris Wilson1c044f92017-01-25 17:26:01 +00007103 I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */
Rodrigo Vivie4ffc832017-08-22 16:58:28 -07007104
7105 /* WaRsUseTimeoutMode:cnl (pre-prod) */
7106 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_C0))
7107 rc6_mode = GEN7_RC_CTL_TO_MODE;
7108 else
7109 rc6_mode = GEN6_RC_CTL_EI_MODE(1);
7110
Chris Wilson1c044f92017-01-25 17:26:01 +00007111 I915_WRITE(GEN6_RC_CONTROL,
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007112 GEN6_RC_CTL_HW_ENABLE |
7113 GEN6_RC_CTL_RC6_ENABLE |
7114 rc6_mode);
Zhe Wang20e49362014-11-04 17:07:05 +00007115
Sagar Kamblecb07bae2015-04-12 11:28:14 +05307116 /*
7117 * 3b: Enable Coarse Power Gating only when RC6 is enabled.
Rodrigo Vivid66047e42018-02-22 12:05:35 -08007118 * WaRsDisableCoarsePowerGating:skl,cnl - Render/Media PG need to be disabled with RC6.
Sagar Kamblecb07bae2015-04-12 11:28:14 +05307119 */
Chris Wilsondc979972016-05-10 14:10:04 +01007120 if (NEEDS_WaRsDisableCoarsePowerGating(dev_priv))
Sagar Arun Kamblef2d2fe92015-09-12 10:17:51 +05307121 I915_WRITE(GEN9_PG_ENABLE, 0);
7122 else
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007123 I915_WRITE(GEN9_PG_ENABLE,
7124 GEN9_RENDER_PG_ENABLE | GEN9_MEDIA_PG_ENABLE);
Zhe Wang38c23522015-01-20 12:23:04 +00007125
Mika Kuoppala59bad942015-01-16 11:34:40 +02007126 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Zhe Wang20e49362014-11-04 17:07:05 +00007127}
7128
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01007129static void gen8_enable_rc6(struct drm_i915_private *dev_priv)
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007130{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007131 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307132 enum intel_engine_id id;
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007133
7134 /* 1a: Software RC state - RC0 */
7135 I915_WRITE(GEN6_RC_STATE, 0);
7136
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01007137 /* 1b: Get forcewake during program sequence. Although the driver
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007138 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007139 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007140
7141 /* 2a: Disable RC states. */
7142 I915_WRITE(GEN6_RC_CONTROL, 0);
7143
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007144 /* 2b: Program RC6 thresholds.*/
7145 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7146 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7147 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
Akash Goel3b3f1652016-10-13 22:44:48 +05307148 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007149 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007150 I915_WRITE(GEN6_RC_SLEEP, 0);
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01007151 I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007152
7153 /* 3: Enable RC6 */
Sagar Arun Kamble415544d2017-10-10 22:30:00 +01007154
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007155 I915_WRITE(GEN6_RC_CONTROL,
7156 GEN6_RC_CTL_HW_ENABLE |
7157 GEN7_RC_CTL_TO_MODE |
7158 GEN6_RC_CTL_RC6_ENABLE);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007159
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01007160 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7161}
7162
7163static void gen8_enable_rps(struct drm_i915_private *dev_priv)
7164{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007165 struct intel_rps *rps = &dev_priv->gt_pm.rps;
7166
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01007167 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7168
7169 /* 1 Program defaults and thresholds for RPS*/
Ben Widawskyf9bdc582014-03-31 17:16:41 -07007170 I915_WRITE(GEN6_RPNSWREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007171 HSW_FREQUENCY(rps->rp1_freq));
Ben Widawskyf9bdc582014-03-31 17:16:41 -07007172 I915_WRITE(GEN6_RC_VIDEO_FREQ,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007173 HSW_FREQUENCY(rps->rp1_freq));
Daniel Vetter7526ed72014-09-29 15:07:19 +02007174 /* NB: Docs say 1s, and 1000000 - which aren't equivalent */
7175 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007176
Daniel Vetter7526ed72014-09-29 15:07:19 +02007177 /* Docs recommend 900MHz, and 300 MHz respectively */
7178 I915_WRITE(GEN6_RP_INTERRUPT_LIMITS,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007179 rps->max_freq_softlimit << 24 |
7180 rps->min_freq_softlimit << 16);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007181
Daniel Vetter7526ed72014-09-29 15:07:19 +02007182 I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */
7183 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/
7184 I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */
7185 I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007186
Daniel Vetter7526ed72014-09-29 15:07:19 +02007187 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007188
Sagar Arun Kamble3a853922017-10-10 22:30:01 +01007189 /* 2: Enable RPS */
Daniel Vetter7526ed72014-09-29 15:07:19 +02007190 I915_WRITE(GEN6_RP_CONTROL,
7191 GEN6_RP_MEDIA_TURBO |
7192 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7193 GEN6_RP_MEDIA_IS_GFX |
7194 GEN6_RP_ENABLE |
7195 GEN6_RP_UP_BUSY_AVG |
7196 GEN6_RP_DOWN_IDLE_AVG);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007197
Chris Wilson3a45b052016-07-13 09:10:32 +01007198 reset_rps(dev_priv, gen6_set_rps);
Daniel Vetter7526ed72014-09-29 15:07:19 +02007199
Mika Kuoppala59bad942015-01-16 11:34:40 +02007200 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Ben Widawsky6edee7f2013-11-02 21:07:52 -07007201}
7202
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01007203static void gen6_enable_rc6(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007204{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007205 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307206 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007207 u32 rc6vids, rc6_mask;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007208 u32 gtfifodbg;
Dave Gordonb4ac5af2016-03-24 11:20:38 +00007209 int ret;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007210
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007211 I915_WRITE(GEN6_RC_STATE, 0);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007212
7213 /* Clear the DBG now so we don't confuse earlier errors */
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007214 gtfifodbg = I915_READ(GTFIFODBG);
7215 if (gtfifodbg) {
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007216 DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg);
7217 I915_WRITE(GTFIFODBG, gtfifodbg);
7218 }
7219
Mika Kuoppala59bad942015-01-16 11:34:40 +02007220 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007221
7222 /* disable the counters and set deterministic thresholds */
7223 I915_WRITE(GEN6_RC_CONTROL, 0);
7224
7225 I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16);
7226 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30);
7227 I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30);
7228 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7229 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7230
Akash Goel3b3f1652016-10-13 22:44:48 +05307231 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007232 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007233
7234 I915_WRITE(GEN6_RC_SLEEP, 0);
7235 I915_WRITE(GEN6_RC1e_THRESHOLD, 1000);
Chris Wilsondc979972016-05-10 14:10:04 +01007236 if (IS_IVYBRIDGE(dev_priv))
Stéphane Marchesin351aa562013-08-13 11:55:17 -07007237 I915_WRITE(GEN6_RC6_THRESHOLD, 125000);
7238 else
7239 I915_WRITE(GEN6_RC6_THRESHOLD, 50000);
Stéphane Marchesin0920a482013-01-29 19:41:59 -08007240 I915_WRITE(GEN6_RC6p_THRESHOLD, 150000);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007241 I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */
7242
Eugeni Dodonov5a7dc922012-07-02 11:51:05 -03007243 /* We don't use those on Haswell */
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007244 rc6_mask = GEN6_RC_CTL_RC6_ENABLE;
7245 if (HAS_RC6p(dev_priv))
7246 rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE;
7247 if (HAS_RC6pp(dev_priv))
7248 rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007249 I915_WRITE(GEN6_RC_CONTROL,
7250 rc6_mask |
7251 GEN6_RC_CTL_EI_MODE(1) |
7252 GEN6_RC_CTL_HW_ENABLE);
7253
Ben Widawsky31643d52012-09-26 10:34:01 -07007254 rc6vids = 0;
7255 ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids);
Chris Wilsondc979972016-05-10 14:10:04 +01007256 if (IS_GEN6(dev_priv) && ret) {
Ben Widawsky31643d52012-09-26 10:34:01 -07007257 DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n");
Chris Wilsondc979972016-05-10 14:10:04 +01007258 } else if (IS_GEN6(dev_priv) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) {
Ben Widawsky31643d52012-09-26 10:34:01 -07007259 DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n",
7260 GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450);
7261 rc6vids &= 0xffff00;
7262 rc6vids |= GEN6_ENCODE_RC6_VID(450);
7263 ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids);
7264 if (ret)
7265 DRM_ERROR("Couldn't fix incorrect rc6 voltage\n");
7266 }
7267
Mika Kuoppala59bad942015-01-16 11:34:40 +02007268 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007269}
7270
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01007271static void gen6_enable_rps(struct drm_i915_private *dev_priv)
7272{
Sagar Arun Kamble960e5462017-10-10 22:29:59 +01007273 /* Here begins a magic sequence of register writes to enable
7274 * auto-downclocking.
7275 *
7276 * Perhaps there might be some value in exposing these to
7277 * userspace...
7278 */
7279 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7280
7281 /* Power down if completely idle for over 50ms */
7282 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000);
7283 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7284
7285 reset_rps(dev_priv, gen6_set_rps);
7286
7287 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7288}
7289
Chris Wilsonfb7404e2016-07-13 09:10:38 +01007290static void gen6_update_ring_freq(struct drm_i915_private *dev_priv)
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007291{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007292 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Mika Kuoppala66c1f772018-03-20 17:17:33 +02007293 const int min_freq = 15;
7294 const int scaling_factor = 180;
Chris Wilson3ebecd02013-04-12 19:10:13 +01007295 unsigned int gpu_freq;
7296 unsigned int max_ia_freq, min_ring_freq;
Akash Goel4c8c7742015-06-29 14:50:20 +05307297 unsigned int max_gpu_freq, min_gpu_freq;
Ben Widawskyeda79642013-10-07 17:15:48 -03007298 struct cpufreq_policy *policy;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007299
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01007300 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Daniel Vetter79f5b2c2012-06-24 16:42:33 +02007301
Mika Kuoppala66c1f772018-03-20 17:17:33 +02007302 if (rps->max_freq <= rps->min_freq)
7303 return;
7304
Ben Widawskyeda79642013-10-07 17:15:48 -03007305 policy = cpufreq_cpu_get(0);
7306 if (policy) {
7307 max_ia_freq = policy->cpuinfo.max_freq;
7308 cpufreq_cpu_put(policy);
7309 } else {
7310 /*
7311 * Default to measured freq if none found, PCU will ensure we
7312 * don't go over
7313 */
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007314 max_ia_freq = tsc_khz;
Ben Widawskyeda79642013-10-07 17:15:48 -03007315 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007316
7317 /* Convert from kHz to MHz */
7318 max_ia_freq /= 1000;
7319
Ben Widawsky153b4b952013-10-22 22:05:09 -07007320 min_ring_freq = I915_READ(DCLK) & 0xf;
Ben Widawskyf6aca452013-10-02 09:25:02 -07007321 /* convert DDR frequency from units of 266.6MHz to bandwidth */
7322 min_ring_freq = mult_frac(min_ring_freq, 8, 3);
Chris Wilson3ebecd02013-04-12 19:10:13 +01007323
Chris Wilsond586b5f2018-03-08 14:26:48 +00007324 min_gpu_freq = rps->min_freq;
7325 max_gpu_freq = rps->max_freq;
Oscar Mateo2b2874e2018-04-05 17:00:52 +03007326 if (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) {
Akash Goel4c8c7742015-06-29 14:50:20 +05307327 /* Convert GT frequency to 50 HZ units */
Chris Wilsond586b5f2018-03-08 14:26:48 +00007328 min_gpu_freq /= GEN9_FREQ_SCALER;
7329 max_gpu_freq /= GEN9_FREQ_SCALER;
Akash Goel4c8c7742015-06-29 14:50:20 +05307330 }
7331
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007332 /*
7333 * For each potential GPU frequency, load a ring frequency we'd like
7334 * to use for memory access. We do this by specifying the IA frequency
7335 * the PCU should use as a reference to determine the ring frequency.
7336 */
Akash Goel4c8c7742015-06-29 14:50:20 +05307337 for (gpu_freq = max_gpu_freq; gpu_freq >= min_gpu_freq; gpu_freq--) {
Mika Kuoppala66c1f772018-03-20 17:17:33 +02007338 const int diff = max_gpu_freq - gpu_freq;
Chris Wilson3ebecd02013-04-12 19:10:13 +01007339 unsigned int ia_freq = 0, ring_freq = 0;
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007340
Oscar Mateo2b2874e2018-04-05 17:00:52 +03007341 if (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) {
Akash Goel4c8c7742015-06-29 14:50:20 +05307342 /*
7343 * ring_freq = 2 * GT. ring_freq is in 100MHz units
7344 * No floor required for ring frequency on SKL.
7345 */
7346 ring_freq = gpu_freq;
Tvrtko Ursulinc56b89f2018-02-09 21:58:46 +00007347 } else if (INTEL_GEN(dev_priv) >= 8) {
Ben Widawsky46c764d2013-11-02 21:07:49 -07007348 /* max(2 * GT, DDR). NB: GT is 50MHz units */
7349 ring_freq = max(min_ring_freq, gpu_freq);
Chris Wilsondc979972016-05-10 14:10:04 +01007350 } else if (IS_HASWELL(dev_priv)) {
Ben Widawskyf6aca452013-10-02 09:25:02 -07007351 ring_freq = mult_frac(gpu_freq, 5, 4);
Chris Wilson3ebecd02013-04-12 19:10:13 +01007352 ring_freq = max(min_ring_freq, ring_freq);
7353 /* leave ia_freq as the default, chosen by cpufreq */
7354 } else {
7355 /* On older processors, there is no separate ring
7356 * clock domain, so in order to boost the bandwidth
7357 * of the ring, we need to upclock the CPU (ia_freq).
7358 *
7359 * For GPU frequencies less than 750MHz,
7360 * just use the lowest ring freq.
7361 */
7362 if (gpu_freq < min_freq)
7363 ia_freq = 800;
7364 else
7365 ia_freq = max_ia_freq - ((diff * scaling_factor) / 2);
7366 ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100);
7367 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007368
Ben Widawsky42c05262012-09-26 10:34:00 -07007369 sandybridge_pcode_write(dev_priv,
7370 GEN6_PCODE_WRITE_MIN_FREQ_TABLE,
Chris Wilson3ebecd02013-04-12 19:10:13 +01007371 ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT |
7372 ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT |
7373 gpu_freq);
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007374 }
Eugeni Dodonov2b4e57b2012-04-18 15:29:23 -03007375}
7376
Ville Syrjälä03af2042014-06-28 02:03:53 +03007377static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv)
Deepak S2b6b3a02014-05-27 15:59:30 +05307378{
7379 u32 val, rp0;
7380
Jani Nikula5b5929c2015-10-07 11:17:46 +03007381 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
Deepak S2b6b3a02014-05-27 15:59:30 +05307382
Imre Deak43b67992016-08-31 19:13:02 +03007383 switch (INTEL_INFO(dev_priv)->sseu.eu_total) {
Jani Nikula5b5929c2015-10-07 11:17:46 +03007384 case 8:
7385 /* (2 * 4) config */
7386 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT);
7387 break;
7388 case 12:
7389 /* (2 * 6) config */
7390 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT);
7391 break;
7392 case 16:
7393 /* (2 * 8) config */
7394 default:
7395 /* Setting (2 * 8) Min RP0 for any other combination */
7396 rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT);
7397 break;
Deepak S095acd52015-01-17 11:05:59 +05307398 }
Jani Nikula5b5929c2015-10-07 11:17:46 +03007399
7400 rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK);
7401
Deepak S2b6b3a02014-05-27 15:59:30 +05307402 return rp0;
7403}
7404
7405static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv)
7406{
7407 u32 val, rpe;
7408
7409 val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG);
7410 rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK;
7411
7412 return rpe;
7413}
7414
Deepak S7707df42014-07-12 18:46:14 +05307415static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv)
7416{
7417 u32 val, rp1;
7418
Jani Nikula5b5929c2015-10-07 11:17:46 +03007419 val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE);
7420 rp1 = (val & FB_GFX_FREQ_FUSE_MASK);
7421
Deepak S7707df42014-07-12 18:46:14 +05307422 return rp1;
7423}
7424
Deepak S96676fe2016-08-12 18:46:41 +05307425static u32 cherryview_rps_min_freq(struct drm_i915_private *dev_priv)
7426{
7427 u32 val, rpn;
7428
7429 val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE);
7430 rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) &
7431 FB_GFX_FREQ_FUSE_MASK);
7432
7433 return rpn;
7434}
7435
Deepak Sf8f2b002014-07-10 13:16:21 +05307436static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv)
7437{
7438 u32 val, rp1;
7439
7440 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
7441
7442 rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT;
7443
7444 return rp1;
7445}
7446
Ville Syrjälä03af2042014-06-28 02:03:53 +03007447static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007448{
7449 u32 val, rp0;
7450
Jani Nikula64936252013-05-22 15:36:20 +03007451 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007452
7453 rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT;
7454 /* Clamp to max */
7455 rp0 = min_t(u32, rp0, 0xea);
7456
7457 return rp0;
7458}
7459
7460static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv)
7461{
7462 u32 val, rpe;
7463
Jani Nikula64936252013-05-22 15:36:20 +03007464 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007465 rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT;
Jani Nikula64936252013-05-22 15:36:20 +03007466 val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007467 rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5;
7468
7469 return rpe;
7470}
7471
Ville Syrjälä03af2042014-06-28 02:03:53 +03007472static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007473{
Imre Deak36146032014-12-04 18:39:35 +02007474 u32 val;
7475
7476 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff;
7477 /*
7478 * According to the BYT Punit GPU turbo HAS 1.1.6.3 the minimum value
7479 * for the minimum frequency in GPLL mode is 0xc1. Contrary to this on
7480 * a BYT-M B0 the above register contains 0xbf. Moreover when setting
7481 * a frequency Punit will not allow values below 0xc0. Clamp it 0xc0
7482 * to make sure it matches what Punit accepts.
7483 */
7484 return max_t(u32, val, 0xc0);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007485}
7486
Imre Deakae484342014-03-31 15:10:44 +03007487/* Check that the pctx buffer wasn't move under us. */
7488static void valleyview_check_pctx(struct drm_i915_private *dev_priv)
7489{
7490 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7491
Matthew Auld77894222017-12-11 15:18:18 +00007492 WARN_ON(pctx_addr != dev_priv->dsm.start +
Imre Deakae484342014-03-31 15:10:44 +03007493 dev_priv->vlv_pctx->stolen->start);
7494}
7495
Deepak S38807742014-05-23 21:00:15 +05307496
7497/* Check that the pcbr address is not empty. */
7498static void cherryview_check_pctx(struct drm_i915_private *dev_priv)
7499{
7500 unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095;
7501
7502 WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0);
7503}
7504
Chris Wilsondc979972016-05-10 14:10:04 +01007505static void cherryview_setup_pctx(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307506{
Matthew Auldb7128ef2017-12-11 15:18:22 +00007507 resource_size_t pctx_paddr, paddr;
7508 resource_size_t pctx_size = 32*1024;
Deepak S38807742014-05-23 21:00:15 +05307509 u32 pcbr;
Deepak S38807742014-05-23 21:00:15 +05307510
Deepak S38807742014-05-23 21:00:15 +05307511 pcbr = I915_READ(VLV_PCBR);
7512 if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) {
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007513 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
Matthew Auld77894222017-12-11 15:18:18 +00007514 paddr = dev_priv->dsm.end + 1 - pctx_size;
7515 GEM_BUG_ON(paddr > U32_MAX);
Deepak S38807742014-05-23 21:00:15 +05307516
7517 pctx_paddr = (paddr & (~4095));
7518 I915_WRITE(VLV_PCBR, pctx_paddr);
7519 }
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007520
7521 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Deepak S38807742014-05-23 21:00:15 +05307522}
7523
Chris Wilsondc979972016-05-10 14:10:04 +01007524static void valleyview_setup_pctx(struct drm_i915_private *dev_priv)
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007525{
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007526 struct drm_i915_gem_object *pctx;
Matthew Auldb7128ef2017-12-11 15:18:22 +00007527 resource_size_t pctx_paddr;
7528 resource_size_t pctx_size = 24*1024;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007529 u32 pcbr;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007530
7531 pcbr = I915_READ(VLV_PCBR);
7532 if (pcbr) {
7533 /* BIOS set it up already, grab the pre-alloc'd space */
Matthew Auldb7128ef2017-12-11 15:18:22 +00007534 resource_size_t pcbr_offset;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007535
Matthew Auld77894222017-12-11 15:18:18 +00007536 pcbr_offset = (pcbr & (~4095)) - dev_priv->dsm.start;
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007537 pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007538 pcbr_offset,
Daniel Vetter190d6cd2013-07-04 13:06:28 +02007539 I915_GTT_OFFSET_NONE,
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007540 pctx_size);
7541 goto out;
7542 }
7543
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007544 DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n");
7545
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007546 /*
7547 * From the Gunit register HAS:
7548 * The Gfx driver is expected to program this register and ensure
7549 * proper allocation within Gfx stolen memory. For example, this
7550 * register should be programmed such than the PCBR range does not
7551 * overlap with other ranges, such as the frame buffer, protected
7552 * memory, or any other relevant ranges.
7553 */
Tvrtko Ursulin187685c2016-12-01 14:16:36 +00007554 pctx = i915_gem_object_create_stolen(dev_priv, pctx_size);
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007555 if (!pctx) {
7556 DRM_DEBUG("not enough stolen space for PCTX, disabling\n");
Tvrtko Ursulinee504892016-02-11 10:27:30 +00007557 goto out;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007558 }
7559
Matthew Auld77894222017-12-11 15:18:18 +00007560 GEM_BUG_ON(range_overflows_t(u64,
7561 dev_priv->dsm.start,
7562 pctx->stolen->start,
7563 U32_MAX));
7564 pctx_paddr = dev_priv->dsm.start + pctx->stolen->start;
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007565 I915_WRITE(VLV_PCBR, pctx_paddr);
7566
7567out:
Ville Syrjäläce611ef2014-11-07 21:33:46 +02007568 DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR));
Jesse Barnesc9cddff2013-05-08 10:45:13 -07007569 dev_priv->vlv_pctx = pctx;
7570}
7571
Chris Wilsondc979972016-05-10 14:10:04 +01007572static void valleyview_cleanup_pctx(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03007573{
Chris Wilson818fed42018-07-12 11:54:54 +01007574 struct drm_i915_gem_object *pctx;
Imre Deakae484342014-03-31 15:10:44 +03007575
Chris Wilson818fed42018-07-12 11:54:54 +01007576 pctx = fetch_and_zero(&dev_priv->vlv_pctx);
7577 if (pctx)
7578 i915_gem_object_put(pctx);
Imre Deakae484342014-03-31 15:10:44 +03007579}
7580
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007581static void vlv_init_gpll_ref_freq(struct drm_i915_private *dev_priv)
7582{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007583 dev_priv->gt_pm.rps.gpll_ref_freq =
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007584 vlv_get_cck_clock(dev_priv, "GPLL ref",
7585 CCK_GPLL_CLOCK_CONTROL,
7586 dev_priv->czclk_freq);
7587
7588 DRM_DEBUG_DRIVER("GPLL reference freq: %d kHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007589 dev_priv->gt_pm.rps.gpll_ref_freq);
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007590}
7591
Chris Wilsondc979972016-05-10 14:10:04 +01007592static void valleyview_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007593{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007594 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007595 u32 val;
Imre Deak4e805192014-04-14 20:24:41 +03007596
Chris Wilsondc979972016-05-10 14:10:04 +01007597 valleyview_setup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007598
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007599 vlv_init_gpll_ref_freq(dev_priv);
7600
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007601 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7602 switch ((val >> 6) & 3) {
7603 case 0:
7604 case 1:
7605 dev_priv->mem_freq = 800;
7606 break;
7607 case 2:
7608 dev_priv->mem_freq = 1066;
7609 break;
7610 case 3:
7611 dev_priv->mem_freq = 1333;
7612 break;
7613 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007614 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007615
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007616 rps->max_freq = valleyview_rps_max_freq(dev_priv);
7617 rps->rp0_freq = rps->max_freq;
Imre Deak4e805192014-04-14 20:24:41 +03007618 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007619 intel_gpu_freq(dev_priv, rps->max_freq),
7620 rps->max_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007621
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007622 rps->efficient_freq = valleyview_rps_rpe_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007623 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007624 intel_gpu_freq(dev_priv, rps->efficient_freq),
7625 rps->efficient_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007626
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007627 rps->rp1_freq = valleyview_rps_guar_freq(dev_priv);
Deepak Sf8f2b002014-07-10 13:16:21 +05307628 DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007629 intel_gpu_freq(dev_priv, rps->rp1_freq),
7630 rps->rp1_freq);
Deepak Sf8f2b002014-07-10 13:16:21 +05307631
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007632 rps->min_freq = valleyview_rps_min_freq(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007633 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007634 intel_gpu_freq(dev_priv, rps->min_freq),
7635 rps->min_freq);
Imre Deak4e805192014-04-14 20:24:41 +03007636}
7637
Chris Wilsondc979972016-05-10 14:10:04 +01007638static void cherryview_init_gt_powersave(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307639{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007640 struct intel_rps *rps = &dev_priv->gt_pm.rps;
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007641 u32 val;
Deepak S2b6b3a02014-05-27 15:59:30 +05307642
Chris Wilsondc979972016-05-10 14:10:04 +01007643 cherryview_setup_pctx(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307644
Ville Syrjäläc30fec62016-03-04 21:43:02 +02007645 vlv_init_gpll_ref_freq(dev_priv);
7646
Ville Syrjäläa5805162015-05-26 20:42:30 +03007647 mutex_lock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007648 val = vlv_cck_read(dev_priv, CCK_FUSE_REG);
Ville Syrjäläa5805162015-05-26 20:42:30 +03007649 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläc6e8f392014-11-07 21:33:43 +02007650
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007651 switch ((val >> 2) & 0x7) {
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007652 case 3:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007653 dev_priv->mem_freq = 2000;
7654 break;
Ville Syrjäläbfa7df02015-09-24 23:29:18 +03007655 default:
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007656 dev_priv->mem_freq = 1600;
7657 break;
7658 }
Ville Syrjälä80b83b62014-11-10 22:55:14 +02007659 DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq);
Ville Syrjälä2bb25c12014-08-18 14:42:44 +03007660
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007661 rps->max_freq = cherryview_rps_max_freq(dev_priv);
7662 rps->rp0_freq = rps->max_freq;
Deepak S2b6b3a02014-05-27 15:59:30 +05307663 DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007664 intel_gpu_freq(dev_priv, rps->max_freq),
7665 rps->max_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307666
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007667 rps->efficient_freq = cherryview_rps_rpe_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307668 DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007669 intel_gpu_freq(dev_priv, rps->efficient_freq),
7670 rps->efficient_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307671
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007672 rps->rp1_freq = cherryview_rps_guar_freq(dev_priv);
Deepak S7707df42014-07-12 18:46:14 +05307673 DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007674 intel_gpu_freq(dev_priv, rps->rp1_freq),
7675 rps->rp1_freq);
Deepak S7707df42014-07-12 18:46:14 +05307676
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007677 rps->min_freq = cherryview_rps_min_freq(dev_priv);
Deepak S2b6b3a02014-05-27 15:59:30 +05307678 DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007679 intel_gpu_freq(dev_priv, rps->min_freq),
7680 rps->min_freq);
Deepak S2b6b3a02014-05-27 15:59:30 +05307681
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01007682 WARN_ONCE((rps->max_freq | rps->efficient_freq | rps->rp1_freq |
7683 rps->min_freq) & 1,
Ville Syrjälä1c147622014-08-18 14:42:43 +03007684 "Odd GPU freq values\n");
Deepak S38807742014-05-23 21:00:15 +05307685}
7686
Chris Wilsondc979972016-05-10 14:10:04 +01007687static void valleyview_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deak4e805192014-04-14 20:24:41 +03007688{
Chris Wilsondc979972016-05-10 14:10:04 +01007689 valleyview_cleanup_pctx(dev_priv);
Imre Deak4e805192014-04-14 20:24:41 +03007690}
7691
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007692static void cherryview_enable_rc6(struct drm_i915_private *dev_priv)
Deepak S38807742014-05-23 21:00:15 +05307693{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007694 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307695 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007696 u32 gtfifodbg, rc6_mode, pcbr;
Deepak S38807742014-05-23 21:00:15 +05307697
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007698 gtfifodbg = I915_READ(GTFIFODBG) & ~(GT_FIFO_SBDEDICATE_FREE_ENTRY_CHV |
7699 GT_FIFO_FREE_ENTRIES_CHV);
Deepak S38807742014-05-23 21:00:15 +05307700 if (gtfifodbg) {
7701 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7702 gtfifodbg);
7703 I915_WRITE(GTFIFODBG, gtfifodbg);
7704 }
7705
7706 cherryview_check_pctx(dev_priv);
7707
7708 /* 1a & 1b: Get forcewake during program sequence. Although the driver
7709 * hasn't enabled a state yet where we need forcewake, BIOS may have.*/
Mika Kuoppala59bad942015-01-16 11:34:40 +02007710 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307711
Ville Syrjälä160614a2015-01-19 13:50:47 +02007712 /* Disable RC states. */
7713 I915_WRITE(GEN6_RC_CONTROL, 0);
7714
Deepak S38807742014-05-23 21:00:15 +05307715 /* 2a: Program RC6 thresholds.*/
7716 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16);
7717 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */
7718 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */
7719
Akash Goel3b3f1652016-10-13 22:44:48 +05307720 for_each_engine(engine, dev_priv, id)
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007721 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
Deepak S38807742014-05-23 21:00:15 +05307722 I915_WRITE(GEN6_RC_SLEEP, 0);
7723
Deepak Sf4f71c72015-03-28 15:23:35 +05307724 /* TO threshold set to 500 us ( 0x186 * 1.28 us) */
7725 I915_WRITE(GEN6_RC6_THRESHOLD, 0x186);
Deepak S38807742014-05-23 21:00:15 +05307726
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007727 /* Allows RC6 residency counter to work */
Deepak S38807742014-05-23 21:00:15 +05307728 I915_WRITE(VLV_COUNTER_CONTROL,
7729 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7730 VLV_MEDIA_RC6_COUNT_EN |
7731 VLV_RENDER_RC6_COUNT_EN));
7732
7733 /* For now we assume BIOS is allocating and populating the PCBR */
7734 pcbr = I915_READ(VLV_PCBR);
7735
Deepak S38807742014-05-23 21:00:15 +05307736 /* 3: Enable RC6 */
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007737 rc6_mode = 0;
7738 if (pcbr >> VLV_PCBR_ADDR_SHIFT)
Ville Syrjäläaf5a75a2015-01-19 13:50:50 +02007739 rc6_mode = GEN7_RC_CTL_TO_MODE;
Deepak S38807742014-05-23 21:00:15 +05307740 I915_WRITE(GEN6_RC_CONTROL, rc6_mode);
7741
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007742 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7743}
7744
7745static void cherryview_enable_rps(struct drm_i915_private *dev_priv)
7746{
7747 u32 val;
7748
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007749 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7750
7751 /* 1: Program defaults and thresholds for RPS*/
Ville Syrjälä3cbdb482015-01-19 13:50:49 +02007752 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Deepak S2b6b3a02014-05-27 15:59:30 +05307753 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7754 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7755 I915_WRITE(GEN6_RP_UP_EI, 66000);
7756 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7757
7758 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7759
Sagar Arun Kambled46b00d2017-10-10 22:30:03 +01007760 /* 2: Enable RPS */
Deepak S2b6b3a02014-05-27 15:59:30 +05307761 I915_WRITE(GEN6_RP_CONTROL,
7762 GEN6_RP_MEDIA_HW_NORMAL_MODE |
Ville Syrjäläeb973a52015-01-21 19:37:59 +02007763 GEN6_RP_MEDIA_IS_GFX |
Deepak S2b6b3a02014-05-27 15:59:30 +05307764 GEN6_RP_ENABLE |
7765 GEN6_RP_UP_BUSY_AVG |
7766 GEN6_RP_DOWN_IDLE_AVG);
7767
Deepak S3ef62342015-04-29 08:36:24 +05307768 /* Setting Fixed Bias */
7769 val = VLV_OVERRIDE_EN |
7770 VLV_SOC_TDP_EN |
7771 CHV_BIAS_CPU_50_SOC_50;
7772 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7773
Deepak S2b6b3a02014-05-27 15:59:30 +05307774 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
7775
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007776 /* RPS code assumes GPLL is used */
7777 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7778
Jani Nikula742f4912015-09-03 11:16:09 +03007779 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Deepak S2b6b3a02014-05-27 15:59:30 +05307780 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7781
Chris Wilson3a45b052016-07-13 09:10:32 +01007782 reset_rps(dev_priv, valleyview_set_rps);
Deepak S2b6b3a02014-05-27 15:59:30 +05307783
Mika Kuoppala59bad942015-01-16 11:34:40 +02007784 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Deepak S38807742014-05-23 21:00:15 +05307785}
7786
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007787static void valleyview_enable_rc6(struct drm_i915_private *dev_priv)
Jesse Barnes0a073b82013-04-17 15:54:58 -07007788{
Tvrtko Ursuline2f80392016-03-16 11:00:36 +00007789 struct intel_engine_cs *engine;
Akash Goel3b3f1652016-10-13 22:44:48 +05307790 enum intel_engine_id id;
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007791 u32 gtfifodbg;
Jesse Barnes0a073b82013-04-17 15:54:58 -07007792
Imre Deakae484342014-03-31 15:10:44 +03007793 valleyview_check_pctx(dev_priv);
7794
Ville Syrjälä297b32e2016-04-13 21:09:30 +03007795 gtfifodbg = I915_READ(GTFIFODBG);
7796 if (gtfifodbg) {
Jesse Barnesf7d85c12013-09-27 10:40:54 -07007797 DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n",
7798 gtfifodbg);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007799 I915_WRITE(GTFIFODBG, gtfifodbg);
7800 }
7801
Mika Kuoppala59bad942015-01-16 11:34:40 +02007802 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007803
Ville Syrjälä160614a2015-01-19 13:50:47 +02007804 /* Disable RC states. */
7805 I915_WRITE(GEN6_RC_CONTROL, 0);
7806
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007807 I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000);
7808 I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000);
7809 I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25);
7810
7811 for_each_engine(engine, dev_priv, id)
7812 I915_WRITE(RING_MAX_IDLE(engine->mmio_base), 10);
7813
7814 I915_WRITE(GEN6_RC6_THRESHOLD, 0x557);
7815
7816 /* Allows RC6 residency counter to work */
7817 I915_WRITE(VLV_COUNTER_CONTROL,
7818 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH |
7819 VLV_MEDIA_RC0_COUNT_EN |
7820 VLV_RENDER_RC0_COUNT_EN |
7821 VLV_MEDIA_RC6_COUNT_EN |
7822 VLV_RENDER_RC6_COUNT_EN));
7823
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00007824 I915_WRITE(GEN6_RC_CONTROL,
7825 GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL);
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007826
7827 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
7828}
7829
7830static void valleyview_enable_rps(struct drm_i915_private *dev_priv)
7831{
7832 u32 val;
7833
Sagar Arun Kamble0d6fc922017-10-10 22:30:02 +01007834 intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL);
7835
Ville Syrjäläcad725f2015-01-19 13:50:48 +02007836 I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007837 I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400);
7838 I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000);
7839 I915_WRITE(GEN6_RP_UP_EI, 66000);
7840 I915_WRITE(GEN6_RP_DOWN_EI, 350000);
7841
7842 I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10);
7843
7844 I915_WRITE(GEN6_RP_CONTROL,
7845 GEN6_RP_MEDIA_TURBO |
7846 GEN6_RP_MEDIA_HW_NORMAL_MODE |
7847 GEN6_RP_MEDIA_IS_GFX |
7848 GEN6_RP_ENABLE |
7849 GEN6_RP_UP_BUSY_AVG |
7850 GEN6_RP_DOWN_IDLE_CONT);
7851
Deepak S3ef62342015-04-29 08:36:24 +05307852 /* Setting Fixed Bias */
7853 val = VLV_OVERRIDE_EN |
7854 VLV_SOC_TDP_EN |
7855 VLV_BIAS_CPU_125_SOC_875;
7856 vlv_punit_write(dev_priv, VLV_TURBO_SOC_OVERRIDE, val);
7857
Jani Nikula64936252013-05-22 15:36:20 +03007858 val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007859
Ville Syrjälä8d40c3a2014-11-07 21:33:45 +02007860 /* RPS code assumes GPLL is used */
7861 WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n");
7862
Jani Nikula742f4912015-09-03 11:16:09 +03007863 DRM_DEBUG_DRIVER("GPLL enabled? %s\n", yesno(val & GPLLENABLE));
Jesse Barnes0a073b82013-04-17 15:54:58 -07007864 DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val);
7865
Chris Wilson3a45b052016-07-13 09:10:32 +01007866 reset_rps(dev_priv, valleyview_set_rps);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007867
Mika Kuoppala59bad942015-01-16 11:34:40 +02007868 intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL);
Jesse Barnes0a073b82013-04-17 15:54:58 -07007869}
7870
Eugeni Dodonovdde18882012-04-18 15:29:24 -03007871static unsigned long intel_pxfreq(u32 vidfreq)
7872{
7873 unsigned long freq;
7874 int div = (vidfreq & 0x3f0000) >> 16;
7875 int post = (vidfreq & 0x3000) >> 12;
7876 int pre = (vidfreq & 0x7);
7877
7878 if (!pre)
7879 return 0;
7880
7881 freq = ((div * 133333) / ((1<<post) * pre));
7882
7883 return freq;
7884}
7885
Daniel Vettereb48eb02012-04-26 23:28:12 +02007886static const struct cparams {
7887 u16 i;
7888 u16 t;
7889 u16 m;
7890 u16 c;
7891} cparams[] = {
7892 { 1, 1333, 301, 28664 },
7893 { 1, 1066, 294, 24460 },
7894 { 1, 800, 294, 25192 },
7895 { 0, 1333, 276, 27605 },
7896 { 0, 1066, 276, 27605 },
7897 { 0, 800, 231, 23784 },
7898};
7899
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007900static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007901{
7902 u64 total_count, diff, ret;
7903 u32 count1, count2, count3, m = 0, c = 0;
7904 unsigned long now = jiffies_to_msecs(jiffies), diff1;
7905 int i;
7906
Chris Wilson67520412017-03-02 13:28:01 +00007907 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02007908
Daniel Vetter20e4d402012-08-08 23:35:39 +02007909 diff1 = now - dev_priv->ips.last_time1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007910
7911 /* Prevent division-by-zero if we are asking too fast.
7912 * Also, we don't get interesting results if we are polling
7913 * faster than once in 10ms, so just return the saved value
7914 * in such cases.
7915 */
7916 if (diff1 <= 10)
Daniel Vetter20e4d402012-08-08 23:35:39 +02007917 return dev_priv->ips.chipset_power;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007918
7919 count1 = I915_READ(DMIEC);
7920 count2 = I915_READ(DDREC);
7921 count3 = I915_READ(CSIEC);
7922
7923 total_count = count1 + count2 + count3;
7924
7925 /* FIXME: handle per-counter overflow */
Daniel Vetter20e4d402012-08-08 23:35:39 +02007926 if (total_count < dev_priv->ips.last_count1) {
7927 diff = ~0UL - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007928 diff += total_count;
7929 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007930 diff = total_count - dev_priv->ips.last_count1;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007931 }
7932
7933 for (i = 0; i < ARRAY_SIZE(cparams); i++) {
Daniel Vetter20e4d402012-08-08 23:35:39 +02007934 if (cparams[i].i == dev_priv->ips.c_m &&
7935 cparams[i].t == dev_priv->ips.r_t) {
Daniel Vettereb48eb02012-04-26 23:28:12 +02007936 m = cparams[i].m;
7937 c = cparams[i].c;
7938 break;
7939 }
7940 }
7941
7942 diff = div_u64(diff, diff1);
7943 ret = ((m * diff) + c);
7944 ret = div_u64(ret, 10);
7945
Daniel Vetter20e4d402012-08-08 23:35:39 +02007946 dev_priv->ips.last_count1 = total_count;
7947 dev_priv->ips.last_time1 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007948
Daniel Vetter20e4d402012-08-08 23:35:39 +02007949 dev_priv->ips.chipset_power = ret;
Daniel Vettereb48eb02012-04-26 23:28:12 +02007950
7951 return ret;
7952}
7953
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007954unsigned long i915_chipset_val(struct drm_i915_private *dev_priv)
7955{
7956 unsigned long val;
7957
Tvrtko Ursulin0f550a22018-02-09 21:58:47 +00007958 if (!IS_GEN5(dev_priv))
Chris Wilsonf531dcb22012-09-25 10:16:12 +01007959 return 0;
7960
7961 spin_lock_irq(&mchdev_lock);
7962
7963 val = __i915_chipset_val(dev_priv);
7964
7965 spin_unlock_irq(&mchdev_lock);
7966
7967 return val;
7968}
7969
Daniel Vettereb48eb02012-04-26 23:28:12 +02007970unsigned long i915_mch_val(struct drm_i915_private *dev_priv)
7971{
7972 unsigned long m, x, b;
7973 u32 tsfs;
7974
7975 tsfs = I915_READ(TSFS);
7976
7977 m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT);
7978 x = I915_READ8(TR1);
7979
7980 b = tsfs & TSFS_INTR_MASK;
7981
7982 return ((m * x) / 127) - b;
7983}
7984
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007985static int _pxvid_to_vd(u8 pxvid)
7986{
7987 if (pxvid == 0)
7988 return 0;
7989
7990 if (pxvid >= 8 && pxvid < 31)
7991 pxvid = 31;
7992
7993 return (pxvid + 2) * 125;
7994}
7995
7996static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid)
Daniel Vettereb48eb02012-04-26 23:28:12 +02007997{
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02007998 const int vd = _pxvid_to_vd(pxvid);
7999 const int vm = vd - 1125;
8000
Chris Wilsondc979972016-05-10 14:10:04 +01008001 if (INTEL_INFO(dev_priv)->is_mobile)
Mika Kuoppalad972d6e2014-12-01 18:01:05 +02008002 return vm > 0 ? vm : 0;
8003
8004 return vd;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008005}
8006
Daniel Vetter02d71952012-08-09 16:44:54 +02008007static void __i915_update_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02008008{
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00008009 u64 now, diff, diffms;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008010 u32 count;
8011
Chris Wilson67520412017-03-02 13:28:01 +00008012 lockdep_assert_held(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008013
Thomas Gleixner5ed0bdf2014-07-16 21:05:06 +00008014 now = ktime_get_raw_ns();
8015 diffms = now - dev_priv->ips.last_time2;
8016 do_div(diffms, NSEC_PER_MSEC);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008017
8018 /* Don't divide by 0 */
Daniel Vettereb48eb02012-04-26 23:28:12 +02008019 if (!diffms)
8020 return;
8021
8022 count = I915_READ(GFXEC);
8023
Daniel Vetter20e4d402012-08-08 23:35:39 +02008024 if (count < dev_priv->ips.last_count2) {
8025 diff = ~0UL - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008026 diff += count;
8027 } else {
Daniel Vetter20e4d402012-08-08 23:35:39 +02008028 diff = count - dev_priv->ips.last_count2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008029 }
8030
Daniel Vetter20e4d402012-08-08 23:35:39 +02008031 dev_priv->ips.last_count2 = count;
8032 dev_priv->ips.last_time2 = now;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008033
8034 /* More magic constants... */
8035 diff = diff * 1181;
8036 diff = div_u64(diff, diffms * 10);
Daniel Vetter20e4d402012-08-08 23:35:39 +02008037 dev_priv->ips.gfx_power = diff;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008038}
8039
Daniel Vetter02d71952012-08-09 16:44:54 +02008040void i915_update_gfx_val(struct drm_i915_private *dev_priv)
8041{
Tvrtko Ursulin0f550a22018-02-09 21:58:47 +00008042 if (!IS_GEN5(dev_priv))
Daniel Vetter02d71952012-08-09 16:44:54 +02008043 return;
8044
Daniel Vetter92703882012-08-09 16:46:01 +02008045 spin_lock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02008046
8047 __i915_update_gfx_val(dev_priv);
8048
Daniel Vetter92703882012-08-09 16:46:01 +02008049 spin_unlock_irq(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02008050}
8051
Chris Wilsonf531dcb22012-09-25 10:16:12 +01008052static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv)
Daniel Vettereb48eb02012-04-26 23:28:12 +02008053{
8054 unsigned long t, corr, state1, corr2, state2;
8055 u32 pxvid, ext_v;
8056
Chris Wilson67520412017-03-02 13:28:01 +00008057 lockdep_assert_held(&mchdev_lock);
Daniel Vetter02d71952012-08-09 16:44:54 +02008058
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008059 pxvid = I915_READ(PXVFREQ(dev_priv->gt_pm.rps.cur_freq));
Daniel Vettereb48eb02012-04-26 23:28:12 +02008060 pxvid = (pxvid >> 24) & 0x7f;
8061 ext_v = pvid_to_extvid(dev_priv, pxvid);
8062
8063 state1 = ext_v;
8064
8065 t = i915_mch_val(dev_priv);
8066
8067 /* Revel in the empirically derived constants */
8068
8069 /* Correction factor in 1/100000 units */
8070 if (t > 80)
8071 corr = ((t * 2349) + 135940);
8072 else if (t >= 50)
8073 corr = ((t * 964) + 29317);
8074 else /* < 50 */
8075 corr = ((t * 301) + 1004);
8076
8077 corr = corr * ((150142 * state1) / 10000 - 78642);
8078 corr /= 100000;
Daniel Vetter20e4d402012-08-08 23:35:39 +02008079 corr2 = (corr * dev_priv->ips.corr);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008080
8081 state2 = (corr2 * state1) / 10000;
8082 state2 /= 100; /* convert to mW */
8083
Daniel Vetter02d71952012-08-09 16:44:54 +02008084 __i915_update_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008085
Daniel Vetter20e4d402012-08-08 23:35:39 +02008086 return dev_priv->ips.gfx_power + state2;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008087}
8088
Chris Wilsonf531dcb22012-09-25 10:16:12 +01008089unsigned long i915_gfx_val(struct drm_i915_private *dev_priv)
8090{
8091 unsigned long val;
8092
Tvrtko Ursulin0f550a22018-02-09 21:58:47 +00008093 if (!IS_GEN5(dev_priv))
Chris Wilsonf531dcb22012-09-25 10:16:12 +01008094 return 0;
8095
8096 spin_lock_irq(&mchdev_lock);
8097
8098 val = __i915_gfx_val(dev_priv);
8099
8100 spin_unlock_irq(&mchdev_lock);
8101
8102 return val;
8103}
8104
Daniel Vettereb48eb02012-04-26 23:28:12 +02008105/**
8106 * i915_read_mch_val - return value for IPS use
8107 *
8108 * Calculate and return a value for the IPS driver to use when deciding whether
8109 * we have thermal and power headroom to increase CPU or GPU power budget.
8110 */
8111unsigned long i915_read_mch_val(void)
8112{
8113 struct drm_i915_private *dev_priv;
8114 unsigned long chipset_val, graphics_val, ret = 0;
8115
Daniel Vetter92703882012-08-09 16:46:01 +02008116 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008117 if (!i915_mch_dev)
8118 goto out_unlock;
8119 dev_priv = i915_mch_dev;
8120
Chris Wilsonf531dcb22012-09-25 10:16:12 +01008121 chipset_val = __i915_chipset_val(dev_priv);
8122 graphics_val = __i915_gfx_val(dev_priv);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008123
8124 ret = chipset_val + graphics_val;
8125
8126out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02008127 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008128
8129 return ret;
8130}
8131EXPORT_SYMBOL_GPL(i915_read_mch_val);
8132
8133/**
8134 * i915_gpu_raise - raise GPU frequency limit
8135 *
8136 * Raise the limit; IPS indicates we have thermal headroom.
8137 */
8138bool i915_gpu_raise(void)
8139{
8140 struct drm_i915_private *dev_priv;
8141 bool ret = true;
8142
Daniel Vetter92703882012-08-09 16:46:01 +02008143 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008144 if (!i915_mch_dev) {
8145 ret = false;
8146 goto out_unlock;
8147 }
8148 dev_priv = i915_mch_dev;
8149
Daniel Vetter20e4d402012-08-08 23:35:39 +02008150 if (dev_priv->ips.max_delay > dev_priv->ips.fmax)
8151 dev_priv->ips.max_delay--;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008152
8153out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02008154 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008155
8156 return ret;
8157}
8158EXPORT_SYMBOL_GPL(i915_gpu_raise);
8159
8160/**
8161 * i915_gpu_lower - lower GPU frequency limit
8162 *
8163 * IPS indicates we're close to a thermal limit, so throttle back the GPU
8164 * frequency maximum.
8165 */
8166bool i915_gpu_lower(void)
8167{
8168 struct drm_i915_private *dev_priv;
8169 bool ret = true;
8170
Daniel Vetter92703882012-08-09 16:46:01 +02008171 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008172 if (!i915_mch_dev) {
8173 ret = false;
8174 goto out_unlock;
8175 }
8176 dev_priv = i915_mch_dev;
8177
Daniel Vetter20e4d402012-08-08 23:35:39 +02008178 if (dev_priv->ips.max_delay < dev_priv->ips.min_delay)
8179 dev_priv->ips.max_delay++;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008180
8181out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02008182 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008183
8184 return ret;
8185}
8186EXPORT_SYMBOL_GPL(i915_gpu_lower);
8187
8188/**
8189 * i915_gpu_busy - indicate GPU business to IPS
8190 *
8191 * Tell the IPS driver whether or not the GPU is busy.
8192 */
8193bool i915_gpu_busy(void)
8194{
Daniel Vettereb48eb02012-04-26 23:28:12 +02008195 bool ret = false;
8196
Daniel Vetter92703882012-08-09 16:46:01 +02008197 spin_lock_irq(&mchdev_lock);
Chris Wilsondcff85c2016-08-05 10:14:11 +01008198 if (i915_mch_dev)
8199 ret = i915_mch_dev->gt.awake;
Daniel Vetter92703882012-08-09 16:46:01 +02008200 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008201
8202 return ret;
8203}
8204EXPORT_SYMBOL_GPL(i915_gpu_busy);
8205
8206/**
8207 * i915_gpu_turbo_disable - disable graphics turbo
8208 *
8209 * Disable graphics turbo by resetting the max frequency and setting the
8210 * current frequency to the default.
8211 */
8212bool i915_gpu_turbo_disable(void)
8213{
8214 struct drm_i915_private *dev_priv;
8215 bool ret = true;
8216
Daniel Vetter92703882012-08-09 16:46:01 +02008217 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008218 if (!i915_mch_dev) {
8219 ret = false;
8220 goto out_unlock;
8221 }
8222 dev_priv = i915_mch_dev;
8223
Daniel Vetter20e4d402012-08-08 23:35:39 +02008224 dev_priv->ips.max_delay = dev_priv->ips.fstart;
Daniel Vettereb48eb02012-04-26 23:28:12 +02008225
Tvrtko Ursulin91d14252016-05-06 14:48:28 +01008226 if (!ironlake_set_drps(dev_priv, dev_priv->ips.fstart))
Daniel Vettereb48eb02012-04-26 23:28:12 +02008227 ret = false;
8228
8229out_unlock:
Daniel Vetter92703882012-08-09 16:46:01 +02008230 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008231
8232 return ret;
8233}
8234EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable);
8235
8236/**
8237 * Tells the intel_ips driver that the i915 driver is now loaded, if
8238 * IPS got loaded first.
8239 *
8240 * This awkward dance is so that neither module has to depend on the
8241 * other in order for IPS to do the appropriate communication of
8242 * GPU turbo limits to i915.
8243 */
8244static void
8245ips_ping_for_i915_load(void)
8246{
8247 void (*link)(void);
8248
8249 link = symbol_get(ips_link_to_i915_driver);
8250 if (link) {
8251 link();
8252 symbol_put(ips_link_to_i915_driver);
8253 }
8254}
8255
8256void intel_gpu_ips_init(struct drm_i915_private *dev_priv)
8257{
Daniel Vetter02d71952012-08-09 16:44:54 +02008258 /* We only register the i915 ips part with intel-ips once everything is
8259 * set up, to avoid intel-ips sneaking in and reading bogus values. */
Daniel Vetter92703882012-08-09 16:46:01 +02008260 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008261 i915_mch_dev = dev_priv;
Daniel Vetter92703882012-08-09 16:46:01 +02008262 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008263
8264 ips_ping_for_i915_load();
8265}
8266
8267void intel_gpu_ips_teardown(void)
8268{
Daniel Vetter92703882012-08-09 16:46:01 +02008269 spin_lock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008270 i915_mch_dev = NULL;
Daniel Vetter92703882012-08-09 16:46:01 +02008271 spin_unlock_irq(&mchdev_lock);
Daniel Vettereb48eb02012-04-26 23:28:12 +02008272}
Deepak S76c3552f2014-01-30 23:08:16 +05308273
Chris Wilsondc979972016-05-10 14:10:04 +01008274static void intel_init_emon(struct drm_i915_private *dev_priv)
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008275{
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008276 u32 lcfuse;
8277 u8 pxw[16];
8278 int i;
8279
8280 /* Disable to program */
8281 I915_WRITE(ECR, 0);
8282 POSTING_READ(ECR);
8283
8284 /* Program energy weights for various events */
8285 I915_WRITE(SDEW, 0x15040d00);
8286 I915_WRITE(CSIEW0, 0x007f0000);
8287 I915_WRITE(CSIEW1, 0x1e220004);
8288 I915_WRITE(CSIEW2, 0x04000004);
8289
8290 for (i = 0; i < 5; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03008291 I915_WRITE(PEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008292 for (i = 0; i < 3; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03008293 I915_WRITE(DEW(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008294
8295 /* Program P-state weights to account for frequency power adjustment */
8296 for (i = 0; i < 16; i++) {
Ville Syrjälä616847e2015-09-18 20:03:19 +03008297 u32 pxvidfreq = I915_READ(PXVFREQ(i));
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008298 unsigned long freq = intel_pxfreq(pxvidfreq);
8299 unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >>
8300 PXVFREQ_PX_SHIFT;
8301 unsigned long val;
8302
8303 val = vid * vid;
8304 val *= (freq / 1000);
8305 val *= 255;
8306 val /= (127*127*900);
8307 if (val > 0xff)
8308 DRM_ERROR("bad pxval: %ld\n", val);
8309 pxw[i] = val;
8310 }
8311 /* Render standby states get 0 weight */
8312 pxw[14] = 0;
8313 pxw[15] = 0;
8314
8315 for (i = 0; i < 4; i++) {
8316 u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) |
8317 (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]);
Ville Syrjälä616847e2015-09-18 20:03:19 +03008318 I915_WRITE(PXW(i), val);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008319 }
8320
8321 /* Adjust magic regs to magic values (more experimental results) */
8322 I915_WRITE(OGW0, 0);
8323 I915_WRITE(OGW1, 0);
8324 I915_WRITE(EG0, 0x00007f00);
8325 I915_WRITE(EG1, 0x0000000e);
8326 I915_WRITE(EG2, 0x000e0000);
8327 I915_WRITE(EG3, 0x68000300);
8328 I915_WRITE(EG4, 0x42000000);
8329 I915_WRITE(EG5, 0x00140031);
8330 I915_WRITE(EG6, 0);
8331 I915_WRITE(EG7, 0);
8332
8333 for (i = 0; i < 8; i++)
Ville Syrjälä616847e2015-09-18 20:03:19 +03008334 I915_WRITE(PXWL(i), 0);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008335
8336 /* Enable PMON + select events */
8337 I915_WRITE(ECR, 0x80000019);
8338
8339 lcfuse = I915_READ(LCFUSE02);
8340
Daniel Vetter20e4d402012-08-08 23:35:39 +02008341 dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK);
Eugeni Dodonovdde18882012-04-18 15:29:24 -03008342}
8343
Chris Wilsondc979972016-05-10 14:10:04 +01008344void intel_init_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03008345{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008346 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8347
Imre Deakb268c692015-12-15 20:10:31 +02008348 /*
8349 * RPM depends on RC6 to save restore the GT HW context, so make RC6 a
8350 * requirement.
8351 */
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00008352 if (!sanitize_rc6(dev_priv)) {
Imre Deakb268c692015-12-15 20:10:31 +02008353 DRM_INFO("RC6 disabled, disabling runtime PM support\n");
Chris Wilson08ea70a2018-08-12 23:36:31 +01008354 pm_runtime_get(&dev_priv->drm.pdev->dev);
Imre Deakb268c692015-12-15 20:10:31 +02008355 }
Imre Deake6069ca2014-04-18 16:01:02 +03008356
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008357 mutex_lock(&dev_priv->pcu_lock);
Chris Wilson773ea9a2016-07-13 09:10:33 +01008358
8359 /* Initialize RPS limits (for userspace) */
Chris Wilsondc979972016-05-10 14:10:04 +01008360 if (IS_CHERRYVIEW(dev_priv))
8361 cherryview_init_gt_powersave(dev_priv);
8362 else if (IS_VALLEYVIEW(dev_priv))
8363 valleyview_init_gt_powersave(dev_priv);
Chris Wilson2a13ae72016-08-02 11:15:27 +01008364 else if (INTEL_GEN(dev_priv) >= 6)
Chris Wilson773ea9a2016-07-13 09:10:33 +01008365 gen6_init_rps_frequencies(dev_priv);
8366
8367 /* Derive initial user preferences/limits from the hardware limits */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008368 rps->idle_freq = rps->min_freq;
8369 rps->cur_freq = rps->idle_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01008370
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008371 rps->max_freq_softlimit = rps->max_freq;
8372 rps->min_freq_softlimit = rps->min_freq;
Chris Wilson773ea9a2016-07-13 09:10:33 +01008373
8374 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008375 rps->min_freq_softlimit =
Chris Wilson773ea9a2016-07-13 09:10:33 +01008376 max_t(int,
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008377 rps->efficient_freq,
Chris Wilson773ea9a2016-07-13 09:10:33 +01008378 intel_freq_opcode(dev_priv, 450));
8379
Chris Wilson99ac9612016-07-13 09:10:34 +01008380 /* After setting max-softlimit, find the overclock max freq */
8381 if (IS_GEN6(dev_priv) ||
8382 IS_IVYBRIDGE(dev_priv) || IS_HASWELL(dev_priv)) {
8383 u32 params = 0;
8384
8385 sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &params);
8386 if (params & BIT(31)) { /* OC supported */
8387 DRM_DEBUG_DRIVER("Overclocking supported, max: %dMHz, overclock: %dMHz\n",
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008388 (rps->max_freq & 0xff) * 50,
Chris Wilson99ac9612016-07-13 09:10:34 +01008389 (params & 0xff) * 50);
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008390 rps->max_freq = params & 0xff;
Chris Wilson99ac9612016-07-13 09:10:34 +01008391 }
8392 }
8393
Chris Wilson29ecd78d2016-07-13 09:10:35 +01008394 /* Finally allow us to boost to max by default */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01008395 rps->boost_freq = rps->max_freq;
Chris Wilson29ecd78d2016-07-13 09:10:35 +01008396
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008397 mutex_unlock(&dev_priv->pcu_lock);
Imre Deakae484342014-03-31 15:10:44 +03008398}
8399
Chris Wilsondc979972016-05-10 14:10:04 +01008400void intel_cleanup_gt_powersave(struct drm_i915_private *dev_priv)
Imre Deakae484342014-03-31 15:10:44 +03008401{
Ville Syrjälä8dac1e12016-08-02 14:07:33 +03008402 if (IS_VALLEYVIEW(dev_priv))
Chris Wilsondc979972016-05-10 14:10:04 +01008403 valleyview_cleanup_gt_powersave(dev_priv);
Imre Deakb268c692015-12-15 20:10:31 +02008404
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00008405 if (!HAS_RC6(dev_priv))
Chris Wilson08ea70a2018-08-12 23:36:31 +01008406 pm_runtime_put(&dev_priv->drm.pdev->dev);
Imre Deakae484342014-03-31 15:10:44 +03008407}
8408
Chris Wilson54b4f682016-07-21 21:16:19 +01008409/**
8410 * intel_suspend_gt_powersave - suspend PM work and helper threads
8411 * @dev_priv: i915 device
8412 *
8413 * We don't want to disable RC6 or other features here, we just want
8414 * to make sure any work we've queued has finished and won't bother
8415 * us while we're suspended.
8416 */
8417void intel_suspend_gt_powersave(struct drm_i915_private *dev_priv)
8418{
8419 if (INTEL_GEN(dev_priv) < 6)
8420 return;
8421
Chris Wilson54b4f682016-07-21 21:16:19 +01008422 /* gen6_rps_idle() will be called later to disable interrupts */
8423}
8424
Chris Wilsonb7137e02016-07-13 09:10:37 +01008425void intel_sanitize_gt_powersave(struct drm_i915_private *dev_priv)
8426{
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008427 dev_priv->gt_pm.rps.enabled = true; /* force RPS disabling */
8428 dev_priv->gt_pm.rc6.enabled = true; /* force RC6 disabling */
Chris Wilsonb7137e02016-07-13 09:10:37 +01008429 intel_disable_gt_powersave(dev_priv);
Chris Wilson54b4f682016-07-21 21:16:19 +01008430
Oscar Mateod02b98b2018-04-05 17:00:50 +03008431 if (INTEL_GEN(dev_priv) >= 11)
8432 gen11_reset_rps_interrupts(dev_priv);
Chris Wilson61e1e372018-08-12 23:36:30 +01008433 else if (INTEL_GEN(dev_priv) >= 6)
Oscar Mateod02b98b2018-04-05 17:00:50 +03008434 gen6_reset_rps_interrupts(dev_priv);
Jesse Barnes156c7ca2014-06-12 08:35:45 -07008435}
8436
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008437static inline void intel_disable_llc_pstate(struct drm_i915_private *i915)
8438{
8439 lockdep_assert_held(&i915->pcu_lock);
8440
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008441 if (!i915->gt_pm.llc_pstate.enabled)
8442 return;
8443
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008444 /* Currently there is no HW configuration to be done to disable. */
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008445
8446 i915->gt_pm.llc_pstate.enabled = false;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008447}
8448
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008449static void intel_disable_rc6(struct drm_i915_private *dev_priv)
8450{
8451 lockdep_assert_held(&dev_priv->pcu_lock);
8452
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008453 if (!dev_priv->gt_pm.rc6.enabled)
8454 return;
8455
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008456 if (INTEL_GEN(dev_priv) >= 9)
8457 gen9_disable_rc6(dev_priv);
8458 else if (IS_CHERRYVIEW(dev_priv))
8459 cherryview_disable_rc6(dev_priv);
8460 else if (IS_VALLEYVIEW(dev_priv))
8461 valleyview_disable_rc6(dev_priv);
8462 else if (INTEL_GEN(dev_priv) >= 6)
8463 gen6_disable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008464
8465 dev_priv->gt_pm.rc6.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008466}
8467
8468static void intel_disable_rps(struct drm_i915_private *dev_priv)
8469{
8470 lockdep_assert_held(&dev_priv->pcu_lock);
8471
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008472 if (!dev_priv->gt_pm.rps.enabled)
8473 return;
8474
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008475 if (INTEL_GEN(dev_priv) >= 9)
8476 gen9_disable_rps(dev_priv);
8477 else if (IS_CHERRYVIEW(dev_priv))
8478 cherryview_disable_rps(dev_priv);
8479 else if (IS_VALLEYVIEW(dev_priv))
8480 valleyview_disable_rps(dev_priv);
8481 else if (INTEL_GEN(dev_priv) >= 6)
8482 gen6_disable_rps(dev_priv);
8483 else if (IS_IRONLAKE_M(dev_priv))
8484 ironlake_disable_drps(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008485
8486 dev_priv->gt_pm.rps.enabled = false;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008487}
8488
Chris Wilsondc979972016-05-10 14:10:04 +01008489void intel_disable_gt_powersave(struct drm_i915_private *dev_priv)
Daniel Vetter8090c6b2012-06-24 16:42:32 +02008490{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008491 mutex_lock(&dev_priv->pcu_lock);
Jesse Barnes0a073b82013-04-17 15:54:58 -07008492
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008493 intel_disable_rc6(dev_priv);
8494 intel_disable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008495 if (HAS_LLC(dev_priv))
8496 intel_disable_llc_pstate(dev_priv);
8497
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008498 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008499}
8500
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008501static inline void intel_enable_llc_pstate(struct drm_i915_private *i915)
8502{
8503 lockdep_assert_held(&i915->pcu_lock);
8504
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008505 if (i915->gt_pm.llc_pstate.enabled)
8506 return;
8507
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008508 gen6_update_ring_freq(i915);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008509
8510 i915->gt_pm.llc_pstate.enabled = true;
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008511}
8512
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008513static void intel_enable_rc6(struct drm_i915_private *dev_priv)
8514{
8515 lockdep_assert_held(&dev_priv->pcu_lock);
8516
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008517 if (dev_priv->gt_pm.rc6.enabled)
8518 return;
8519
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008520 if (IS_CHERRYVIEW(dev_priv))
8521 cherryview_enable_rc6(dev_priv);
8522 else if (IS_VALLEYVIEW(dev_priv))
8523 valleyview_enable_rc6(dev_priv);
8524 else if (INTEL_GEN(dev_priv) >= 9)
8525 gen9_enable_rc6(dev_priv);
8526 else if (IS_BROADWELL(dev_priv))
8527 gen8_enable_rc6(dev_priv);
8528 else if (INTEL_GEN(dev_priv) >= 6)
8529 gen6_enable_rc6(dev_priv);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008530
8531 dev_priv->gt_pm.rc6.enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008532}
8533
8534static void intel_enable_rps(struct drm_i915_private *dev_priv)
8535{
8536 struct intel_rps *rps = &dev_priv->gt_pm.rps;
8537
8538 lockdep_assert_held(&dev_priv->pcu_lock);
8539
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008540 if (rps->enabled)
8541 return;
8542
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008543 if (IS_CHERRYVIEW(dev_priv)) {
8544 cherryview_enable_rps(dev_priv);
8545 } else if (IS_VALLEYVIEW(dev_priv)) {
8546 valleyview_enable_rps(dev_priv);
8547 } else if (INTEL_GEN(dev_priv) >= 9) {
8548 gen9_enable_rps(dev_priv);
8549 } else if (IS_BROADWELL(dev_priv)) {
8550 gen8_enable_rps(dev_priv);
8551 } else if (INTEL_GEN(dev_priv) >= 6) {
8552 gen6_enable_rps(dev_priv);
8553 } else if (IS_IRONLAKE_M(dev_priv)) {
8554 ironlake_enable_drps(dev_priv);
8555 intel_init_emon(dev_priv);
8556 }
8557
8558 WARN_ON(rps->max_freq < rps->min_freq);
8559 WARN_ON(rps->idle_freq > rps->max_freq);
8560
8561 WARN_ON(rps->efficient_freq < rps->min_freq);
8562 WARN_ON(rps->efficient_freq > rps->max_freq);
Sagar Arun Kamble37d933f2017-10-10 22:30:10 +01008563
8564 rps->enabled = true;
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008565}
8566
Chris Wilsonb7137e02016-07-13 09:10:37 +01008567void intel_enable_gt_powersave(struct drm_i915_private *dev_priv)
8568{
Chris Wilsonb7137e02016-07-13 09:10:37 +01008569 /* Powersaving is controlled by the host when inside a VM */
8570 if (intel_vgpu_active(dev_priv))
8571 return;
8572
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008573 mutex_lock(&dev_priv->pcu_lock);
Imre Deak3cc134e2014-11-19 15:30:03 +02008574
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00008575 if (HAS_RC6(dev_priv))
8576 intel_enable_rc6(dev_priv);
Sagar Arun Kamblefc774262017-10-10 22:30:09 +01008577 intel_enable_rps(dev_priv);
Sagar Arun Kamble0870a2a2017-10-10 22:30:08 +01008578 if (HAS_LLC(dev_priv))
8579 intel_enable_llc_pstate(dev_priv);
8580
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01008581 mutex_unlock(&dev_priv->pcu_lock);
Chris Wilsonb7137e02016-07-13 09:10:37 +01008582}
Imre Deakc6df39b2014-04-14 20:24:29 +03008583
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008584static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008585{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008586 /*
8587 * On Ibex Peak and Cougar Point, we need to disable clock
8588 * gating for the panel power sequencer or it will fail to
8589 * start up when no ports are active.
8590 */
8591 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
8592}
8593
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008594static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008595{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008596 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008597
Damien Lespiau055e3932014-08-18 13:49:10 +01008598 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008599 I915_WRITE(DSPCNTR(pipe),
8600 I915_READ(DSPCNTR(pipe)) |
8601 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03008602
8603 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
8604 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03008605 }
8606}
8607
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008608static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008609{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008610 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008611
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01008612 /*
8613 * Required for FBC
8614 * WaFbcDisableDpfcClockGating:ilk
8615 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008616 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
8617 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
8618 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008619
8620 I915_WRITE(PCH_3DCGDIS0,
8621 MARIUNIT_CLOCK_GATE_DISABLE |
8622 SVSMUNIT_CLOCK_GATE_DISABLE);
8623 I915_WRITE(PCH_3DCGDIS1,
8624 VFMUNIT_CLOCK_GATE_DISABLE);
8625
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008626 /*
8627 * According to the spec the following bits should be set in
8628 * order to enable memory self-refresh
8629 * The bit 22/21 of 0x42004
8630 * The bit 5 of 0x42020
8631 * The bit 15 of 0x45000
8632 */
8633 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8634 (I915_READ(ILK_DISPLAY_CHICKEN2) |
8635 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008636 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008637 I915_WRITE(DISP_ARB_CTL,
8638 (I915_READ(DISP_ARB_CTL) |
8639 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02008640
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008641 /*
8642 * Based on the document from hardware guys the following bits
8643 * should be set unconditionally in order to enable FBC.
8644 * The bit 22 of 0x42000
8645 * The bit 22 of 0x42004
8646 * The bit 7,8,9 of 0x42020.
8647 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01008648 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01008649 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008650 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8651 I915_READ(ILK_DISPLAY_CHICKEN1) |
8652 ILK_FBCQ_DIS);
8653 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8654 I915_READ(ILK_DISPLAY_CHICKEN2) |
8655 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008656 }
8657
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01008658 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
8659
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008660 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8661 I915_READ(ILK_DISPLAY_CHICKEN2) |
8662 ILK_ELPIN_409_SELECT);
8663 I915_WRITE(_3D_CHICKEN2,
8664 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
8665 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02008666
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008667 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02008668 I915_WRITE(CACHE_MODE_0,
8669 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01008670
Akash Goel4e046322014-04-04 17:14:38 +05308671 /* WaDisable_RenderCache_OperationalFlush:ilk */
8672 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8673
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008674 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03008675
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008676 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008677}
8678
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008679static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01008680{
Daniel Vetter3107bd42012-10-31 22:52:31 +01008681 int pipe;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008682 uint32_t val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01008683
8684 /*
8685 * On Ibex Peak and Cougar Point, we need to disable clock
8686 * gating for the panel power sequencer or it will fail to
8687 * start up when no ports are active.
8688 */
Jesse Barnescd664072013-10-02 10:34:19 -07008689 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
8690 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
8691 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01008692 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
8693 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01008694 /* The below fixes the weird display corruption, a few pixels shifted
8695 * downward, on (only) LVDS of some HP laptops with IVY.
8696 */
Damien Lespiau055e3932014-08-18 13:49:10 +01008697 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008698 val = I915_READ(TRANS_CHICKEN2(pipe));
8699 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
8700 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03008701 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008702 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03008703 val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK;
8704 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
8705 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03008706 I915_WRITE(TRANS_CHICKEN2(pipe), val);
8707 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01008708 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01008709 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01008710 I915_WRITE(TRANS_CHICKEN1(pipe),
8711 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
8712 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008713}
8714
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008715static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008716{
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008717 uint32_t tmp;
8718
8719 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02008720 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
8721 DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
8722 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008723}
8724
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008725static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008726{
Damien Lespiau231e54f2012-10-19 17:55:41 +01008727 uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008728
Damien Lespiau231e54f2012-10-19 17:55:41 +01008729 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008730
8731 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8732 I915_READ(ILK_DISPLAY_CHICKEN2) |
8733 ILK_ELPIN_409_SELECT);
8734
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01008735 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01008736 I915_WRITE(_3D_CHICKEN,
8737 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
8738
Akash Goel4e046322014-04-04 17:14:38 +05308739 /* WaDisable_RenderCache_OperationalFlush:snb */
8740 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
8741
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008742 /*
8743 * BSpec recoomends 8x4 when MSAA is used,
8744 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02008745 *
8746 * Note that PS/WM thread counts depend on the WIZ hashing
8747 * disable bit, which we don't touch here, but it's good
8748 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008749 */
8750 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00008751 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02008752
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008753 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02008754 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008755
8756 I915_WRITE(GEN6_UCGCTL1,
8757 I915_READ(GEN6_UCGCTL1) |
8758 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
8759 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
8760
8761 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
8762 * gating disable must be set. Failure to set it results in
8763 * flickering pixels due to Z write ordering failures after
8764 * some amount of runtime in the Mesa "fire" demo, and Unigine
8765 * Sanctuary and Tropics, and apparently anything else with
8766 * alpha test or pixel discard.
8767 *
8768 * According to the spec, bit 11 (RCCUNIT) must also be set,
8769 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07008770 *
Ville Syrjäläef593182014-01-22 21:32:47 +02008771 * WaDisableRCCUnitClockGating:snb
8772 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008773 */
8774 I915_WRITE(GEN6_UCGCTL2,
8775 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
8776 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
8777
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02008778 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02008779 I915_WRITE(_3D_CHICKEN3,
8780 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008781
8782 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02008783 * Bspec says:
8784 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
8785 * 3DSTATE_SF number of SF output attributes is more than 16."
8786 */
8787 I915_WRITE(_3D_CHICKEN3,
8788 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
8789
8790 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008791 * According to the spec the following bits should be
8792 * set in order to enable memory self-refresh and fbc:
8793 * The bit21 and bit22 of 0x42000
8794 * The bit21 and bit22 of 0x42004
8795 * The bit5 and bit7 of 0x42020
8796 * The bit14 of 0x70180
8797 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01008798 *
8799 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008800 */
8801 I915_WRITE(ILK_DISPLAY_CHICKEN1,
8802 I915_READ(ILK_DISPLAY_CHICKEN1) |
8803 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
8804 I915_WRITE(ILK_DISPLAY_CHICKEN2,
8805 I915_READ(ILK_DISPLAY_CHICKEN2) |
8806 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01008807 I915_WRITE(ILK_DSPCLK_GATE_D,
8808 I915_READ(ILK_DSPCLK_GATE_D) |
8809 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
8810 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008811
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008812 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07008813
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008814 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01008815
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008816 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008817}
8818
8819static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
8820{
8821 uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE);
8822
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008823 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02008824 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02008825 *
8826 * This actually overrides the dispatch
8827 * mode for all thread types.
8828 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03008829 reg &= ~GEN7_FF_SCHED_MASK;
8830 reg |= GEN7_FF_TS_SCHED_HW;
8831 reg |= GEN7_FF_VS_SCHED_HW;
8832 reg |= GEN7_FF_DS_SCHED_HW;
8833
8834 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
8835}
8836
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008837static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008838{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008839 /*
8840 * TODO: this bit should only be enabled when really needed, then
8841 * disabled when not needed anymore in order to save power.
8842 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008843 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008844 I915_WRITE(SOUTH_DSPCLK_GATE_D,
8845 I915_READ(SOUTH_DSPCLK_GATE_D) |
8846 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008847
8848 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03008849 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
8850 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03008851 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02008852}
8853
Ville Syrjälä712bf362016-10-31 22:37:23 +02008854static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03008855{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01008856 if (HAS_PCH_LPT_LP(dev_priv)) {
Imre Deak7d708ee2013-04-17 14:04:50 +03008857 uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D);
8858
8859 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
8860 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
8861 }
8862}
8863
Imre Deak450174f2016-05-03 15:54:21 +03008864static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
8865 int general_prio_credits,
8866 int high_prio_credits)
8867{
8868 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07008869 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03008870
8871 /* WaTempDisableDOPClkGating:bdw */
8872 misccpctl = I915_READ(GEN7_MISCCPCTL);
8873 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
8874
Oscar Mateo930a7842017-10-17 13:25:45 -07008875 val = I915_READ(GEN8_L3SQCREG1);
8876 val &= ~L3_PRIO_CREDITS_MASK;
8877 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
8878 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
8879 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03008880
8881 /*
8882 * Wait at least 100 clocks before re-enabling clock gating.
8883 * See the definition of L3SQCREG1 in BSpec.
8884 */
8885 POSTING_READ(GEN8_L3SQCREG1);
8886 udelay(1);
8887 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
8888}
8889
Oscar Mateod65dc3e2018-05-08 14:29:24 -07008890static void icl_init_clock_gating(struct drm_i915_private *dev_priv)
8891{
8892 /* This is not an Wa. Enable to reduce Sampler power */
8893 I915_WRITE(GEN10_DFR_RATIO_EN_AND_CHICKEN,
8894 I915_READ(GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE);
Radhakrishna Sripada622b3f62018-10-30 01:45:01 -07008895
8896 /* WaEnable32PlaneMode:icl */
8897 I915_WRITE(GEN9_CSFE_CHICKEN1_RCS,
8898 _MASKED_BIT_ENABLE(GEN11_ENABLE_32_PLANE_MODE));
Oscar Mateod65dc3e2018-05-08 14:29:24 -07008899}
8900
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008901static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
8902{
8903 if (!HAS_PCH_CNP(dev_priv))
8904 return;
8905
Rodrigo Vivi470e7c62018-03-05 17:28:12 -08008906 /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07008907 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
8908 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008909}
8910
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008911static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008912{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07008913 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008914 cnp_init_clock_gating(dev_priv);
8915
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07008916 /* This is not an Wa. Enable for better image quality */
8917 I915_WRITE(_3D_CHICKEN3,
8918 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
8919
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008920 /* WaEnableChickenDCPR:cnl */
8921 I915_WRITE(GEN8_CHICKEN_DCPR_1,
8922 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
8923
8924 /* WaFbcWakeMemOn:cnl */
8925 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
8926 DISP_FBC_MEMORY_WAKE);
8927
Chris Wilson34991bd2017-11-11 10:03:36 +00008928 val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE);
8929 /* ReadHitWriteOnlyDisable:cnl */
8930 val |= RCCUNIT_CLKGATE_DIS;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008931 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
8932 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
Chris Wilson34991bd2017-11-11 10:03:36 +00008933 val |= SARBUNIT_CLKGATE_DIS;
8934 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val);
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08008935
Rodrigo Vivia4713c52018-03-07 14:09:12 -08008936 /* Wa_2201832410:cnl */
8937 val = I915_READ(SUBSLICE_UNIT_LEVEL_CLKGATE);
8938 val |= GWUNIT_CLKGATE_DIS;
8939 I915_WRITE(SUBSLICE_UNIT_LEVEL_CLKGATE, val);
8940
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08008941 /* WaDisableVFclkgate:cnl */
Rodrigo Vivi14941b62018-03-05 17:20:00 -08008942 /* WaVFUnitClockGatingDisable:cnl */
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08008943 val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE);
8944 val |= VFUNIT_CLKGATE_DIS;
8945 I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07008946}
8947
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008948static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
8949{
8950 cnp_init_clock_gating(dev_priv);
8951 gen9_init_clock_gating(dev_priv);
8952
8953 /* WaFbcNukeOnHostModify:cfl */
8954 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8955 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
8956}
8957
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008958static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008959{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008960 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008961
8962 /* WaDisableSDEUnitClockGating:kbl */
8963 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8964 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
8965 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03008966
8967 /* WaDisableGamClockGating:kbl */
8968 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
8969 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
8970 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008971
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07008972 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008973 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8974 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03008975}
8976
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008977static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008978{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02008979 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03008980
8981 /* WAC6entrylatency:skl */
8982 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
8983 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03008984
8985 /* WaFbcNukeOnHostModify:skl */
8986 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
8987 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02008988}
8989
Rodrigo Vivi91200c02017-08-28 22:20:26 -07008990static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008991{
Matthew Auld8cb09832017-10-06 23:18:23 +01008992 /* The GTT cache must be disabled if the system is using 2M pages. */
8993 bool can_use_gtt_cache = !HAS_PAGE_SIZES(dev_priv,
8994 I915_GTT_PAGE_SIZE_2M);
Damien Lespiau07d27e22014-03-03 17:31:46 +00008995 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07008996
Ben Widawskyab57fff2013-12-12 15:28:04 -08008997 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07008998 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07008999
Ben Widawskyab57fff2013-12-12 15:28:04 -08009000 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07009001 I915_WRITE(CHICKEN_PAR1_1,
9002 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
9003
Ben Widawskyab57fff2013-12-12 15:28:04 -08009004 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01009005 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00009006 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02009007 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02009008 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07009009 }
Ben Widawsky63801f22013-12-12 17:26:03 -08009010
Ben Widawskyab57fff2013-12-12 15:28:04 -08009011 /* WaVSRefCountFullforceMissDisable:bdw */
9012 /* WaDSRefCountFullforceMissDisable:bdw */
9013 I915_WRITE(GEN7_FF_THREAD_MODE,
9014 I915_READ(GEN7_FF_THREAD_MODE) &
9015 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02009016
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02009017 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
9018 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02009019
9020 /* WaDisableSDEUnitClockGating:bdw */
9021 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
9022 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00009023
Imre Deak450174f2016-05-03 15:54:21 +03009024 /* WaProgramL3SqcReg1Default:bdw */
9025 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03009026
Matthew Auld8cb09832017-10-06 23:18:23 +01009027 /* WaGttCachingOffByDefault:bdw */
9028 I915_WRITE(HSW_GTT_CACHE_EN, can_use_gtt_cache ? GTT_CACHE_EN_ALL : 0);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03009029
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03009030 /* WaKVMNotificationOnConfigChange:bdw */
9031 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
9032 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
9033
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009034 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00009035
9036 /* WaDisableDopClockGating:bdw
9037 *
9038 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
9039 * clock gating.
9040 */
9041 I915_WRITE(GEN6_UCGCTL1,
9042 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07009043}
9044
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009045static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03009046{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07009047 /* L3 caching of data atomics doesn't work -- disable it. */
9048 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
9049 I915_WRITE(HSW_ROW_CHICKEN3,
9050 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
9051
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009052 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03009053 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
9054 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
9055 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
9056
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02009057 /* WaVSRefCountFullforceMissDisable:hsw */
9058 I915_WRITE(GEN7_FF_THREAD_MODE,
9059 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03009060
Akash Goel4e046322014-04-04 17:14:38 +05309061 /* WaDisable_RenderCache_OperationalFlush:hsw */
9062 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
9063
Chia-I Wufe27c602014-01-28 13:29:33 +08009064 /* enable HiZ Raw Stall Optimization */
9065 I915_WRITE(CACHE_MODE_0_GEN7,
9066 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
9067
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009068 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03009069 I915_WRITE(CACHE_MODE_1,
9070 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03009071
Ville Syrjäläa12c4962014-02-04 21:59:20 +02009072 /*
9073 * BSpec recommends 8x4 when MSAA is used,
9074 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02009075 *
9076 * Note that PS/WM thread counts depend on the WIZ hashing
9077 * disable bit, which we don't touch here, but it's good
9078 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02009079 */
9080 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00009081 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02009082
Kenneth Graunke94411592014-12-31 16:23:00 -08009083 /* WaSampleCChickenBitEnable:hsw */
9084 I915_WRITE(HALF_SLICE_CHICKEN3,
9085 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
9086
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009087 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07009088 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
9089
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009090 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03009091}
9092
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009093static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009094{
Ben Widawsky20848222012-05-04 18:58:59 -07009095 uint32_t snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009096
Damien Lespiau231e54f2012-10-19 17:55:41 +01009097 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009098
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009099 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05009100 I915_WRITE(_3D_CHICKEN3,
9101 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
9102
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009103 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009104 I915_WRITE(IVB_CHICKEN3,
9105 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
9106 CHICKEN3_DGMG_DONE_FIX_DISABLE);
9107
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009108 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009109 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07009110 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
9111 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07009112
Akash Goel4e046322014-04-04 17:14:38 +05309113 /* WaDisable_RenderCache_OperationalFlush:ivb */
9114 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
9115
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009116 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009117 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
9118 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
9119
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009120 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009121 I915_WRITE(GEN7_L3CNTLREG1,
9122 GEN7_WA_FOR_GEN7_L3_CONTROL);
9123 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07009124 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009125 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07009126 I915_WRITE(GEN7_ROW_CHICKEN2,
9127 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02009128 else {
9129 /* must write both registers */
9130 I915_WRITE(GEN7_ROW_CHICKEN2,
9131 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07009132 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
9133 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02009134 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009135
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009136 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05009137 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
9138 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
9139
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02009140 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07009141 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009142 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07009143 */
9144 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02009145 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07009146
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009147 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009148 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
9149 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
9150 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
9151
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009152 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009153
9154 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02009155
Chris Wilson22721342014-03-04 09:41:43 +00009156 if (0) { /* causes HiZ corruption on ivb:gt1 */
9157 /* enable HiZ Raw Stall Optimization */
9158 I915_WRITE(CACHE_MODE_0_GEN7,
9159 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
9160 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08009161
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009162 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02009163 I915_WRITE(CACHE_MODE_1,
9164 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07009165
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02009166 /*
9167 * BSpec recommends 8x4 when MSAA is used,
9168 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02009169 *
9170 * Note that PS/WM thread counts depend on the WIZ hashing
9171 * disable bit, which we don't touch here, but it's good
9172 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02009173 */
9174 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00009175 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02009176
Ben Widawsky20848222012-05-04 18:58:59 -07009177 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
9178 snpcr &= ~GEN6_MBC_SNPCR_MASK;
9179 snpcr |= GEN6_MBC_SNPCR_MED;
9180 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01009181
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009182 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009183 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01009184
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009185 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009186}
9187
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009188static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009189{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009190 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05009191 I915_WRITE(_3D_CHICKEN3,
9192 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
9193
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009194 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009195 I915_WRITE(IVB_CHICKEN3,
9196 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
9197 CHICKEN3_DGMG_DONE_FIX_DISABLE);
9198
Ville Syrjäläfad7d362014-01-22 21:32:39 +02009199 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009200 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07009201 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08009202 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
9203 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07009204
Akash Goel4e046322014-04-04 17:14:38 +05309205 /* WaDisable_RenderCache_OperationalFlush:vlv */
9206 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
9207
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009208 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05009209 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
9210 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
9211
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009212 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07009213 I915_WRITE(GEN7_ROW_CHICKEN2,
9214 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
9215
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009216 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009217 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
9218 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
9219 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
9220
Ville Syrjälä46680e02014-01-22 21:33:01 +02009221 gen7_setup_fixed_func_scheduler(dev_priv);
9222
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02009223 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07009224 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009225 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07009226 */
9227 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02009228 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07009229
Akash Goelc98f5062014-03-24 23:00:07 +05309230 /* WaDisableL3Bank2xClockGate:vlv
9231 * Disabling L3 clock gating- MMIO 940c[25] = 1
9232 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
9233 I915_WRITE(GEN7_UCGCTL4,
9234 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07009235
Ville Syrjäläafd58e72014-01-22 21:33:03 +02009236 /*
9237 * BSpec says this must be set, even though
9238 * WaDisable4x2SubspanOptimization isn't listed for VLV.
9239 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02009240 I915_WRITE(CACHE_MODE_1,
9241 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07009242
9243 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02009244 * BSpec recommends 8x4 when MSAA is used,
9245 * however in practice 16x4 seems fastest.
9246 *
9247 * Note that PS/WM thread counts depend on the WIZ hashing
9248 * disable bit, which we don't touch here, but it's good
9249 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
9250 */
9251 I915_WRITE(GEN7_GT_MODE,
9252 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
9253
9254 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02009255 * WaIncreaseL3CreditsForVLVB0:vlv
9256 * This is the hardware default actually.
9257 */
9258 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
9259
9260 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01009261 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07009262 * Disable clock gating on th GCFG unit to prevent a delay
9263 * in the reporting of vblank events.
9264 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02009265 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009266}
9267
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009268static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03009269{
Ville Syrjälä232ce332014-04-09 13:28:35 +03009270 /* WaVSRefCountFullforceMissDisable:chv */
9271 /* WaDSRefCountFullforceMissDisable:chv */
9272 I915_WRITE(GEN7_FF_THREAD_MODE,
9273 I915_READ(GEN7_FF_THREAD_MODE) &
9274 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03009275
9276 /* WaDisableSemaphoreAndSyncFlipWait:chv */
9277 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
9278 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03009279
9280 /* WaDisableCSUnitClockGating:chv */
9281 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
9282 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03009283
9284 /* WaDisableSDEUnitClockGating:chv */
9285 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
9286 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03009287
9288 /*
Imre Deak450174f2016-05-03 15:54:21 +03009289 * WaProgramL3SqcReg1Default:chv
9290 * See gfxspecs/Related Documents/Performance Guide/
9291 * LSQC Setting Recommendations.
9292 */
9293 gen8_set_l3sqc_credits(dev_priv, 38, 2);
9294
9295 /*
Ville Syrjälä6d50b062015-05-19 20:32:57 +03009296 * GTT cache may not work with big pages, so if those
9297 * are ever enabled GTT cache may need to be disabled.
9298 */
9299 I915_WRITE(HSW_GTT_CACHE_EN, GTT_CACHE_EN_ALL);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03009300}
9301
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009302static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009303{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009304 uint32_t dspclk_gate;
9305
9306 I915_WRITE(RENCLK_GATE_D1, 0);
9307 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
9308 GS_UNIT_CLOCK_GATE_DISABLE |
9309 CL_UNIT_CLOCK_GATE_DISABLE);
9310 I915_WRITE(RAMCLK_GATE_D, 0);
9311 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
9312 OVRUNIT_CLOCK_GATE_DISABLE |
9313 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009314 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009315 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
9316 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02009317
9318 /* WaDisableRenderCachePipelinedFlush */
9319 I915_WRITE(CACHE_MODE_0,
9320 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03009321
Akash Goel4e046322014-04-04 17:14:38 +05309322 /* WaDisable_RenderCache_OperationalFlush:g4x */
9323 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
9324
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009325 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009326}
9327
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009328static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009329{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009330 I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
9331 I915_WRITE(RENCLK_GATE_D2, 0);
9332 I915_WRITE(DSPCLK_GATE_D, 0);
9333 I915_WRITE(RAMCLK_GATE_D, 0);
9334 I915_WRITE16(DEUC, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03009335 I915_WRITE(MI_ARB_STATE,
9336 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05309337
9338 /* WaDisable_RenderCache_OperationalFlush:gen4 */
9339 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009340}
9341
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009342static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009343{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009344 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
9345 I965_RCC_CLOCK_GATE_DISABLE |
9346 I965_RCPB_CLOCK_GATE_DISABLE |
9347 I965_ISC_CLOCK_GATE_DISABLE |
9348 I965_FBC_CLOCK_GATE_DISABLE);
9349 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03009350 I915_WRITE(MI_ARB_STATE,
9351 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05309352
9353 /* WaDisable_RenderCache_OperationalFlush:gen4 */
9354 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009355}
9356
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009357static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009358{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009359 u32 dstate = I915_READ(D_STATE);
9360
9361 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
9362 DSTATE_DOT_CLOCK_GATING;
9363 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01009364
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009365 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01009366 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02009367
9368 /* IIR "flip pending" means done if this bit is set */
9369 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02009370
9371 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02009372 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02009373
9374 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
9375 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03009376
9377 I915_WRITE(MI_ARB_STATE,
9378 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009379}
9380
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009381static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009382{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009383 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02009384
9385 /* interrupts should cause a wake up from C3 */
9386 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
9387 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03009388
9389 I915_WRITE(MEM_MODE,
9390 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009391}
9392
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009393static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009394{
Ville Syrjälä10383922014-08-15 01:21:54 +03009395 I915_WRITE(MEM_MODE,
9396 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
9397 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009398}
9399
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009400void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009401{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009402 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03009403}
9404
Ville Syrjälä712bf362016-10-31 22:37:23 +02009405void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03009406{
Ville Syrjälä712bf362016-10-31 22:37:23 +02009407 if (HAS_PCH_LPT(dev_priv))
9408 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03009409}
9410
Ville Syrjälä46f16e62016-10-31 22:37:22 +02009411static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02009412{
9413 DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n");
9414}
9415
9416/**
9417 * intel_init_clock_gating_hooks - setup the clock gating hooks
9418 * @dev_priv: device private
9419 *
9420 * Setup the hooks that configure which clocks of a given platform can be
9421 * gated and also apply various GT and display specific workarounds for these
9422 * platforms. Note that some GT specific workarounds are applied separately
9423 * when GPU contexts or batchbuffers start their execution.
9424 */
9425void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
9426{
Oscar Mateocc38cae2018-05-08 14:29:23 -07009427 if (IS_ICELAKE(dev_priv))
Oscar Mateod65dc3e2018-05-08 14:29:24 -07009428 dev_priv->display.init_clock_gating = icl_init_clock_gating;
Oscar Mateocc38cae2018-05-08 14:29:23 -07009429 else if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009430 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009431 else if (IS_COFFEELAKE(dev_priv))
9432 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07009433 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009434 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07009435 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009436 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009437 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02009438 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02009439 else if (IS_GEMINILAKE(dev_priv))
9440 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009441 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009442 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009443 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009444 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009445 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009446 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009447 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009448 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009449 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009450 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009451 else if (IS_GEN6(dev_priv))
9452 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
9453 else if (IS_GEN5(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009454 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009455 else if (IS_G4X(dev_priv))
9456 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009457 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009458 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02009459 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07009460 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02009461 else if (IS_GEN3(dev_priv))
9462 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
9463 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
9464 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
9465 else if (IS_GEN2(dev_priv))
9466 dev_priv->display.init_clock_gating = i830_init_clock_gating;
9467 else {
9468 MISSING_CASE(INTEL_DEVID(dev_priv));
9469 dev_priv->display.init_clock_gating = nop_init_clock_gating;
9470 }
9471}
9472
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009473/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009474void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009475{
Daniel Vetterc921aba2012-04-26 23:28:17 +02009476 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009477 if (IS_PINEVIEW(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009478 i915_pineview_get_mem_freq(dev_priv);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009479 else if (IS_GEN5(dev_priv))
Ville Syrjälä148ac1f2016-10-31 22:37:16 +02009480 i915_ironlake_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02009481
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009482 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009483 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009484 skl_setup_wm_latency(dev_priv);
Maarten Lankhorste62929b2016-11-08 13:55:33 +01009485 dev_priv->display.initial_watermarks = skl_initial_wm;
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01009486 dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm;
Matt Roper98d39492016-05-12 07:06:03 -07009487 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01009488 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009489 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03009490
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009491 if ((IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009492 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009493 (!IS_GEN5(dev_priv) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02009494 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07009495 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08009496 dev_priv->display.compute_intermediate_wm =
9497 ilk_compute_intermediate_wm;
9498 dev_priv->display.initial_watermarks =
9499 ilk_initial_watermarks;
9500 dev_priv->display.optimize_watermarks =
9501 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02009502 } else {
9503 DRM_DEBUG_KMS("Failed to read display plane latency. "
9504 "Disable CxSR\n");
9505 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02009506 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02009507 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02009508 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009509 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009510 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02009511 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02009512 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03009513 } else if (IS_G4X(dev_priv)) {
9514 g4x_setup_wm_latency(dev_priv);
9515 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
9516 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
9517 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
9518 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02009519 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01009520 if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009521 dev_priv->is_ddr3,
9522 dev_priv->fsb_freq,
9523 dev_priv->mem_freq)) {
9524 DRM_INFO("failed to find known CxSR latency "
9525 "(found ddr%s fsb freq %d, mem freq %d), "
9526 "disabling CxSR\n",
9527 (dev_priv->is_ddr3 == 1) ? "3" : "2",
9528 dev_priv->fsb_freq, dev_priv->mem_freq);
9529 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03009530 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009531 dev_priv->display.update_wm = NULL;
9532 } else
9533 dev_priv->display.update_wm = pineview_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009534 } else if (IS_GEN4(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009535 dev_priv->display.update_wm = i965_update_wm;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009536 } else if (IS_GEN3(dev_priv)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009537 dev_priv->display.update_wm = i9xx_update_wm;
9538 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01009539 } else if (IS_GEN2(dev_priv)) {
Ville Syrjälä62d75df2016-10-31 22:37:25 +02009540 if (INTEL_INFO(dev_priv)->num_pipes == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009541 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009542 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009543 } else {
9544 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009545 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009546 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02009547 } else {
9548 DRM_ERROR("unexpected fall-through in intel_init_pm\n");
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03009549 }
9550}
9551
Lyude87660502016-08-17 15:55:53 -04009552static inline int gen6_check_mailbox_status(struct drm_i915_private *dev_priv)
9553{
9554 uint32_t flags =
9555 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9556
9557 switch (flags) {
9558 case GEN6_PCODE_SUCCESS:
9559 return 0;
9560 case GEN6_PCODE_UNIMPLEMENTED_CMD:
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009561 return -ENODEV;
Lyude87660502016-08-17 15:55:53 -04009562 case GEN6_PCODE_ILLEGAL_CMD:
9563 return -ENXIO;
9564 case GEN6_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Chris Wilson7850d1c2016-08-26 11:59:26 +01009565 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
Lyude87660502016-08-17 15:55:53 -04009566 return -EOVERFLOW;
9567 case GEN6_PCODE_TIMEOUT:
9568 return -ETIMEDOUT;
9569 default:
Michal Wajdeczkof0d66152017-03-28 08:45:12 +00009570 MISSING_CASE(flags);
Lyude87660502016-08-17 15:55:53 -04009571 return 0;
9572 }
9573}
9574
9575static inline int gen7_check_mailbox_status(struct drm_i915_private *dev_priv)
9576{
9577 uint32_t flags =
9578 I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_ERROR_MASK;
9579
9580 switch (flags) {
9581 case GEN6_PCODE_SUCCESS:
9582 return 0;
9583 case GEN6_PCODE_ILLEGAL_CMD:
9584 return -ENXIO;
9585 case GEN7_PCODE_TIMEOUT:
9586 return -ETIMEDOUT;
9587 case GEN7_PCODE_ILLEGAL_DATA:
9588 return -EINVAL;
9589 case GEN7_PCODE_MIN_FREQ_TABLE_GT_RATIO_OUT_OF_RANGE:
9590 return -EOVERFLOW;
9591 default:
9592 MISSING_CASE(flags);
9593 return 0;
9594 }
9595}
9596
Tom O'Rourke151a49d2014-11-13 18:50:10 -08009597int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val)
Ben Widawsky42c05262012-09-26 10:34:00 -07009598{
Lyude87660502016-08-17 15:55:53 -04009599 int status;
9600
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009601 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009602
Chris Wilson3f5582d2016-06-30 15:32:45 +01009603 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9604 * use te fw I915_READ variants to reduce the amount of work
9605 * required when reading/writing.
9606 */
9607
9608 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009609 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps\n",
9610 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009611 return -EAGAIN;
9612 }
9613
Chris Wilson3f5582d2016-06-30 15:32:45 +01009614 I915_WRITE_FW(GEN6_PCODE_DATA, *val);
9615 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
9616 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009617
Chris Wilsone09a3032017-04-11 11:13:39 +01009618 if (__intel_wait_for_register_fw(dev_priv,
9619 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
9620 500, 0, NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009621 DRM_ERROR("timeout waiting for pcode read (from mbox %x) to finish for %ps\n",
9622 mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009623 return -ETIMEDOUT;
9624 }
9625
Chris Wilson3f5582d2016-06-30 15:32:45 +01009626 *val = I915_READ_FW(GEN6_PCODE_DATA);
9627 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009628
Lyude87660502016-08-17 15:55:53 -04009629 if (INTEL_GEN(dev_priv) > 6)
9630 status = gen7_check_mailbox_status(dev_priv);
9631 else
9632 status = gen6_check_mailbox_status(dev_priv);
9633
9634 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009635 DRM_DEBUG_DRIVER("warning: pcode (read from mbox %x) mailbox access failed for %ps: %d\n",
9636 mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009637 return status;
9638 }
9639
Ben Widawsky42c05262012-09-26 10:34:00 -07009640 return 0;
9641}
9642
Imre Deake76019a2018-01-30 16:29:38 +02009643int sandybridge_pcode_write_timeout(struct drm_i915_private *dev_priv,
Imre Deak006bb4c2018-01-30 16:29:39 +02009644 u32 mbox, u32 val,
9645 int fast_timeout_us, int slow_timeout_ms)
Ben Widawsky42c05262012-09-26 10:34:00 -07009646{
Lyude87660502016-08-17 15:55:53 -04009647 int status;
9648
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009649 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Ben Widawsky42c05262012-09-26 10:34:00 -07009650
Chris Wilson3f5582d2016-06-30 15:32:45 +01009651 /* GEN6_PCODE_* are outside of the forcewake domain, we can
9652 * use te fw I915_READ variants to reduce the amount of work
9653 * required when reading/writing.
9654 */
9655
9656 if (I915_READ_FW(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009657 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps\n",
9658 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009659 return -EAGAIN;
9660 }
9661
Chris Wilson3f5582d2016-06-30 15:32:45 +01009662 I915_WRITE_FW(GEN6_PCODE_DATA, val);
Imre Deak8bf41b72016-11-28 17:29:27 +02009663 I915_WRITE_FW(GEN6_PCODE_DATA1, 0);
Chris Wilson3f5582d2016-06-30 15:32:45 +01009664 I915_WRITE_FW(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox);
Ben Widawsky42c05262012-09-26 10:34:00 -07009665
Chris Wilsone09a3032017-04-11 11:13:39 +01009666 if (__intel_wait_for_register_fw(dev_priv,
9667 GEN6_PCODE_MAILBOX, GEN6_PCODE_READY, 0,
Imre Deak006bb4c2018-01-30 16:29:39 +02009668 fast_timeout_us, slow_timeout_ms,
9669 NULL)) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009670 DRM_ERROR("timeout waiting for pcode write of 0x%08x to mbox %x to finish for %ps\n",
9671 val, mbox, __builtin_return_address(0));
Ben Widawsky42c05262012-09-26 10:34:00 -07009672 return -ETIMEDOUT;
9673 }
9674
Chris Wilson3f5582d2016-06-30 15:32:45 +01009675 I915_WRITE_FW(GEN6_PCODE_DATA, 0);
Ben Widawsky42c05262012-09-26 10:34:00 -07009676
Lyude87660502016-08-17 15:55:53 -04009677 if (INTEL_GEN(dev_priv) > 6)
9678 status = gen7_check_mailbox_status(dev_priv);
9679 else
9680 status = gen6_check_mailbox_status(dev_priv);
9681
9682 if (status) {
Chris Wilson5a9cfff2017-07-28 09:50:22 +01009683 DRM_DEBUG_DRIVER("warning: pcode (write of 0x%08x to mbox %x) mailbox access failed for %ps: %d\n",
9684 val, mbox, __builtin_return_address(0), status);
Lyude87660502016-08-17 15:55:53 -04009685 return status;
9686 }
9687
Ben Widawsky42c05262012-09-26 10:34:00 -07009688 return 0;
9689}
Jesse Barnesa0e4e192013-04-02 11:23:05 -07009690
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009691static bool skl_pcode_try_request(struct drm_i915_private *dev_priv, u32 mbox,
9692 u32 request, u32 reply_mask, u32 reply,
9693 u32 *status)
9694{
9695 u32 val = request;
9696
9697 *status = sandybridge_pcode_read(dev_priv, mbox, &val);
9698
9699 return *status || ((val & reply_mask) == reply);
9700}
9701
9702/**
9703 * skl_pcode_request - send PCODE request until acknowledgment
9704 * @dev_priv: device private
9705 * @mbox: PCODE mailbox ID the request is targeted for
9706 * @request: request ID
9707 * @reply_mask: mask used to check for request acknowledgment
9708 * @reply: value used to check for request acknowledgment
9709 * @timeout_base_ms: timeout for polling with preemption enabled
9710 *
9711 * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE
Imre Deak01299362017-02-24 16:32:10 +02009712 * reports an error or an overall timeout of @timeout_base_ms+50 ms expires.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009713 * The request is acknowledged once the PCODE reply dword equals @reply after
9714 * applying @reply_mask. Polling is first attempted with preemption enabled
Imre Deak01299362017-02-24 16:32:10 +02009715 * for @timeout_base_ms and if this times out for another 50 ms with
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009716 * preemption disabled.
9717 *
9718 * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some
9719 * other error as reported by PCODE.
9720 */
9721int skl_pcode_request(struct drm_i915_private *dev_priv, u32 mbox, u32 request,
9722 u32 reply_mask, u32 reply, int timeout_base_ms)
9723{
9724 u32 status;
9725 int ret;
9726
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009727 WARN_ON(!mutex_is_locked(&dev_priv->pcu_lock));
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009728
9729#define COND skl_pcode_try_request(dev_priv, mbox, request, reply_mask, reply, \
9730 &status)
9731
9732 /*
9733 * Prime the PCODE by doing a request first. Normally it guarantees
9734 * that a subsequent request, at most @timeout_base_ms later, succeeds.
9735 * _wait_for() doesn't guarantee when its passed condition is evaluated
9736 * first, so send the first request explicitly.
9737 */
9738 if (COND) {
9739 ret = 0;
9740 goto out;
9741 }
Chris Wilsona54b1872017-11-24 13:00:30 +00009742 ret = _wait_for(COND, timeout_base_ms * 1000, 10, 10);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009743 if (!ret)
9744 goto out;
9745
9746 /*
9747 * The above can time out if the number of requests was low (2 in the
9748 * worst case) _and_ PCODE was busy for some reason even after a
9749 * (queued) request and @timeout_base_ms delay. As a workaround retry
9750 * the poll with preemption disabled to maximize the number of
Imre Deak01299362017-02-24 16:32:10 +02009751 * requests. Increase the timeout from @timeout_base_ms to 50ms to
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009752 * account for interrupts that could reduce the number of these
Imre Deak01299362017-02-24 16:32:10 +02009753 * requests, and for any quirks of the PCODE firmware that delays
9754 * the request completion.
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009755 */
9756 DRM_DEBUG_KMS("PCODE timeout, retrying with preemption disabled\n");
9757 WARN_ON_ONCE(timeout_base_ms > 3);
9758 preempt_disable();
Imre Deak01299362017-02-24 16:32:10 +02009759 ret = wait_for_atomic(COND, 50);
Imre Deaka0b8a1f2016-12-05 18:27:37 +02009760 preempt_enable();
9761
9762out:
9763 return ret ? ret : status;
9764#undef COND
9765}
9766
Ville Syrjälädd06f882014-11-10 22:55:12 +02009767static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val)
9768{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009769 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9770
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009771 /*
9772 * N = val - 0xb7
9773 * Slow = Fast = GPLL ref * N
9774 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009775 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * (val - 0xb7), 1000);
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009776}
9777
Fengguang Wub55dd642014-07-12 11:21:39 +02009778static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val)
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009779{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009780 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9781
9782 return DIV_ROUND_CLOSEST(1000 * val, rps->gpll_ref_freq) + 0xb7;
Jesse Barnes855ba3b2013-04-17 15:54:57 -07009783}
9784
Fengguang Wub55dd642014-07-12 11:21:39 +02009785static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309786{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009787 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9788
Ville Syrjäläc30fec62016-03-04 21:43:02 +02009789 /*
9790 * N = val / 2
9791 * CU (slow) = CU2x (fast) / 2 = GPLL ref * N / 2
9792 */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009793 return DIV_ROUND_CLOSEST(rps->gpll_ref_freq * val, 2 * 2 * 1000);
Deepak S22b1b2f2014-07-12 14:54:33 +05309794}
9795
Fengguang Wub55dd642014-07-12 11:21:39 +02009796static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val)
Deepak S22b1b2f2014-07-12 14:54:33 +05309797{
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009798 struct intel_rps *rps = &dev_priv->gt_pm.rps;
9799
Ville Syrjälä1c147622014-08-18 14:42:43 +03009800 /* CHV needs even values */
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009801 return DIV_ROUND_CLOSEST(2 * 1000 * val, rps->gpll_ref_freq) * 2;
Deepak S22b1b2f2014-07-12 14:54:33 +05309802}
9803
Ville Syrjälä616bc822015-01-23 21:04:25 +02009804int intel_gpu_freq(struct drm_i915_private *dev_priv, int val)
9805{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009806 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009807 return DIV_ROUND_CLOSEST(val * GT_FREQUENCY_MULTIPLIER,
9808 GEN9_FREQ_SCALER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009809 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009810 return chv_gpu_freq(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009811 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009812 return byt_gpu_freq(dev_priv, val);
9813 else
9814 return val * GT_FREQUENCY_MULTIPLIER;
9815}
9816
Ville Syrjälä616bc822015-01-23 21:04:25 +02009817int intel_freq_opcode(struct drm_i915_private *dev_priv, int val)
9818{
Rodrigo Vivi35ceabf2017-07-06 13:41:13 -07009819 if (INTEL_GEN(dev_priv) >= 9)
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009820 return DIV_ROUND_CLOSEST(val * GEN9_FREQ_SCALER,
9821 GT_FREQUENCY_MULTIPLIER);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009822 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009823 return chv_freq_opcode(dev_priv, val);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +03009824 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä616bc822015-01-23 21:04:25 +02009825 return byt_freq_opcode(dev_priv, val);
9826 else
Mika Kuoppala500a3d22015-11-13 19:29:41 +02009827 return DIV_ROUND_CLOSEST(val, GT_FREQUENCY_MULTIPLIER);
Deepak S22b1b2f2014-07-12 14:54:33 +05309828}
9829
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00009830void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01009831{
Sagar Arun Kamble9f817502017-10-10 22:30:05 +01009832 mutex_init(&dev_priv->pcu_lock);
Chris Wilson60548c52018-07-31 14:26:29 +01009833 mutex_init(&dev_priv->gt_pm.rps.power.mutex);
Daniel Vetterf742a552013-12-06 10:17:53 +01009834
Sagar Arun Kamble562d9ba2017-10-10 22:30:06 +01009835 atomic_set(&dev_priv->gt_pm.rps.num_waiters, 0);
Paulo Zanoni5d584b22014-03-07 20:08:15 -03009836
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01009837 dev_priv->runtime_pm.suspended = false;
9838 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01009839}
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009840
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009841static u64 vlv_residency_raw(struct drm_i915_private *dev_priv,
9842 const i915_reg_t reg)
9843{
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009844 u32 lower, upper, tmp;
Chris Wilson71cc2b12017-03-24 16:54:18 +00009845 int loop = 2;
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009846
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009847 /*
9848 * The register accessed do not need forcewake. We borrow
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009849 * uncore lock to prevent concurrent access to range reg.
9850 */
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009851 lockdep_assert_held(&dev_priv->uncore.lock);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009852
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009853 /*
9854 * vlv and chv residency counters are 40 bits in width.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009855 * With a control bit, we can choose between upper or lower
9856 * 32bit window into this counter.
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009857 *
9858 * Although we always use the counter in high-range mode elsewhere,
9859 * userspace may attempt to read the value before rc6 is initialised,
9860 * before we have set the default VLV_COUNTER_CONTROL value. So always
9861 * set the high bit to be safe.
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009862 */
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009863 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9864 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009865 upper = I915_READ_FW(reg);
9866 do {
9867 tmp = upper;
9868
9869 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9870 _MASKED_BIT_DISABLE(VLV_COUNT_RANGE_HIGH));
9871 lower = I915_READ_FW(reg);
9872
9873 I915_WRITE_FW(VLV_COUNTER_CONTROL,
9874 _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH));
9875 upper = I915_READ_FW(reg);
Chris Wilson71cc2b12017-03-24 16:54:18 +00009876 } while (upper != tmp && --loop);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009877
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009878 /*
9879 * Everywhere else we always use VLV_COUNTER_CONTROL with the
Chris Wilsonfacbeca2017-03-17 12:59:18 +00009880 * VLV_COUNT_RANGE_HIGH bit set - so it is safe to leave it set
9881 * now.
9882 */
9883
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009884 return lower | (u64)upper << 8;
9885}
9886
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009887u64 intel_rc6_residency_ns(struct drm_i915_private *dev_priv,
Mika Kuoppalac5a0ad12017-03-15 17:43:00 +02009888 const i915_reg_t reg)
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009889{
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009890 u64 time_hw, prev_hw, overflow_hw;
9891 unsigned int fw_domains;
9892 unsigned long flags;
9893 unsigned int i;
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009894 u32 mul, div;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009895
Chris Wilsonfb6db0f2017-12-01 11:30:30 +00009896 if (!HAS_RC6(dev_priv))
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009897 return 0;
9898
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009899 /*
9900 * Store previous hw counter values for counter wrap-around handling.
9901 *
9902 * There are only four interesting registers and they live next to each
9903 * other so we can use the relative address, compared to the smallest
9904 * one as the index into driver storage.
9905 */
9906 i = (i915_mmio_reg_offset(reg) -
9907 i915_mmio_reg_offset(GEN6_GT_GFX_RC6_LOCKED)) / sizeof(u32);
9908 if (WARN_ON_ONCE(i >= ARRAY_SIZE(dev_priv->gt_pm.rc6.cur_residency)))
9909 return 0;
9910
9911 fw_domains = intel_uncore_forcewake_for_reg(dev_priv, reg, FW_REG_READ);
9912
9913 spin_lock_irqsave(&dev_priv->uncore.lock, flags);
9914 intel_uncore_forcewake_get__locked(dev_priv, fw_domains);
9915
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009916 /* On VLV and CHV, residency time is in CZ units rather than 1.28us */
9917 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009918 mul = 1000000;
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009919 div = dev_priv->czclk_freq;
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009920 overflow_hw = BIT_ULL(40);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009921 time_hw = vlv_residency_raw(dev_priv, reg);
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009922 } else {
Tvrtko Ursulin36cc8b92017-11-21 18:18:51 +00009923 /* 833.33ns units on Gen9LP, 1.28us elsewhere. */
9924 if (IS_GEN9_LP(dev_priv)) {
9925 mul = 10000;
9926 div = 12;
9927 } else {
9928 mul = 1280;
9929 div = 1;
9930 }
Mika Kuoppala47c21d92017-03-15 18:07:13 +02009931
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009932 overflow_hw = BIT_ULL(32);
9933 time_hw = I915_READ_FW(reg);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009934 }
9935
Tvrtko Ursulin817cc0792018-02-08 16:00:36 +00009936 /*
9937 * Counter wrap handling.
9938 *
9939 * But relying on a sufficient frequency of queries otherwise counters
9940 * can still wrap.
9941 */
9942 prev_hw = dev_priv->gt_pm.rc6.prev_hw_residency[i];
9943 dev_priv->gt_pm.rc6.prev_hw_residency[i] = time_hw;
9944
9945 /* RC6 delta from last sample. */
9946 if (time_hw >= prev_hw)
9947 time_hw -= prev_hw;
9948 else
9949 time_hw += overflow_hw - prev_hw;
9950
9951 /* Add delta to RC6 extended raw driver copy. */
9952 time_hw += dev_priv->gt_pm.rc6.cur_residency[i];
9953 dev_priv->gt_pm.rc6.cur_residency[i] = time_hw;
9954
9955 intel_uncore_forcewake_put__locked(dev_priv, fw_domains);
9956 spin_unlock_irqrestore(&dev_priv->uncore.lock, flags);
9957
9958 return mul_u64_u32_div(time_hw, mul, div);
Mika Kuoppala135bafa2017-03-15 17:42:59 +02009959}
Tvrtko Ursulinc84b2702017-11-21 18:18:44 +00009960
9961u32 intel_get_cagf(struct drm_i915_private *dev_priv, u32 rpstat)
9962{
9963 u32 cagf;
9964
9965 if (INTEL_GEN(dev_priv) >= 9)
9966 cagf = (rpstat & GEN9_CAGF_MASK) >> GEN9_CAGF_SHIFT;
9967 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
9968 cagf = (rpstat & HSW_CAGF_MASK) >> HSW_CAGF_SHIFT;
9969 else
9970 cagf = (rpstat & GEN6_CAGF_MASK) >> GEN6_CAGF_SHIFT;
9971
9972 return cagf;
9973}