blob: cdc02b6cea19395a2c6a01e69ddc987d199f32b3 [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
Sam Ravnborgd0e93592019-01-26 13:25:24 +010028#include <linux/module.h>
Chris Wilson08ea70a2018-08-12 23:36:31 +010029#include <linux/pm_runtime.h>
Sam Ravnborgd0e93592019-01-26 13:25:24 +010030
31#include <drm/drm_atomic_helper.h>
32#include <drm/drm_fourcc.h>
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -070033#include <drm/drm_plane_helper.h>
Sam Ravnborgd0e93592019-01-26 13:25:24 +010034
Jani Nikuladf0566a2019-06-13 11:44:16 +030035#include "display/intel_atomic.h"
Jani Nikula1d455f82019-08-06 14:39:33 +030036#include "display/intel_display_types.h"
Jani Nikuladf0566a2019-06-13 11:44:16 +030037#include "display/intel_fbc.h"
38#include "display/intel_sprite.h"
39
Andi Shyti0dc3c562019-10-20 19:41:39 +010040#include "gt/intel_llc.h"
41
Eugeni Dodonov85208be2012-04-16 22:20:34 -030042#include "i915_drv.h"
Jani Nikula440e2b32019-04-29 15:29:27 +030043#include "i915_irq.h"
Jani Nikulaa09d9a82019-08-06 13:07:28 +030044#include "i915_trace.h"
Jani Nikula696173b2019-04-05 14:00:15 +030045#include "intel_pm.h"
Chris Wilson56c50982019-04-26 09:17:22 +010046#include "intel_sideband.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020047#include "../../../platform/x86/intel_ips.h"
Eugeni Dodonov85208be2012-04-16 22:20:34 -030048
Ville Syrjälä46f16e62016-10-31 22:37:22 +020049static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030050{
Ville Syrjälä93564042017-08-24 22:10:51 +030051 if (HAS_LLC(dev_priv)) {
52 /*
53 * WaCompressedResourceDisplayNewHashMode:skl,kbl
Lucas De Marchie0403cb2017-12-05 11:01:17 -080054 * Display WA #0390: skl,kbl
Ville Syrjälä93564042017-08-24 22:10:51 +030055 *
56 * Must match Sampler, Pixel Back End, and Media. See
57 * WaCompressedResourceSamplerPbeMediaNewHashMode.
58 */
59 I915_WRITE(CHICKEN_PAR1_1,
60 I915_READ(CHICKEN_PAR1_1) |
61 SKL_DE_COMPRESSED_HASH_MODE);
62 }
63
Rodrigo Vivi82525c12017-06-08 08:50:00 -070064 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
Mika Kuoppalab033bb62016-06-07 17:19:04 +030065 I915_WRITE(CHICKEN_PAR1_1,
66 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
67
Rodrigo Vivi82525c12017-06-08 08:50:00 -070068 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030069 I915_WRITE(GEN8_CHICKEN_DCPR_1,
70 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030071
Rodrigo Vivi82525c12017-06-08 08:50:00 -070072 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
73 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030074 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
75 DISP_FBC_WM_DIS |
76 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030077
Rodrigo Vivi82525c12017-06-08 08:50:00 -070078 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +030079 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
80 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +053081
82 if (IS_SKYLAKE(dev_priv)) {
83 /* WaDisableDopClockGating */
84 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
85 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
86 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +030087}
88
Ville Syrjälä46f16e62016-10-31 22:37:22 +020089static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +020090{
Ville Syrjälä46f16e62016-10-31 22:37:22 +020091 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +020092
Nick Hoatha7546152015-06-29 14:07:32 +010093 /* WaDisableSDEUnitClockGating:bxt */
94 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
95 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
96
Imre Deak32608ca2015-03-11 11:10:27 +020097 /*
98 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +020099 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200100 */
Imre Deak32608ca2015-03-11 11:10:27 +0200101 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200102 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200103
104 /*
105 * Wa: Backlight PWM may stop in the asserted state, causing backlight
106 * to stay fully on.
107 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200108 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
109 PWM1_GATING_DIS | PWM2_GATING_DIS);
Uma Shankar1d85a292018-08-07 21:15:35 +0530110
111 /*
112 * Lower the display internal timeout.
113 * This is needed to avoid any hard hangs when DSI port PLL
114 * is off and a MMIO access is attempted by any privilege
115 * application, using batch buffers or any other means.
116 */
117 I915_WRITE(RM_TIMEOUT, MMIO_TIMEOUT_US(950));
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);
131}
132
Lucas De Marchi1d218222019-12-24 00:40:04 -0800133static void pnv_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200134{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200135 u32 tmp;
136
137 tmp = I915_READ(CLKCFG);
138
139 switch (tmp & CLKCFG_FSB_MASK) {
140 case CLKCFG_FSB_533:
141 dev_priv->fsb_freq = 533; /* 133*4 */
142 break;
143 case CLKCFG_FSB_800:
144 dev_priv->fsb_freq = 800; /* 200*4 */
145 break;
146 case CLKCFG_FSB_667:
147 dev_priv->fsb_freq = 667; /* 167*4 */
148 break;
149 case CLKCFG_FSB_400:
150 dev_priv->fsb_freq = 400; /* 100*4 */
151 break;
152 }
153
154 switch (tmp & CLKCFG_MEM_MASK) {
155 case CLKCFG_MEM_533:
156 dev_priv->mem_freq = 533;
157 break;
158 case CLKCFG_MEM_667:
159 dev_priv->mem_freq = 667;
160 break;
161 case CLKCFG_MEM_800:
162 dev_priv->mem_freq = 800;
163 break;
164 }
165
166 /* detect pineview DDR3 setting */
167 tmp = I915_READ(CSHRDDR3CTL);
168 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
169}
170
Lucas De Marchi9eae5e22019-12-24 00:40:09 -0800171static void ilk_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200172{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200173 u16 ddrpll, csipll;
174
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +0100175 ddrpll = intel_uncore_read16(&dev_priv->uncore, DDRMPLL1);
176 csipll = intel_uncore_read16(&dev_priv->uncore, CSIPLL0);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200177
178 switch (ddrpll & 0xff) {
179 case 0xc:
180 dev_priv->mem_freq = 800;
181 break;
182 case 0x10:
183 dev_priv->mem_freq = 1066;
184 break;
185 case 0x14:
186 dev_priv->mem_freq = 1333;
187 break;
188 case 0x18:
189 dev_priv->mem_freq = 1600;
190 break;
191 default:
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300192 drm_dbg(&dev_priv->drm, "unknown memory frequency 0x%02x\n",
193 ddrpll & 0xff);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200194 dev_priv->mem_freq = 0;
195 break;
196 }
197
Daniel Vetterc921aba2012-04-26 23:28:17 +0200198 switch (csipll & 0x3ff) {
199 case 0x00c:
200 dev_priv->fsb_freq = 3200;
201 break;
202 case 0x00e:
203 dev_priv->fsb_freq = 3733;
204 break;
205 case 0x010:
206 dev_priv->fsb_freq = 4266;
207 break;
208 case 0x012:
209 dev_priv->fsb_freq = 4800;
210 break;
211 case 0x014:
212 dev_priv->fsb_freq = 5333;
213 break;
214 case 0x016:
215 dev_priv->fsb_freq = 5866;
216 break;
217 case 0x018:
218 dev_priv->fsb_freq = 6400;
219 break;
220 default:
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300221 drm_dbg(&dev_priv->drm, "unknown fsb frequency 0x%04x\n",
222 csipll & 0x3ff);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200223 dev_priv->fsb_freq = 0;
224 break;
225 }
Daniel Vetterc921aba2012-04-26 23:28:17 +0200226}
227
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300228static const struct cxsr_latency cxsr_latency_table[] = {
229 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
230 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
231 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
232 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
233 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
234
235 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
236 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
237 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
238 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
239 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
240
241 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
242 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
243 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
244 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
245 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
246
247 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
248 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
249 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
250 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
251 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
252
253 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
254 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
255 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
256 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
257 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
258
259 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
260 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
261 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
262 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
263 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
264};
265
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100266static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
267 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300268 int fsb,
269 int mem)
270{
271 const struct cxsr_latency *latency;
272 int i;
273
274 if (fsb == 0 || mem == 0)
275 return NULL;
276
277 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
278 latency = &cxsr_latency_table[i];
279 if (is_desktop == latency->is_desktop &&
280 is_ddr3 == latency->is_ddr3 &&
281 fsb == latency->fsb_freq && mem == latency->mem_freq)
282 return latency;
283 }
284
285 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
286
287 return NULL;
288}
289
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200290static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
291{
292 u32 val;
293
Chris Wilson337fa6e2019-04-26 09:17:20 +0100294 vlv_punit_get(dev_priv);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200295
296 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
297 if (enable)
298 val &= ~FORCE_DDR_HIGH_FREQ;
299 else
300 val |= FORCE_DDR_HIGH_FREQ;
301 val &= ~FORCE_DDR_LOW_FREQ;
302 val |= FORCE_DDR_FREQ_REQ_ACK;
303 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
304
305 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
306 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300307 drm_err(&dev_priv->drm,
308 "timed out waiting for Punit DDR DVFS request\n");
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200309
Chris Wilson337fa6e2019-04-26 09:17:20 +0100310 vlv_punit_put(dev_priv);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200311}
312
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200313static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
314{
315 u32 val;
316
Chris Wilson337fa6e2019-04-26 09:17:20 +0100317 vlv_punit_get(dev_priv);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200318
Ville Syrjäläc11b8132018-11-29 19:55:03 +0200319 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200320 if (enable)
321 val |= DSP_MAXFIFO_PM5_ENABLE;
322 else
323 val &= ~DSP_MAXFIFO_PM5_ENABLE;
Ville Syrjäläc11b8132018-11-29 19:55:03 +0200324 vlv_punit_write(dev_priv, PUNIT_REG_DSPSSPM, val);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200325
Chris Wilson337fa6e2019-04-26 09:17:20 +0100326 vlv_punit_put(dev_priv);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200327}
328
Ville Syrjäläf4998962015-03-10 17:02:21 +0200329#define FW_WM(value, plane) \
330 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
331
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200332static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300333{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200334 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300335 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300336
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100337 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200338 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300339 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300340 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200341 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200342 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300343 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300344 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200345 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200346 val = I915_READ(DSPFW3);
347 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
348 if (enable)
349 val |= PINEVIEW_SELF_REFRESH_EN;
350 else
351 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300352 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300353 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100354 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200355 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300356 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
357 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
358 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300359 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100360 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300361 /*
362 * FIXME can't find a bit like this for 915G, and
363 * and yet it does have the related watermark in
364 * FW_BLC_SELF. What's going on?
365 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200366 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300367 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
368 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
369 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300370 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300371 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200372 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300373 }
374
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200375 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
376
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300377 drm_dbg_kms(&dev_priv->drm, "memory self-refresh is %s (was %s)\n",
378 enableddisabled(enable),
379 enableddisabled(was_enabled));
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200380
381 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300382}
383
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300384/**
385 * intel_set_memory_cxsr - Configure CxSR state
386 * @dev_priv: i915 device
387 * @enable: Allow vs. disallow CxSR
388 *
389 * Allow or disallow the system to enter a special CxSR
390 * (C-state self refresh) state. What typically happens in CxSR mode
391 * is that several display FIFOs may get combined into a single larger
392 * FIFO for a particular plane (so called max FIFO mode) to allow the
393 * system to defer memory fetches longer, and the memory will enter
394 * self refresh.
395 *
396 * Note that enabling CxSR does not guarantee that the system enter
397 * this special mode, nor does it guarantee that the system stays
398 * in that mode once entered. So this just allows/disallows the system
399 * to autonomously utilize the CxSR mode. Other factors such as core
400 * C-states will affect when/if the system actually enters/exits the
401 * CxSR mode.
402 *
403 * Note that on VLV/CHV this actually only controls the max FIFO mode,
404 * and the system is free to enter/exit memory self refresh at any time
405 * even when the use of CxSR has been disallowed.
406 *
407 * While the system is actually in the CxSR/max FIFO mode, some plane
408 * control registers will not get latched on vblank. Thus in order to
409 * guarantee the system will respond to changes in the plane registers
410 * we must always disallow CxSR prior to making changes to those registers.
411 * Unfortunately the system will re-evaluate the CxSR conditions at
412 * frame start which happens after vblank start (which is when the plane
413 * registers would get latched), so we can't proceed with the plane update
414 * during the same frame where we disallowed CxSR.
415 *
416 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
417 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
418 * the hardware w.r.t. HPLL SR when writing to plane registers.
419 * Disallowing just CxSR is sufficient.
420 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200421bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200422{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200423 bool ret;
424
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200425 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200426 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300427 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
428 dev_priv->wm.vlv.cxsr = enable;
429 else if (IS_G4X(dev_priv))
430 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200431 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200432
433 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200434}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200435
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300436/*
437 * Latency for FIFO fetches is dependent on several factors:
438 * - memory configuration (speed, channels)
439 * - chipset
440 * - current MCH state
441 * It can be fairly high in some situations, so here we assume a fairly
442 * pessimal value. It's a tradeoff between extra memory fetches (if we
443 * set this value too high, the FIFO will fetch frequently to stay full)
444 * and power consumption (set it too low to save power and we might see
445 * FIFO underruns and display "flicker").
446 *
447 * A value of 5us seems to be a good balance; safe for very low end
448 * platforms but not overly aggressive on lower latency configs.
449 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100450static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300451
Ville Syrjäläb5004722015-03-05 21:19:47 +0200452#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
453 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
454
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200455static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200456{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +0100457 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200458 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200459 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200460 enum pipe pipe = crtc->pipe;
461 int sprite0_start, sprite1_start;
Kees Cook2713eb42020-02-20 16:05:17 -0800462 u32 dsparb, dsparb2, dsparb3;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200463
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200464 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200465 case PIPE_A:
466 dsparb = I915_READ(DSPARB);
467 dsparb2 = I915_READ(DSPARB2);
468 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
469 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
470 break;
471 case PIPE_B:
472 dsparb = I915_READ(DSPARB);
473 dsparb2 = I915_READ(DSPARB2);
474 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
475 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
476 break;
477 case PIPE_C:
478 dsparb2 = I915_READ(DSPARB2);
479 dsparb3 = I915_READ(DSPARB3);
480 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
481 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
482 break;
483 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200484 MISSING_CASE(pipe);
485 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200486 }
487
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200488 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
489 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
490 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
491 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200492}
493
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200494static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv,
495 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300496{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200497 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300498 int size;
499
500 size = dsparb & 0x7f;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200501 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300502 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
503
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300504 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
505 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506
507 return size;
508}
509
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200510static int i830_get_fifo_size(struct drm_i915_private *dev_priv,
511 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300512{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200513 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300514 int size;
515
516 size = dsparb & 0x1ff;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200517 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300518 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
519 size >>= 1; /* Convert to cachelines */
520
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300521 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
522 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300523
524 return size;
525}
526
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200527static int i845_get_fifo_size(struct drm_i915_private *dev_priv,
528 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300529{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200530 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531 int size;
532
533 size = dsparb & 0x7f;
534 size >>= 2; /* Convert to cachelines */
535
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300536 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
537 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300538
539 return size;
540}
541
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300542/* Pineview has different values for various configs */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800543static const struct intel_watermark_params pnv_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300544 .fifo_size = PINEVIEW_DISPLAY_FIFO,
545 .max_wm = PINEVIEW_MAX_WM,
546 .default_wm = PINEVIEW_DFT_WM,
547 .guard_size = PINEVIEW_GUARD_WM,
548 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300549};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800550
551static const struct intel_watermark_params pnv_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300552 .fifo_size = PINEVIEW_DISPLAY_FIFO,
553 .max_wm = PINEVIEW_MAX_WM,
554 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
555 .guard_size = PINEVIEW_GUARD_WM,
556 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300557};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800558
559static const struct intel_watermark_params pnv_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300560 .fifo_size = PINEVIEW_CURSOR_FIFO,
561 .max_wm = PINEVIEW_CURSOR_MAX_WM,
562 .default_wm = PINEVIEW_CURSOR_DFT_WM,
563 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
564 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300565};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800566
567static const struct intel_watermark_params pnv_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300568 .fifo_size = PINEVIEW_CURSOR_FIFO,
569 .max_wm = PINEVIEW_CURSOR_MAX_WM,
570 .default_wm = PINEVIEW_CURSOR_DFT_WM,
571 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
572 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300573};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800574
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300575static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300576 .fifo_size = I965_CURSOR_FIFO,
577 .max_wm = I965_CURSOR_MAX_WM,
578 .default_wm = I965_CURSOR_DFT_WM,
579 .guard_size = 2,
580 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300581};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800582
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300583static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300584 .fifo_size = I945_FIFO_SIZE,
585 .max_wm = I915_MAX_WM,
586 .default_wm = 1,
587 .guard_size = 2,
588 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300589};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800590
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300591static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300592 .fifo_size = I915_FIFO_SIZE,
593 .max_wm = I915_MAX_WM,
594 .default_wm = 1,
595 .guard_size = 2,
596 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300597};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800598
Ville Syrjälä9d539102014-08-15 01:21:53 +0300599static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300600 .fifo_size = I855GM_FIFO_SIZE,
601 .max_wm = I915_MAX_WM,
602 .default_wm = 1,
603 .guard_size = 2,
604 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300605};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800606
Ville Syrjälä9d539102014-08-15 01:21:53 +0300607static const struct intel_watermark_params i830_bc_wm_info = {
608 .fifo_size = I855GM_FIFO_SIZE,
609 .max_wm = I915_MAX_WM/2,
610 .default_wm = 1,
611 .guard_size = 2,
612 .cacheline_size = I830_FIFO_LINE_SIZE,
613};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800614
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200615static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300616 .fifo_size = I830_FIFO_SIZE,
617 .max_wm = I915_MAX_WM,
618 .default_wm = 1,
619 .guard_size = 2,
620 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300621};
622
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300623/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300624 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
625 * @pixel_rate: Pipe pixel rate in kHz
626 * @cpp: Plane bytes per pixel
627 * @latency: Memory wakeup latency in 0.1us units
628 *
629 * Compute the watermark using the method 1 or "small buffer"
630 * formula. The caller may additonally add extra cachelines
631 * to account for TLB misses and clock crossings.
632 *
633 * This method is concerned with the short term drain rate
634 * of the FIFO, ie. it does not account for blanking periods
635 * which would effectively reduce the average drain rate across
636 * a longer period. The name "small" refers to the fact the
637 * FIFO is relatively small compared to the amount of data
638 * fetched.
639 *
640 * The FIFO level vs. time graph might look something like:
641 *
642 * |\ |\
643 * | \ | \
644 * __---__---__ (- plane active, _ blanking)
645 * -> time
646 *
647 * or perhaps like this:
648 *
649 * |\|\ |\|\
650 * __----__----__ (- plane active, _ blanking)
651 * -> time
652 *
653 * Returns:
654 * The watermark in bytes
655 */
656static unsigned int intel_wm_method1(unsigned int pixel_rate,
657 unsigned int cpp,
658 unsigned int latency)
659{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200660 u64 ret;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300661
Ville Syrjäläd492a292019-04-08 18:27:01 +0300662 ret = mul_u32_u32(pixel_rate, cpp * latency);
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300663 ret = DIV_ROUND_UP_ULL(ret, 10000);
664
665 return ret;
666}
667
668/**
669 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
670 * @pixel_rate: Pipe pixel rate in kHz
671 * @htotal: Pipe horizontal total
672 * @width: Plane width in pixels
673 * @cpp: Plane bytes per pixel
674 * @latency: Memory wakeup latency in 0.1us units
675 *
676 * Compute the watermark using the method 2 or "large buffer"
677 * formula. The caller may additonally add extra cachelines
678 * to account for TLB misses and clock crossings.
679 *
680 * This method is concerned with the long term drain rate
681 * of the FIFO, ie. it does account for blanking periods
682 * which effectively reduce the average drain rate across
683 * a longer period. The name "large" refers to the fact the
684 * FIFO is relatively large compared to the amount of data
685 * fetched.
686 *
687 * The FIFO level vs. time graph might look something like:
688 *
689 * |\___ |\___
690 * | \___ | \___
691 * | \ | \
692 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
693 * -> time
694 *
695 * Returns:
696 * The watermark in bytes
697 */
698static unsigned int intel_wm_method2(unsigned int pixel_rate,
699 unsigned int htotal,
700 unsigned int width,
701 unsigned int cpp,
702 unsigned int latency)
703{
704 unsigned int ret;
705
706 /*
707 * FIXME remove once all users are computing
708 * watermarks in the correct place.
709 */
710 if (WARN_ON_ONCE(htotal == 0))
711 htotal = 1;
712
713 ret = (latency * pixel_rate) / (htotal * 10000);
714 ret = (ret + 1) * width * cpp;
715
716 return ret;
717}
718
719/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300720 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300721 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300722 * @wm: chip FIFO params
Chris Wilson31383412018-02-14 14:03:03 +0000723 * @fifo_size: size of the FIFO buffer
Ville Syrjäläac484962016-01-20 21:05:26 +0200724 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300725 * @latency_ns: memory latency for the platform
726 *
727 * Calculate the watermark level (the level at which the display plane will
728 * start fetching from memory again). Each chip has a different display
729 * FIFO size and allocation, so the caller needs to figure that out and pass
730 * in the correct intel_watermark_params structure.
731 *
732 * As the pixel clock runs, the FIFO will be drained at a rate that depends
733 * on the pixel size. When it reaches the watermark level, it'll start
734 * fetching FIFO line sized based chunks from memory until the FIFO fills
735 * past the watermark point. If the FIFO drains completely, a FIFO underrun
736 * will occur, and a display engine hang could result.
737 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300738static unsigned int intel_calculate_wm(int pixel_rate,
739 const struct intel_watermark_params *wm,
740 int fifo_size, int cpp,
741 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300742{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300743 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300744
745 /*
746 * Note: we need to make sure we don't overflow for various clock &
747 * latency values.
748 * clocks go from a few thousand to several hundred thousand.
749 * latency is usually a few thousand
750 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300751 entries = intel_wm_method1(pixel_rate, cpp,
752 latency_ns / 100);
753 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
754 wm->guard_size;
755 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300756
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300757 wm_size = fifo_size - entries;
758 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300759
760 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300761 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300762 wm_size = wm->max_wm;
763 if (wm_size <= 0)
764 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300765
766 /*
767 * Bspec seems to indicate that the value shouldn't be lower than
768 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
769 * Lets go for 8 which is the burst size since certain platforms
770 * already use a hardcoded 8 (which is what the spec says should be
771 * done).
772 */
773 if (wm_size <= 8)
774 wm_size = 8;
775
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300776 return wm_size;
777}
778
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300779static bool is_disabling(int old, int new, int threshold)
780{
781 return old >= threshold && new < threshold;
782}
783
784static bool is_enabling(int old, int new, int threshold)
785{
786 return old < threshold && new >= threshold;
787}
788
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300789static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
790{
791 return dev_priv->wm.max_level + 1;
792}
793
Ville Syrjälä24304d812017-03-14 17:10:49 +0200794static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
795 const struct intel_plane_state *plane_state)
796{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +0100797 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä24304d812017-03-14 17:10:49 +0200798
799 /* FIXME check the 'enable' instead */
Maarten Lankhorst1326a922019-10-31 12:26:02 +0100800 if (!crtc_state->hw.active)
Ville Syrjälä24304d812017-03-14 17:10:49 +0200801 return false;
802
803 /*
804 * Treat cursor with fb as always visible since cursor updates
805 * can happen faster than the vrefresh rate, and the current
806 * watermark code doesn't handle that correctly. Cursor updates
807 * which set/clear the fb or change the cursor size are going
808 * to get throttled by intel_legacy_cursor_update() to work
809 * around this problem with the watermark code.
810 */
811 if (plane->id == PLANE_CURSOR)
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +0100812 return plane_state->hw.fb != NULL;
Ville Syrjälä24304d812017-03-14 17:10:49 +0200813 else
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +0100814 return plane_state->uapi.visible;
Ville Syrjälä24304d812017-03-14 17:10:49 +0200815}
816
Ville Syrjälä04da7b92019-11-27 22:12:11 +0200817static bool intel_crtc_active(struct intel_crtc *crtc)
818{
819 /* Be paranoid as we can arrive here with only partial
820 * state retrieved from the hardware during setup.
821 *
822 * We can ditch the adjusted_mode.crtc_clock check as soon
823 * as Haswell has gained clock readout/fastboot support.
824 *
825 * We can ditch the crtc->primary->state->fb check as soon as we can
826 * properly reconstruct framebuffers.
827 *
828 * FIXME: The intel_crtc->active here should be switched to
829 * crtc->state->active once we have proper CRTC states wired up
830 * for atomic.
831 */
832 return crtc->active && crtc->base.primary->state->fb &&
833 crtc->config->hw.adjusted_mode.crtc_clock;
834}
835
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200836static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300837{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200838 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300839
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200840 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200841 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300842 if (enabled)
843 return NULL;
844 enabled = crtc;
845 }
846 }
847
848 return enabled;
849}
850
Lucas De Marchi1d218222019-12-24 00:40:04 -0800851static void pnv_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300852{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200853 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200854 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300855 const struct cxsr_latency *latency;
856 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300857 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300858
Tvrtko Ursulin86d35d42019-03-26 07:40:54 +0000859 latency = intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100860 dev_priv->is_ddr3,
861 dev_priv->fsb_freq,
862 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300863 if (!latency) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300864 drm_dbg_kms(&dev_priv->drm,
865 "Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300866 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300867 return;
868 }
869
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200870 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300871 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200872 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +0100873 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200874 const struct drm_framebuffer *fb =
875 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200876 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300877 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300878
879 /* Display SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800880 wm = intel_calculate_wm(clock, &pnv_display_wm,
881 pnv_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200882 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300883 reg = I915_READ(DSPFW1);
884 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200885 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300886 I915_WRITE(DSPFW1, reg);
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300887 drm_dbg_kms(&dev_priv->drm, "DSPFW1 register is %x\n", reg);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300888
889 /* cursor SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800890 wm = intel_calculate_wm(clock, &pnv_cursor_wm,
891 pnv_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300892 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300893 reg = I915_READ(DSPFW3);
894 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200895 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300896 I915_WRITE(DSPFW3, reg);
897
898 /* Display HPLL off SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800899 wm = intel_calculate_wm(clock, &pnv_display_hplloff_wm,
900 pnv_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200901 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300902 reg = I915_READ(DSPFW3);
903 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200904 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300905 I915_WRITE(DSPFW3, reg);
906
907 /* cursor HPLL off SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800908 wm = intel_calculate_wm(clock, &pnv_cursor_hplloff_wm,
909 pnv_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300910 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300911 reg = I915_READ(DSPFW3);
912 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200913 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300914 I915_WRITE(DSPFW3, reg);
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300915 drm_dbg_kms(&dev_priv->drm, "DSPFW3 register is %x\n", reg);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300916
Imre Deak5209b1f2014-07-01 12:36:17 +0300917 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300918 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300919 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300920 }
921}
922
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300923/*
924 * Documentation says:
925 * "If the line size is small, the TLB fetches can get in the way of the
926 * data fetches, causing some lag in the pixel data return which is not
927 * accounted for in the above formulas. The following adjustment only
928 * needs to be applied if eight whole lines fit in the buffer at once.
929 * The WM is adjusted upwards by the difference between the FIFO size
930 * and the size of 8 whole lines. This adjustment is always performed
931 * in the actual pixel depth regardless of whether FBC is enabled or not."
932 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000933static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300934{
935 int tlb_miss = fifo_size * 64 - width * cpp * 8;
936
937 return max(0, tlb_miss);
938}
939
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300940static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
941 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300942{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300943 enum pipe pipe;
944
945 for_each_pipe(dev_priv, pipe)
946 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
947
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300948 I915_WRITE(DSPFW1,
949 FW_WM(wm->sr.plane, SR) |
950 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
951 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
952 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
953 I915_WRITE(DSPFW2,
954 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
955 FW_WM(wm->sr.fbc, FBC_SR) |
956 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
957 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
958 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
959 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
960 I915_WRITE(DSPFW3,
961 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
962 FW_WM(wm->sr.cursor, CURSOR_SR) |
963 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
964 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300965
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300966 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300967}
968
Ville Syrjälä15665972015-03-10 16:16:28 +0200969#define FW_WM_VLV(value, plane) \
970 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
971
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200972static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200973 const struct vlv_wm_values *wm)
974{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200975 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200976
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200977 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200978 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
979
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200980 I915_WRITE(VLV_DDL(pipe),
981 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
982 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
983 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
984 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
985 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200986
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200987 /*
988 * Zero the (unused) WM1 watermarks, and also clear all the
989 * high order bits so that there are no out of bounds values
990 * present in the registers during the reprogramming.
991 */
992 I915_WRITE(DSPHOWM, 0);
993 I915_WRITE(DSPHOWM1, 0);
994 I915_WRITE(DSPFW4, 0);
995 I915_WRITE(DSPFW5, 0);
996 I915_WRITE(DSPFW6, 0);
997
Ville Syrjäläae801522015-03-05 21:19:49 +0200998 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +0200999 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001000 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
1001 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
1002 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001003 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001004 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
1005 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
1006 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001007 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +02001008 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +02001009
1010 if (IS_CHERRYVIEW(dev_priv)) {
1011 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001012 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1013 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001014 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001015 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1016 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001017 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001018 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1019 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001020 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001021 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001022 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1023 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1024 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1025 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1026 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1027 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1028 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1029 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1030 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001031 } else {
1032 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001033 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1034 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001035 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001036 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001037 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1038 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1039 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1040 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1041 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1042 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001043 }
1044
1045 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001046}
1047
Ville Syrjälä15665972015-03-10 16:16:28 +02001048#undef FW_WM_VLV
1049
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001050static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1051{
1052 /* all latencies in usec */
1053 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1054 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001055 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001056
Ville Syrjälä79d94302017-04-21 21:14:30 +03001057 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001058}
1059
1060static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1061{
1062 /*
1063 * DSPCNTR[13] supposedly controls whether the
1064 * primary plane can use the FIFO space otherwise
1065 * reserved for the sprite plane. It's not 100% clear
1066 * what the actual FIFO size is, but it looks like we
1067 * can happily set both primary and sprite watermarks
1068 * up to 127 cachelines. So that would seem to mean
1069 * that either DSPCNTR[13] doesn't do anything, or that
1070 * the total FIFO is >= 256 cachelines in size. Either
1071 * way, we don't seem to have to worry about this
1072 * repartitioning as the maximum watermark value the
1073 * register can hold for each plane is lower than the
1074 * minimum FIFO size.
1075 */
1076 switch (plane_id) {
1077 case PLANE_CURSOR:
1078 return 63;
1079 case PLANE_PRIMARY:
1080 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1081 case PLANE_SPRITE0:
1082 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1083 default:
1084 MISSING_CASE(plane_id);
1085 return 0;
1086 }
1087}
1088
1089static int g4x_fbc_fifo_size(int level)
1090{
1091 switch (level) {
1092 case G4X_WM_LEVEL_SR:
1093 return 7;
1094 case G4X_WM_LEVEL_HPLL:
1095 return 15;
1096 default:
1097 MISSING_CASE(level);
1098 return 0;
1099 }
1100}
1101
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001102static u16 g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1103 const struct intel_plane_state *plane_state,
1104 int level)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001105{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001106 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001107 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1108 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01001109 &crtc_state->hw.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001110 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1111 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001112
1113 if (latency == 0)
1114 return USHRT_MAX;
1115
1116 if (!intel_wm_plane_visible(crtc_state, plane_state))
1117 return 0;
1118
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001119 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläd56e8232019-07-03 23:08:22 +03001120
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001121 /*
1122 * Not 100% sure which way ELK should go here as the
1123 * spec only says CL/CTG should assume 32bpp and BW
1124 * doesn't need to. But as these things followed the
1125 * mobile vs. desktop lines on gen3 as well, let's
1126 * assume ELK doesn't need this.
1127 *
1128 * The spec also fails to list such a restriction for
1129 * the HPLL watermark, which seems a little strange.
1130 * Let's use 32bpp for the HPLL watermark as well.
1131 */
1132 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1133 level != G4X_WM_LEVEL_NORMAL)
Ville Syrjäläd56e8232019-07-03 23:08:22 +03001134 cpp = max(cpp, 4u);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001135
1136 clock = adjusted_mode->crtc_clock;
1137 htotal = adjusted_mode->crtc_htotal;
1138
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001139 width = drm_rect_width(&plane_state->uapi.dst);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001140
1141 if (plane->id == PLANE_CURSOR) {
1142 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1143 } else if (plane->id == PLANE_PRIMARY &&
1144 level == G4X_WM_LEVEL_NORMAL) {
1145 wm = intel_wm_method1(clock, cpp, latency);
1146 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001147 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001148
1149 small = intel_wm_method1(clock, cpp, latency);
1150 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1151
1152 wm = min(small, large);
1153 }
1154
1155 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1156 width, cpp);
1157
1158 wm = DIV_ROUND_UP(wm, 64) + 2;
1159
Chris Wilson1a1f1282017-11-07 14:03:38 +00001160 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001161}
1162
1163static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1164 int level, enum plane_id plane_id, u16 value)
1165{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001166 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001167 bool dirty = false;
1168
1169 for (; level < intel_wm_num_levels(dev_priv); level++) {
1170 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1171
1172 dirty |= raw->plane[plane_id] != value;
1173 raw->plane[plane_id] = value;
1174 }
1175
1176 return dirty;
1177}
1178
1179static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1180 int level, u16 value)
1181{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001182 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001183 bool dirty = false;
1184
1185 /* NORMAL level doesn't have an FBC watermark */
1186 level = max(level, G4X_WM_LEVEL_SR);
1187
1188 for (; level < intel_wm_num_levels(dev_priv); level++) {
1189 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1190
1191 dirty |= raw->fbc != value;
1192 raw->fbc = value;
1193 }
1194
1195 return dirty;
1196}
1197
Maarten Lankhorstec193642019-06-28 10:55:17 +02001198static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
1199 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001200 u32 pri_val);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001201
1202static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1203 const struct intel_plane_state *plane_state)
1204{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001205 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001206 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001207 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1208 enum plane_id plane_id = plane->id;
1209 bool dirty = false;
1210 int level;
1211
1212 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1213 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1214 if (plane_id == PLANE_PRIMARY)
1215 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1216 goto out;
1217 }
1218
1219 for (level = 0; level < num_levels; level++) {
1220 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1221 int wm, max_wm;
1222
1223 wm = g4x_compute_wm(crtc_state, plane_state, level);
1224 max_wm = g4x_plane_fifo_size(plane_id, level);
1225
1226 if (wm > max_wm)
1227 break;
1228
1229 dirty |= raw->plane[plane_id] != wm;
1230 raw->plane[plane_id] = wm;
1231
1232 if (plane_id != PLANE_PRIMARY ||
1233 level == G4X_WM_LEVEL_NORMAL)
1234 continue;
1235
1236 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1237 raw->plane[plane_id]);
1238 max_wm = g4x_fbc_fifo_size(level);
1239
1240 /*
1241 * FBC wm is not mandatory as we
1242 * can always just disable its use.
1243 */
1244 if (wm > max_wm)
1245 wm = USHRT_MAX;
1246
1247 dirty |= raw->fbc != wm;
1248 raw->fbc = wm;
1249 }
1250
1251 /* mark watermarks as invalid */
1252 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1253
1254 if (plane_id == PLANE_PRIMARY)
1255 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1256
1257 out:
1258 if (dirty) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001259 drm_dbg_kms(&dev_priv->drm,
1260 "%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1261 plane->base.name,
1262 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1263 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1264 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001265
1266 if (plane_id == PLANE_PRIMARY)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001267 drm_dbg_kms(&dev_priv->drm,
1268 "FBC watermarks: SR=%d, HPLL=%d\n",
1269 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1270 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001271 }
1272
1273 return dirty;
1274}
1275
1276static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1277 enum plane_id plane_id, int level)
1278{
1279 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1280
1281 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1282}
1283
1284static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1285 int level)
1286{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001287 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001288
1289 if (level > dev_priv->wm.max_level)
1290 return false;
1291
1292 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1293 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1294 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1295}
1296
1297/* mark all levels starting from 'level' as invalid */
1298static void g4x_invalidate_wms(struct intel_crtc *crtc,
1299 struct g4x_wm_state *wm_state, int level)
1300{
1301 if (level <= G4X_WM_LEVEL_NORMAL) {
1302 enum plane_id plane_id;
1303
1304 for_each_plane_id_on_crtc(crtc, plane_id)
1305 wm_state->wm.plane[plane_id] = USHRT_MAX;
1306 }
1307
1308 if (level <= G4X_WM_LEVEL_SR) {
1309 wm_state->cxsr = false;
1310 wm_state->sr.cursor = USHRT_MAX;
1311 wm_state->sr.plane = USHRT_MAX;
1312 wm_state->sr.fbc = USHRT_MAX;
1313 }
1314
1315 if (level <= G4X_WM_LEVEL_HPLL) {
1316 wm_state->hpll_en = false;
1317 wm_state->hpll.cursor = USHRT_MAX;
1318 wm_state->hpll.plane = USHRT_MAX;
1319 wm_state->hpll.fbc = USHRT_MAX;
1320 }
1321}
1322
1323static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1324{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001325 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001326 struct intel_atomic_state *state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001327 to_intel_atomic_state(crtc_state->uapi.state);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001328 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001329 int num_active_planes = hweight8(crtc_state->active_planes &
1330 ~BIT(PLANE_CURSOR));
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001331 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001332 const struct intel_plane_state *old_plane_state;
1333 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001334 struct intel_plane *plane;
1335 enum plane_id plane_id;
1336 int i, level;
1337 unsigned int dirty = 0;
1338
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001339 for_each_oldnew_intel_plane_in_state(state, plane,
1340 old_plane_state,
1341 new_plane_state, i) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001342 if (new_plane_state->hw.crtc != &crtc->base &&
1343 old_plane_state->hw.crtc != &crtc->base)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001344 continue;
1345
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001346 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001347 dirty |= BIT(plane->id);
1348 }
1349
1350 if (!dirty)
1351 return 0;
1352
1353 level = G4X_WM_LEVEL_NORMAL;
1354 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1355 goto out;
1356
1357 raw = &crtc_state->wm.g4x.raw[level];
1358 for_each_plane_id_on_crtc(crtc, plane_id)
1359 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1360
1361 level = G4X_WM_LEVEL_SR;
1362
1363 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1364 goto out;
1365
1366 raw = &crtc_state->wm.g4x.raw[level];
1367 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1368 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1369 wm_state->sr.fbc = raw->fbc;
1370
1371 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1372
1373 level = G4X_WM_LEVEL_HPLL;
1374
1375 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1376 goto out;
1377
1378 raw = &crtc_state->wm.g4x.raw[level];
1379 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1380 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1381 wm_state->hpll.fbc = raw->fbc;
1382
1383 wm_state->hpll_en = wm_state->cxsr;
1384
1385 level++;
1386
1387 out:
1388 if (level == G4X_WM_LEVEL_NORMAL)
1389 return -EINVAL;
1390
1391 /* invalidate the higher levels */
1392 g4x_invalidate_wms(crtc, wm_state, level);
1393
1394 /*
1395 * Determine if the FBC watermark(s) can be used. IF
1396 * this isn't the case we prefer to disable the FBC
1397 ( watermark(s) rather than disable the SR/HPLL
1398 * level(s) entirely.
1399 */
1400 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1401
1402 if (level >= G4X_WM_LEVEL_SR &&
1403 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1404 wm_state->fbc_en = false;
1405 else if (level >= G4X_WM_LEVEL_HPLL &&
1406 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1407 wm_state->fbc_en = false;
1408
1409 return 0;
1410}
1411
Matt Ropercd1d3ee2018-12-10 13:54:14 -08001412static int g4x_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001413{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001414 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001415 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1416 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1417 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001418 to_intel_atomic_state(new_crtc_state->uapi.state);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001419 const struct intel_crtc_state *old_crtc_state =
1420 intel_atomic_get_old_crtc_state(intel_state, crtc);
1421 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001422 enum plane_id plane_id;
1423
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001424 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001425 *intermediate = *optimal;
1426
1427 intermediate->cxsr = false;
1428 intermediate->hpll_en = false;
1429 goto out;
1430 }
1431
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001432 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001433 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001434 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001435 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001436 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1437
1438 for_each_plane_id_on_crtc(crtc, plane_id) {
1439 intermediate->wm.plane[plane_id] =
1440 max(optimal->wm.plane[plane_id],
1441 active->wm.plane[plane_id]);
1442
1443 WARN_ON(intermediate->wm.plane[plane_id] >
1444 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1445 }
1446
1447 intermediate->sr.plane = max(optimal->sr.plane,
1448 active->sr.plane);
1449 intermediate->sr.cursor = max(optimal->sr.cursor,
1450 active->sr.cursor);
1451 intermediate->sr.fbc = max(optimal->sr.fbc,
1452 active->sr.fbc);
1453
1454 intermediate->hpll.plane = max(optimal->hpll.plane,
1455 active->hpll.plane);
1456 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1457 active->hpll.cursor);
1458 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1459 active->hpll.fbc);
1460
1461 WARN_ON((intermediate->sr.plane >
1462 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1463 intermediate->sr.cursor >
1464 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1465 intermediate->cxsr);
1466 WARN_ON((intermediate->sr.plane >
1467 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1468 intermediate->sr.cursor >
1469 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1470 intermediate->hpll_en);
1471
1472 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1473 intermediate->fbc_en && intermediate->cxsr);
1474 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1475 intermediate->fbc_en && intermediate->hpll_en);
1476
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001477out:
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001478 /*
1479 * If our intermediate WM are identical to the final WM, then we can
1480 * omit the post-vblank programming; only update if it's different.
1481 */
1482 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001483 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001484
1485 return 0;
1486}
1487
1488static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1489 struct g4x_wm_values *wm)
1490{
1491 struct intel_crtc *crtc;
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001492 int num_active_pipes = 0;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001493
1494 wm->cxsr = true;
1495 wm->hpll_en = true;
1496 wm->fbc_en = true;
1497
1498 for_each_intel_crtc(&dev_priv->drm, crtc) {
1499 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1500
1501 if (!crtc->active)
1502 continue;
1503
1504 if (!wm_state->cxsr)
1505 wm->cxsr = false;
1506 if (!wm_state->hpll_en)
1507 wm->hpll_en = false;
1508 if (!wm_state->fbc_en)
1509 wm->fbc_en = false;
1510
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001511 num_active_pipes++;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001512 }
1513
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001514 if (num_active_pipes != 1) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001515 wm->cxsr = false;
1516 wm->hpll_en = false;
1517 wm->fbc_en = false;
1518 }
1519
1520 for_each_intel_crtc(&dev_priv->drm, crtc) {
1521 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1522 enum pipe pipe = crtc->pipe;
1523
1524 wm->pipe[pipe] = wm_state->wm;
1525 if (crtc->active && wm->cxsr)
1526 wm->sr = wm_state->sr;
1527 if (crtc->active && wm->hpll_en)
1528 wm->hpll = wm_state->hpll;
1529 }
1530}
1531
1532static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1533{
1534 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1535 struct g4x_wm_values new_wm = {};
1536
1537 g4x_merge_wm(dev_priv, &new_wm);
1538
1539 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1540 return;
1541
1542 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1543 _intel_set_memory_cxsr(dev_priv, false);
1544
1545 g4x_write_wm_values(dev_priv, &new_wm);
1546
1547 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1548 _intel_set_memory_cxsr(dev_priv, true);
1549
1550 *old_wm = new_wm;
1551}
1552
1553static void g4x_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001554 struct intel_crtc *crtc)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001555{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001556 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1557 const struct intel_crtc_state *crtc_state =
1558 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001559
1560 mutex_lock(&dev_priv->wm.wm_mutex);
1561 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1562 g4x_program_watermarks(dev_priv);
1563 mutex_unlock(&dev_priv->wm.wm_mutex);
1564}
1565
1566static void g4x_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001567 struct intel_crtc *crtc)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001568{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001569 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1570 const struct intel_crtc_state *crtc_state =
1571 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001572
1573 if (!crtc_state->wm.need_postvbl_update)
1574 return;
1575
1576 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03001577 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001578 g4x_program_watermarks(dev_priv);
1579 mutex_unlock(&dev_priv->wm.wm_mutex);
1580}
1581
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001582/* latency must be in 0.1us units. */
1583static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001584 unsigned int htotal,
1585 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001586 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001587 unsigned int latency)
1588{
1589 unsigned int ret;
1590
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001591 ret = intel_wm_method2(pixel_rate, htotal,
1592 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001593 ret = DIV_ROUND_UP(ret, 64);
1594
1595 return ret;
1596}
1597
Ville Syrjäläbb726512016-10-31 22:37:24 +02001598static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001599{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001600 /* all latencies in usec */
1601 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1602
Ville Syrjälä58590c12015-09-08 21:05:12 +03001603 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1604
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001605 if (IS_CHERRYVIEW(dev_priv)) {
1606 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1607 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001608
1609 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001610 }
1611}
1612
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001613static u16 vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1614 const struct intel_plane_state *plane_state,
1615 int level)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001616{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001617 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001618 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001619 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01001620 &crtc_state->hw.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001621 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001622
1623 if (dev_priv->wm.pri_latency[level] == 0)
1624 return USHRT_MAX;
1625
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001626 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001627 return 0;
1628
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001629 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001630 clock = adjusted_mode->crtc_clock;
1631 htotal = adjusted_mode->crtc_htotal;
1632 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001633
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001634 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001635 /*
1636 * FIXME the formula gives values that are
1637 * too big for the cursor FIFO, and hence we
1638 * would never be able to use cursors. For
1639 * now just hardcode the watermark.
1640 */
1641 wm = 63;
1642 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001643 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001644 dev_priv->wm.pri_latency[level] * 10);
1645 }
1646
Chris Wilson1a1f1282017-11-07 14:03:38 +00001647 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001648}
1649
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001650static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1651{
1652 return (active_planes & (BIT(PLANE_SPRITE0) |
1653 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1654}
1655
Ville Syrjälä5012e602017-03-02 19:14:56 +02001656static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001657{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001658 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001659 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001660 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001661 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001662 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001663 int num_active_planes = hweight8(active_planes);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001664 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001665 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001666 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001667 unsigned int total_rate;
1668 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001669
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001670 /*
1671 * When enabling sprite0 after sprite1 has already been enabled
1672 * we tend to get an underrun unless sprite0 already has some
1673 * FIFO space allcoated. Hence we always allocate at least one
1674 * cacheline for sprite0 whenever sprite1 is enabled.
1675 *
1676 * All other plane enable sequences appear immune to this problem.
1677 */
1678 if (vlv_need_sprite0_fifo_workaround(active_planes))
1679 sprite0_fifo_extra = 1;
1680
Ville Syrjälä5012e602017-03-02 19:14:56 +02001681 total_rate = raw->plane[PLANE_PRIMARY] +
1682 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001683 raw->plane[PLANE_SPRITE1] +
1684 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001685
Ville Syrjälä5012e602017-03-02 19:14:56 +02001686 if (total_rate > fifo_size)
1687 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001688
Ville Syrjälä5012e602017-03-02 19:14:56 +02001689 if (total_rate == 0)
1690 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001691
Ville Syrjälä5012e602017-03-02 19:14:56 +02001692 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001693 unsigned int rate;
1694
Ville Syrjälä5012e602017-03-02 19:14:56 +02001695 if ((active_planes & BIT(plane_id)) == 0) {
1696 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001697 continue;
1698 }
1699
Ville Syrjälä5012e602017-03-02 19:14:56 +02001700 rate = raw->plane[plane_id];
1701 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1702 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001703 }
1704
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001705 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1706 fifo_left -= sprite0_fifo_extra;
1707
Ville Syrjälä5012e602017-03-02 19:14:56 +02001708 fifo_state->plane[PLANE_CURSOR] = 63;
1709
1710 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001711
1712 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001713 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001714 int plane_extra;
1715
1716 if (fifo_left == 0)
1717 break;
1718
Ville Syrjälä5012e602017-03-02 19:14:56 +02001719 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001720 continue;
1721
1722 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001723 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001724 fifo_left -= plane_extra;
1725 }
1726
Ville Syrjälä5012e602017-03-02 19:14:56 +02001727 WARN_ON(active_planes != 0 && fifo_left != 0);
1728
1729 /* give it all to the first plane if none are active */
1730 if (active_planes == 0) {
1731 WARN_ON(fifo_left != fifo_size);
1732 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1733 }
1734
1735 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001736}
1737
Ville Syrjäläff32c542017-03-02 19:14:57 +02001738/* mark all levels starting from 'level' as invalid */
1739static void vlv_invalidate_wms(struct intel_crtc *crtc,
1740 struct vlv_wm_state *wm_state, int level)
1741{
1742 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1743
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001744 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001745 enum plane_id plane_id;
1746
1747 for_each_plane_id_on_crtc(crtc, plane_id)
1748 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1749
1750 wm_state->sr[level].cursor = USHRT_MAX;
1751 wm_state->sr[level].plane = USHRT_MAX;
1752 }
1753}
1754
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001755static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1756{
1757 if (wm > fifo_size)
1758 return USHRT_MAX;
1759 else
1760 return fifo_size - wm;
1761}
1762
Ville Syrjäläff32c542017-03-02 19:14:57 +02001763/*
1764 * Starting from 'level' set all higher
1765 * levels to 'value' in the "raw" watermarks.
1766 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001767static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001768 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001769{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001770 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001771 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001772 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001773
Ville Syrjäläff32c542017-03-02 19:14:57 +02001774 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001775 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001776
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001777 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001778 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001779 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001780
1781 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001782}
1783
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001784static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1785 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001786{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001787 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001788 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001789 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001790 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001791 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001792 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001793
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001794 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001795 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1796 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001797 }
1798
1799 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001800 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001801 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1802 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1803
Ville Syrjäläff32c542017-03-02 19:14:57 +02001804 if (wm > max_wm)
1805 break;
1806
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001807 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001808 raw->plane[plane_id] = wm;
1809 }
1810
1811 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001812 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001813
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001814out:
1815 if (dirty)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001816 drm_dbg_kms(&dev_priv->drm,
1817 "%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
1818 plane->base.name,
1819 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1820 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1821 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001822
1823 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001824}
1825
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001826static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1827 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001828{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001829 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001830 &crtc_state->wm.vlv.raw[level];
1831 const struct vlv_fifo_state *fifo_state =
1832 &crtc_state->wm.vlv.fifo_state;
1833
1834 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1835}
1836
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001837static 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 +02001838{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001839 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1840 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1841 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1842 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001843}
1844
1845static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001846{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001847 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001848 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001849 struct intel_atomic_state *state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001850 to_intel_atomic_state(crtc_state->uapi.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001851 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001852 const struct vlv_fifo_state *fifo_state =
1853 &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001854 int num_active_planes = hweight8(crtc_state->active_planes &
1855 ~BIT(PLANE_CURSOR));
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001856 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->uapi);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001857 const struct intel_plane_state *old_plane_state;
1858 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001859 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001860 enum plane_id plane_id;
1861 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001862 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001863
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001864 for_each_oldnew_intel_plane_in_state(state, plane,
1865 old_plane_state,
1866 new_plane_state, i) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001867 if (new_plane_state->hw.crtc != &crtc->base &&
1868 old_plane_state->hw.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001869 continue;
1870
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001871 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001872 dirty |= BIT(plane->id);
1873 }
1874
1875 /*
1876 * DSPARB registers may have been reset due to the
1877 * power well being turned off. Make sure we restore
1878 * them to a consistent state even if no primary/sprite
1879 * planes are initially active.
1880 */
1881 if (needs_modeset)
1882 crtc_state->fifo_changed = true;
1883
1884 if (!dirty)
1885 return 0;
1886
1887 /* cursor changes don't warrant a FIFO recompute */
1888 if (dirty & ~BIT(PLANE_CURSOR)) {
1889 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001890 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001891 const struct vlv_fifo_state *old_fifo_state =
1892 &old_crtc_state->wm.vlv.fifo_state;
1893
1894 ret = vlv_compute_fifo(crtc_state);
1895 if (ret)
1896 return ret;
1897
1898 if (needs_modeset ||
1899 memcmp(old_fifo_state, fifo_state,
1900 sizeof(*fifo_state)) != 0)
1901 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001902 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001903
Ville Syrjäläff32c542017-03-02 19:14:57 +02001904 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001905 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001906 /*
1907 * Note that enabling cxsr with no primary/sprite planes
1908 * enabled can wedge the pipe. Hence we only allow cxsr
1909 * with exactly one enabled primary/sprite plane.
1910 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001911 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001912
Ville Syrjälä5012e602017-03-02 19:14:56 +02001913 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001914 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Jani Nikula24977872019-09-11 12:26:08 +03001915 const int sr_fifo_size = INTEL_NUM_PIPES(dev_priv) * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001916
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001917 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001918 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001919
Ville Syrjäläff32c542017-03-02 19:14:57 +02001920 for_each_plane_id_on_crtc(crtc, plane_id) {
1921 wm_state->wm[level].plane[plane_id] =
1922 vlv_invert_wm_value(raw->plane[plane_id],
1923 fifo_state->plane[plane_id]);
1924 }
1925
1926 wm_state->sr[level].plane =
1927 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001928 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001929 raw->plane[PLANE_SPRITE1]),
1930 sr_fifo_size);
1931
1932 wm_state->sr[level].cursor =
1933 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1934 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001935 }
1936
Ville Syrjäläff32c542017-03-02 19:14:57 +02001937 if (level == 0)
1938 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001939
Ville Syrjäläff32c542017-03-02 19:14:57 +02001940 /* limit to only levels we can actually handle */
1941 wm_state->num_levels = level;
1942
1943 /* invalidate the higher levels */
1944 vlv_invalidate_wms(crtc, wm_state, level);
1945
1946 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001947}
1948
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001949#define VLV_FIFO(plane, value) \
1950 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1951
Ville Syrjäläff32c542017-03-02 19:14:57 +02001952static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001953 struct intel_crtc *crtc)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001954{
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001955 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001956 struct intel_uncore *uncore = &dev_priv->uncore;
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001957 const struct intel_crtc_state *crtc_state =
1958 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001959 const struct vlv_fifo_state *fifo_state =
1960 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001961 int sprite0_start, sprite1_start, fifo_size;
Kees Cook2713eb42020-02-20 16:05:17 -08001962 u32 dsparb, dsparb2, dsparb3;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001963
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001964 if (!crtc_state->fifo_changed)
1965 return;
1966
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001967 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1968 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1969 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001970
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05301971 drm_WARN_ON(&dev_priv->drm, fifo_state->plane[PLANE_CURSOR] != 63);
1972 drm_WARN_ON(&dev_priv->drm, fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001973
Ville Syrjäläc137d662017-03-02 19:15:06 +02001974 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1975
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001976 /*
1977 * uncore.lock serves a double purpose here. It allows us to
1978 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1979 * it protects the DSPARB registers from getting clobbered by
1980 * parallel updates from multiple pipes.
1981 *
1982 * intel_pipe_update_start() has already disabled interrupts
1983 * for us, so a plain spin_lock() is sufficient here.
1984 */
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001985 spin_lock(&uncore->lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001986
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001987 switch (crtc->pipe) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001988 case PIPE_A:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001989 dsparb = intel_uncore_read_fw(uncore, DSPARB);
1990 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001991
1992 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
1993 VLV_FIFO(SPRITEB, 0xff));
1994 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
1995 VLV_FIFO(SPRITEB, sprite1_start));
1996
1997 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
1998 VLV_FIFO(SPRITEB_HI, 0x1));
1999 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
2000 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
2001
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002002 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2003 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002004 break;
2005 case PIPE_B:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002006 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2007 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002008
2009 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
2010 VLV_FIFO(SPRITED, 0xff));
2011 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
2012 VLV_FIFO(SPRITED, sprite1_start));
2013
2014 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
2015 VLV_FIFO(SPRITED_HI, 0xff));
2016 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2017 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2018
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002019 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2020 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002021 break;
2022 case PIPE_C:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002023 dsparb3 = intel_uncore_read_fw(uncore, DSPARB3);
2024 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002025
2026 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2027 VLV_FIFO(SPRITEF, 0xff));
2028 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2029 VLV_FIFO(SPRITEF, sprite1_start));
2030
2031 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2032 VLV_FIFO(SPRITEF_HI, 0xff));
2033 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2034 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2035
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002036 intel_uncore_write_fw(uncore, DSPARB3, dsparb3);
2037 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002038 break;
2039 default:
2040 break;
2041 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002042
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002043 intel_uncore_posting_read_fw(uncore, DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002044
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002045 spin_unlock(&uncore->lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002046}
2047
2048#undef VLV_FIFO
2049
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002050static int vlv_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002051{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002052 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002053 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2054 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2055 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002056 to_intel_atomic_state(new_crtc_state->uapi.state);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002057 const struct intel_crtc_state *old_crtc_state =
2058 intel_atomic_get_old_crtc_state(intel_state, crtc);
2059 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002060 int level;
2061
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002062 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002063 *intermediate = *optimal;
2064
2065 intermediate->cxsr = false;
2066 goto out;
2067 }
2068
Ville Syrjälä4841da52017-03-02 19:14:59 +02002069 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002070 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002071 !new_crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002072
2073 for (level = 0; level < intermediate->num_levels; level++) {
2074 enum plane_id plane_id;
2075
2076 for_each_plane_id_on_crtc(crtc, plane_id) {
2077 intermediate->wm[level].plane[plane_id] =
2078 min(optimal->wm[level].plane[plane_id],
2079 active->wm[level].plane[plane_id]);
2080 }
2081
2082 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2083 active->sr[level].plane);
2084 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2085 active->sr[level].cursor);
2086 }
2087
2088 vlv_invalidate_wms(crtc, intermediate, level);
2089
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002090out:
Ville Syrjälä4841da52017-03-02 19:14:59 +02002091 /*
2092 * If our intermediate WM are identical to the final WM, then we can
2093 * omit the post-vblank programming; only update if it's different.
2094 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002095 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002096 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002097
2098 return 0;
2099}
2100
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002101static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002102 struct vlv_wm_values *wm)
2103{
2104 struct intel_crtc *crtc;
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002105 int num_active_pipes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002106
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002107 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002108 wm->cxsr = true;
2109
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002110 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002111 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002112
2113 if (!crtc->active)
2114 continue;
2115
2116 if (!wm_state->cxsr)
2117 wm->cxsr = false;
2118
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002119 num_active_pipes++;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002120 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2121 }
2122
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002123 if (num_active_pipes != 1)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002124 wm->cxsr = false;
2125
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002126 if (num_active_pipes > 1)
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002127 wm->level = VLV_WM_LEVEL_PM2;
2128
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002129 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002130 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002131 enum pipe pipe = crtc->pipe;
2132
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002133 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002134 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002135 wm->sr = wm_state->sr[wm->level];
2136
Ville Syrjälä1b313892016-11-28 19:37:08 +02002137 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2138 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2139 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2140 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002141 }
2142}
2143
Ville Syrjäläff32c542017-03-02 19:14:57 +02002144static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002145{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002146 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2147 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002148
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002149 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002150
Ville Syrjäläff32c542017-03-02 19:14:57 +02002151 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002152 return;
2153
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002154 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002155 chv_set_memory_dvfs(dev_priv, false);
2156
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002157 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002158 chv_set_memory_pm5(dev_priv, false);
2159
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002160 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002161 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002162
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002163 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002164
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002165 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002166 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002167
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002168 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002169 chv_set_memory_pm5(dev_priv, true);
2170
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002171 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002172 chv_set_memory_dvfs(dev_priv, true);
2173
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002174 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002175}
2176
Ville Syrjäläff32c542017-03-02 19:14:57 +02002177static void vlv_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002178 struct intel_crtc *crtc)
Ville Syrjäläff32c542017-03-02 19:14:57 +02002179{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002180 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2181 const struct intel_crtc_state *crtc_state =
2182 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjäläff32c542017-03-02 19:14:57 +02002183
2184 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002185 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2186 vlv_program_watermarks(dev_priv);
2187 mutex_unlock(&dev_priv->wm.wm_mutex);
2188}
2189
2190static void vlv_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002191 struct intel_crtc *crtc)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002192{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002193 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2194 const struct intel_crtc_state *crtc_state =
2195 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002196
2197 if (!crtc_state->wm.need_postvbl_update)
2198 return;
2199
2200 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03002201 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002202 vlv_program_watermarks(dev_priv);
2203 mutex_unlock(&dev_priv->wm.wm_mutex);
2204}
2205
Ville Syrjälä432081b2016-10-31 22:37:03 +02002206static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002207{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002208 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002209 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002210 int srwm = 1;
2211 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002212 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002213
2214 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002215 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002216 if (crtc) {
2217 /* self-refresh has much higher latency */
2218 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002219 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002220 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002221 const struct drm_framebuffer *fb =
2222 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002223 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002224 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002225 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002226 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002227 int entries;
2228
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002229 entries = intel_wm_method2(clock, htotal,
2230 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002231 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2232 srwm = I965_FIFO_SIZE - entries;
2233 if (srwm < 0)
2234 srwm = 1;
2235 srwm &= 0x1ff;
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002236 drm_dbg_kms(&dev_priv->drm,
2237 "self-refresh entries: %d, wm: %d\n",
2238 entries, srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002239
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002240 entries = intel_wm_method2(clock, htotal,
2241 crtc->base.cursor->state->crtc_w, 4,
2242 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002243 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002244 i965_cursor_wm_info.cacheline_size) +
2245 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002246
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002247 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002248 if (cursor_sr > i965_cursor_wm_info.max_wm)
2249 cursor_sr = i965_cursor_wm_info.max_wm;
2250
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002251 drm_dbg_kms(&dev_priv->drm,
2252 "self-refresh watermark: display plane %d "
2253 "cursor %d\n", srwm, cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002254
Imre Deak98584252014-06-13 14:54:20 +03002255 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002256 } else {
Imre Deak98584252014-06-13 14:54:20 +03002257 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002258 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002259 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002260 }
2261
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002262 drm_dbg_kms(&dev_priv->drm,
2263 "Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2264 srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002265
2266 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002267 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2268 FW_WM(8, CURSORB) |
2269 FW_WM(8, PLANEB) |
2270 FW_WM(8, PLANEA));
2271 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2272 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002273 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002274 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002275
2276 if (cxsr_enabled)
2277 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002278}
2279
Ville Syrjäläf4998962015-03-10 17:02:21 +02002280#undef FW_WM
2281
Ville Syrjälä432081b2016-10-31 22:37:03 +02002282static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002283{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002284 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002285 const struct intel_watermark_params *wm_info;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002286 u32 fwater_lo;
2287 u32 fwater_hi;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002288 int cwm, srwm = 1;
2289 int fifo_size;
2290 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002291 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002292
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002293 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002294 wm_info = &i945_wm_info;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002295 else if (!IS_GEN(dev_priv, 2))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002296 wm_info = &i915_wm_info;
2297 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002298 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002299
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002300 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A);
2301 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002302 if (intel_crtc_active(crtc)) {
2303 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002304 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002305 const struct drm_framebuffer *fb =
2306 crtc->base.primary->state->fb;
2307 int cpp;
2308
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002309 if (IS_GEN(dev_priv, 2))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002310 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002311 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002312 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002313
Damien Lespiau241bfc32013-09-25 16:45:37 +01002314 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002315 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002316 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002317 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002318 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002319 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002320 if (planea_wm > (long)wm_info->max_wm)
2321 planea_wm = wm_info->max_wm;
2322 }
2323
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002324 if (IS_GEN(dev_priv, 2))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002325 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002326
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002327 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B);
2328 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002329 if (intel_crtc_active(crtc)) {
2330 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002331 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002332 const struct drm_framebuffer *fb =
2333 crtc->base.primary->state->fb;
2334 int cpp;
2335
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002336 if (IS_GEN(dev_priv, 2))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002337 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002338 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002339 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002340
Damien Lespiau241bfc32013-09-25 16:45:37 +01002341 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002342 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002343 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002344 if (enabled == NULL)
2345 enabled = crtc;
2346 else
2347 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002348 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002349 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002350 if (planeb_wm > (long)wm_info->max_wm)
2351 planeb_wm = wm_info->max_wm;
2352 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002353
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002354 drm_dbg_kms(&dev_priv->drm,
2355 "FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002356
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002357 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002358 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002359
Ville Syrjäläefc26112016-10-31 22:37:04 +02002360 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002361
2362 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002363 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002364 enabled = NULL;
2365 }
2366
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002367 /*
2368 * Overlay gets an aggressive default since video jitter is bad.
2369 */
2370 cwm = 2;
2371
2372 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002373 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002374
2375 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002376 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002377 /* self-refresh has much higher latency */
2378 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002379 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002380 &enabled->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002381 const struct drm_framebuffer *fb =
2382 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002383 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002384 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002385 int hdisplay = enabled->config->pipe_src_w;
2386 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002387 int entries;
2388
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002389 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002390 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002391 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002392 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002393
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002394 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2395 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002396 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002397 drm_dbg_kms(&dev_priv->drm,
2398 "self-refresh entries: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002399 srwm = wm_info->fifo_size - entries;
2400 if (srwm < 0)
2401 srwm = 1;
2402
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002403 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002404 I915_WRITE(FW_BLC_SELF,
2405 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002406 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002407 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2408 }
2409
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002410 drm_dbg_kms(&dev_priv->drm,
2411 "Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2412 planea_wm, planeb_wm, cwm, srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002413
2414 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2415 fwater_hi = (cwm & 0x1f);
2416
2417 /* Set request length to 8 cachelines per fetch */
2418 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2419 fwater_hi = fwater_hi | (1 << 8);
2420
2421 I915_WRITE(FW_BLC, fwater_lo);
2422 I915_WRITE(FW_BLC2, fwater_hi);
2423
Imre Deak5209b1f2014-07-01 12:36:17 +03002424 if (enabled)
2425 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002426}
2427
Ville Syrjälä432081b2016-10-31 22:37:03 +02002428static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002429{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002430 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002431 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002432 const struct drm_display_mode *adjusted_mode;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002433 u32 fwater_lo;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002434 int planea_wm;
2435
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002436 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002437 if (crtc == NULL)
2438 return;
2439
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002440 adjusted_mode = &crtc->config->hw.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002441 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002442 &i845_wm_info,
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002443 dev_priv->display.get_fifo_size(dev_priv, PLANE_A),
Chris Wilson5aef6002014-09-03 11:56:07 +01002444 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002445 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2446 fwater_lo |= (3<<8) | planea_wm;
2447
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002448 drm_dbg_kms(&dev_priv->drm,
2449 "Setting FIFO watermarks - A: %d\n", planea_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002450
2451 I915_WRITE(FW_BLC, fwater_lo);
2452}
2453
Ville Syrjälä37126462013-08-01 16:18:55 +03002454/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002455static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2456 unsigned int cpp,
2457 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002458{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002459 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002460
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002461 ret = intel_wm_method1(pixel_rate, cpp, latency);
2462 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002463
2464 return ret;
2465}
2466
Ville Syrjälä37126462013-08-01 16:18:55 +03002467/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002468static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2469 unsigned int htotal,
2470 unsigned int width,
2471 unsigned int cpp,
2472 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002473{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002474 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002475
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002476 ret = intel_wm_method2(pixel_rate, htotal,
2477 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002478 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002479
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002480 return ret;
2481}
2482
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002483static u32 ilk_wm_fbc(u32 pri_val, u32 horiz_pixels, u8 cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002484{
Matt Roper15126882015-12-03 11:37:40 -08002485 /*
2486 * Neither of these should be possible since this function shouldn't be
2487 * called if the CRTC is off or the plane is invisible. But let's be
2488 * extra paranoid to avoid a potential divide-by-zero if we screw up
2489 * elsewhere in the driver.
2490 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002491 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002492 return 0;
2493 if (WARN_ON(!horiz_pixels))
2494 return 0;
2495
Ville Syrjäläac484962016-01-20 21:05:26 +02002496 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002497}
2498
Imre Deak820c1982013-12-17 14:46:36 +02002499struct ilk_wm_maximums {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002500 u16 pri;
2501 u16 spr;
2502 u16 cur;
2503 u16 fbc;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002504};
2505
Ville Syrjälä37126462013-08-01 16:18:55 +03002506/*
2507 * For both WM_PIPE and WM_LP.
2508 * mem_value must be in 0.1us units.
2509 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002510static u32 ilk_compute_pri_wm(const struct intel_crtc_state *crtc_state,
2511 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002512 u32 mem_value, bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002513{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002514 u32 method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002515 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002516
Ville Syrjälä03981c62018-11-14 19:34:40 +02002517 if (mem_value == 0)
2518 return U32_MAX;
2519
Maarten Lankhorstec193642019-06-28 10:55:17 +02002520 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002521 return 0;
2522
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002523 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002524
Maarten Lankhorstec193642019-06-28 10:55:17 +02002525 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002526
2527 if (!is_lp)
2528 return method1;
2529
Maarten Lankhorstec193642019-06-28 10:55:17 +02002530 method2 = ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002531 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002532 drm_rect_width(&plane_state->uapi.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002533 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002534
2535 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002536}
2537
Ville Syrjälä37126462013-08-01 16:18:55 +03002538/*
2539 * For both WM_PIPE and WM_LP.
2540 * mem_value must be in 0.1us units.
2541 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002542static u32 ilk_compute_spr_wm(const struct intel_crtc_state *crtc_state,
2543 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002544 u32 mem_value)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002545{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002546 u32 method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002547 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002548
Ville Syrjälä03981c62018-11-14 19:34:40 +02002549 if (mem_value == 0)
2550 return U32_MAX;
2551
Maarten Lankhorstec193642019-06-28 10:55:17 +02002552 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002553 return 0;
2554
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002555 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002556
Maarten Lankhorstec193642019-06-28 10:55:17 +02002557 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
2558 method2 = ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002559 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002560 drm_rect_width(&plane_state->uapi.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002561 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002562 return min(method1, method2);
2563}
2564
Ville Syrjälä37126462013-08-01 16:18:55 +03002565/*
2566 * For both WM_PIPE and WM_LP.
2567 * mem_value must be in 0.1us units.
2568 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002569static u32 ilk_compute_cur_wm(const struct intel_crtc_state *crtc_state,
2570 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002571 u32 mem_value)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002572{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002573 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002574
Ville Syrjälä03981c62018-11-14 19:34:40 +02002575 if (mem_value == 0)
2576 return U32_MAX;
2577
Maarten Lankhorstec193642019-06-28 10:55:17 +02002578 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002579 return 0;
2580
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002581 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002582
Maarten Lankhorstec193642019-06-28 10:55:17 +02002583 return ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002584 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002585 drm_rect_width(&plane_state->uapi.dst),
Maarten Lankhorst3a612762019-10-04 13:34:54 +02002586 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002587}
2588
Paulo Zanonicca32e92013-05-31 11:45:06 -03002589/* Only for WM_LP. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002590static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
2591 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002592 u32 pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002593{
Ville Syrjälä83054942016-11-18 21:53:00 +02002594 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002595
Maarten Lankhorstec193642019-06-28 10:55:17 +02002596 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002597 return 0;
2598
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002599 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002600
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002601 return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst),
2602 cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002603}
2604
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002605static unsigned int
2606ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002607{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002608 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002609 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002610 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002611 return 768;
2612 else
2613 return 512;
2614}
2615
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002616static unsigned int
2617ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2618 int level, bool is_sprite)
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 /* BDW primary/sprite plane watermarks */
2622 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002623 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002624 /* IVB/HSW primary/sprite plane watermarks */
2625 return level == 0 ? 127 : 1023;
2626 else if (!is_sprite)
2627 /* ILK/SNB primary plane watermarks */
2628 return level == 0 ? 127 : 511;
2629 else
2630 /* ILK/SNB sprite plane watermarks */
2631 return level == 0 ? 63 : 255;
2632}
2633
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002634static unsigned int
2635ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002636{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002637 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002638 return level == 0 ? 63 : 255;
2639 else
2640 return level == 0 ? 31 : 63;
2641}
2642
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002643static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002644{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002645 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002646 return 31;
2647 else
2648 return 15;
2649}
2650
Ville Syrjälä158ae642013-08-07 13:28:19 +03002651/* Calculate the maximum primary/sprite plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002652static unsigned int ilk_plane_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002653 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002654 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002655 enum intel_ddb_partitioning ddb_partitioning,
2656 bool is_sprite)
2657{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002658 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002659
2660 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002661 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002662 return 0;
2663
2664 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002665 if (level == 0 || config->num_pipes_active > 1) {
Jani Nikula24977872019-09-11 12:26:08 +03002666 fifo_size /= INTEL_NUM_PIPES(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002667
2668 /*
2669 * For some reason the non self refresh
2670 * FIFO size is only half of the self
2671 * refresh FIFO size on ILK/SNB.
2672 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002673 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002674 fifo_size /= 2;
2675 }
2676
Ville Syrjälä240264f2013-08-07 13:29:12 +03002677 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002678 /* level 0 is always calculated with 1:1 split */
2679 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2680 if (is_sprite)
2681 fifo_size *= 5;
2682 fifo_size /= 6;
2683 } else {
2684 fifo_size /= 2;
2685 }
2686 }
2687
2688 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002689 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002690}
2691
2692/* Calculate the maximum cursor plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002693static unsigned int ilk_cursor_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002694 int level,
2695 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002696{
2697 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002698 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002699 return 64;
2700
2701 /* otherwise just report max that registers can hold */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002702 return ilk_cursor_wm_reg_max(dev_priv, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002703}
2704
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002705static void ilk_compute_wm_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002706 int level,
2707 const struct intel_wm_config *config,
2708 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002709 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002710{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002711 max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false);
2712 max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true);
2713 max->cur = ilk_cursor_wm_max(dev_priv, level, config);
2714 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002715}
2716
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002717static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002718 int level,
2719 struct ilk_wm_maximums *max)
2720{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002721 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2722 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2723 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2724 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002725}
2726
Ville Syrjäläd9395652013-10-09 19:18:10 +03002727static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002728 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002729 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002730{
2731 bool ret;
2732
2733 /* already determined to be invalid? */
2734 if (!result->enable)
2735 return false;
2736
2737 result->enable = result->pri_val <= max->pri &&
2738 result->spr_val <= max->spr &&
2739 result->cur_val <= max->cur;
2740
2741 ret = result->enable;
2742
2743 /*
2744 * HACK until we can pre-compute everything,
2745 * and thus fail gracefully if LP0 watermarks
2746 * are exceeded...
2747 */
2748 if (level == 0 && !result->enable) {
2749 if (result->pri_val > max->pri)
2750 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2751 level, result->pri_val, max->pri);
2752 if (result->spr_val > max->spr)
2753 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2754 level, result->spr_val, max->spr);
2755 if (result->cur_val > max->cur)
2756 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2757 level, result->cur_val, max->cur);
2758
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002759 result->pri_val = min_t(u32, result->pri_val, max->pri);
2760 result->spr_val = min_t(u32, result->spr_val, max->spr);
2761 result->cur_val = min_t(u32, result->cur_val, max->cur);
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002762 result->enable = true;
2763 }
2764
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002765 return ret;
2766}
2767
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002768static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02002769 const struct intel_crtc *crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002770 int level,
Maarten Lankhorstec193642019-06-28 10:55:17 +02002771 struct intel_crtc_state *crtc_state,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002772 const struct intel_plane_state *pristate,
2773 const struct intel_plane_state *sprstate,
2774 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002775 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002776{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002777 u16 pri_latency = dev_priv->wm.pri_latency[level];
2778 u16 spr_latency = dev_priv->wm.spr_latency[level];
2779 u16 cur_latency = dev_priv->wm.cur_latency[level];
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002780
2781 /* WM1+ latency values stored in 0.5us units */
2782 if (level > 0) {
2783 pri_latency *= 5;
2784 spr_latency *= 5;
2785 cur_latency *= 5;
2786 }
2787
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002788 if (pristate) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02002789 result->pri_val = ilk_compute_pri_wm(crtc_state, pristate,
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002790 pri_latency, level);
Maarten Lankhorstec193642019-06-28 10:55:17 +02002791 result->fbc_val = ilk_compute_fbc_wm(crtc_state, pristate, result->pri_val);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002792 }
2793
2794 if (sprstate)
Maarten Lankhorstec193642019-06-28 10:55:17 +02002795 result->spr_val = ilk_compute_spr_wm(crtc_state, sprstate, spr_latency);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002796
2797 if (curstate)
Maarten Lankhorstec193642019-06-28 10:55:17 +02002798 result->cur_val = ilk_compute_cur_wm(crtc_state, curstate, cur_latency);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002799
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002800 result->enable = true;
2801}
2802
Ville Syrjäläbb726512016-10-31 22:37:24 +02002803static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002804 u16 wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002805{
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002806 struct intel_uncore *uncore = &dev_priv->uncore;
2807
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002808 if (INTEL_GEN(dev_priv) >= 9) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002809 u32 val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002810 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002811 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002812
2813 /* read the first set of memory latencies[0:3] */
2814 val = 0; /* data0 to be programmed to 0 for first set */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002815 ret = sandybridge_pcode_read(dev_priv,
2816 GEN9_PCODE_READ_MEM_LATENCY,
Ville Syrjäläd284d512019-05-21 19:40:24 +03002817 &val, NULL);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002818
2819 if (ret) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002820 drm_err(&dev_priv->drm,
2821 "SKL Mailbox read error = %d\n", ret);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002822 return;
2823 }
2824
2825 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2826 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2827 GEN9_MEM_LATENCY_LEVEL_MASK;
2828 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2829 GEN9_MEM_LATENCY_LEVEL_MASK;
2830 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2831 GEN9_MEM_LATENCY_LEVEL_MASK;
2832
2833 /* read the second set of memory latencies[4:7] */
2834 val = 1; /* data0 to be programmed to 1 for second set */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002835 ret = sandybridge_pcode_read(dev_priv,
2836 GEN9_PCODE_READ_MEM_LATENCY,
Ville Syrjäläd284d512019-05-21 19:40:24 +03002837 &val, NULL);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002838 if (ret) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002839 drm_err(&dev_priv->drm,
2840 "SKL Mailbox read error = %d\n", ret);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002841 return;
2842 }
2843
2844 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2845 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2846 GEN9_MEM_LATENCY_LEVEL_MASK;
2847 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2848 GEN9_MEM_LATENCY_LEVEL_MASK;
2849 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2850 GEN9_MEM_LATENCY_LEVEL_MASK;
2851
Vandana Kannan367294b2014-11-04 17:06:46 +00002852 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002853 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2854 * need to be disabled. We make sure to sanitize the values out
2855 * of the punit to satisfy this requirement.
2856 */
2857 for (level = 1; level <= max_level; level++) {
2858 if (wm[level] == 0) {
2859 for (i = level + 1; i <= max_level; i++)
2860 wm[i] = 0;
2861 break;
2862 }
2863 }
2864
2865 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002866 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002867 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002868 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002869 * to add 2us to the various latency levels we retrieve from the
2870 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002871 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002872 if (wm[0] == 0) {
2873 wm[0] += 2;
2874 for (level = 1; level <= max_level; level++) {
2875 if (wm[level] == 0)
2876 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002877 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002878 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002879 }
2880
Mahesh Kumar86b59282018-08-31 16:39:42 +05302881 /*
2882 * WA Level-0 adjustment for 16GB DIMMs: SKL+
2883 * If we could not get dimm info enable this WA to prevent from
2884 * any underrun. If not able to get Dimm info assume 16GB dimm
2885 * to avoid any underrun.
2886 */
Ville Syrjälä5d6f36b2018-10-23 21:21:02 +03002887 if (dev_priv->dram_info.is_16gb_dimm)
Mahesh Kumar86b59282018-08-31 16:39:42 +05302888 wm[0] += 1;
2889
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002890 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002891 u64 sskpd = intel_uncore_read64(uncore, MCH_SSKPD);
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002892
2893 wm[0] = (sskpd >> 56) & 0xFF;
2894 if (wm[0] == 0)
2895 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002896 wm[1] = (sskpd >> 4) & 0xFF;
2897 wm[2] = (sskpd >> 12) & 0xFF;
2898 wm[3] = (sskpd >> 20) & 0x1FF;
2899 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002900 } else if (INTEL_GEN(dev_priv) >= 6) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002901 u32 sskpd = intel_uncore_read(uncore, MCH_SSKPD);
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002902
2903 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2904 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2905 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2906 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002907 } else if (INTEL_GEN(dev_priv) >= 5) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002908 u32 mltr = intel_uncore_read(uncore, MLTR_ILK);
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002909
2910 /* ILK primary LP0 latency is 700 ns */
2911 wm[0] = 7;
2912 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2913 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002914 } else {
2915 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002916 }
2917}
2918
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002919static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002920 u16 wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002921{
2922 /* ILK sprite LP0 latency is 1300 ns */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002923 if (IS_GEN(dev_priv, 5))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002924 wm[0] = 13;
2925}
2926
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002927static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002928 u16 wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002929{
2930 /* ILK cursor LP0 latency is 1300 ns */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002931 if (IS_GEN(dev_priv, 5))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002932 wm[0] = 13;
Ville Syrjälä53615a52013-08-01 16:18:50 +03002933}
2934
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002935int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002936{
2937 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002938 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002939 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002940 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002941 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002942 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002943 return 3;
2944 else
2945 return 2;
2946}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002947
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002948static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002949 const char *name,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002950 const u16 wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002951{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002952 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002953
2954 for (level = 0; level <= max_level; level++) {
2955 unsigned int latency = wm[level];
2956
2957 if (latency == 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002958 drm_dbg_kms(&dev_priv->drm,
2959 "%s WM%d latency not provided\n",
2960 name, level);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002961 continue;
2962 }
2963
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002964 /*
2965 * - latencies are in us on gen9.
2966 * - before then, WM1+ latency values are in 0.5us units
2967 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002968 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002969 latency *= 10;
2970 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002971 latency *= 5;
2972
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002973 drm_dbg_kms(&dev_priv->drm,
2974 "%s WM%d latency %u (%u.%u usec)\n", name, level,
2975 wm[level], latency / 10, latency % 10);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002976 }
2977}
2978
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002979static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002980 u16 wm[5], u16 min)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002981{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002982 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002983
2984 if (wm[0] >= min)
2985 return false;
2986
2987 wm[0] = max(wm[0], min);
2988 for (level = 1; level <= max_level; level++)
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002989 wm[level] = max_t(u16, wm[level], DIV_ROUND_UP(min, 5));
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002990
2991 return true;
2992}
2993
Ville Syrjäläbb726512016-10-31 22:37:24 +02002994static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002995{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002996 bool changed;
2997
2998 /*
2999 * The BIOS provided WM memory latency values are often
3000 * inadequate for high resolution displays. Adjust them.
3001 */
3002 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
3003 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
3004 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
3005
3006 if (!changed)
3007 return;
3008
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003009 drm_dbg_kms(&dev_priv->drm,
3010 "WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003011 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3012 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3013 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003014}
3015
Ville Syrjälä03981c62018-11-14 19:34:40 +02003016static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv)
3017{
3018 /*
3019 * On some SNB machines (Thinkpad X220 Tablet at least)
3020 * LP3 usage can cause vblank interrupts to be lost.
3021 * The DEIIR bit will go high but it looks like the CPU
3022 * never gets interrupted.
3023 *
3024 * It's not clear whether other interrupt source could
3025 * be affected or if this is somehow limited to vblank
3026 * interrupts only. To play it safe we disable LP3
3027 * watermarks entirely.
3028 */
3029 if (dev_priv->wm.pri_latency[3] == 0 &&
3030 dev_priv->wm.spr_latency[3] == 0 &&
3031 dev_priv->wm.cur_latency[3] == 0)
3032 return;
3033
3034 dev_priv->wm.pri_latency[3] = 0;
3035 dev_priv->wm.spr_latency[3] = 0;
3036 dev_priv->wm.cur_latency[3] = 0;
3037
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003038 drm_dbg_kms(&dev_priv->drm,
3039 "LP3 watermarks disabled due to potential for lost interrupts\n");
Ville Syrjälä03981c62018-11-14 19:34:40 +02003040 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
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003061 if (IS_GEN(dev_priv, 6)) {
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])) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003089 drm_dbg_kms(&dev_priv->drm, "LP0 watermark invalid\n");
Matt Ropered4a6a72016-02-23 17:20:13 -08003090 return false;
3091 }
3092
3093 return true;
3094}
3095
Matt Roper261a27d2015-10-08 15:28:25 -07003096/* Compute new watermarks for the pipe */
Maarten Lankhorstec193642019-06-28 10:55:17 +02003097static int ilk_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Matt Roper261a27d2015-10-08 15:28:25 -07003098{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003099 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02003100 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003101 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02003102 struct intel_plane *plane;
3103 const struct intel_plane_state *plane_state;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003104 const struct intel_plane_state *pristate = NULL;
3105 const struct intel_plane_state *sprstate = NULL;
3106 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003107 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003108 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003109
Maarten Lankhorstec193642019-06-28 10:55:17 +02003110 pipe_wm = &crtc_state->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003111
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02003112 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
3113 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
3114 pristate = plane_state;
3115 else if (plane->base.type == DRM_PLANE_TYPE_OVERLAY)
3116 sprstate = plane_state;
3117 else if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
3118 curstate = plane_state;
Matt Roper43d59ed2015-09-24 15:53:07 -07003119 }
3120
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003121 pipe_wm->pipe_enabled = crtc_state->hw.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003122 if (sprstate) {
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01003123 pipe_wm->sprites_enabled = sprstate->uapi.visible;
3124 pipe_wm->sprites_scaled = sprstate->uapi.visible &&
3125 (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 ||
3126 drm_rect_height(&sprstate->uapi.dst) != drm_rect_height(&sprstate->uapi.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003127 }
3128
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003129 usable_level = max_level;
3130
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003131 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003132 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003133 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003134
3135 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003136 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003137 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003138
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003139 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02003140 ilk_compute_wm_level(dev_priv, crtc, 0, crtc_state,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003141 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003142
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003143 if (!ilk_validate_pipe_wm(dev_priv, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003144 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003145
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003146 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003147
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003148 for (level = 1; level <= usable_level; level++) {
3149 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003150
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02003151 ilk_compute_wm_level(dev_priv, crtc, level, crtc_state,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003152 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003153
3154 /*
3155 * Disable any watermark level that exceeds the
3156 * register maximums since such watermarks are
3157 * always invalid.
3158 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003159 if (!ilk_validate_wm_level(level, &max, wm)) {
3160 memset(wm, 0, sizeof(*wm));
3161 break;
3162 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003163 }
3164
Matt Roper86c8bbb2015-09-24 15:53:16 -07003165 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003166}
3167
3168/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003169 * Build a set of 'intermediate' watermark values that satisfy both the old
3170 * state and the new state. These can be programmed to the hardware
3171 * immediately.
3172 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003173static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08003174{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003175 struct intel_crtc *intel_crtc = to_intel_crtc(newstate->uapi.crtc);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003176 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Matt Ropere8f1f022016-05-12 07:05:55 -07003177 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003178 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003179 to_intel_atomic_state(newstate->uapi.state);
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003180 const struct intel_crtc_state *oldstate =
3181 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3182 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003183 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08003184
3185 /*
3186 * Start with the final, target watermarks, then combine with the
3187 * currently active watermarks to get values that are safe both before
3188 * and after the vblank.
3189 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003190 *a = newstate->wm.ilk.optimal;
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003191 if (!newstate->hw.active || drm_atomic_crtc_needs_modeset(&newstate->uapi) ||
Ville Syrjäläf255c622018-11-08 17:10:13 +02003192 intel_state->skip_intermediate_wm)
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003193 return 0;
3194
Matt Ropered4a6a72016-02-23 17:20:13 -08003195 a->pipe_enabled |= b->pipe_enabled;
3196 a->sprites_enabled |= b->sprites_enabled;
3197 a->sprites_scaled |= b->sprites_scaled;
3198
3199 for (level = 0; level <= max_level; level++) {
3200 struct intel_wm_level *a_wm = &a->wm[level];
3201 const struct intel_wm_level *b_wm = &b->wm[level];
3202
3203 a_wm->enable &= b_wm->enable;
3204 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3205 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3206 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3207 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3208 }
3209
3210 /*
3211 * We need to make sure that these merged watermark values are
3212 * actually a valid configuration themselves. If they're not,
3213 * there's no safe way to transition from the old state to
3214 * the new state, so we need to fail the atomic transaction.
3215 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003216 if (!ilk_validate_pipe_wm(dev_priv, a))
Matt Ropered4a6a72016-02-23 17:20:13 -08003217 return -EINVAL;
3218
3219 /*
3220 * If our intermediate WM are identical to the final WM, then we can
3221 * omit the post-vblank programming; only update if it's different.
3222 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003223 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3224 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003225
3226 return 0;
3227}
3228
3229/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003230 * Merge the watermarks from all active pipes for a specific level.
3231 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003232static void ilk_merge_wm_level(struct drm_i915_private *dev_priv,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003233 int level,
3234 struct intel_wm_level *ret_wm)
3235{
3236 const struct intel_crtc *intel_crtc;
3237
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003238 ret_wm->enable = true;
3239
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003240 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003241 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003242 const struct intel_wm_level *wm = &active->wm[level];
3243
3244 if (!active->pipe_enabled)
3245 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003246
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003247 /*
3248 * The watermark values may have been used in the past,
3249 * so we must maintain them in the registers for some
3250 * time even if the level is now disabled.
3251 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003252 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003253 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003254
3255 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3256 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3257 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3258 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3259 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003260}
3261
3262/*
3263 * Merge all low power watermarks for all active pipes.
3264 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003265static void ilk_wm_merge(struct drm_i915_private *dev_priv,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003266 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003267 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003268 struct intel_pipe_wm *merged)
3269{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003270 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003271 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003272
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003273 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003274 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003275 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003276 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003277
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003278 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003279 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003280
3281 /* merge each WM1+ level */
3282 for (level = 1; level <= max_level; level++) {
3283 struct intel_wm_level *wm = &merged->wm[level];
3284
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003285 ilk_merge_wm_level(dev_priv, level, wm);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003286
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003287 if (level > last_enabled_level)
3288 wm->enable = false;
3289 else if (!ilk_validate_wm_level(level, max, wm))
3290 /* make sure all following levels get disabled */
3291 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003292
3293 /*
3294 * The spec says it is preferred to disable
3295 * FBC WMs instead of disabling a WM level.
3296 */
3297 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003298 if (wm->enable)
3299 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003300 wm->fbc_val = 0;
3301 }
3302 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003303
3304 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3305 /*
3306 * FIXME this is racy. FBC might get enabled later.
3307 * What we should check here is whether FBC can be
3308 * enabled sometime later.
3309 */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003310 if (IS_GEN(dev_priv, 5) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003311 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003312 for (level = 2; level <= max_level; level++) {
3313 struct intel_wm_level *wm = &merged->wm[level];
3314
3315 wm->enable = false;
3316 }
3317 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003318}
3319
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003320static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3321{
3322 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3323 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3324}
3325
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003326/* The value we need to program into the WM_LPx latency field */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003327static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv,
3328 int level)
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003329{
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003330 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003331 return 2 * level;
3332 else
3333 return dev_priv->wm.pri_latency[level];
3334}
3335
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003336static void ilk_compute_wm_results(struct drm_i915_private *dev_priv,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003337 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003338 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003339 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003340{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003341 struct intel_crtc *intel_crtc;
3342 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003343
Ville Syrjälä0362c782013-10-09 19:17:57 +03003344 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003345 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003346
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003347 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003348 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003349 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003350
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003351 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003352
Ville Syrjälä0362c782013-10-09 19:17:57 +03003353 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003354
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003355 /*
3356 * Maintain the watermark values even if the level is
3357 * disabled. Doing otherwise could cause underruns.
3358 */
3359 results->wm_lp[wm_lp - 1] =
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003360 (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003361 (r->pri_val << WM1_LP_SR_SHIFT) |
3362 r->cur_val;
3363
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003364 if (r->enable)
3365 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3366
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003367 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003368 results->wm_lp[wm_lp - 1] |=
3369 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3370 else
3371 results->wm_lp[wm_lp - 1] |=
3372 r->fbc_val << WM1_LP_FBC_SHIFT;
3373
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003374 /*
3375 * Always set WM1S_LP_EN when spr_val != 0, even if the
3376 * level is disabled. Doing otherwise could cause underruns.
3377 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003378 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303379 drm_WARN_ON(&dev_priv->drm, wm_lp != 1);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003380 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3381 } else
3382 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003383 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003384
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003385 /* LP0 register values */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003386 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003387 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä0560b0c2020-01-20 19:47:11 +02003388 const struct intel_pipe_wm *pipe_wm = &intel_crtc->wm.active.ilk;
3389 const struct intel_wm_level *r = &pipe_wm->wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003390
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303391 if (drm_WARN_ON(&dev_priv->drm, !r->enable))
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003392 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003393
3394 results->wm_pipe[pipe] =
3395 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3396 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3397 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003398 }
3399}
3400
Paulo Zanoni861f3382013-05-31 10:19:21 -03003401/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3402 * case both are at the same level. Prefer r1 in case they're the same. */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003403static struct intel_pipe_wm *
3404ilk_find_best_result(struct drm_i915_private *dev_priv,
3405 struct intel_pipe_wm *r1,
3406 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003407{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003408 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003409 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003410
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003411 for (level = 1; level <= max_level; level++) {
3412 if (r1->wm[level].enable)
3413 level1 = level;
3414 if (r2->wm[level].enable)
3415 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003416 }
3417
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003418 if (level1 == level2) {
3419 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003420 return r2;
3421 else
3422 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003423 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003424 return r1;
3425 } else {
3426 return r2;
3427 }
3428}
3429
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003430/* dirty bits used to track which watermarks need changes */
3431#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003432#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3433#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3434#define WM_DIRTY_FBC (1 << 24)
3435#define WM_DIRTY_DDB (1 << 25)
3436
Damien Lespiau055e3932014-08-18 13:49:10 +01003437static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003438 const struct ilk_wm_values *old,
3439 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003440{
3441 unsigned int dirty = 0;
3442 enum pipe pipe;
3443 int wm_lp;
3444
Damien Lespiau055e3932014-08-18 13:49:10 +01003445 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003446 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3447 dirty |= WM_DIRTY_PIPE(pipe);
3448 /* Must disable LP1+ watermarks too */
3449 dirty |= WM_DIRTY_LP_ALL;
3450 }
3451 }
3452
3453 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3454 dirty |= WM_DIRTY_FBC;
3455 /* Must disable LP1+ watermarks too */
3456 dirty |= WM_DIRTY_LP_ALL;
3457 }
3458
3459 if (old->partitioning != new->partitioning) {
3460 dirty |= WM_DIRTY_DDB;
3461 /* Must disable LP1+ watermarks too */
3462 dirty |= WM_DIRTY_LP_ALL;
3463 }
3464
3465 /* LP1+ watermarks already deemed dirty, no need to continue */
3466 if (dirty & WM_DIRTY_LP_ALL)
3467 return dirty;
3468
3469 /* Find the lowest numbered LP1+ watermark in need of an update... */
3470 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3471 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3472 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3473 break;
3474 }
3475
3476 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3477 for (; wm_lp <= 3; wm_lp++)
3478 dirty |= WM_DIRTY_LP(wm_lp);
3479
3480 return dirty;
3481}
3482
Ville Syrjälä8553c182013-12-05 15:51:39 +02003483static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3484 unsigned int dirty)
3485{
Imre Deak820c1982013-12-17 14:46:36 +02003486 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003487 bool changed = false;
3488
3489 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3490 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3491 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3492 changed = true;
3493 }
3494 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3495 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3496 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3497 changed = true;
3498 }
3499 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3500 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3501 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3502 changed = true;
3503 }
3504
3505 /*
3506 * Don't touch WM1S_LP_EN here.
3507 * Doing so could cause underruns.
3508 */
3509
3510 return changed;
3511}
3512
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003513/*
3514 * The spec says we shouldn't write when we don't need, because every write
3515 * causes WMs to be re-evaluated, expending some power.
3516 */
Imre Deak820c1982013-12-17 14:46:36 +02003517static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3518 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003519{
Imre Deak820c1982013-12-17 14:46:36 +02003520 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003521 unsigned int dirty;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02003522 u32 val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003523
Damien Lespiau055e3932014-08-18 13:49:10 +01003524 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003525 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003526 return;
3527
Ville Syrjälä8553c182013-12-05 15:51:39 +02003528 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003529
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003530 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003531 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003532 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003533 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003534 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003535 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3536
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003537 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003538 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003539 val = I915_READ(WM_MISC);
3540 if (results->partitioning == INTEL_DDB_PART_1_2)
3541 val &= ~WM_MISC_DATA_PARTITION_5_6;
3542 else
3543 val |= WM_MISC_DATA_PARTITION_5_6;
3544 I915_WRITE(WM_MISC, val);
3545 } else {
3546 val = I915_READ(DISP_ARB_CTL2);
3547 if (results->partitioning == INTEL_DDB_PART_1_2)
3548 val &= ~DISP_DATA_PARTITION_5_6;
3549 else
3550 val |= DISP_DATA_PARTITION_5_6;
3551 I915_WRITE(DISP_ARB_CTL2, val);
3552 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003553 }
3554
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003555 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003556 val = I915_READ(DISP_ARB_CTL);
3557 if (results->enable_fbc_wm)
3558 val &= ~DISP_FBC_WM_DIS;
3559 else
3560 val |= DISP_FBC_WM_DIS;
3561 I915_WRITE(DISP_ARB_CTL, val);
3562 }
3563
Imre Deak954911e2013-12-17 14:46:34 +02003564 if (dirty & WM_DIRTY_LP(1) &&
3565 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3566 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3567
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003568 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003569 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3570 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3571 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3572 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3573 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003574
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003575 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003576 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003577 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003578 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003579 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003580 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003581
3582 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003583}
3584
Ville Syrjälä60aca572019-11-27 21:05:51 +02003585bool ilk_disable_lp_wm(struct drm_i915_private *dev_priv)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003586{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003587 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3588}
3589
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003590u8 intel_enabled_dbuf_slices_mask(struct drm_i915_private *dev_priv)
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303591{
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003592 int i;
3593 int max_slices = INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
3594 u8 enabled_slices_mask = 0;
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303595
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003596 for (i = 0; i < max_slices; i++) {
3597 if (I915_READ(DBUF_CTL_S(i)) & DBUF_POWER_STATE)
3598 enabled_slices_mask |= BIT(i);
3599 }
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303600
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003601 return enabled_slices_mask;
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303602}
3603
Matt Roper024c9042015-09-24 15:53:11 -07003604/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003605 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3606 * so assume we'll always need it in order to avoid underruns.
3607 */
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003608static bool skl_needs_memory_bw_wa(struct drm_i915_private *dev_priv)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003609{
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003610 return IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003611}
3612
Paulo Zanoni56feca92016-09-22 18:00:28 -03003613static bool
3614intel_has_sagv(struct drm_i915_private *dev_priv)
3615{
Lucas De Marchi8ffa4392019-09-04 14:34:18 -07003616 /* HACK! */
3617 if (IS_GEN(dev_priv, 12))
3618 return false;
3619
Rodrigo Vivi1ca2b062018-10-26 13:03:17 -07003620 return (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) &&
3621 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003622}
3623
James Ausmusb068a862019-10-09 10:23:14 -07003624static void
3625skl_setup_sagv_block_time(struct drm_i915_private *dev_priv)
3626{
James Ausmusda80f042019-10-09 10:23:15 -07003627 if (INTEL_GEN(dev_priv) >= 12) {
3628 u32 val = 0;
3629 int ret;
3630
3631 ret = sandybridge_pcode_read(dev_priv,
3632 GEN12_PCODE_READ_SAGV_BLOCK_TIME_US,
3633 &val, NULL);
3634 if (!ret) {
3635 dev_priv->sagv_block_time_us = val;
3636 return;
3637 }
3638
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003639 drm_dbg(&dev_priv->drm, "Couldn't read SAGV block time!\n");
James Ausmusda80f042019-10-09 10:23:15 -07003640 } else if (IS_GEN(dev_priv, 11)) {
James Ausmusb068a862019-10-09 10:23:14 -07003641 dev_priv->sagv_block_time_us = 10;
3642 return;
3643 } else if (IS_GEN(dev_priv, 10)) {
3644 dev_priv->sagv_block_time_us = 20;
3645 return;
3646 } else if (IS_GEN(dev_priv, 9)) {
3647 dev_priv->sagv_block_time_us = 30;
3648 return;
3649 } else {
3650 MISSING_CASE(INTEL_GEN(dev_priv));
3651 }
3652
3653 /* Default to an unusable block time */
3654 dev_priv->sagv_block_time_us = -1;
3655}
3656
Lyude656d1b82016-08-17 15:55:54 -04003657/*
3658 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3659 * depending on power and performance requirements. The display engine access
3660 * to system memory is blocked during the adjustment time. Because of the
3661 * blocking time, having this enabled can cause full system hangs and/or pipe
3662 * underruns if we don't meet all of the following requirements:
3663 *
3664 * - <= 1 pipe enabled
3665 * - All planes can enable watermarks for latencies >= SAGV engine block time
3666 * - We're not using an interlaced display configuration
3667 */
3668int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003669intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003670{
3671 int ret;
3672
Paulo Zanoni56feca92016-09-22 18:00:28 -03003673 if (!intel_has_sagv(dev_priv))
3674 return 0;
3675
3676 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003677 return 0;
3678
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003679 drm_dbg_kms(&dev_priv->drm, "Enabling SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003680 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3681 GEN9_SAGV_ENABLE);
3682
Ville Syrjäläff61a972018-12-21 19:14:34 +02003683 /* We don't need to wait for SAGV when enabling */
Lyude656d1b82016-08-17 15:55:54 -04003684
3685 /*
3686 * Some skl systems, pre-release machines in particular,
Ville Syrjäläff61a972018-12-21 19:14:34 +02003687 * don't actually have SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003688 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003689 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003690 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003691 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003692 return 0;
3693 } else if (ret < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003694 drm_err(&dev_priv->drm, "Failed to enable SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003695 return ret;
3696 }
3697
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003698 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003699 return 0;
3700}
3701
Lyude656d1b82016-08-17 15:55:54 -04003702int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003703intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003704{
Imre Deakb3b8e992016-12-05 18:27:38 +02003705 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003706
Paulo Zanoni56feca92016-09-22 18:00:28 -03003707 if (!intel_has_sagv(dev_priv))
3708 return 0;
3709
3710 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003711 return 0;
3712
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003713 drm_dbg_kms(&dev_priv->drm, "Disabling SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003714 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003715 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3716 GEN9_SAGV_DISABLE,
3717 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3718 1);
Lyude656d1b82016-08-17 15:55:54 -04003719 /*
3720 * Some skl systems, pre-release machines in particular,
Ville Syrjäläff61a972018-12-21 19:14:34 +02003721 * don't actually have SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003722 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003723 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003724 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003725 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003726 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003727 } else if (ret < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003728 drm_err(&dev_priv->drm, "Failed to disable SAGV (%d)\n", ret);
Imre Deakb3b8e992016-12-05 18:27:38 +02003729 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003730 }
3731
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003732 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003733 return 0;
3734}
3735
Maarten Lankhorst855e0d62019-06-28 10:55:13 +02003736bool intel_can_enable_sagv(struct intel_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003737{
Maarten Lankhorst855e0d62019-06-28 10:55:13 +02003738 struct drm_device *dev = state->base.dev;
Lyude656d1b82016-08-17 15:55:54 -04003739 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003740 struct intel_crtc *crtc;
3741 struct intel_plane *plane;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003742 struct intel_crtc_state *crtc_state;
Lyude656d1b82016-08-17 15:55:54 -04003743 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003744 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003745
Paulo Zanoni56feca92016-09-22 18:00:28 -03003746 if (!intel_has_sagv(dev_priv))
3747 return false;
3748
Lyude656d1b82016-08-17 15:55:54 -04003749 /*
Lyude656d1b82016-08-17 15:55:54 -04003750 * If there are no active CRTCs, no additional checks need be performed
3751 */
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003752 if (hweight8(state->active_pipes) == 0)
Lyude656d1b82016-08-17 15:55:54 -04003753 return true;
Lucas De Marchida172232019-04-04 16:04:26 -07003754
3755 /*
3756 * SKL+ workaround: bspec recommends we disable SAGV when we have
3757 * more then one pipe enabled
3758 */
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003759 if (hweight8(state->active_pipes) > 1)
Lyude656d1b82016-08-17 15:55:54 -04003760 return false;
3761
3762 /* Since we're now guaranteed to only have one active CRTC... */
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03003763 pipe = ffs(state->active_pipes) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003764 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Maarten Lankhorstec193642019-06-28 10:55:17 +02003765 crtc_state = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003766
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003767 if (crtc_state->hw.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003768 return false;
3769
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003770 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003771 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02003772 &crtc_state->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003773
Lyude656d1b82016-08-17 15:55:54 -04003774 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003775 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003776 continue;
3777
3778 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003779 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003780 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003781 { }
3782
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003783 latency = dev_priv->wm.skl_latency[level];
3784
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003785 if (skl_needs_memory_bw_wa(dev_priv) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003786 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003787 I915_FORMAT_MOD_X_TILED)
3788 latency += 15;
3789
Lyude656d1b82016-08-17 15:55:54 -04003790 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003791 * If any of the planes on this pipe don't enable wm levels that
3792 * incur memory latencies higher than sagv_block_time_us we
Ville Syrjäläff61a972018-12-21 19:14:34 +02003793 * can't enable SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003794 */
James Ausmusb068a862019-10-09 10:23:14 -07003795 if (latency < dev_priv->sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003796 return false;
3797 }
3798
3799 return true;
3800}
3801
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003802/*
3803 * Calculate initial DBuf slice offset, based on slice size
3804 * and mask(i.e if slice size is 1024 and second slice is enabled
3805 * offset would be 1024)
3806 */
3807static unsigned int
3808icl_get_first_dbuf_slice_offset(u32 dbuf_slice_mask,
3809 u32 slice_size,
3810 u32 ddb_size)
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303811{
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003812 unsigned int offset = 0;
3813
3814 if (!dbuf_slice_mask)
3815 return 0;
3816
3817 offset = (ffs(dbuf_slice_mask) - 1) * slice_size;
3818
3819 WARN_ON(offset >= ddb_size);
3820 return offset;
3821}
3822
3823static u16 intel_get_ddb_size(struct drm_i915_private *dev_priv)
3824{
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303825 u16 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3826
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303827 drm_WARN_ON(&dev_priv->drm, ddb_size == 0);
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303828
3829 if (INTEL_GEN(dev_priv) < 11)
3830 return ddb_size - 4; /* 4 blocks for bypass path allocation */
3831
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303832 return ddb_size;
3833}
3834
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003835static u8 skl_compute_dbuf_slices(const struct intel_crtc_state *crtc_state,
3836 u32 active_pipes);
3837
Damien Lespiaub9cec072014-11-04 17:06:43 +00003838static void
Maarten Lankhorstb048a002018-10-18 13:51:30 +02003839skl_ddb_get_pipe_allocation_limits(struct drm_i915_private *dev_priv,
Maarten Lankhorstec193642019-06-28 10:55:17 +02003840 const struct intel_crtc_state *crtc_state,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003841 const u64 total_data_rate,
Matt Roperc107acf2016-05-12 07:06:01 -07003842 struct skl_ddb_entry *alloc, /* out */
3843 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003844{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003845 struct drm_atomic_state *state = crtc_state->uapi.state;
Matt Roperc107acf2016-05-12 07:06:01 -07003846 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003847 struct drm_crtc *for_crtc = crtc_state->uapi.crtc;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003848 const struct intel_crtc *crtc;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003849 u32 pipe_width = 0, total_width_in_range = 0, width_before_pipe_in_range = 0;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303850 enum pipe for_pipe = to_intel_crtc(for_crtc)->pipe;
3851 u16 ddb_size;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003852 u32 ddb_range_size;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303853 u32 i;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003854 u32 dbuf_slice_mask;
3855 u32 active_pipes;
3856 u32 offset;
3857 u32 slice_size;
3858 u32 total_slice_mask;
3859 u32 start, end;
Matt Roperc107acf2016-05-12 07:06:01 -07003860
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303861 if (drm_WARN_ON(&dev_priv->drm, !state) || !crtc_state->hw.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003862 alloc->start = 0;
3863 alloc->end = 0;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003864 *num_active = hweight8(dev_priv->active_pipes);
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)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003869 active_pipes = intel_state->active_pipes;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003870 else
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003871 active_pipes = dev_priv->active_pipes;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003872
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003873 *num_active = hweight8(active_pipes);
3874
3875 ddb_size = intel_get_ddb_size(dev_priv);
3876
3877 slice_size = ddb_size / INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003878
Matt Roperc107acf2016-05-12 07:06:01 -07003879 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303880 * If the state doesn't change the active CRTC's or there is no
3881 * modeset request, then there's no need to recalculate;
3882 * the existing pipe allocation limits should remain unchanged.
3883 * Note that we're safe from racing commits since any racing commit
3884 * that changes the active CRTC list or do modeset would need to
3885 * grab _all_ crtc locks, including the one we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003886 */
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303887 if (!intel_state->active_pipe_changes && !intel_state->modeset) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003888 /*
3889 * alloc may be cleared by clear_intel_crtc_state,
3890 * copy from old state to be sure
3891 */
3892 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003893 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003894 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003895
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303896 /*
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003897 * Get allowed DBuf slices for correspondent pipe and platform.
3898 */
3899 dbuf_slice_mask = skl_compute_dbuf_slices(crtc_state, active_pipes);
3900
3901 DRM_DEBUG_KMS("DBuf slice mask %x pipe %c active pipes %x\n",
3902 dbuf_slice_mask,
3903 pipe_name(for_pipe), active_pipes);
3904
3905 /*
3906 * Figure out at which DBuf slice we start, i.e if we start at Dbuf S2
3907 * and slice size is 1024, the offset would be 1024
3908 */
3909 offset = icl_get_first_dbuf_slice_offset(dbuf_slice_mask,
3910 slice_size, ddb_size);
3911
3912 /*
3913 * Figure out total size of allowed DBuf slices, which is basically
3914 * a number of allowed slices for that pipe multiplied by slice size.
3915 * Inside of this
3916 * range ddb entries are still allocated in proportion to display width.
3917 */
3918 ddb_range_size = hweight8(dbuf_slice_mask) * slice_size;
3919
3920 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303921 * Watermark/ddb requirement highly depends upon width of the
3922 * framebuffer, So instead of allocating DDB equally among pipes
3923 * distribute DDB based on resolution/width of the display.
3924 */
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003925 total_slice_mask = dbuf_slice_mask;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003926 for_each_new_intel_crtc_in_state(intel_state, crtc, crtc_state, i) {
3927 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003928 &crtc_state->hw.adjusted_mode;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003929 enum pipe pipe = crtc->pipe;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303930 int hdisplay, vdisplay;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003931 u32 pipe_dbuf_slice_mask;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303932
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003933 if (!crtc_state->hw.active)
3934 continue;
3935
3936 pipe_dbuf_slice_mask = skl_compute_dbuf_slices(crtc_state,
3937 active_pipes);
3938
3939 /*
3940 * According to BSpec pipe can share one dbuf slice with another
3941 * pipes or pipe can use multiple dbufs, in both cases we
3942 * account for other pipes only if they have exactly same mask.
3943 * However we need to account how many slices we should enable
3944 * in total.
3945 */
3946 total_slice_mask |= pipe_dbuf_slice_mask;
3947
3948 /*
3949 * Do not account pipes using other slice sets
3950 * luckily as of current BSpec slice sets do not partially
3951 * intersect(pipes share either same one slice or same slice set
3952 * i.e no partial intersection), so it is enough to check for
3953 * equality for now.
3954 */
3955 if (dbuf_slice_mask != pipe_dbuf_slice_mask)
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303956 continue;
3957
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303958 drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003959
3960 total_width_in_range += hdisplay;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303961
3962 if (pipe < for_pipe)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003963 width_before_pipe_in_range += hdisplay;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303964 else if (pipe == for_pipe)
3965 pipe_width = hdisplay;
3966 }
3967
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003968 /*
3969 * FIXME: For now we always enable slice S1 as per
3970 * the Bspec display initialization sequence.
3971 */
3972 intel_state->enabled_dbuf_slices_mask = total_slice_mask | BIT(DBUF_S1);
3973
3974 start = ddb_range_size * width_before_pipe_in_range / total_width_in_range;
3975 end = ddb_range_size *
3976 (width_before_pipe_in_range + pipe_width) / total_width_in_range;
3977
3978 alloc->start = offset + start;
3979 alloc->end = offset + end;
3980
3981 DRM_DEBUG_KMS("Pipe %d ddb %d-%d\n", for_pipe,
3982 alloc->start, alloc->end);
3983 DRM_DEBUG_KMS("Enabled ddb slices mask %x num supported %d\n",
3984 intel_state->enabled_dbuf_slices_mask,
3985 INTEL_INFO(dev_priv)->num_supported_dbuf_slices);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003986}
3987
Ville Syrjälädf331de2019-03-19 18:03:11 +02003988static int skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
3989 int width, const struct drm_format_info *format,
3990 u64 modifier, unsigned int rotation,
3991 u32 plane_pixel_rate, struct skl_wm_params *wp,
3992 int color_plane);
Maarten Lankhorstec193642019-06-28 10:55:17 +02003993static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
Ville Syrjälädf331de2019-03-19 18:03:11 +02003994 int level,
3995 const struct skl_wm_params *wp,
3996 const struct skl_wm_level *result_prev,
3997 struct skl_wm_level *result /* out */);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003998
Ville Syrjälädf331de2019-03-19 18:03:11 +02003999static unsigned int
4000skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
4001 int num_active)
4002{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004003 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004004 int level, max_level = ilk_wm_max_level(dev_priv);
4005 struct skl_wm_level wm = {};
4006 int ret, min_ddb_alloc = 0;
4007 struct skl_wm_params wp;
4008
4009 ret = skl_compute_wm_params(crtc_state, 256,
4010 drm_format_info(DRM_FORMAT_ARGB8888),
4011 DRM_FORMAT_MOD_LINEAR,
4012 DRM_MODE_ROTATE_0,
4013 crtc_state->pixel_rate, &wp, 0);
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304014 drm_WARN_ON(&dev_priv->drm, ret);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004015
4016 for (level = 0; level <= max_level; level++) {
Ville Syrjälä6086e472019-03-21 19:51:28 +02004017 skl_compute_plane_wm(crtc_state, level, &wp, &wm, &wm);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004018 if (wm.min_ddb_alloc == U16_MAX)
4019 break;
4020
4021 min_ddb_alloc = wm.min_ddb_alloc;
4022 }
4023
4024 return max(num_active == 1 ? 32 : 8, min_ddb_alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004025}
4026
Mahesh Kumar37cde112018-04-26 19:55:17 +05304027static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv,
4028 struct skl_ddb_entry *entry, u32 reg)
Damien Lespiaua269c582014-11-04 17:06:49 +00004029{
Mahesh Kumar37cde112018-04-26 19:55:17 +05304030
Ville Syrjäläd7e449a2019-02-05 22:50:56 +02004031 entry->start = reg & DDB_ENTRY_MASK;
4032 entry->end = (reg >> DDB_ENTRY_END_SHIFT) & DDB_ENTRY_MASK;
Mahesh Kumar37cde112018-04-26 19:55:17 +05304033
Damien Lespiau16160e32014-11-04 17:06:53 +00004034 if (entry->end)
4035 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00004036}
4037
Mahesh Kumarddf34312018-04-09 09:11:03 +05304038static void
4039skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv,
4040 const enum pipe pipe,
4041 const enum plane_id plane_id,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004042 struct skl_ddb_entry *ddb_y,
4043 struct skl_ddb_entry *ddb_uv)
Mahesh Kumarddf34312018-04-09 09:11:03 +05304044{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004045 u32 val, val2;
4046 u32 fourcc = 0;
Mahesh Kumarddf34312018-04-09 09:11:03 +05304047
4048 /* Cursor doesn't support NV12/planar, so no extra calculation needed */
4049 if (plane_id == PLANE_CURSOR) {
4050 val = I915_READ(CUR_BUF_CFG(pipe));
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004051 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304052 return;
4053 }
4054
4055 val = I915_READ(PLANE_CTL(pipe, plane_id));
4056
4057 /* No DDB allocated for disabled planes */
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004058 if (val & PLANE_CTL_ENABLE)
4059 fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK,
4060 val & PLANE_CTL_ORDER_RGBX,
4061 val & PLANE_CTL_ALPHA_MASK);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304062
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004063 if (INTEL_GEN(dev_priv) >= 11) {
4064 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
4065 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4066 } else {
4067 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
Paulo Zanoni12a6c932018-07-31 17:46:14 -07004068 val2 = I915_READ(PLANE_NV12_BUF_CFG(pipe, plane_id));
Mahesh Kumarddf34312018-04-09 09:11:03 +05304069
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004070 if (fourcc &&
4071 drm_format_info_is_yuv_semiplanar(drm_format_info(fourcc)))
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004072 swap(val, val2);
4073
4074 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4075 skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304076 }
4077}
4078
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004079void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc,
4080 struct skl_ddb_entry *ddb_y,
4081 struct skl_ddb_entry *ddb_uv)
4082{
4083 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4084 enum intel_display_power_domain power_domain;
4085 enum pipe pipe = crtc->pipe;
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004086 intel_wakeref_t wakeref;
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004087 enum plane_id plane_id;
4088
4089 power_domain = POWER_DOMAIN_PIPE(pipe);
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004090 wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain);
4091 if (!wakeref)
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004092 return;
4093
4094 for_each_plane_id_on_crtc(crtc, plane_id)
4095 skl_ddb_get_hw_plane_state(dev_priv, pipe,
4096 plane_id,
4097 &ddb_y[plane_id],
4098 &ddb_uv[plane_id]);
4099
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004100 intel_display_power_put(dev_priv, power_domain, wakeref);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004101}
4102
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004103void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv)
Damien Lespiaua269c582014-11-04 17:06:49 +00004104{
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02004105 dev_priv->enabled_dbuf_slices_mask =
4106 intel_enabled_dbuf_slices_mask(dev_priv);
Damien Lespiaua269c582014-11-04 17:06:49 +00004107}
4108
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004109/*
4110 * Determines the downscale amount of a plane for the purposes of watermark calculations.
4111 * The bspec defines downscale amount as:
4112 *
4113 * """
4114 * Horizontal down scale amount = maximum[1, Horizontal source size /
4115 * Horizontal destination size]
4116 * Vertical down scale amount = maximum[1, Vertical source size /
4117 * Vertical destination size]
4118 * Total down scale amount = Horizontal down scale amount *
4119 * Vertical down scale amount
4120 * """
4121 *
4122 * Return value is provided in 16.16 fixed point form to retain fractional part.
4123 * Caller should take care of dividing & rounding off the value.
4124 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304125static uint_fixed_16_16_t
Maarten Lankhorstec193642019-06-28 10:55:17 +02004126skl_plane_downscale_amount(const struct intel_crtc_state *crtc_state,
4127 const struct intel_plane_state *plane_state)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004128{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004129 u32 src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304130 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
4131 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004132
Maarten Lankhorstec193642019-06-28 10:55:17 +02004133 if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304134 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004135
Maarten Lankhorst3a612762019-10-04 13:34:54 +02004136 /*
4137 * Src coordinates are already rotated by 270 degrees for
4138 * the 90/270 degree plane rotation cases (to match the
4139 * GTT mapping), hence no need to account for rotation here.
4140 *
4141 * n.b., src is 16.16 fixed point, dst is whole integer.
4142 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004143 src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
4144 src_h = drm_rect_height(&plane_state->uapi.src) >> 16;
4145 dst_w = drm_rect_width(&plane_state->uapi.dst);
4146 dst_h = drm_rect_height(&plane_state->uapi.dst);
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004147
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304148 fp_w_ratio = div_fixed16(src_w, dst_w);
4149 fp_h_ratio = div_fixed16(src_h, dst_h);
4150 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
4151 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004152
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304153 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004154}
4155
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004156struct dbuf_slice_conf_entry {
4157 u8 active_pipes;
4158 u8 dbuf_mask[I915_MAX_PIPES];
4159};
4160
4161/*
4162 * Table taken from Bspec 12716
4163 * Pipes do have some preferred DBuf slice affinity,
4164 * plus there are some hardcoded requirements on how
4165 * those should be distributed for multipipe scenarios.
4166 * For more DBuf slices algorithm can get even more messy
4167 * and less readable, so decided to use a table almost
4168 * as is from BSpec itself - that way it is at least easier
4169 * to compare, change and check.
4170 */
Jani Nikulaf8226d02020-02-19 17:45:42 +02004171static const struct dbuf_slice_conf_entry icl_allowed_dbufs[] =
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004172/* Autogenerated with igt/tools/intel_dbuf_map tool: */
4173{
4174 {
4175 .active_pipes = BIT(PIPE_A),
4176 .dbuf_mask = {
4177 [PIPE_A] = BIT(DBUF_S1)
4178 }
4179 },
4180 {
4181 .active_pipes = BIT(PIPE_B),
4182 .dbuf_mask = {
4183 [PIPE_B] = BIT(DBUF_S1)
4184 }
4185 },
4186 {
4187 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4188 .dbuf_mask = {
4189 [PIPE_A] = BIT(DBUF_S1),
4190 [PIPE_B] = BIT(DBUF_S2)
4191 }
4192 },
4193 {
4194 .active_pipes = BIT(PIPE_C),
4195 .dbuf_mask = {
4196 [PIPE_C] = BIT(DBUF_S2)
4197 }
4198 },
4199 {
4200 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4201 .dbuf_mask = {
4202 [PIPE_A] = BIT(DBUF_S1),
4203 [PIPE_C] = BIT(DBUF_S2)
4204 }
4205 },
4206 {
4207 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4208 .dbuf_mask = {
4209 [PIPE_B] = BIT(DBUF_S1),
4210 [PIPE_C] = BIT(DBUF_S2)
4211 }
4212 },
4213 {
4214 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4215 .dbuf_mask = {
4216 [PIPE_A] = BIT(DBUF_S1),
4217 [PIPE_B] = BIT(DBUF_S1),
4218 [PIPE_C] = BIT(DBUF_S2)
4219 }
4220 },
4221};
4222
4223/*
4224 * Table taken from Bspec 49255
4225 * Pipes do have some preferred DBuf slice affinity,
4226 * plus there are some hardcoded requirements on how
4227 * those should be distributed for multipipe scenarios.
4228 * For more DBuf slices algorithm can get even more messy
4229 * and less readable, so decided to use a table almost
4230 * as is from BSpec itself - that way it is at least easier
4231 * to compare, change and check.
4232 */
Jani Nikulaf8226d02020-02-19 17:45:42 +02004233static const struct dbuf_slice_conf_entry tgl_allowed_dbufs[] =
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004234/* Autogenerated with igt/tools/intel_dbuf_map tool: */
4235{
4236 {
4237 .active_pipes = BIT(PIPE_A),
4238 .dbuf_mask = {
4239 [PIPE_A] = BIT(DBUF_S1) | BIT(DBUF_S2)
4240 }
4241 },
4242 {
4243 .active_pipes = BIT(PIPE_B),
4244 .dbuf_mask = {
4245 [PIPE_B] = BIT(DBUF_S1) | BIT(DBUF_S2)
4246 }
4247 },
4248 {
4249 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4250 .dbuf_mask = {
4251 [PIPE_A] = BIT(DBUF_S2),
4252 [PIPE_B] = BIT(DBUF_S1)
4253 }
4254 },
4255 {
4256 .active_pipes = BIT(PIPE_C),
4257 .dbuf_mask = {
4258 [PIPE_C] = BIT(DBUF_S2) | BIT(DBUF_S1)
4259 }
4260 },
4261 {
4262 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4263 .dbuf_mask = {
4264 [PIPE_A] = BIT(DBUF_S1),
4265 [PIPE_C] = BIT(DBUF_S2)
4266 }
4267 },
4268 {
4269 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4270 .dbuf_mask = {
4271 [PIPE_B] = BIT(DBUF_S1),
4272 [PIPE_C] = BIT(DBUF_S2)
4273 }
4274 },
4275 {
4276 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4277 .dbuf_mask = {
4278 [PIPE_A] = BIT(DBUF_S1),
4279 [PIPE_B] = BIT(DBUF_S1),
4280 [PIPE_C] = BIT(DBUF_S2)
4281 }
4282 },
4283 {
4284 .active_pipes = BIT(PIPE_D),
4285 .dbuf_mask = {
4286 [PIPE_D] = BIT(DBUF_S2) | BIT(DBUF_S1)
4287 }
4288 },
4289 {
4290 .active_pipes = BIT(PIPE_A) | BIT(PIPE_D),
4291 .dbuf_mask = {
4292 [PIPE_A] = BIT(DBUF_S1),
4293 [PIPE_D] = BIT(DBUF_S2)
4294 }
4295 },
4296 {
4297 .active_pipes = BIT(PIPE_B) | BIT(PIPE_D),
4298 .dbuf_mask = {
4299 [PIPE_B] = BIT(DBUF_S1),
4300 [PIPE_D] = BIT(DBUF_S2)
4301 }
4302 },
4303 {
4304 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_D),
4305 .dbuf_mask = {
4306 [PIPE_A] = BIT(DBUF_S1),
4307 [PIPE_B] = BIT(DBUF_S1),
4308 [PIPE_D] = BIT(DBUF_S2)
4309 }
4310 },
4311 {
4312 .active_pipes = BIT(PIPE_C) | BIT(PIPE_D),
4313 .dbuf_mask = {
4314 [PIPE_C] = BIT(DBUF_S1),
4315 [PIPE_D] = BIT(DBUF_S2)
4316 }
4317 },
4318 {
4319 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C) | BIT(PIPE_D),
4320 .dbuf_mask = {
4321 [PIPE_A] = BIT(DBUF_S1),
4322 [PIPE_C] = BIT(DBUF_S2),
4323 [PIPE_D] = BIT(DBUF_S2)
4324 }
4325 },
4326 {
4327 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4328 .dbuf_mask = {
4329 [PIPE_B] = BIT(DBUF_S1),
4330 [PIPE_C] = BIT(DBUF_S2),
4331 [PIPE_D] = BIT(DBUF_S2)
4332 }
4333 },
4334 {
4335 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4336 .dbuf_mask = {
4337 [PIPE_A] = BIT(DBUF_S1),
4338 [PIPE_B] = BIT(DBUF_S1),
4339 [PIPE_C] = BIT(DBUF_S2),
4340 [PIPE_D] = BIT(DBUF_S2)
4341 }
4342 },
4343};
4344
4345static u8 compute_dbuf_slices(enum pipe pipe,
4346 u32 active_pipes,
4347 const struct dbuf_slice_conf_entry *dbuf_slices,
4348 int size)
4349{
4350 int i;
4351
4352 for (i = 0; i < size; i++) {
4353 if (dbuf_slices[i].active_pipes == active_pipes)
4354 return dbuf_slices[i].dbuf_mask[pipe];
4355 }
4356 return 0;
4357}
4358
4359/*
4360 * This function finds an entry with same enabled pipe configuration and
4361 * returns correspondent DBuf slice mask as stated in BSpec for particular
4362 * platform.
4363 */
4364static u32 icl_compute_dbuf_slices(enum pipe pipe,
4365 u32 active_pipes)
4366{
4367 /*
4368 * FIXME: For ICL this is still a bit unclear as prev BSpec revision
4369 * required calculating "pipe ratio" in order to determine
4370 * if one or two slices can be used for single pipe configurations
4371 * as additional constraint to the existing table.
4372 * However based on recent info, it should be not "pipe ratio"
4373 * but rather ratio between pixel_rate and cdclk with additional
4374 * constants, so for now we are using only table until this is
4375 * clarified. Also this is the reason why crtc_state param is
4376 * still here - we will need it once those additional constraints
4377 * pop up.
4378 */
4379 return compute_dbuf_slices(pipe, active_pipes,
4380 icl_allowed_dbufs,
4381 ARRAY_SIZE(icl_allowed_dbufs));
4382}
4383
4384static u32 tgl_compute_dbuf_slices(enum pipe pipe,
4385 u32 active_pipes)
4386{
4387 return compute_dbuf_slices(pipe, active_pipes,
4388 tgl_allowed_dbufs,
4389 ARRAY_SIZE(tgl_allowed_dbufs));
4390}
4391
4392static u8 skl_compute_dbuf_slices(const struct intel_crtc_state *crtc_state,
4393 u32 active_pipes)
4394{
4395 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
4396 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4397 enum pipe pipe = crtc->pipe;
4398
4399 if (IS_GEN(dev_priv, 12))
4400 return tgl_compute_dbuf_slices(pipe,
4401 active_pipes);
4402 else if (IS_GEN(dev_priv, 11))
4403 return icl_compute_dbuf_slices(pipe,
4404 active_pipes);
4405 /*
4406 * For anything else just return one slice yet.
4407 * Should be extended for other platforms.
4408 */
4409 return BIT(DBUF_S1);
4410}
4411
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004412static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004413skl_plane_relative_data_rate(const struct intel_crtc_state *crtc_state,
4414 const struct intel_plane_state *plane_state,
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004415 int color_plane)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004416{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004417 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004418 const struct drm_framebuffer *fb = plane_state->hw.fb;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004419 u32 data_rate;
4420 u32 width = 0, height = 0;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304421 uint_fixed_16_16_t down_scale_amount;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004422 u64 rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004423
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004424 if (!plane_state->uapi.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004425 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004426
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004427 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004428 return 0;
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004429
4430 if (color_plane == 1 &&
Imre Deak4941f352019-12-21 14:05:43 +02004431 !intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier))
Matt Ropera1de91e2016-05-12 07:05:57 -07004432 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004433
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004434 /*
4435 * Src coordinates are already rotated by 270 degrees for
4436 * the 90/270 degree plane rotation cases (to match the
4437 * GTT mapping), hence no need to account for rotation here.
4438 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004439 width = drm_rect_width(&plane_state->uapi.src) >> 16;
4440 height = drm_rect_height(&plane_state->uapi.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004441
Mahesh Kumarb879d582018-04-09 09:11:01 +05304442 /* UV plane does 1/2 pixel sub-sampling */
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004443 if (color_plane == 1) {
Mahesh Kumarb879d582018-04-09 09:11:01 +05304444 width /= 2;
4445 height /= 2;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004446 }
4447
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004448 data_rate = width * height;
Mahesh Kumarb879d582018-04-09 09:11:01 +05304449
Maarten Lankhorstec193642019-06-28 10:55:17 +02004450 down_scale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004451
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004452 rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount);
4453
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004454 rate *= fb->format->cpp[color_plane];
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004455 return rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004456}
4457
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004458static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004459skl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004460 u64 *plane_data_rate,
4461 u64 *uv_plane_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004462{
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004463 struct intel_plane *plane;
4464 const struct intel_plane_state *plane_state;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004465 u64 total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004466
Matt Ropera1de91e2016-05-12 07:05:57 -07004467 /* Calculate and cache data rate for each plane */
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004468 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
4469 enum plane_id plane_id = plane->id;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004470 u64 rate;
Matt Roper024c9042015-09-24 15:53:11 -07004471
Mahesh Kumarb879d582018-04-09 09:11:01 +05304472 /* packed/y */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004473 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004474 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004475 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004476
Mahesh Kumarb879d582018-04-09 09:11:01 +05304477 /* uv-plane */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004478 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1);
Mahesh Kumarb879d582018-04-09 09:11:01 +05304479 uv_plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004480 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004481 }
4482
4483 return total_data_rate;
4484}
4485
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004486static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004487icl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004488 u64 *plane_data_rate)
4489{
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004490 struct intel_plane *plane;
4491 const struct intel_plane_state *plane_state;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004492 u64 total_data_rate = 0;
4493
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004494 /* Calculate and cache data rate for each plane */
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004495 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
4496 enum plane_id plane_id = plane->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004497 u64 rate;
4498
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004499 if (!plane_state->planar_linked_plane) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02004500 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004501 plane_data_rate[plane_id] = rate;
4502 total_data_rate += rate;
4503 } else {
4504 enum plane_id y_plane_id;
4505
4506 /*
4507 * The slave plane might not iterate in
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004508 * intel_atomic_crtc_state_for_each_plane_state(),
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004509 * and needs the master plane state which may be
4510 * NULL if we try get_new_plane_state(), so we
4511 * always calculate from the master.
4512 */
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004513 if (plane_state->planar_slave)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004514 continue;
4515
4516 /* Y plane rate is calculated on the slave */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004517 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004518 y_plane_id = plane_state->planar_linked_plane->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004519 plane_data_rate[y_plane_id] = rate;
4520 total_data_rate += rate;
4521
Maarten Lankhorstec193642019-06-28 10:55:17 +02004522 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004523 plane_data_rate[plane_id] = rate;
4524 total_data_rate += rate;
4525 }
4526 }
4527
4528 return total_data_rate;
4529}
4530
Matt Roperc107acf2016-05-12 07:06:01 -07004531static int
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004532skl_allocate_pipe_ddb(struct intel_crtc_state *crtc_state)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004533{
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004534 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
4535 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Maarten Lankhorstec193642019-06-28 10:55:17 +02004536 struct skl_ddb_entry *alloc = &crtc_state->wm.skl.ddb;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004537 u16 alloc_size, start = 0;
4538 u16 total[I915_MAX_PLANES] = {};
4539 u16 uv_total[I915_MAX_PLANES] = {};
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004540 u64 total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004541 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004542 int num_active;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004543 u64 plane_data_rate[I915_MAX_PLANES] = {};
4544 u64 uv_plane_data_rate[I915_MAX_PLANES] = {};
Ville Syrjälä0aded172019-02-05 17:50:53 +02004545 u32 blocks;
Matt Roperd8e87492018-12-11 09:31:07 -08004546 int level;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004547
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004548 /* Clear the partitioning for disabled planes. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004549 memset(crtc_state->wm.skl.plane_ddb_y, 0, sizeof(crtc_state->wm.skl.plane_ddb_y));
4550 memset(crtc_state->wm.skl.plane_ddb_uv, 0, sizeof(crtc_state->wm.skl.plane_ddb_uv));
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004551
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004552 if (!crtc_state->hw.active) {
Lyudece0ba282016-09-15 10:46:35 -04004553 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004554 return 0;
4555 }
4556
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004557 if (INTEL_GEN(dev_priv) >= 11)
4558 total_data_rate =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004559 icl_get_total_relative_data_rate(crtc_state,
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004560 plane_data_rate);
4561 else
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004562 total_data_rate =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004563 skl_get_total_relative_data_rate(crtc_state,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004564 plane_data_rate,
4565 uv_plane_data_rate);
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004566
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004567
Maarten Lankhorstec193642019-06-28 10:55:17 +02004568 skl_ddb_get_pipe_allocation_limits(dev_priv, crtc_state, total_data_rate,
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004569 alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004570 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304571 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004572 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004573
Matt Roperd8e87492018-12-11 09:31:07 -08004574 /* Allocate fixed number of blocks for cursor. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004575 total[PLANE_CURSOR] = skl_cursor_allocation(crtc_state, num_active);
Matt Roperd8e87492018-12-11 09:31:07 -08004576 alloc_size -= total[PLANE_CURSOR];
Maarten Lankhorstec193642019-06-28 10:55:17 +02004577 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].start =
Matt Roperd8e87492018-12-11 09:31:07 -08004578 alloc->end - total[PLANE_CURSOR];
Maarten Lankhorstec193642019-06-28 10:55:17 +02004579 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004580
Matt Ropera1de91e2016-05-12 07:05:57 -07004581 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004582 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004583
Matt Roperd8e87492018-12-11 09:31:07 -08004584 /*
4585 * Find the highest watermark level for which we can satisfy the block
4586 * requirement of active planes.
4587 */
4588 for (level = ilk_wm_max_level(dev_priv); level >= 0; level--) {
Matt Roper25db2ea2018-12-12 11:17:20 -08004589 blocks = 0;
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004590 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004591 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004592 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjälä10a7e072019-03-12 22:58:40 +02004593
4594 if (plane_id == PLANE_CURSOR) {
Vandita Kulkarni4ba48702019-12-16 13:36:19 +05304595 if (wm->wm[level].min_ddb_alloc > total[PLANE_CURSOR]) {
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304596 drm_WARN_ON(&dev_priv->drm,
4597 wm->wm[level].min_ddb_alloc != U16_MAX);
Ville Syrjälä10a7e072019-03-12 22:58:40 +02004598 blocks = U32_MAX;
4599 break;
4600 }
4601 continue;
4602 }
4603
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004604 blocks += wm->wm[level].min_ddb_alloc;
4605 blocks += wm->uv_wm[level].min_ddb_alloc;
Matt Roperd8e87492018-12-11 09:31:07 -08004606 }
4607
Ville Syrjälä3cf963c2019-03-12 22:58:36 +02004608 if (blocks <= alloc_size) {
Matt Roperd8e87492018-12-11 09:31:07 -08004609 alloc_size -= blocks;
4610 break;
4611 }
4612 }
4613
4614 if (level < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03004615 drm_dbg_kms(&dev_priv->drm,
4616 "Requested display configuration exceeds system DDB limitations");
4617 drm_dbg_kms(&dev_priv->drm, "minimum required %d/%d\n",
4618 blocks, alloc_size);
Matt Roperd8e87492018-12-11 09:31:07 -08004619 return -EINVAL;
4620 }
4621
4622 /*
4623 * Grant each plane the blocks it requires at the highest achievable
4624 * watermark level, plus an extra share of the leftover blocks
4625 * proportional to its relative data rate.
4626 */
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004627 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004628 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004629 &crtc_state->wm.skl.optimal.planes[plane_id];
Matt Roperd8e87492018-12-11 09:31:07 -08004630 u64 rate;
4631 u16 extra;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004632
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004633 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004634 continue;
4635
Damien Lespiaub9cec072014-11-04 17:06:43 +00004636 /*
Matt Roperd8e87492018-12-11 09:31:07 -08004637 * We've accounted for all active planes; remaining planes are
4638 * all disabled.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004639 */
Matt Roperd8e87492018-12-11 09:31:07 -08004640 if (total_data_rate == 0)
4641 break;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004642
Matt Roperd8e87492018-12-11 09:31:07 -08004643 rate = plane_data_rate[plane_id];
4644 extra = min_t(u16, alloc_size,
4645 DIV64_U64_ROUND_UP(alloc_size * rate,
4646 total_data_rate));
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004647 total[plane_id] = wm->wm[level].min_ddb_alloc + extra;
Matt Roperd8e87492018-12-11 09:31:07 -08004648 alloc_size -= extra;
4649 total_data_rate -= rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004650
Matt Roperd8e87492018-12-11 09:31:07 -08004651 if (total_data_rate == 0)
4652 break;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004653
Matt Roperd8e87492018-12-11 09:31:07 -08004654 rate = uv_plane_data_rate[plane_id];
4655 extra = min_t(u16, alloc_size,
4656 DIV64_U64_ROUND_UP(alloc_size * rate,
4657 total_data_rate));
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004658 uv_total[plane_id] = wm->uv_wm[level].min_ddb_alloc + extra;
Matt Roperd8e87492018-12-11 09:31:07 -08004659 alloc_size -= extra;
4660 total_data_rate -= rate;
4661 }
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304662 drm_WARN_ON(&dev_priv->drm, alloc_size != 0 || total_data_rate != 0);
Matt Roperd8e87492018-12-11 09:31:07 -08004663
4664 /* Set the actual DDB start/end points for each plane */
4665 start = alloc->start;
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004666 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004667 struct skl_ddb_entry *plane_alloc =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004668 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004669 struct skl_ddb_entry *uv_plane_alloc =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004670 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Matt Roperd8e87492018-12-11 09:31:07 -08004671
4672 if (plane_id == PLANE_CURSOR)
4673 continue;
4674
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004675 /* Gen11+ uses a separate plane for UV watermarks */
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304676 drm_WARN_ON(&dev_priv->drm,
4677 INTEL_GEN(dev_priv) >= 11 && uv_total[plane_id]);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004678
Matt Roperd8e87492018-12-11 09:31:07 -08004679 /* Leave disabled planes at (0,0) */
4680 if (total[plane_id]) {
4681 plane_alloc->start = start;
4682 start += total[plane_id];
4683 plane_alloc->end = start;
Matt Roperc107acf2016-05-12 07:06:01 -07004684 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004685
Matt Roperd8e87492018-12-11 09:31:07 -08004686 if (uv_total[plane_id]) {
4687 uv_plane_alloc->start = start;
4688 start += uv_total[plane_id];
4689 uv_plane_alloc->end = start;
4690 }
4691 }
4692
4693 /*
4694 * When we calculated watermark values we didn't know how high
4695 * of a level we'd actually be able to hit, so we just marked
4696 * all levels as "enabled." Go back now and disable the ones
4697 * that aren't actually possible.
4698 */
4699 for (level++; level <= ilk_wm_max_level(dev_priv); level++) {
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004700 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004701 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004702 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjäläa301cb02019-03-12 22:58:41 +02004703
4704 /*
4705 * We only disable the watermarks for each plane if
4706 * they exceed the ddb allocation of said plane. This
4707 * is done so that we don't end up touching cursor
4708 * watermarks needlessly when some other plane reduces
4709 * our max possible watermark level.
4710 *
4711 * Bspec has this to say about the PLANE_WM enable bit:
4712 * "All the watermarks at this level for all enabled
4713 * planes must be enabled before the level will be used."
4714 * So this is actually safe to do.
4715 */
4716 if (wm->wm[level].min_ddb_alloc > total[plane_id] ||
4717 wm->uv_wm[level].min_ddb_alloc > uv_total[plane_id])
4718 memset(&wm->wm[level], 0, sizeof(wm->wm[level]));
Ville Syrjälä290248c2019-02-13 18:54:24 +02004719
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004720 /*
Bob Paauwe39564ae2019-04-12 11:09:20 -07004721 * Wa_1408961008:icl, ehl
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004722 * Underruns with WM1+ disabled
4723 */
Bob Paauwe39564ae2019-04-12 11:09:20 -07004724 if (IS_GEN(dev_priv, 11) &&
Ville Syrjälä290248c2019-02-13 18:54:24 +02004725 level == 1 && wm->wm[0].plane_en) {
4726 wm->wm[level].plane_res_b = wm->wm[0].plane_res_b;
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004727 wm->wm[level].plane_res_l = wm->wm[0].plane_res_l;
4728 wm->wm[level].ignore_lines = wm->wm[0].ignore_lines;
Ville Syrjälä290248c2019-02-13 18:54:24 +02004729 }
Matt Roperd8e87492018-12-11 09:31:07 -08004730 }
4731 }
4732
4733 /*
4734 * Go back and disable the transition watermark if it turns out we
4735 * don't have enough DDB blocks for it.
4736 */
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004737 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004738 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004739 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004740
Ville Syrjäläb19c9bc2018-12-21 19:14:31 +02004741 if (wm->trans_wm.plane_res_b >= total[plane_id])
Matt Roperd8e87492018-12-11 09:31:07 -08004742 memset(&wm->trans_wm, 0, sizeof(wm->trans_wm));
Damien Lespiaub9cec072014-11-04 17:06:43 +00004743 }
4744
Matt Roperc107acf2016-05-12 07:06:01 -07004745 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004746}
4747
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004748/*
4749 * 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 +02004750 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004751 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4752 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4753*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004754static uint_fixed_16_16_t
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004755skl_wm_method1(const struct drm_i915_private *dev_priv, u32 pixel_rate,
4756 u8 cpp, u32 latency, u32 dbuf_block_size)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004757{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004758 u32 wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304759 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004760
4761 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304762 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004763
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304764 wm_intermediate_val = latency * pixel_rate * cpp;
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004765 ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004766
4767 if (INTEL_GEN(dev_priv) >= 10)
4768 ret = add_fixed16_u32(ret, 1);
4769
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004770 return ret;
4771}
4772
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004773static uint_fixed_16_16_t
4774skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
4775 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004776{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004777 u32 wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304778 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004779
4780 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304781 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004782
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004783 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304784 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4785 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304786 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004787 return ret;
4788}
4789
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304790static uint_fixed_16_16_t
Maarten Lankhorstec193642019-06-28 10:55:17 +02004791intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304792{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004793 u32 pixel_rate;
4794 u32 crtc_htotal;
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304795 uint_fixed_16_16_t linetime_us;
4796
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004797 if (!crtc_state->hw.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304798 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304799
Maarten Lankhorstec193642019-06-28 10:55:17 +02004800 pixel_rate = crtc_state->pixel_rate;
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304801
4802 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304803 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304804
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004805 crtc_htotal = crtc_state->hw.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304806 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304807
4808 return linetime_us;
4809}
4810
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004811static u32
Maarten Lankhorstec193642019-06-28 10:55:17 +02004812skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
4813 const struct intel_plane_state *plane_state)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004814{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004815 u64 adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304816 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004817
4818 /* Shouldn't reach here on disabled planes... */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004819 if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004820 return 0;
4821
4822 /*
4823 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4824 * with additional adjustments for plane-specific scaling.
4825 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004826 adjusted_pixel_rate = crtc_state->pixel_rate;
4827 downscale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004828
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304829 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4830 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004831}
4832
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304833static int
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004834skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
4835 int width, const struct drm_format_info *format,
4836 u64 modifier, unsigned int rotation,
4837 u32 plane_pixel_rate, struct skl_wm_params *wp,
4838 int color_plane)
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304839{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004840 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004841 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004842 u32 interm_pbpl;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304843
Juha-Pekka Heikkiladf7d4152019-03-04 17:26:31 +05304844 /* only planar format has two planes */
Imre Deak4941f352019-12-21 14:05:43 +02004845 if (color_plane == 1 &&
4846 !intel_format_info_is_yuv_semiplanar(format, modifier)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03004847 drm_dbg_kms(&dev_priv->drm,
4848 "Non planar format have single plane\n");
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304849 return -EINVAL;
4850 }
4851
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004852 wp->y_tiled = modifier == I915_FORMAT_MOD_Y_TILED ||
4853 modifier == I915_FORMAT_MOD_Yf_TILED ||
4854 modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4855 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4856 wp->x_tiled = modifier == I915_FORMAT_MOD_X_TILED;
4857 wp->rc_surface = modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4858 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
Imre Deak4941f352019-12-21 14:05:43 +02004859 wp->is_planar = intel_format_info_is_yuv_semiplanar(format, modifier);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304860
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004861 wp->width = width;
Ville Syrjälä45bee432018-11-14 23:07:28 +02004862 if (color_plane == 1 && wp->is_planar)
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304863 wp->width /= 2;
4864
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004865 wp->cpp = format->cpp[color_plane];
4866 wp->plane_pixel_rate = plane_pixel_rate;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304867
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004868 if (INTEL_GEN(dev_priv) >= 11 &&
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004869 modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 1)
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004870 wp->dbuf_block_size = 256;
4871 else
4872 wp->dbuf_block_size = 512;
4873
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004874 if (drm_rotation_90_or_270(rotation)) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304875 switch (wp->cpp) {
4876 case 1:
4877 wp->y_min_scanlines = 16;
4878 break;
4879 case 2:
4880 wp->y_min_scanlines = 8;
4881 break;
4882 case 4:
4883 wp->y_min_scanlines = 4;
4884 break;
4885 default:
4886 MISSING_CASE(wp->cpp);
4887 return -EINVAL;
4888 }
4889 } else {
4890 wp->y_min_scanlines = 4;
4891 }
4892
Ville Syrjälä60e983f2018-12-21 19:14:33 +02004893 if (skl_needs_memory_bw_wa(dev_priv))
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304894 wp->y_min_scanlines *= 2;
4895
4896 wp->plane_bytes_per_line = wp->width * wp->cpp;
4897 if (wp->y_tiled) {
4898 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004899 wp->y_min_scanlines,
4900 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304901
4902 if (INTEL_GEN(dev_priv) >= 10)
4903 interm_pbpl++;
4904
4905 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4906 wp->y_min_scanlines);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004907 } else if (wp->x_tiled && IS_GEN(dev_priv, 9)) {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004908 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
4909 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304910 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4911 } else {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004912 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
4913 wp->dbuf_block_size) + 1;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304914 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4915 }
4916
4917 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4918 wp->plane_blocks_per_line);
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004919
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304920 wp->linetime_us = fixed16_to_u32_round_up(
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004921 intel_get_linetime_us(crtc_state));
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304922
4923 return 0;
4924}
4925
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004926static int
4927skl_compute_plane_wm_params(const struct intel_crtc_state *crtc_state,
4928 const struct intel_plane_state *plane_state,
4929 struct skl_wm_params *wp, int color_plane)
4930{
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004931 const struct drm_framebuffer *fb = plane_state->hw.fb;
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004932 int width;
4933
Maarten Lankhorst3a612762019-10-04 13:34:54 +02004934 /*
4935 * Src coordinates are already rotated by 270 degrees for
4936 * the 90/270 degree plane rotation cases (to match the
4937 * GTT mapping), hence no need to account for rotation here.
4938 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004939 width = drm_rect_width(&plane_state->uapi.src) >> 16;
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004940
4941 return skl_compute_wm_params(crtc_state, width,
4942 fb->format, fb->modifier,
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004943 plane_state->hw.rotation,
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004944 skl_adjusted_plane_pixel_rate(crtc_state, plane_state),
4945 wp, color_plane);
4946}
4947
Ville Syrjäläb52c2732018-12-21 19:14:28 +02004948static bool skl_wm_has_lines(struct drm_i915_private *dev_priv, int level)
4949{
4950 if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv))
4951 return true;
4952
4953 /* The number of lines are ignored for the level 0 watermark. */
4954 return level > 0;
4955}
4956
Maarten Lankhorstec193642019-06-28 10:55:17 +02004957static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
Matt Roperd8e87492018-12-11 09:31:07 -08004958 int level,
4959 const struct skl_wm_params *wp,
4960 const struct skl_wm_level *result_prev,
4961 struct skl_wm_level *result /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004962{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004963 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004964 u32 latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304965 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304966 uint_fixed_16_16_t selected_result;
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004967 u32 res_blocks, res_lines, min_ddb_alloc = 0;
Ville Syrjäläce110ec2018-11-14 23:07:21 +02004968
Ville Syrjälä0aded172019-02-05 17:50:53 +02004969 if (latency == 0) {
4970 /* reject it */
4971 result->min_ddb_alloc = U16_MAX;
Ville Syrjälä692927f2018-12-21 19:14:29 +02004972 return;
Ville Syrjälä0aded172019-02-05 17:50:53 +02004973 }
Ville Syrjälä692927f2018-12-21 19:14:29 +02004974
Ville Syrjälä25312ef2019-05-03 20:38:05 +03004975 /*
4976 * WaIncreaseLatencyIPCEnabled: kbl,cfl
4977 * Display WA #1141: kbl,cfl
4978 */
Ville Syrjälä5a7d2022019-05-03 20:38:06 +03004979 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) ||
Rodrigo Vivi82525c12017-06-08 08:50:00 -07004980 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05304981 latency += 4;
4982
Ville Syrjälä60e983f2018-12-21 19:14:33 +02004983 if (skl_needs_memory_bw_wa(dev_priv) && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03004984 latency += 15;
4985
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304986 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004987 wp->cpp, latency, wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304988 method2 = skl_wm_method2(wp->plane_pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004989 crtc_state->hw.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03004990 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304991 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004992
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304993 if (wp->y_tiled) {
4994 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00004995 } else {
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004996 if ((wp->cpp * crtc_state->hw.adjusted_mode.crtc_htotal /
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004997 wp->dbuf_block_size < 1) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07004998 (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03004999 selected_result = method2;
Paulo Zanoni077b5822018-10-04 16:15:57 -07005000 } else if (latency >= wp->linetime_us) {
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005001 if (IS_GEN(dev_priv, 9) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07005002 !IS_GEMINILAKE(dev_priv))
5003 selected_result = min_fixed16(method1, method2);
5004 else
5005 selected_result = method2;
5006 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005007 selected_result = method1;
Paulo Zanoni077b5822018-10-04 16:15:57 -07005008 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005009 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005010
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05305011 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05305012 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305013 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00005014
Paulo Zanonia5b79d32018-11-13 17:24:32 -08005015 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv)) {
5016 /* Display WA #1125: skl,bxt,kbl */
5017 if (level == 0 && wp->rc_surface)
5018 res_blocks +=
5019 fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07005020
Paulo Zanonia5b79d32018-11-13 17:24:32 -08005021 /* Display WA #1126: skl,bxt,kbl */
5022 if (level >= 1 && level <= 7) {
5023 if (wp->y_tiled) {
5024 res_blocks +=
5025 fixed16_to_u32_round_up(wp->y_tile_minimum);
5026 res_lines += wp->y_min_scanlines;
5027 } else {
5028 res_blocks++;
5029 }
5030
5031 /*
5032 * Make sure result blocks for higher latency levels are
5033 * atleast as high as level below the current level.
5034 * Assumption in DDB algorithm optimization for special
5035 * cases. Also covers Display WA #1125 for RC.
5036 */
5037 if (result_prev->plane_res_b > res_blocks)
5038 res_blocks = result_prev->plane_res_b;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03005039 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005040 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00005041
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005042 if (INTEL_GEN(dev_priv) >= 11) {
5043 if (wp->y_tiled) {
5044 int extra_lines;
5045
5046 if (res_lines % wp->y_min_scanlines == 0)
5047 extra_lines = wp->y_min_scanlines;
5048 else
5049 extra_lines = wp->y_min_scanlines * 2 -
5050 res_lines % wp->y_min_scanlines;
5051
5052 min_ddb_alloc = mul_round_up_u32_fixed16(res_lines + extra_lines,
5053 wp->plane_blocks_per_line);
5054 } else {
5055 min_ddb_alloc = res_blocks +
5056 DIV_ROUND_UP(res_blocks, 10);
5057 }
5058 }
5059
Ville Syrjäläb52c2732018-12-21 19:14:28 +02005060 if (!skl_wm_has_lines(dev_priv, level))
5061 res_lines = 0;
5062
Ville Syrjälä0aded172019-02-05 17:50:53 +02005063 if (res_lines > 31) {
5064 /* reject it */
5065 result->min_ddb_alloc = U16_MAX;
Matt Roperd8e87492018-12-11 09:31:07 -08005066 return;
Ville Syrjälä0aded172019-02-05 17:50:53 +02005067 }
Matt Roperd8e87492018-12-11 09:31:07 -08005068
5069 /*
5070 * If res_lines is valid, assume we can use this watermark level
5071 * for now. We'll come back and disable it after we calculate the
5072 * DDB allocation if it turns out we don't actually have enough
5073 * blocks to satisfy it.
5074 */
Mahesh Kumar62027b72018-04-09 09:11:05 +05305075 result->plane_res_b = res_blocks;
5076 result->plane_res_l = res_lines;
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005077 /* Bspec says: value >= plane ddb allocation -> invalid, hence the +1 here */
5078 result->min_ddb_alloc = max(min_ddb_alloc, res_blocks) + 1;
Mahesh Kumar62027b72018-04-09 09:11:05 +05305079 result->plane_en = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005080}
5081
Matt Roperd8e87492018-12-11 09:31:07 -08005082static void
Maarten Lankhorstec193642019-06-28 10:55:17 +02005083skl_compute_wm_levels(const struct intel_crtc_state *crtc_state,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305084 const struct skl_wm_params *wm_params,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005085 struct skl_wm_level *levels)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005086{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005087 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305088 int level, max_level = ilk_wm_max_level(dev_priv);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005089 struct skl_wm_level *result_prev = &levels[0];
Lyudea62163e2016-10-04 14:28:20 -04005090
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305091 for (level = 0; level <= max_level; level++) {
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005092 struct skl_wm_level *result = &levels[level];
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305093
Maarten Lankhorstec193642019-06-28 10:55:17 +02005094 skl_compute_plane_wm(crtc_state, level, wm_params,
Matt Roperd8e87492018-12-11 09:31:07 -08005095 result_prev, result);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005096
5097 result_prev = result;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305098 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005099}
5100
Maarten Lankhorstec193642019-06-28 10:55:17 +02005101static void skl_compute_transition_wm(const struct intel_crtc_state *crtc_state,
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02005102 const struct skl_wm_params *wp,
Matt Roperd8e87492018-12-11 09:31:07 -08005103 struct skl_plane_wm *wm)
Damien Lespiau407b50f2014-11-04 17:06:57 +00005104{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005105 struct drm_device *dev = crtc_state->uapi.crtc->dev;
Kumar, Maheshca476672017-08-17 19:15:24 +05305106 const struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005107 u16 trans_min, trans_y_tile_min;
5108 const u16 trans_amount = 10; /* This is configurable amount */
5109 u16 wm0_sel_res_b, trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00005110
Kumar, Maheshca476672017-08-17 19:15:24 +05305111 /* Transition WM are not recommended by HW team for GEN9 */
5112 if (INTEL_GEN(dev_priv) <= 9)
Ville Syrjälä14a43062018-11-14 23:07:22 +02005113 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05305114
5115 /* Transition WM don't make any sense if ipc is disabled */
5116 if (!dev_priv->ipc_enabled)
Ville Syrjälä14a43062018-11-14 23:07:22 +02005117 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05305118
Paulo Zanoni91961a82018-10-04 16:15:56 -07005119 trans_min = 14;
5120 if (INTEL_GEN(dev_priv) >= 11)
Kumar, Maheshca476672017-08-17 19:15:24 +05305121 trans_min = 4;
5122
5123 trans_offset_b = trans_min + trans_amount;
5124
Paulo Zanonicbacc792018-10-04 16:15:58 -07005125 /*
5126 * The spec asks for Selected Result Blocks for wm0 (the real value),
5127 * not Result Blocks (the integer value). Pay attention to the capital
5128 * letters. The value wm_l0->plane_res_b is actually Result Blocks, but
5129 * since Result Blocks is the ceiling of Selected Result Blocks plus 1,
5130 * and since we later will have to get the ceiling of the sum in the
5131 * transition watermarks calculation, we can just pretend Selected
5132 * Result Blocks is Result Blocks minus 1 and it should work for the
5133 * current platforms.
5134 */
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02005135 wm0_sel_res_b = wm->wm[0].plane_res_b - 1;
Paulo Zanonicbacc792018-10-04 16:15:58 -07005136
Kumar, Maheshca476672017-08-17 19:15:24 +05305137 if (wp->y_tiled) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005138 trans_y_tile_min =
5139 (u16)mul_round_up_u32_fixed16(2, wp->y_tile_minimum);
Paulo Zanonicbacc792018-10-04 16:15:58 -07005140 res_blocks = max(wm0_sel_res_b, trans_y_tile_min) +
Kumar, Maheshca476672017-08-17 19:15:24 +05305141 trans_offset_b;
5142 } else {
Paulo Zanonicbacc792018-10-04 16:15:58 -07005143 res_blocks = wm0_sel_res_b + trans_offset_b;
Kumar, Maheshca476672017-08-17 19:15:24 +05305144
5145 /* WA BUG:1938466 add one block for non y-tile planes */
5146 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
5147 res_blocks += 1;
5148
5149 }
5150
Matt Roperd8e87492018-12-11 09:31:07 -08005151 /*
5152 * Just assume we can enable the transition watermark. After
5153 * computing the DDB we'll come back and disable it if that
5154 * assumption turns out to be false.
5155 */
5156 wm->trans_wm.plane_res_b = res_blocks + 1;
5157 wm->trans_wm.plane_en = true;
Damien Lespiau407b50f2014-11-04 17:06:57 +00005158}
5159
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005160static int skl_build_plane_wm_single(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005161 const struct intel_plane_state *plane_state,
5162 enum plane_id plane_id, int color_plane)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005163{
Ville Syrjälä83158472018-11-27 18:57:26 +02005164 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005165 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005166 int ret;
5167
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005168 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005169 &wm_params, color_plane);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005170 if (ret)
5171 return ret;
5172
Ville Syrjälä67155a62019-03-12 22:58:37 +02005173 skl_compute_wm_levels(crtc_state, &wm_params, wm->wm);
Matt Roperd8e87492018-12-11 09:31:07 -08005174 skl_compute_transition_wm(crtc_state, &wm_params, wm);
Ville Syrjälä83158472018-11-27 18:57:26 +02005175
5176 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005177}
5178
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005179static int skl_build_plane_wm_uv(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005180 const struct intel_plane_state *plane_state,
5181 enum plane_id plane_id)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005182{
Ville Syrjälä83158472018-11-27 18:57:26 +02005183 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
5184 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005185 int ret;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005186
Ville Syrjälä83158472018-11-27 18:57:26 +02005187 wm->is_planar = true;
5188
5189 /* uv plane watermarks must also be validated for NV12/Planar */
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005190 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005191 &wm_params, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005192 if (ret)
5193 return ret;
5194
Ville Syrjälä67155a62019-03-12 22:58:37 +02005195 skl_compute_wm_levels(crtc_state, &wm_params, wm->uv_wm);
Ville Syrjälä83158472018-11-27 18:57:26 +02005196
5197 return 0;
5198}
5199
Ville Syrjälä96cb7cd2019-03-12 22:58:43 +02005200static int skl_build_plane_wm(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005201 const struct intel_plane_state *plane_state)
5202{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005203 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005204 const struct drm_framebuffer *fb = plane_state->hw.fb;
Ville Syrjälä83158472018-11-27 18:57:26 +02005205 enum plane_id plane_id = plane->id;
5206 int ret;
5207
5208 if (!intel_wm_plane_visible(crtc_state, plane_state))
5209 return 0;
5210
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005211 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005212 plane_id, 0);
5213 if (ret)
5214 return ret;
5215
5216 if (fb->format->is_yuv && fb->format->num_planes > 1) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005217 ret = skl_build_plane_wm_uv(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005218 plane_id);
5219 if (ret)
5220 return ret;
5221 }
5222
5223 return 0;
5224}
5225
Ville Syrjälä96cb7cd2019-03-12 22:58:43 +02005226static int icl_build_plane_wm(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005227 const struct intel_plane_state *plane_state)
5228{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005229 enum plane_id plane_id = to_intel_plane(plane_state->uapi.plane)->id;
Ville Syrjälä83158472018-11-27 18:57:26 +02005230 int ret;
5231
5232 /* Watermarks calculated in master */
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005233 if (plane_state->planar_slave)
Ville Syrjälä83158472018-11-27 18:57:26 +02005234 return 0;
5235
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005236 if (plane_state->planar_linked_plane) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005237 const struct drm_framebuffer *fb = plane_state->hw.fb;
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005238 enum plane_id y_plane_id = plane_state->planar_linked_plane->id;
Ville Syrjälä83158472018-11-27 18:57:26 +02005239
5240 WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state));
5241 WARN_ON(!fb->format->is_yuv ||
5242 fb->format->num_planes == 1);
5243
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005244 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005245 y_plane_id, 0);
5246 if (ret)
5247 return ret;
5248
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005249 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005250 plane_id, 1);
5251 if (ret)
5252 return ret;
5253 } else if (intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005254 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005255 plane_id, 0);
5256 if (ret)
5257 return ret;
5258 }
5259
5260 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005261}
5262
Maarten Lankhorstec193642019-06-28 10:55:17 +02005263static int skl_build_pipe_wm(struct intel_crtc_state *crtc_state)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005264{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005265 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Maarten Lankhorstec193642019-06-28 10:55:17 +02005266 struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02005267 struct intel_plane *plane;
5268 const struct intel_plane_state *plane_state;
Matt Roper55994c22016-05-12 07:06:08 -07005269 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005270
Lyudea62163e2016-10-04 14:28:20 -04005271 /*
5272 * We'll only calculate watermarks for planes that are actually
5273 * enabled, so make sure all other planes are set as disabled.
5274 */
5275 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
5276
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02005277 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state,
5278 crtc_state) {
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305279
Ville Syrjälä83158472018-11-27 18:57:26 +02005280 if (INTEL_GEN(dev_priv) >= 11)
Maarten Lankhorstec193642019-06-28 10:55:17 +02005281 ret = icl_build_plane_wm(crtc_state, plane_state);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005282 else
Maarten Lankhorstec193642019-06-28 10:55:17 +02005283 ret = skl_build_plane_wm(crtc_state, plane_state);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305284 if (ret)
5285 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005286 }
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05305287
Matt Roper55994c22016-05-12 07:06:08 -07005288 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005289}
5290
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005291static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
5292 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00005293 const struct skl_ddb_entry *entry)
5294{
5295 if (entry->end)
Jani Nikula9b6320a2020-01-23 16:00:04 +02005296 intel_de_write_fw(dev_priv, reg,
5297 (entry->end - 1) << 16 | entry->start);
Damien Lespiau16160e32014-11-04 17:06:53 +00005298 else
Jani Nikula9b6320a2020-01-23 16:00:04 +02005299 intel_de_write_fw(dev_priv, reg, 0);
Damien Lespiau16160e32014-11-04 17:06:53 +00005300}
5301
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005302static void skl_write_wm_level(struct drm_i915_private *dev_priv,
5303 i915_reg_t reg,
5304 const struct skl_wm_level *level)
5305{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005306 u32 val = 0;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005307
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005308 if (level->plane_en)
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005309 val |= PLANE_WM_EN;
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005310 if (level->ignore_lines)
5311 val |= PLANE_WM_IGNORE_LINES;
5312 val |= level->plane_res_b;
5313 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005314
Jani Nikula9b6320a2020-01-23 16:00:04 +02005315 intel_de_write_fw(dev_priv, reg, val);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005316}
5317
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005318void skl_write_plane_wm(struct intel_plane *plane,
5319 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005320{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005321 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005322 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005323 enum plane_id plane_id = plane->id;
5324 enum pipe pipe = plane->pipe;
5325 const struct skl_plane_wm *wm =
5326 &crtc_state->wm.skl.optimal.planes[plane_id];
5327 const struct skl_ddb_entry *ddb_y =
5328 &crtc_state->wm.skl.plane_ddb_y[plane_id];
5329 const struct skl_ddb_entry *ddb_uv =
5330 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005331
5332 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005333 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005334 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005335 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005336 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005337 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005338
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005339 if (INTEL_GEN(dev_priv) >= 11) {
Mahesh Kumar234059d2018-01-30 11:49:13 -02005340 skl_ddb_entry_write(dev_priv,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005341 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5342 return;
Mahesh Kumarb879d582018-04-09 09:11:01 +05305343 }
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005344
5345 if (wm->is_planar)
5346 swap(ddb_y, ddb_uv);
5347
5348 skl_ddb_entry_write(dev_priv,
5349 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5350 skl_ddb_entry_write(dev_priv,
5351 PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv);
Lyude62e0fb82016-08-22 12:50:08 -04005352}
5353
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005354void skl_write_cursor_wm(struct intel_plane *plane,
5355 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005356{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005357 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005358 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005359 enum plane_id plane_id = plane->id;
5360 enum pipe pipe = plane->pipe;
5361 const struct skl_plane_wm *wm =
5362 &crtc_state->wm.skl.optimal.planes[plane_id];
5363 const struct skl_ddb_entry *ddb =
5364 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005365
5366 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005367 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
5368 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005369 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005370 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005371
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005372 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb);
Lyude62e0fb82016-08-22 12:50:08 -04005373}
5374
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005375bool skl_wm_level_equals(const struct skl_wm_level *l1,
5376 const struct skl_wm_level *l2)
5377{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005378 return l1->plane_en == l2->plane_en &&
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005379 l1->ignore_lines == l2->ignore_lines &&
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005380 l1->plane_res_l == l2->plane_res_l &&
5381 l1->plane_res_b == l2->plane_res_b;
5382}
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005383
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005384static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv,
5385 const struct skl_plane_wm *wm1,
5386 const struct skl_plane_wm *wm2)
5387{
5388 int level, max_level = ilk_wm_max_level(dev_priv);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005389
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005390 for (level = 0; level <= max_level; level++) {
5391 if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]) ||
5392 !skl_wm_level_equals(&wm1->uv_wm[level], &wm2->uv_wm[level]))
5393 return false;
5394 }
5395
5396 return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005397}
5398
Lyude27082492016-08-24 07:48:10 +02005399static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
5400 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005401{
Lyude27082492016-08-24 07:48:10 +02005402 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005403}
5404
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005405bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb,
Jani Nikula696173b2019-04-05 14:00:15 +03005406 const struct skl_ddb_entry *entries,
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005407 int num_entries, int ignore_idx)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005408{
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005409 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005410
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005411 for (i = 0; i < num_entries; i++) {
5412 if (i != ignore_idx &&
5413 skl_ddb_entries_overlap(ddb, &entries[i]))
Lyude27082492016-08-24 07:48:10 +02005414 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03005415 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005416
Lyude27082492016-08-24 07:48:10 +02005417 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005418}
5419
Jani Nikulabb7791b2016-10-04 12:29:17 +03005420static int
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005421skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state,
5422 struct intel_crtc_state *new_crtc_state)
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005423{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005424 struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state);
5425 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005426 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5427 struct intel_plane *plane;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005428
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005429 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5430 struct intel_plane_state *plane_state;
5431 enum plane_id plane_id = plane->id;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005432
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005433 if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id],
5434 &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) &&
5435 skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id],
5436 &new_crtc_state->wm.skl.plane_ddb_uv[plane_id]))
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005437 continue;
5438
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005439 plane_state = intel_atomic_get_plane_state(state, plane);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005440 if (IS_ERR(plane_state))
5441 return PTR_ERR(plane_state);
Maarten Lankhorst1ab554b2018-10-22 15:51:52 +02005442
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005443 new_crtc_state->update_planes |= BIT(plane_id);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005444 }
5445
5446 return 0;
5447}
5448
5449static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005450skl_compute_ddb(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005451{
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005452 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005453 struct intel_crtc_state *old_crtc_state;
5454 struct intel_crtc_state *new_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305455 struct intel_crtc *crtc;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305456 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005457
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02005458 state->enabled_dbuf_slices_mask = dev_priv->enabled_dbuf_slices_mask;
Paulo Zanoni5a920b82016-10-04 14:37:32 -03005459
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005460 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005461 new_crtc_state, i) {
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005462 ret = skl_allocate_pipe_ddb(new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005463 if (ret)
5464 return ret;
5465
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005466 ret = skl_ddb_add_affected_planes(old_crtc_state,
5467 new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005468 if (ret)
5469 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07005470 }
5471
5472 return 0;
5473}
5474
Ville Syrjäläab98e942019-02-08 22:05:27 +02005475static char enast(bool enable)
5476{
5477 return enable ? '*' : ' ';
5478}
5479
Matt Roper2722efb2016-08-17 15:55:55 -04005480static void
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005481skl_print_wm_changes(struct intel_atomic_state *state)
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005482{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005483 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5484 const struct intel_crtc_state *old_crtc_state;
5485 const struct intel_crtc_state *new_crtc_state;
5486 struct intel_plane *plane;
5487 struct intel_crtc *crtc;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005488 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005489
Jani Nikulabdbf43d2019-10-28 12:38:15 +02005490 if (!drm_debug_enabled(DRM_UT_KMS))
Ville Syrjäläab98e942019-02-08 22:05:27 +02005491 return;
5492
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005493 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5494 new_crtc_state, i) {
Ville Syrjäläab98e942019-02-08 22:05:27 +02005495 const struct skl_pipe_wm *old_pipe_wm, *new_pipe_wm;
5496
5497 old_pipe_wm = &old_crtc_state->wm.skl.optimal;
5498 new_pipe_wm = &new_crtc_state->wm.skl.optimal;
5499
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005500 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5501 enum plane_id plane_id = plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005502 const struct skl_ddb_entry *old, *new;
5503
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005504 old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id];
5505 new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005506
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005507 if (skl_ddb_entry_equal(old, new))
5508 continue;
5509
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005510 drm_dbg_kms(&dev_priv->drm,
5511 "[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n",
5512 plane->base.base.id, plane->base.name,
5513 old->start, old->end, new->start, new->end,
5514 skl_ddb_entry_size(old), skl_ddb_entry_size(new));
Ville Syrjäläab98e942019-02-08 22:05:27 +02005515 }
5516
5517 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5518 enum plane_id plane_id = plane->id;
5519 const struct skl_plane_wm *old_wm, *new_wm;
5520
5521 old_wm = &old_pipe_wm->planes[plane_id];
5522 new_wm = &new_pipe_wm->planes[plane_id];
5523
5524 if (skl_plane_wm_equals(dev_priv, old_wm, new_wm))
5525 continue;
5526
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005527 drm_dbg_kms(&dev_priv->drm,
5528 "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm"
5529 " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm\n",
5530 plane->base.base.id, plane->base.name,
5531 enast(old_wm->wm[0].plane_en), enast(old_wm->wm[1].plane_en),
5532 enast(old_wm->wm[2].plane_en), enast(old_wm->wm[3].plane_en),
5533 enast(old_wm->wm[4].plane_en), enast(old_wm->wm[5].plane_en),
5534 enast(old_wm->wm[6].plane_en), enast(old_wm->wm[7].plane_en),
5535 enast(old_wm->trans_wm.plane_en),
5536 enast(new_wm->wm[0].plane_en), enast(new_wm->wm[1].plane_en),
5537 enast(new_wm->wm[2].plane_en), enast(new_wm->wm[3].plane_en),
5538 enast(new_wm->wm[4].plane_en), enast(new_wm->wm[5].plane_en),
5539 enast(new_wm->wm[6].plane_en), enast(new_wm->wm[7].plane_en),
5540 enast(new_wm->trans_wm.plane_en));
Ville Syrjäläab98e942019-02-08 22:05:27 +02005541
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005542 drm_dbg_kms(&dev_priv->drm,
5543 "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d"
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005544 " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d\n",
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005545 plane->base.base.id, plane->base.name,
5546 enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].plane_res_l,
5547 enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].plane_res_l,
5548 enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].plane_res_l,
5549 enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].plane_res_l,
5550 enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].plane_res_l,
5551 enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].plane_res_l,
5552 enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].plane_res_l,
5553 enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].plane_res_l,
5554 enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.plane_res_l,
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005555
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005556 enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].plane_res_l,
5557 enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].plane_res_l,
5558 enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].plane_res_l,
5559 enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].plane_res_l,
5560 enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].plane_res_l,
5561 enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].plane_res_l,
5562 enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].plane_res_l,
5563 enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].plane_res_l,
5564 enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.plane_res_l);
Ville Syrjäläab98e942019-02-08 22:05:27 +02005565
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005566 drm_dbg_kms(&dev_priv->drm,
5567 "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d"
5568 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n",
5569 plane->base.base.id, plane->base.name,
5570 old_wm->wm[0].plane_res_b, old_wm->wm[1].plane_res_b,
5571 old_wm->wm[2].plane_res_b, old_wm->wm[3].plane_res_b,
5572 old_wm->wm[4].plane_res_b, old_wm->wm[5].plane_res_b,
5573 old_wm->wm[6].plane_res_b, old_wm->wm[7].plane_res_b,
5574 old_wm->trans_wm.plane_res_b,
5575 new_wm->wm[0].plane_res_b, new_wm->wm[1].plane_res_b,
5576 new_wm->wm[2].plane_res_b, new_wm->wm[3].plane_res_b,
5577 new_wm->wm[4].plane_res_b, new_wm->wm[5].plane_res_b,
5578 new_wm->wm[6].plane_res_b, new_wm->wm[7].plane_res_b,
5579 new_wm->trans_wm.plane_res_b);
Ville Syrjäläab98e942019-02-08 22:05:27 +02005580
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005581 drm_dbg_kms(&dev_priv->drm,
5582 "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d"
5583 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n",
5584 plane->base.base.id, plane->base.name,
5585 old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc,
5586 old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc,
5587 old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc,
5588 old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc,
5589 old_wm->trans_wm.min_ddb_alloc,
5590 new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc,
5591 new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc,
5592 new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc,
5593 new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc,
5594 new_wm->trans_wm.min_ddb_alloc);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005595 }
5596 }
5597}
5598
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005599static int intel_add_all_pipes(struct intel_atomic_state *state)
5600{
5601 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5602 struct intel_crtc *crtc;
5603
5604 for_each_intel_crtc(&dev_priv->drm, crtc) {
5605 struct intel_crtc_state *crtc_state;
5606
5607 crtc_state = intel_atomic_get_crtc_state(&state->base, crtc);
5608 if (IS_ERR(crtc_state))
5609 return PTR_ERR(crtc_state);
5610 }
5611
5612 return 0;
5613}
5614
Matt Roper98d39492016-05-12 07:06:03 -07005615static int
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005616skl_ddb_add_affected_pipes(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005617{
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005618 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005619 int ret;
Matt Roper98d39492016-05-12 07:06:03 -07005620
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305621 /*
5622 * If this is our first atomic update following hardware readout,
5623 * we can't trust the DDB that the BIOS programmed for us. Let's
5624 * pretend that all pipes switched active status so that we'll
5625 * ensure a full DDB recompute.
5626 */
5627 if (dev_priv->wm.distrust_bios_wm) {
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005628 ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005629 state->base.acquire_ctx);
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305630 if (ret)
5631 return ret;
5632
Ville Syrjälä8d9875b2019-10-11 23:09:45 +03005633 state->active_pipe_changes = INTEL_INFO(dev_priv)->pipe_mask;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305634
5635 /*
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005636 * We usually only initialize state->active_pipes if we
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305637 * we're doing a modeset; make sure this field is always
5638 * initialized during the sanitization process that happens
5639 * on the first commit too.
5640 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005641 if (!state->modeset)
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005642 state->active_pipes = dev_priv->active_pipes;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305643 }
5644
5645 /*
5646 * If the modeset changes which CRTC's are active, we need to
5647 * recompute the DDB allocation for *all* active pipes, even
5648 * those that weren't otherwise being modified in any way by this
5649 * atomic commit. Due to the shrinking of the per-pipe allocations
5650 * when new active CRTC's are added, it's possible for a pipe that
5651 * we were already using and aren't changing at all here to suddenly
5652 * become invalid if its DDB needs exceeds its new allocation.
5653 *
5654 * Note that if we wind up doing a full DDB recompute, we can't let
5655 * any other display updates race with this transaction, so we need
5656 * to grab the lock on *all* CRTC's.
5657 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005658 if (state->active_pipe_changes || state->modeset) {
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005659 ret = intel_add_all_pipes(state);
5660 if (ret)
5661 return ret;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305662 }
5663
5664 return 0;
5665}
5666
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005667/*
5668 * To make sure the cursor watermark registers are always consistent
5669 * with our computed state the following scenario needs special
5670 * treatment:
5671 *
5672 * 1. enable cursor
5673 * 2. move cursor entirely offscreen
5674 * 3. disable cursor
5675 *
5676 * Step 2. does call .disable_plane() but does not zero the watermarks
5677 * (since we consider an offscreen cursor still active for the purposes
5678 * of watermarks). Step 3. would not normally call .disable_plane()
5679 * because the actual plane visibility isn't changing, and we don't
5680 * deallocate the cursor ddb until the pipe gets disabled. So we must
5681 * force step 3. to call .disable_plane() to update the watermark
5682 * registers properly.
5683 *
5684 * Other planes do not suffer from this issues as their watermarks are
5685 * calculated based on the actual plane visibility. The only time this
5686 * can trigger for the other planes is during the initial readout as the
5687 * default value of the watermarks registers is not zero.
5688 */
5689static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
5690 struct intel_crtc *crtc)
5691{
5692 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5693 const struct intel_crtc_state *old_crtc_state =
5694 intel_atomic_get_old_crtc_state(state, crtc);
5695 struct intel_crtc_state *new_crtc_state =
5696 intel_atomic_get_new_crtc_state(state, crtc);
5697 struct intel_plane *plane;
5698
5699 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5700 struct intel_plane_state *plane_state;
5701 enum plane_id plane_id = plane->id;
5702
5703 /*
5704 * Force a full wm update for every plane on modeset.
5705 * Required because the reset value of the wm registers
5706 * is non-zero, whereas we want all disabled planes to
5707 * have zero watermarks. So if we turn off the relevant
5708 * power well the hardware state will go out of sync
5709 * with the software state.
5710 */
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005711 if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi) &&
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005712 skl_plane_wm_equals(dev_priv,
5713 &old_crtc_state->wm.skl.optimal.planes[plane_id],
5714 &new_crtc_state->wm.skl.optimal.planes[plane_id]))
5715 continue;
5716
5717 plane_state = intel_atomic_get_plane_state(state, plane);
5718 if (IS_ERR(plane_state))
5719 return PTR_ERR(plane_state);
5720
5721 new_crtc_state->update_planes |= BIT(plane_id);
5722 }
5723
5724 return 0;
5725}
5726
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305727static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005728skl_compute_wm(struct intel_atomic_state *state)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305729{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005730 struct intel_crtc *crtc;
Ville Syrjälä8cac9fd2019-03-12 22:58:44 +02005731 struct intel_crtc_state *new_crtc_state;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005732 struct intel_crtc_state *old_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305733 int ret, i;
5734
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005735 ret = skl_ddb_add_affected_pipes(state);
5736 if (ret)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305737 return ret;
5738
Matt Roper734fa012016-05-12 15:11:40 -07005739 /*
5740 * Calculate WM's for all pipes that are part of this transaction.
Matt Roperd8e87492018-12-11 09:31:07 -08005741 * Note that skl_ddb_add_affected_pipes may have added more CRTC's that
Ville Syrjäläf119a5e2020-01-20 19:47:13 +02005742 * weren't otherwise being modified if pipe allocations had to change.
Matt Roper734fa012016-05-12 15:11:40 -07005743 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005744 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjälä8cac9fd2019-03-12 22:58:44 +02005745 new_crtc_state, i) {
5746 ret = skl_build_pipe_wm(new_crtc_state);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005747 if (ret)
5748 return ret;
5749
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005750 ret = skl_wm_add_affected_planes(state, crtc);
Matt Roper734fa012016-05-12 15:11:40 -07005751 if (ret)
5752 return ret;
Matt Roper734fa012016-05-12 15:11:40 -07005753 }
5754
Matt Roperd8e87492018-12-11 09:31:07 -08005755 ret = skl_compute_ddb(state);
5756 if (ret)
5757 return ret;
5758
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005759 skl_print_wm_changes(state);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005760
Matt Roper98d39492016-05-12 07:06:03 -07005761 return 0;
5762}
5763
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005764static void ilk_compute_wm_config(struct drm_i915_private *dev_priv,
Ville Syrjäläd8905652016-01-14 14:53:35 +02005765 struct intel_wm_config *config)
5766{
5767 struct intel_crtc *crtc;
5768
5769 /* Compute the currently _active_ config */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005770 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläd8905652016-01-14 14:53:35 +02005771 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5772
5773 if (!wm->pipe_enabled)
5774 continue;
5775
5776 config->sprites_enabled |= wm->sprites_enabled;
5777 config->sprites_scaled |= wm->sprites_scaled;
5778 config->num_pipes_active++;
5779 }
5780}
5781
Matt Ropered4a6a72016-02-23 17:20:13 -08005782static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005783{
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005784 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005785 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005786 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005787 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005788 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005789
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005790 ilk_compute_wm_config(dev_priv, &config);
Ville Syrjäläd8905652016-01-14 14:53:35 +02005791
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005792 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max);
5793 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005794
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005795 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005796 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005797 config.num_pipes_active == 1 && config.sprites_enabled) {
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005798 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max);
5799 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005800
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005801 best_lp_wm = ilk_find_best_result(dev_priv, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005802 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005803 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005804 }
5805
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005806 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005807 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005808
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005809 ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005810
Imre Deak820c1982013-12-17 14:46:36 +02005811 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005812}
5813
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005814static void ilk_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005815 struct intel_crtc *crtc)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005816{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005817 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5818 const struct intel_crtc_state *crtc_state =
5819 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005820
Matt Ropered4a6a72016-02-23 17:20:13 -08005821 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005822 crtc->wm.active.ilk = crtc_state->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005823 ilk_program_watermarks(dev_priv);
5824 mutex_unlock(&dev_priv->wm.wm_mutex);
5825}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005826
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005827static void ilk_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005828 struct intel_crtc *crtc)
Matt Ropered4a6a72016-02-23 17:20:13 -08005829{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005830 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5831 const struct intel_crtc_state *crtc_state =
5832 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005833
5834 if (!crtc_state->wm.need_postvbl_update)
5835 return;
Matt Ropered4a6a72016-02-23 17:20:13 -08005836
5837 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005838 crtc->wm.active.ilk = crtc_state->wm.ilk.optimal;
5839 ilk_program_watermarks(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08005840 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005841}
5842
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005843static inline void skl_wm_level_from_reg_val(u32 val,
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005844 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005845{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005846 level->plane_en = val & PLANE_WM_EN;
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005847 level->ignore_lines = val & PLANE_WM_IGNORE_LINES;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005848 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5849 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5850 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005851}
5852
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005853void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005854 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005855{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005856 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5857 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005858 int level, max_level;
5859 enum plane_id plane_id;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005860 u32 val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005861
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005862 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005863
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005864 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005865 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005866
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005867 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005868 if (plane_id != PLANE_CURSOR)
5869 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005870 else
5871 val = I915_READ(CUR_WM(pipe, level));
5872
5873 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5874 }
5875
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005876 if (plane_id != PLANE_CURSOR)
5877 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005878 else
5879 val = I915_READ(CUR_WM_TRANS(pipe));
5880
5881 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5882 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005883
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005884 if (!crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005885 return;
Pradeep Bhat30789992014-11-04 17:06:45 +00005886}
5887
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005888void skl_wm_get_hw_state(struct drm_i915_private *dev_priv)
Pradeep Bhat30789992014-11-04 17:06:45 +00005889{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005890 struct intel_crtc *crtc;
Maarten Lankhorstec193642019-06-28 10:55:17 +02005891 struct intel_crtc_state *crtc_state;
Pradeep Bhat30789992014-11-04 17:06:45 +00005892
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005893 skl_ddb_get_hw_state(dev_priv);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005894 for_each_intel_crtc(&dev_priv->drm, crtc) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02005895 crtc_state = to_intel_crtc_state(crtc->base.state);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005896
Maarten Lankhorstec193642019-06-28 10:55:17 +02005897 skl_pipe_wm_get_hw_state(crtc, &crtc_state->wm.skl.optimal);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005898 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005899
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005900 if (dev_priv->active_pipes) {
Matt Roper279e99d2016-05-12 07:06:02 -07005901 /* Fully recompute DDB on first atomic commit */
5902 dev_priv->wm.distrust_bios_wm = true;
Matt Roper279e99d2016-05-12 07:06:02 -07005903 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005904}
5905
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005906static void ilk_pipe_wm_get_hw_state(struct intel_crtc *crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005907{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005908 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005909 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005910 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Maarten Lankhorstec193642019-06-28 10:55:17 +02005911 struct intel_crtc_state *crtc_state = to_intel_crtc_state(crtc->base.state);
5912 struct intel_pipe_wm *active = &crtc_state->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005913 enum pipe pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005914 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005915 [PIPE_A] = WM0_PIPEA_ILK,
5916 [PIPE_B] = WM0_PIPEB_ILK,
5917 [PIPE_C] = WM0_PIPEC_IVB,
5918 };
5919
5920 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005921
Ville Syrjälä15606532016-05-13 17:55:17 +03005922 memset(active, 0, sizeof(*active));
5923
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005924 active->pipe_enabled = crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005925
5926 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005927 u32 tmp = hw->wm_pipe[pipe];
5928
5929 /*
5930 * For active pipes LP0 watermark is marked as
5931 * enabled, and LP1+ watermaks as disabled since
5932 * we can't really reverse compute them in case
5933 * multiple pipes are active.
5934 */
5935 active->wm[0].enable = true;
5936 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5937 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5938 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005939 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005940 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005941
5942 /*
5943 * For inactive pipes, all watermark levels
5944 * should be marked as enabled but zeroed,
5945 * which is what we'd compute them to.
5946 */
5947 for (level = 0; level <= max_level; level++)
5948 active->wm[level].enable = true;
5949 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005950
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005951 crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005952}
5953
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005954#define _FW_WM(value, plane) \
5955 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5956#define _FW_WM_VLV(value, plane) \
5957 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5958
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005959static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5960 struct g4x_wm_values *wm)
5961{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005962 u32 tmp;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005963
5964 tmp = I915_READ(DSPFW1);
5965 wm->sr.plane = _FW_WM(tmp, SR);
5966 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5967 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5968 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5969
5970 tmp = I915_READ(DSPFW2);
5971 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5972 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5973 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5974 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5975 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5976 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5977
5978 tmp = I915_READ(DSPFW3);
5979 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
5980 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
5981 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
5982 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
5983}
5984
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005985static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
5986 struct vlv_wm_values *wm)
5987{
5988 enum pipe pipe;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005989 u32 tmp;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005990
5991 for_each_pipe(dev_priv, pipe) {
5992 tmp = I915_READ(VLV_DDL(pipe));
5993
Ville Syrjälä1b313892016-11-28 19:37:08 +02005994 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005995 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005996 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005997 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02005998 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005999 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006000 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006001 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6002 }
6003
6004 tmp = I915_READ(DSPFW1);
6005 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006006 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
6007 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
6008 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006009
6010 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006011 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
6012 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
6013 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006014
6015 tmp = I915_READ(DSPFW3);
6016 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6017
6018 if (IS_CHERRYVIEW(dev_priv)) {
6019 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006020 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6021 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006022
6023 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006024 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
6025 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006026
6027 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006028 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
6029 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006030
6031 tmp = I915_READ(DSPHOWM);
6032 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02006033 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
6034 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
6035 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
6036 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6037 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6038 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6039 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6040 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6041 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006042 } else {
6043 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006044 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6045 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006046
6047 tmp = I915_READ(DSPHOWM);
6048 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02006049 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6050 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6051 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6052 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6053 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6054 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006055 }
6056}
6057
6058#undef _FW_WM
6059#undef _FW_WM_VLV
6060
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006061void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006062{
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006063 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
6064 struct intel_crtc *crtc;
6065
6066 g4x_read_wm_values(dev_priv, wm);
6067
6068 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
6069
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006070 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006071 struct intel_crtc_state *crtc_state =
6072 to_intel_crtc_state(crtc->base.state);
6073 struct g4x_wm_state *active = &crtc->wm.active.g4x;
6074 struct g4x_pipe_wm *raw;
6075 enum pipe pipe = crtc->pipe;
6076 enum plane_id plane_id;
6077 int level, max_level;
6078
6079 active->cxsr = wm->cxsr;
6080 active->hpll_en = wm->hpll_en;
6081 active->fbc_en = wm->fbc_en;
6082
6083 active->sr = wm->sr;
6084 active->hpll = wm->hpll;
6085
6086 for_each_plane_id_on_crtc(crtc, plane_id) {
6087 active->wm.plane[plane_id] =
6088 wm->pipe[pipe].plane[plane_id];
6089 }
6090
6091 if (wm->cxsr && wm->hpll_en)
6092 max_level = G4X_WM_LEVEL_HPLL;
6093 else if (wm->cxsr)
6094 max_level = G4X_WM_LEVEL_SR;
6095 else
6096 max_level = G4X_WM_LEVEL_NORMAL;
6097
6098 level = G4X_WM_LEVEL_NORMAL;
6099 raw = &crtc_state->wm.g4x.raw[level];
6100 for_each_plane_id_on_crtc(crtc, plane_id)
6101 raw->plane[plane_id] = active->wm.plane[plane_id];
6102
6103 if (++level > max_level)
6104 goto out;
6105
6106 raw = &crtc_state->wm.g4x.raw[level];
6107 raw->plane[PLANE_PRIMARY] = active->sr.plane;
6108 raw->plane[PLANE_CURSOR] = active->sr.cursor;
6109 raw->plane[PLANE_SPRITE0] = 0;
6110 raw->fbc = active->sr.fbc;
6111
6112 if (++level > max_level)
6113 goto out;
6114
6115 raw = &crtc_state->wm.g4x.raw[level];
6116 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
6117 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
6118 raw->plane[PLANE_SPRITE0] = 0;
6119 raw->fbc = active->hpll.fbc;
6120
6121 out:
6122 for_each_plane_id_on_crtc(crtc, plane_id)
6123 g4x_raw_plane_wm_set(crtc_state, level,
6124 plane_id, USHRT_MAX);
6125 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
6126
6127 crtc_state->wm.g4x.optimal = *active;
6128 crtc_state->wm.g4x.intermediate = *active;
6129
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006130 drm_dbg_kms(&dev_priv->drm,
6131 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
6132 pipe_name(pipe),
6133 wm->pipe[pipe].plane[PLANE_PRIMARY],
6134 wm->pipe[pipe].plane[PLANE_CURSOR],
6135 wm->pipe[pipe].plane[PLANE_SPRITE0]);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006136 }
6137
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006138 drm_dbg_kms(&dev_priv->drm,
6139 "Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
6140 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
6141 drm_dbg_kms(&dev_priv->drm,
6142 "Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
6143 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
6144 drm_dbg_kms(&dev_priv->drm, "Initial SR=%s HPLL=%s FBC=%s\n",
6145 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006146}
6147
6148void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
6149{
6150 struct intel_plane *plane;
6151 struct intel_crtc *crtc;
6152
6153 mutex_lock(&dev_priv->wm.wm_mutex);
6154
6155 for_each_intel_plane(&dev_priv->drm, plane) {
6156 struct intel_crtc *crtc =
6157 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6158 struct intel_crtc_state *crtc_state =
6159 to_intel_crtc_state(crtc->base.state);
6160 struct intel_plane_state *plane_state =
6161 to_intel_plane_state(plane->base.state);
6162 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
6163 enum plane_id plane_id = plane->id;
6164 int level;
6165
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01006166 if (plane_state->uapi.visible)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006167 continue;
6168
6169 for (level = 0; level < 3; level++) {
6170 struct g4x_pipe_wm *raw =
6171 &crtc_state->wm.g4x.raw[level];
6172
6173 raw->plane[plane_id] = 0;
6174 wm_state->wm.plane[plane_id] = 0;
6175 }
6176
6177 if (plane_id == PLANE_PRIMARY) {
6178 for (level = 0; level < 3; level++) {
6179 struct g4x_pipe_wm *raw =
6180 &crtc_state->wm.g4x.raw[level];
6181 raw->fbc = 0;
6182 }
6183
6184 wm_state->sr.fbc = 0;
6185 wm_state->hpll.fbc = 0;
6186 wm_state->fbc_en = false;
6187 }
6188 }
6189
6190 for_each_intel_crtc(&dev_priv->drm, crtc) {
6191 struct intel_crtc_state *crtc_state =
6192 to_intel_crtc_state(crtc->base.state);
6193
6194 crtc_state->wm.g4x.intermediate =
6195 crtc_state->wm.g4x.optimal;
6196 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
6197 }
6198
6199 g4x_program_watermarks(dev_priv);
6200
6201 mutex_unlock(&dev_priv->wm.wm_mutex);
6202}
6203
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006204void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006205{
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006206 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02006207 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006208 u32 val;
6209
6210 vlv_read_wm_values(dev_priv, wm);
6211
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006212 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
6213 wm->level = VLV_WM_LEVEL_PM2;
6214
6215 if (IS_CHERRYVIEW(dev_priv)) {
Chris Wilson337fa6e2019-04-26 09:17:20 +01006216 vlv_punit_get(dev_priv);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006217
Ville Syrjäläc11b8132018-11-29 19:55:03 +02006218 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006219 if (val & DSP_MAXFIFO_PM5_ENABLE)
6220 wm->level = VLV_WM_LEVEL_PM5;
6221
Ville Syrjälä58590c12015-09-08 21:05:12 +03006222 /*
6223 * If DDR DVFS is disabled in the BIOS, Punit
6224 * will never ack the request. So if that happens
6225 * assume we don't have to enable/disable DDR DVFS
6226 * dynamically. To test that just set the REQ_ACK
6227 * bit to poke the Punit, but don't change the
6228 * HIGH/LOW bits so that we don't actually change
6229 * the current state.
6230 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006231 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03006232 val |= FORCE_DDR_FREQ_REQ_ACK;
6233 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
6234
6235 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
6236 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006237 drm_dbg_kms(&dev_priv->drm,
6238 "Punit not acking DDR DVFS request, "
6239 "assuming DDR DVFS is disabled\n");
Ville Syrjälä58590c12015-09-08 21:05:12 +03006240 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
6241 } else {
6242 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
6243 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
6244 wm->level = VLV_WM_LEVEL_DDR_DVFS;
6245 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006246
Chris Wilson337fa6e2019-04-26 09:17:20 +01006247 vlv_punit_put(dev_priv);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006248 }
6249
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006250 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02006251 struct intel_crtc_state *crtc_state =
6252 to_intel_crtc_state(crtc->base.state);
6253 struct vlv_wm_state *active = &crtc->wm.active.vlv;
6254 const struct vlv_fifo_state *fifo_state =
6255 &crtc_state->wm.vlv.fifo_state;
6256 enum pipe pipe = crtc->pipe;
6257 enum plane_id plane_id;
6258 int level;
6259
6260 vlv_get_fifo_size(crtc_state);
6261
6262 active->num_levels = wm->level + 1;
6263 active->cxsr = wm->cxsr;
6264
Ville Syrjäläff32c542017-03-02 19:14:57 +02006265 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006266 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02006267 &crtc_state->wm.vlv.raw[level];
6268
6269 active->sr[level].plane = wm->sr.plane;
6270 active->sr[level].cursor = wm->sr.cursor;
6271
6272 for_each_plane_id_on_crtc(crtc, plane_id) {
6273 active->wm[level].plane[plane_id] =
6274 wm->pipe[pipe].plane[plane_id];
6275
6276 raw->plane[plane_id] =
6277 vlv_invert_wm_value(active->wm[level].plane[plane_id],
6278 fifo_state->plane[plane_id]);
6279 }
6280 }
6281
6282 for_each_plane_id_on_crtc(crtc, plane_id)
6283 vlv_raw_plane_wm_set(crtc_state, level,
6284 plane_id, USHRT_MAX);
6285 vlv_invalidate_wms(crtc, active, level);
6286
6287 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02006288 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02006289
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006290 drm_dbg_kms(&dev_priv->drm,
6291 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
6292 pipe_name(pipe),
6293 wm->pipe[pipe].plane[PLANE_PRIMARY],
6294 wm->pipe[pipe].plane[PLANE_CURSOR],
6295 wm->pipe[pipe].plane[PLANE_SPRITE0],
6296 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02006297 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006298
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006299 drm_dbg_kms(&dev_priv->drm,
6300 "Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
6301 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006302}
6303
Ville Syrjälä602ae832017-03-02 19:15:02 +02006304void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
6305{
6306 struct intel_plane *plane;
6307 struct intel_crtc *crtc;
6308
6309 mutex_lock(&dev_priv->wm.wm_mutex);
6310
6311 for_each_intel_plane(&dev_priv->drm, plane) {
6312 struct intel_crtc *crtc =
6313 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6314 struct intel_crtc_state *crtc_state =
6315 to_intel_crtc_state(crtc->base.state);
6316 struct intel_plane_state *plane_state =
6317 to_intel_plane_state(plane->base.state);
6318 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
6319 const struct vlv_fifo_state *fifo_state =
6320 &crtc_state->wm.vlv.fifo_state;
6321 enum plane_id plane_id = plane->id;
6322 int level;
6323
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01006324 if (plane_state->uapi.visible)
Ville Syrjälä602ae832017-03-02 19:15:02 +02006325 continue;
6326
6327 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006328 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02006329 &crtc_state->wm.vlv.raw[level];
6330
6331 raw->plane[plane_id] = 0;
6332
6333 wm_state->wm[level].plane[plane_id] =
6334 vlv_invert_wm_value(raw->plane[plane_id],
6335 fifo_state->plane[plane_id]);
6336 }
6337 }
6338
6339 for_each_intel_crtc(&dev_priv->drm, crtc) {
6340 struct intel_crtc_state *crtc_state =
6341 to_intel_crtc_state(crtc->base.state);
6342
6343 crtc_state->wm.vlv.intermediate =
6344 crtc_state->wm.vlv.optimal;
6345 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
6346 }
6347
6348 vlv_program_watermarks(dev_priv);
6349
6350 mutex_unlock(&dev_priv->wm.wm_mutex);
6351}
6352
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006353/*
6354 * FIXME should probably kill this and improve
6355 * the real watermark readout/sanitation instead
6356 */
6357static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
6358{
6359 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6360 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6361 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6362
6363 /*
6364 * Don't touch WM1S_LP_EN here.
6365 * Doing so could cause underruns.
6366 */
6367}
6368
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006369void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006370{
Imre Deak820c1982013-12-17 14:46:36 +02006371 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006372 struct intel_crtc *crtc;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006373
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006374 ilk_init_lp_watermarks(dev_priv);
6375
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006376 for_each_intel_crtc(&dev_priv->drm, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006377 ilk_pipe_wm_get_hw_state(crtc);
6378
6379 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
6380 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
6381 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
6382
6383 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00006384 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02006385 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
6386 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
6387 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006388
Tvrtko Ursulin86527442016-10-13 11:03:00 +01006389 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006390 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
6391 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01006392 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006393 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
6394 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006395
6396 hw->enable_fbc_wm =
6397 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
6398}
6399
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006400/**
6401 * intel_update_watermarks - update FIFO watermark values based on current modes
Chris Wilson31383412018-02-14 14:03:03 +00006402 * @crtc: the #intel_crtc on which to compute the WM
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006403 *
6404 * Calculate watermark values for the various WM regs based on current mode
6405 * and plane configuration.
6406 *
6407 * There are several cases to deal with here:
6408 * - normal (i.e. non-self-refresh)
6409 * - self-refresh (SR) mode
6410 * - lines are large relative to FIFO size (buffer can hold up to 2)
6411 * - lines are small relative to FIFO size (buffer can hold more than 2
6412 * lines), so need to account for TLB latency
6413 *
6414 * The normal calculation is:
6415 * watermark = dotclock * bytes per pixel * latency
6416 * where latency is platform & configuration dependent (we assume pessimal
6417 * values here).
6418 *
6419 * The SR calculation is:
6420 * watermark = (trunc(latency/line time)+1) * surface width *
6421 * bytes per pixel
6422 * where
6423 * line time = htotal / dotclock
6424 * surface width = hdisplay for normal plane and 64 for cursor
6425 * and latency is assumed to be high, as above.
6426 *
6427 * The final value programmed to the register should always be rounded up,
6428 * and include an extra 2 entries to account for clock crossings.
6429 *
6430 * We don't use the sprite, so we can ignore that. And on Crestline we have
6431 * to set the non-SR watermarks to 8.
6432 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02006433void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006434{
Ville Syrjälä432081b2016-10-31 22:37:03 +02006435 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006436
6437 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006438 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006439}
6440
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306441void intel_enable_ipc(struct drm_i915_private *dev_priv)
6442{
6443 u32 val;
6444
José Roberto de Souzafd847b82018-09-18 13:47:11 -07006445 if (!HAS_IPC(dev_priv))
6446 return;
6447
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306448 val = I915_READ(DISP_ARB_CTL2);
6449
6450 if (dev_priv->ipc_enabled)
6451 val |= DISP_IPC_ENABLE;
6452 else
6453 val &= ~DISP_IPC_ENABLE;
6454
6455 I915_WRITE(DISP_ARB_CTL2, val);
6456}
6457
Ville Syrjäläc91a45f2019-05-03 20:38:07 +03006458static bool intel_can_enable_ipc(struct drm_i915_private *dev_priv)
6459{
6460 /* Display WA #0477 WaDisableIPC: skl */
6461 if (IS_SKYLAKE(dev_priv))
6462 return false;
6463
6464 /* Display WA #1141: SKL:all KBL:all CFL */
6465 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
6466 return dev_priv->dram_info.symmetric_memory;
6467
6468 return true;
6469}
6470
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306471void intel_init_ipc(struct drm_i915_private *dev_priv)
6472{
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306473 if (!HAS_IPC(dev_priv))
6474 return;
6475
Ville Syrjäläc91a45f2019-05-03 20:38:07 +03006476 dev_priv->ipc_enabled = intel_can_enable_ipc(dev_priv);
José Roberto de Souzac9b818d2018-09-18 13:47:13 -07006477
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306478 intel_enable_ipc(dev_priv);
6479}
6480
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006481static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006482{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006483 /*
6484 * On Ibex Peak and Cougar Point, we need to disable clock
6485 * gating for the panel power sequencer or it will fail to
6486 * start up when no ports are active.
6487 */
6488 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6489}
6490
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006491static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006492{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006493 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006494
Damien Lespiau055e3932014-08-18 13:49:10 +01006495 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006496 I915_WRITE(DSPCNTR(pipe),
6497 I915_READ(DSPCNTR(pipe)) |
6498 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006499
6500 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6501 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006502 }
6503}
6504
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006505static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006506{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006507 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006508
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006509 /*
6510 * Required for FBC
6511 * WaFbcDisableDpfcClockGating:ilk
6512 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006513 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6514 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6515 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006516
6517 I915_WRITE(PCH_3DCGDIS0,
6518 MARIUNIT_CLOCK_GATE_DISABLE |
6519 SVSMUNIT_CLOCK_GATE_DISABLE);
6520 I915_WRITE(PCH_3DCGDIS1,
6521 VFMUNIT_CLOCK_GATE_DISABLE);
6522
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006523 /*
6524 * According to the spec the following bits should be set in
6525 * order to enable memory self-refresh
6526 * The bit 22/21 of 0x42004
6527 * The bit 5 of 0x42020
6528 * The bit 15 of 0x45000
6529 */
6530 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6531 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6532 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006533 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006534 I915_WRITE(DISP_ARB_CTL,
6535 (I915_READ(DISP_ARB_CTL) |
6536 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006537
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006538 /*
6539 * Based on the document from hardware guys the following bits
6540 * should be set unconditionally in order to enable FBC.
6541 * The bit 22 of 0x42000
6542 * The bit 22 of 0x42004
6543 * The bit 7,8,9 of 0x42020.
6544 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006545 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006546 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006547 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6548 I915_READ(ILK_DISPLAY_CHICKEN1) |
6549 ILK_FBCQ_DIS);
6550 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6551 I915_READ(ILK_DISPLAY_CHICKEN2) |
6552 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006553 }
6554
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006555 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6556
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006557 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6558 I915_READ(ILK_DISPLAY_CHICKEN2) |
6559 ILK_ELPIN_409_SELECT);
6560 I915_WRITE(_3D_CHICKEN2,
6561 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6562 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006563
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006564 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006565 I915_WRITE(CACHE_MODE_0,
6566 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006567
Akash Goel4e046322014-04-04 17:14:38 +05306568 /* WaDisable_RenderCache_OperationalFlush:ilk */
6569 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6570
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006571 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006572
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006573 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006574}
6575
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006576static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006577{
Ville Syrjäläd048a262019-08-21 20:30:31 +03006578 enum pipe pipe;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006579 u32 val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006580
6581 /*
6582 * On Ibex Peak and Cougar Point, we need to disable clock
6583 * gating for the panel power sequencer or it will fail to
6584 * start up when no ports are active.
6585 */
Jesse Barnescd664072013-10-02 10:34:19 -07006586 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6587 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6588 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006589 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6590 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006591 /* The below fixes the weird display corruption, a few pixels shifted
6592 * downward, on (only) LVDS of some HP laptops with IVY.
6593 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006594 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006595 val = I915_READ(TRANS_CHICKEN2(pipe));
6596 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6597 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006598 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006599 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006600 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6601 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006602 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6603 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006604 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006605 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006606 I915_WRITE(TRANS_CHICKEN1(pipe),
6607 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6608 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006609}
6610
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006611static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006612{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006613 u32 tmp;
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006614
6615 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006616 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006617 drm_dbg_kms(&dev_priv->drm,
6618 "Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6619 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006620}
6621
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006622static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006623{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006624 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006625
Damien Lespiau231e54f2012-10-19 17:55:41 +01006626 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006627
6628 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6629 I915_READ(ILK_DISPLAY_CHICKEN2) |
6630 ILK_ELPIN_409_SELECT);
6631
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006632 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006633 I915_WRITE(_3D_CHICKEN,
6634 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6635
Akash Goel4e046322014-04-04 17:14:38 +05306636 /* WaDisable_RenderCache_OperationalFlush:snb */
6637 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6638
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006639 /*
6640 * BSpec recoomends 8x4 when MSAA is used,
6641 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006642 *
6643 * Note that PS/WM thread counts depend on the WIZ hashing
6644 * disable bit, which we don't touch here, but it's good
6645 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006646 */
6647 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006648 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006649
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006650 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006651 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006652
6653 I915_WRITE(GEN6_UCGCTL1,
6654 I915_READ(GEN6_UCGCTL1) |
6655 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6656 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6657
6658 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6659 * gating disable must be set. Failure to set it results in
6660 * flickering pixels due to Z write ordering failures after
6661 * some amount of runtime in the Mesa "fire" demo, and Unigine
6662 * Sanctuary and Tropics, and apparently anything else with
6663 * alpha test or pixel discard.
6664 *
6665 * According to the spec, bit 11 (RCCUNIT) must also be set,
6666 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006667 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006668 * WaDisableRCCUnitClockGating:snb
6669 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006670 */
6671 I915_WRITE(GEN6_UCGCTL2,
6672 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6673 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6674
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006675 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006676 I915_WRITE(_3D_CHICKEN3,
6677 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006678
6679 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006680 * Bspec says:
6681 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6682 * 3DSTATE_SF number of SF output attributes is more than 16."
6683 */
6684 I915_WRITE(_3D_CHICKEN3,
6685 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6686
6687 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006688 * According to the spec the following bits should be
6689 * set in order to enable memory self-refresh and fbc:
6690 * The bit21 and bit22 of 0x42000
6691 * The bit21 and bit22 of 0x42004
6692 * The bit5 and bit7 of 0x42020
6693 * The bit14 of 0x70180
6694 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006695 *
6696 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006697 */
6698 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6699 I915_READ(ILK_DISPLAY_CHICKEN1) |
6700 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6701 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6702 I915_READ(ILK_DISPLAY_CHICKEN2) |
6703 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006704 I915_WRITE(ILK_DSPCLK_GATE_D,
6705 I915_READ(ILK_DSPCLK_GATE_D) |
6706 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6707 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006708
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006709 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006710
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006711 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006712
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006713 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006714}
6715
6716static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6717{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006718 u32 reg = I915_READ(GEN7_FF_THREAD_MODE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006719
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006720 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006721 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006722 *
6723 * This actually overrides the dispatch
6724 * mode for all thread types.
6725 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006726 reg &= ~GEN7_FF_SCHED_MASK;
6727 reg |= GEN7_FF_TS_SCHED_HW;
6728 reg |= GEN7_FF_VS_SCHED_HW;
6729 reg |= GEN7_FF_DS_SCHED_HW;
6730
6731 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6732}
6733
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006734static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006735{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006736 /*
6737 * TODO: this bit should only be enabled when really needed, then
6738 * disabled when not needed anymore in order to save power.
6739 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006740 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006741 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6742 I915_READ(SOUTH_DSPCLK_GATE_D) |
6743 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006744
6745 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006746 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6747 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006748 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006749}
6750
Ville Syrjälä712bf362016-10-31 22:37:23 +02006751static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03006752{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006753 if (HAS_PCH_LPT_LP(dev_priv)) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006754 u32 val = I915_READ(SOUTH_DSPCLK_GATE_D);
Imre Deak7d708ee2013-04-17 14:04:50 +03006755
6756 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6757 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6758 }
6759}
6760
Imre Deak450174f2016-05-03 15:54:21 +03006761static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
6762 int general_prio_credits,
6763 int high_prio_credits)
6764{
6765 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07006766 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03006767
6768 /* WaTempDisableDOPClkGating:bdw */
6769 misccpctl = I915_READ(GEN7_MISCCPCTL);
6770 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6771
Oscar Mateo930a7842017-10-17 13:25:45 -07006772 val = I915_READ(GEN8_L3SQCREG1);
6773 val &= ~L3_PRIO_CREDITS_MASK;
6774 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
6775 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
6776 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03006777
6778 /*
6779 * Wait at least 100 clocks before re-enabling clock gating.
6780 * See the definition of L3SQCREG1 in BSpec.
6781 */
6782 POSTING_READ(GEN8_L3SQCREG1);
6783 udelay(1);
6784 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6785}
6786
Oscar Mateod65dc3e2018-05-08 14:29:24 -07006787static void icl_init_clock_gating(struct drm_i915_private *dev_priv)
6788{
6789 /* This is not an Wa. Enable to reduce Sampler power */
6790 I915_WRITE(GEN10_DFR_RATIO_EN_AND_CHICKEN,
6791 I915_READ(GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE);
Radhakrishna Sripada622b3f62018-10-30 01:45:01 -07006792
6793 /* WaEnable32PlaneMode:icl */
6794 I915_WRITE(GEN9_CSFE_CHICKEN1_RCS,
6795 _MASKED_BIT_ENABLE(GEN11_ENABLE_32_PLANE_MODE));
Matt Roperb9cf9da2019-12-23 17:20:25 -08006796
6797 /*
6798 * Wa_1408615072:icl,ehl (vsunit)
6799 * Wa_1407596294:icl,ehl (hsunit)
6800 */
6801 intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE,
6802 0, VSUNIT_CLKGATE_DIS | HSUNIT_CLKGATE_DIS);
6803
Matt Roper1cd21a72019-12-31 11:07:13 -08006804 /* Wa_1407352427:icl,ehl */
6805 intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE2,
6806 0, PSDUNIT_CLKGATE_DIS);
Matt Atwood6f4194c2020-01-13 23:11:28 -05006807
6808 /*Wa_14010594013:icl, ehl */
6809 intel_uncore_rmw(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1,
6810 0, CNL_DELAY_PMRSP);
Oscar Mateod65dc3e2018-05-08 14:29:24 -07006811}
6812
Michel Thierry5d869232019-08-23 01:20:34 -07006813static void tgl_init_clock_gating(struct drm_i915_private *dev_priv)
6814{
6815 u32 vd_pg_enable = 0;
6816 unsigned int i;
6817
Matt Roper4ca15382019-12-23 17:20:26 -08006818 /* Wa_1408615072:tgl */
6819 intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE2,
6820 0, VSUNIT_CLKGATE_DIS_TGL);
6821
Michel Thierry5d869232019-08-23 01:20:34 -07006822 /* This is not a WA. Enable VD HCP & MFX_ENC powergate */
6823 for (i = 0; i < I915_MAX_VCS; i++) {
6824 if (HAS_ENGINE(dev_priv, _VCS(i)))
6825 vd_pg_enable |= VDN_HCP_POWERGATE_ENABLE(i) |
6826 VDN_MFX_POWERGATE_ENABLE(i);
6827 }
6828
6829 I915_WRITE(POWERGATE_ENABLE,
6830 I915_READ(POWERGATE_ENABLE) | vd_pg_enable);
Radhakrishna Sripadaf78d5da2020-01-09 14:37:27 -08006831
6832 /* Wa_1409825376:tgl (pre-prod)*/
6833 if (IS_TGL_REVID(dev_priv, TGL_REVID_A0, TGL_REVID_A0))
6834 I915_WRITE(GEN9_CLKGATE_DIS_3, I915_READ(GEN9_CLKGATE_DIS_3) |
6835 TGL_VRH_GATING_DIS);
Michel Thierry5d869232019-08-23 01:20:34 -07006836}
6837
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006838static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
6839{
6840 if (!HAS_PCH_CNP(dev_priv))
6841 return;
6842
Rodrigo Vivi470e7c62018-03-05 17:28:12 -08006843 /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07006844 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
6845 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006846}
6847
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006848static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006849{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07006850 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006851 cnp_init_clock_gating(dev_priv);
6852
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07006853 /* This is not an Wa. Enable for better image quality */
6854 I915_WRITE(_3D_CHICKEN3,
6855 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
6856
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006857 /* WaEnableChickenDCPR:cnl */
6858 I915_WRITE(GEN8_CHICKEN_DCPR_1,
6859 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
6860
6861 /* WaFbcWakeMemOn:cnl */
6862 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
6863 DISP_FBC_MEMORY_WAKE);
6864
Chris Wilson34991bd2017-11-11 10:03:36 +00006865 val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE);
6866 /* ReadHitWriteOnlyDisable:cnl */
6867 val |= RCCUNIT_CLKGATE_DIS;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006868 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
6869 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
Chris Wilson34991bd2017-11-11 10:03:36 +00006870 val |= SARBUNIT_CLKGATE_DIS;
6871 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val);
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006872
Rodrigo Vivia4713c52018-03-07 14:09:12 -08006873 /* Wa_2201832410:cnl */
6874 val = I915_READ(SUBSLICE_UNIT_LEVEL_CLKGATE);
6875 val |= GWUNIT_CLKGATE_DIS;
6876 I915_WRITE(SUBSLICE_UNIT_LEVEL_CLKGATE, val);
6877
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006878 /* WaDisableVFclkgate:cnl */
Rodrigo Vivi14941b62018-03-05 17:20:00 -08006879 /* WaVFUnitClockGatingDisable:cnl */
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006880 val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE);
6881 val |= VFUNIT_CLKGATE_DIS;
6882 I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006883}
6884
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006885static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
6886{
6887 cnp_init_clock_gating(dev_priv);
6888 gen9_init_clock_gating(dev_priv);
6889
6890 /* WaFbcNukeOnHostModify:cfl */
6891 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
6892 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
6893}
6894
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006895static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03006896{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006897 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03006898
6899 /* WaDisableSDEUnitClockGating:kbl */
6900 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
6901 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6902 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03006903
6904 /* WaDisableGamClockGating:kbl */
6905 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
6906 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6907 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03006908
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006909 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03006910 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
6911 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03006912}
6913
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006914static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02006915{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006916 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03006917
6918 /* WAC6entrylatency:skl */
6919 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
6920 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03006921
6922 /* WaFbcNukeOnHostModify:skl */
6923 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
6924 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02006925}
6926
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006927static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006928{
Damien Lespiau07d27e22014-03-03 17:31:46 +00006929 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006930
Ben Widawskyab57fff2013-12-12 15:28:04 -08006931 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006932 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006933
Ben Widawskyab57fff2013-12-12 15:28:04 -08006934 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006935 I915_WRITE(CHICKEN_PAR1_1,
6936 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6937
Ben Widawskyab57fff2013-12-12 15:28:04 -08006938 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006939 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006940 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006941 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006942 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006943 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006944
Ben Widawskyab57fff2013-12-12 15:28:04 -08006945 /* WaVSRefCountFullforceMissDisable:bdw */
6946 /* WaDSRefCountFullforceMissDisable:bdw */
6947 I915_WRITE(GEN7_FF_THREAD_MODE,
6948 I915_READ(GEN7_FF_THREAD_MODE) &
6949 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006950
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006951 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6952 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006953
6954 /* WaDisableSDEUnitClockGating:bdw */
6955 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6956 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006957
Imre Deak450174f2016-05-03 15:54:21 +03006958 /* WaProgramL3SqcReg1Default:bdw */
6959 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006960
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03006961 /* WaKVMNotificationOnConfigChange:bdw */
6962 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
6963 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
6964
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006965 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00006966
6967 /* WaDisableDopClockGating:bdw
6968 *
6969 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
6970 * clock gating.
6971 */
6972 I915_WRITE(GEN6_UCGCTL1,
6973 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006974}
6975
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006976static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006977{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07006978 /* L3 caching of data atomics doesn't work -- disable it. */
6979 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
6980 I915_WRITE(HSW_ROW_CHICKEN3,
6981 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
6982
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006983 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006984 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
6985 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
6986 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
6987
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02006988 /* WaVSRefCountFullforceMissDisable:hsw */
6989 I915_WRITE(GEN7_FF_THREAD_MODE,
6990 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006991
Akash Goel4e046322014-04-04 17:14:38 +05306992 /* WaDisable_RenderCache_OperationalFlush:hsw */
6993 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6994
Chia-I Wufe27c602014-01-28 13:29:33 +08006995 /* enable HiZ Raw Stall Optimization */
6996 I915_WRITE(CACHE_MODE_0_GEN7,
6997 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
6998
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006999 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007000 I915_WRITE(CACHE_MODE_1,
7001 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007002
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007003 /*
7004 * BSpec recommends 8x4 when MSAA is used,
7005 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007006 *
7007 * Note that PS/WM thread counts depend on the WIZ hashing
7008 * disable bit, which we don't touch here, but it's good
7009 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007010 */
7011 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007012 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007013
Kenneth Graunke94411592014-12-31 16:23:00 -08007014 /* WaSampleCChickenBitEnable:hsw */
7015 I915_WRITE(HALF_SLICE_CHICKEN3,
7016 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7017
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007018 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007019 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7020
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007021 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007022}
7023
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007024static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007025{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02007026 u32 snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007027
Damien Lespiau231e54f2012-10-19 17:55:41 +01007028 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007029
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007030 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007031 I915_WRITE(_3D_CHICKEN3,
7032 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7033
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007034 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007035 I915_WRITE(IVB_CHICKEN3,
7036 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7037 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7038
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007039 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007040 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007041 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7042 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007043
Akash Goel4e046322014-04-04 17:14:38 +05307044 /* WaDisable_RenderCache_OperationalFlush:ivb */
7045 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7046
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007047 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007048 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7049 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7050
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007051 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007052 I915_WRITE(GEN7_L3CNTLREG1,
7053 GEN7_WA_FOR_GEN7_L3_CONTROL);
7054 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007055 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007056 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007057 I915_WRITE(GEN7_ROW_CHICKEN2,
7058 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007059 else {
7060 /* must write both registers */
7061 I915_WRITE(GEN7_ROW_CHICKEN2,
7062 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007063 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7064 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007065 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007066
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007067 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007068 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7069 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7070
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007071 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007072 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007073 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007074 */
7075 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007076 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007077
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007078 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007079 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7080 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7081 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7082
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007083 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007084
7085 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007086
Chris Wilson22721342014-03-04 09:41:43 +00007087 if (0) { /* causes HiZ corruption on ivb:gt1 */
7088 /* enable HiZ Raw Stall Optimization */
7089 I915_WRITE(CACHE_MODE_0_GEN7,
7090 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7091 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007092
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007093 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007094 I915_WRITE(CACHE_MODE_1,
7095 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007096
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007097 /*
7098 * BSpec recommends 8x4 when MSAA is used,
7099 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007100 *
7101 * Note that PS/WM thread counts depend on the WIZ hashing
7102 * disable bit, which we don't touch here, but it's good
7103 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007104 */
7105 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007106 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007107
Ben Widawsky20848222012-05-04 18:58:59 -07007108 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7109 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7110 snpcr |= GEN6_MBC_SNPCR_MED;
7111 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007112
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007113 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007114 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007115
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007116 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007117}
7118
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007119static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007120{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007121 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007122 I915_WRITE(_3D_CHICKEN3,
7123 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7124
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007125 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007126 I915_WRITE(IVB_CHICKEN3,
7127 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7128 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7129
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007130 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007131 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007132 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007133 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7134 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007135
Akash Goel4e046322014-04-04 17:14:38 +05307136 /* WaDisable_RenderCache_OperationalFlush:vlv */
7137 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7138
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007139 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007140 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7141 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7142
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007143 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007144 I915_WRITE(GEN7_ROW_CHICKEN2,
7145 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7146
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007147 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007148 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7149 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7150 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7151
Ville Syrjälä46680e02014-01-22 21:33:01 +02007152 gen7_setup_fixed_func_scheduler(dev_priv);
7153
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007154 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007155 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007156 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007157 */
7158 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007159 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007160
Akash Goelc98f5062014-03-24 23:00:07 +05307161 /* WaDisableL3Bank2xClockGate:vlv
7162 * Disabling L3 clock gating- MMIO 940c[25] = 1
7163 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7164 I915_WRITE(GEN7_UCGCTL4,
7165 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007166
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007167 /*
7168 * BSpec says this must be set, even though
7169 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7170 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007171 I915_WRITE(CACHE_MODE_1,
7172 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007173
7174 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007175 * BSpec recommends 8x4 when MSAA is used,
7176 * however in practice 16x4 seems fastest.
7177 *
7178 * Note that PS/WM thread counts depend on the WIZ hashing
7179 * disable bit, which we don't touch here, but it's good
7180 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7181 */
7182 I915_WRITE(GEN7_GT_MODE,
7183 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7184
7185 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007186 * WaIncreaseL3CreditsForVLVB0:vlv
7187 * This is the hardware default actually.
7188 */
7189 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7190
7191 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007192 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007193 * Disable clock gating on th GCFG unit to prevent a delay
7194 * in the reporting of vblank events.
7195 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007196 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007197}
7198
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007199static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007200{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007201 /* WaVSRefCountFullforceMissDisable:chv */
7202 /* WaDSRefCountFullforceMissDisable:chv */
7203 I915_WRITE(GEN7_FF_THREAD_MODE,
7204 I915_READ(GEN7_FF_THREAD_MODE) &
7205 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007206
7207 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7208 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7209 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007210
7211 /* WaDisableCSUnitClockGating:chv */
7212 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7213 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007214
7215 /* WaDisableSDEUnitClockGating:chv */
7216 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7217 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007218
7219 /*
Imre Deak450174f2016-05-03 15:54:21 +03007220 * WaProgramL3SqcReg1Default:chv
7221 * See gfxspecs/Related Documents/Performance Guide/
7222 * LSQC Setting Recommendations.
7223 */
7224 gen8_set_l3sqc_credits(dev_priv, 38, 2);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007225}
7226
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007227static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007228{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02007229 u32 dspclk_gate;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007230
7231 I915_WRITE(RENCLK_GATE_D1, 0);
7232 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7233 GS_UNIT_CLOCK_GATE_DISABLE |
7234 CL_UNIT_CLOCK_GATE_DISABLE);
7235 I915_WRITE(RAMCLK_GATE_D, 0);
7236 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7237 OVRUNIT_CLOCK_GATE_DISABLE |
7238 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007239 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007240 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7241 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007242
7243 /* WaDisableRenderCachePipelinedFlush */
7244 I915_WRITE(CACHE_MODE_0,
7245 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007246
Akash Goel4e046322014-04-04 17:14:38 +05307247 /* WaDisable_RenderCache_OperationalFlush:g4x */
7248 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7249
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007250 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007251}
7252
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007253static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007254{
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +01007255 struct intel_uncore *uncore = &dev_priv->uncore;
7256
7257 intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7258 intel_uncore_write(uncore, RENCLK_GATE_D2, 0);
7259 intel_uncore_write(uncore, DSPCLK_GATE_D, 0);
7260 intel_uncore_write(uncore, RAMCLK_GATE_D, 0);
7261 intel_uncore_write16(uncore, DEUC, 0);
7262 intel_uncore_write(uncore,
7263 MI_ARB_STATE,
7264 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307265
7266 /* WaDisable_RenderCache_OperationalFlush:gen4 */
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +01007267 intel_uncore_write(uncore,
7268 CACHE_MODE_0,
7269 _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007270}
7271
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007272static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007273{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007274 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7275 I965_RCC_CLOCK_GATE_DISABLE |
7276 I965_RCPB_CLOCK_GATE_DISABLE |
7277 I965_ISC_CLOCK_GATE_DISABLE |
7278 I965_FBC_CLOCK_GATE_DISABLE);
7279 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007280 I915_WRITE(MI_ARB_STATE,
7281 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307282
7283 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7284 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007285}
7286
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007287static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007288{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007289 u32 dstate = I915_READ(D_STATE);
7290
7291 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7292 DSTATE_DOT_CLOCK_GATING;
7293 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007294
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007295 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007296 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007297
7298 /* IIR "flip pending" means done if this bit is set */
7299 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007300
7301 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007302 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007303
7304 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7305 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007306
7307 I915_WRITE(MI_ARB_STATE,
7308 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007309}
7310
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007311static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007312{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007313 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007314
7315 /* interrupts should cause a wake up from C3 */
7316 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7317 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007318
7319 I915_WRITE(MEM_MODE,
7320 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007321}
7322
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007323static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007324{
Ville Syrjälä10383922014-08-15 01:21:54 +03007325 I915_WRITE(MEM_MODE,
7326 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7327 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007328}
7329
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007330void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007331{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007332 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007333}
7334
Ville Syrjälä712bf362016-10-31 22:37:23 +02007335void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007336{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007337 if (HAS_PCH_LPT(dev_priv))
7338 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007339}
7340
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007341static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007342{
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007343 drm_dbg_kms(&dev_priv->drm,
7344 "No clock gating settings or workarounds applied.\n");
Imre Deakbb400da2016-03-16 13:38:54 +02007345}
7346
7347/**
7348 * intel_init_clock_gating_hooks - setup the clock gating hooks
7349 * @dev_priv: device private
7350 *
7351 * Setup the hooks that configure which clocks of a given platform can be
7352 * gated and also apply various GT and display specific workarounds for these
7353 * platforms. Note that some GT specific workarounds are applied separately
7354 * when GPU contexts or batchbuffers start their execution.
7355 */
7356void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7357{
Lucas De Marchi13e53c52019-08-17 02:38:42 -07007358 if (IS_GEN(dev_priv, 12))
Michel Thierry5d869232019-08-23 01:20:34 -07007359 dev_priv->display.init_clock_gating = tgl_init_clock_gating;
Lucas De Marchi13e53c52019-08-17 02:38:42 -07007360 else if (IS_GEN(dev_priv, 11))
Oscar Mateod65dc3e2018-05-08 14:29:24 -07007361 dev_priv->display.init_clock_gating = icl_init_clock_gating;
Oscar Mateocc38cae2018-05-08 14:29:23 -07007362 else if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007363 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007364 else if (IS_COFFEELAKE(dev_priv))
7365 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07007366 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007367 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007368 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007369 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007370 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007371 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007372 else if (IS_GEMINILAKE(dev_priv))
7373 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007374 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007375 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007376 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007377 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007378 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007379 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007380 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007381 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007382 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007383 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007384 else if (IS_GEN(dev_priv, 6))
Imre Deakbb400da2016-03-16 13:38:54 +02007385 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007386 else if (IS_GEN(dev_priv, 5))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007387 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007388 else if (IS_G4X(dev_priv))
7389 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007390 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007391 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007392 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007393 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007394 else if (IS_GEN(dev_priv, 3))
Imre Deakbb400da2016-03-16 13:38:54 +02007395 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7396 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7397 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007398 else if (IS_GEN(dev_priv, 2))
Imre Deakbb400da2016-03-16 13:38:54 +02007399 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7400 else {
7401 MISSING_CASE(INTEL_DEVID(dev_priv));
7402 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7403 }
7404}
7405
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007406/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007407void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007408{
Daniel Vetterc921aba2012-04-26 23:28:17 +02007409 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007410 if (IS_PINEVIEW(dev_priv))
Lucas De Marchi1d218222019-12-24 00:40:04 -08007411 pnv_get_mem_freq(dev_priv);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007412 else if (IS_GEN(dev_priv, 5))
Lucas De Marchi9eae5e22019-12-24 00:40:09 -08007413 ilk_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007414
James Ausmusb068a862019-10-09 10:23:14 -07007415 if (intel_has_sagv(dev_priv))
7416 skl_setup_sagv_block_time(dev_priv);
7417
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007418 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007419 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007420 skl_setup_wm_latency(dev_priv);
Matt Roper98d39492016-05-12 07:06:03 -07007421 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007422 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007423 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007424
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007425 if ((IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007426 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007427 (!IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007428 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007429 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007430 dev_priv->display.compute_intermediate_wm =
7431 ilk_compute_intermediate_wm;
7432 dev_priv->display.initial_watermarks =
7433 ilk_initial_watermarks;
7434 dev_priv->display.optimize_watermarks =
7435 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007436 } else {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007437 drm_dbg_kms(&dev_priv->drm,
7438 "Failed to read display plane latency. "
7439 "Disable CxSR\n");
Ville Syrjäläbd602542014-01-07 16:14:10 +02007440 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007441 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007442 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02007443 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007444 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007445 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007446 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007447 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03007448 } else if (IS_G4X(dev_priv)) {
7449 g4x_setup_wm_latency(dev_priv);
7450 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
7451 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
7452 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
7453 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007454 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin86d35d42019-03-26 07:40:54 +00007455 if (!intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007456 dev_priv->is_ddr3,
7457 dev_priv->fsb_freq,
7458 dev_priv->mem_freq)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007459 drm_info(&dev_priv->drm,
7460 "failed to find known CxSR latency "
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007461 "(found ddr%s fsb freq %d, mem freq %d), "
7462 "disabling CxSR\n",
7463 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7464 dev_priv->fsb_freq, dev_priv->mem_freq);
7465 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007466 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007467 dev_priv->display.update_wm = NULL;
7468 } else
Lucas De Marchi1d218222019-12-24 00:40:04 -08007469 dev_priv->display.update_wm = pnv_update_wm;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007470 } else if (IS_GEN(dev_priv, 4)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007471 dev_priv->display.update_wm = i965_update_wm;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007472 } else if (IS_GEN(dev_priv, 3)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007473 dev_priv->display.update_wm = i9xx_update_wm;
7474 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007475 } else if (IS_GEN(dev_priv, 2)) {
Jani Nikula24977872019-09-11 12:26:08 +03007476 if (INTEL_NUM_PIPES(dev_priv) == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007477 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007478 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007479 } else {
7480 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007481 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007482 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007483 } else {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007484 drm_err(&dev_priv->drm,
7485 "unexpected fall-through in %s\n", __func__);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007486 }
7487}
7488
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00007489void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01007490{
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01007491 dev_priv->runtime_pm.suspended = false;
7492 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007493}