blob: 9b74c37e4fa4fe6bacc77716bffd34da8467d68d [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);
Ander Conselvan de Oliveiraf4f4b592017-02-22 08:34:29 +0200131
132 /* WaDDIIOTimeout:glk */
133 if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) {
134 u32 val = I915_READ(CHICKEN_MISC_2);
135 val &= ~(GLK_CL0_PWR_DOWN |
136 GLK_CL1_PWR_DOWN |
137 GLK_CL2_PWR_DOWN);
138 I915_WRITE(CHICKEN_MISC_2, val);
139 }
140
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200141}
142
Lucas De Marchi1d218222019-12-24 00:40:04 -0800143static void pnv_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200144{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200145 u32 tmp;
146
147 tmp = I915_READ(CLKCFG);
148
149 switch (tmp & CLKCFG_FSB_MASK) {
150 case CLKCFG_FSB_533:
151 dev_priv->fsb_freq = 533; /* 133*4 */
152 break;
153 case CLKCFG_FSB_800:
154 dev_priv->fsb_freq = 800; /* 200*4 */
155 break;
156 case CLKCFG_FSB_667:
157 dev_priv->fsb_freq = 667; /* 167*4 */
158 break;
159 case CLKCFG_FSB_400:
160 dev_priv->fsb_freq = 400; /* 100*4 */
161 break;
162 }
163
164 switch (tmp & CLKCFG_MEM_MASK) {
165 case CLKCFG_MEM_533:
166 dev_priv->mem_freq = 533;
167 break;
168 case CLKCFG_MEM_667:
169 dev_priv->mem_freq = 667;
170 break;
171 case CLKCFG_MEM_800:
172 dev_priv->mem_freq = 800;
173 break;
174 }
175
176 /* detect pineview DDR3 setting */
177 tmp = I915_READ(CSHRDDR3CTL);
178 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
179}
180
Lucas De Marchi9eae5e22019-12-24 00:40:09 -0800181static void ilk_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200182{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200183 u16 ddrpll, csipll;
184
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +0100185 ddrpll = intel_uncore_read16(&dev_priv->uncore, DDRMPLL1);
186 csipll = intel_uncore_read16(&dev_priv->uncore, CSIPLL0);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200187
188 switch (ddrpll & 0xff) {
189 case 0xc:
190 dev_priv->mem_freq = 800;
191 break;
192 case 0x10:
193 dev_priv->mem_freq = 1066;
194 break;
195 case 0x14:
196 dev_priv->mem_freq = 1333;
197 break;
198 case 0x18:
199 dev_priv->mem_freq = 1600;
200 break;
201 default:
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300202 drm_dbg(&dev_priv->drm, "unknown memory frequency 0x%02x\n",
203 ddrpll & 0xff);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200204 dev_priv->mem_freq = 0;
205 break;
206 }
207
Daniel Vetterc921aba2012-04-26 23:28:17 +0200208 switch (csipll & 0x3ff) {
209 case 0x00c:
210 dev_priv->fsb_freq = 3200;
211 break;
212 case 0x00e:
213 dev_priv->fsb_freq = 3733;
214 break;
215 case 0x010:
216 dev_priv->fsb_freq = 4266;
217 break;
218 case 0x012:
219 dev_priv->fsb_freq = 4800;
220 break;
221 case 0x014:
222 dev_priv->fsb_freq = 5333;
223 break;
224 case 0x016:
225 dev_priv->fsb_freq = 5866;
226 break;
227 case 0x018:
228 dev_priv->fsb_freq = 6400;
229 break;
230 default:
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300231 drm_dbg(&dev_priv->drm, "unknown fsb frequency 0x%04x\n",
232 csipll & 0x3ff);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200233 dev_priv->fsb_freq = 0;
234 break;
235 }
Daniel Vetterc921aba2012-04-26 23:28:17 +0200236}
237
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300238static const struct cxsr_latency cxsr_latency_table[] = {
239 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
240 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
241 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
242 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
243 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
244
245 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
246 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
247 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
248 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
249 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
250
251 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
252 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
253 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
254 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
255 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
256
257 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
258 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
259 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
260 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
261 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
262
263 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
264 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
265 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
266 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
267 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
268
269 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
270 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
271 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
272 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
273 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
274};
275
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100276static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
277 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300278 int fsb,
279 int mem)
280{
281 const struct cxsr_latency *latency;
282 int i;
283
284 if (fsb == 0 || mem == 0)
285 return NULL;
286
287 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
288 latency = &cxsr_latency_table[i];
289 if (is_desktop == latency->is_desktop &&
290 is_ddr3 == latency->is_ddr3 &&
291 fsb == latency->fsb_freq && mem == latency->mem_freq)
292 return latency;
293 }
294
295 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
296
297 return NULL;
298}
299
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200300static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
301{
302 u32 val;
303
Chris Wilson337fa6e2019-04-26 09:17:20 +0100304 vlv_punit_get(dev_priv);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200305
306 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
307 if (enable)
308 val &= ~FORCE_DDR_HIGH_FREQ;
309 else
310 val |= FORCE_DDR_HIGH_FREQ;
311 val &= ~FORCE_DDR_LOW_FREQ;
312 val |= FORCE_DDR_FREQ_REQ_ACK;
313 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
314
315 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
316 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300317 drm_err(&dev_priv->drm,
318 "timed out waiting for Punit DDR DVFS request\n");
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200319
Chris Wilson337fa6e2019-04-26 09:17:20 +0100320 vlv_punit_put(dev_priv);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200321}
322
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200323static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
324{
325 u32 val;
326
Chris Wilson337fa6e2019-04-26 09:17:20 +0100327 vlv_punit_get(dev_priv);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200328
Ville Syrjäläc11b8132018-11-29 19:55:03 +0200329 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200330 if (enable)
331 val |= DSP_MAXFIFO_PM5_ENABLE;
332 else
333 val &= ~DSP_MAXFIFO_PM5_ENABLE;
Ville Syrjäläc11b8132018-11-29 19:55:03 +0200334 vlv_punit_write(dev_priv, PUNIT_REG_DSPSSPM, val);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200335
Chris Wilson337fa6e2019-04-26 09:17:20 +0100336 vlv_punit_put(dev_priv);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200337}
338
Ville Syrjäläf4998962015-03-10 17:02:21 +0200339#define FW_WM(value, plane) \
340 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
341
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200342static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300343{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200344 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300345 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300346
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100347 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200348 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300349 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300350 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200351 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200352 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300353 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300354 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200355 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200356 val = I915_READ(DSPFW3);
357 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
358 if (enable)
359 val |= PINEVIEW_SELF_REFRESH_EN;
360 else
361 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300362 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300363 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100364 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200365 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300366 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
367 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
368 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300369 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100370 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300371 /*
372 * FIXME can't find a bit like this for 915G, and
373 * and yet it does have the related watermark in
374 * FW_BLC_SELF. What's going on?
375 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200376 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300377 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
378 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
379 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300380 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300381 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200382 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300383 }
384
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200385 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
386
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300387 drm_dbg_kms(&dev_priv->drm, "memory self-refresh is %s (was %s)\n",
388 enableddisabled(enable),
389 enableddisabled(was_enabled));
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200390
391 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300392}
393
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300394/**
395 * intel_set_memory_cxsr - Configure CxSR state
396 * @dev_priv: i915 device
397 * @enable: Allow vs. disallow CxSR
398 *
399 * Allow or disallow the system to enter a special CxSR
400 * (C-state self refresh) state. What typically happens in CxSR mode
401 * is that several display FIFOs may get combined into a single larger
402 * FIFO for a particular plane (so called max FIFO mode) to allow the
403 * system to defer memory fetches longer, and the memory will enter
404 * self refresh.
405 *
406 * Note that enabling CxSR does not guarantee that the system enter
407 * this special mode, nor does it guarantee that the system stays
408 * in that mode once entered. So this just allows/disallows the system
409 * to autonomously utilize the CxSR mode. Other factors such as core
410 * C-states will affect when/if the system actually enters/exits the
411 * CxSR mode.
412 *
413 * Note that on VLV/CHV this actually only controls the max FIFO mode,
414 * and the system is free to enter/exit memory self refresh at any time
415 * even when the use of CxSR has been disallowed.
416 *
417 * While the system is actually in the CxSR/max FIFO mode, some plane
418 * control registers will not get latched on vblank. Thus in order to
419 * guarantee the system will respond to changes in the plane registers
420 * we must always disallow CxSR prior to making changes to those registers.
421 * Unfortunately the system will re-evaluate the CxSR conditions at
422 * frame start which happens after vblank start (which is when the plane
423 * registers would get latched), so we can't proceed with the plane update
424 * during the same frame where we disallowed CxSR.
425 *
426 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
427 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
428 * the hardware w.r.t. HPLL SR when writing to plane registers.
429 * Disallowing just CxSR is sufficient.
430 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200431bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200432{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200433 bool ret;
434
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200435 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200436 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300437 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
438 dev_priv->wm.vlv.cxsr = enable;
439 else if (IS_G4X(dev_priv))
440 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200441 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200442
443 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200444}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200445
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300446/*
447 * Latency for FIFO fetches is dependent on several factors:
448 * - memory configuration (speed, channels)
449 * - chipset
450 * - current MCH state
451 * It can be fairly high in some situations, so here we assume a fairly
452 * pessimal value. It's a tradeoff between extra memory fetches (if we
453 * set this value too high, the FIFO will fetch frequently to stay full)
454 * and power consumption (set it too low to save power and we might see
455 * FIFO underruns and display "flicker").
456 *
457 * A value of 5us seems to be a good balance; safe for very low end
458 * platforms but not overly aggressive on lower latency configs.
459 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100460static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300461
Ville Syrjäläb5004722015-03-05 21:19:47 +0200462#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
463 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
464
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200465static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200466{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +0100467 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200468 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200469 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200470 enum pipe pipe = crtc->pipe;
471 int sprite0_start, sprite1_start;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200472
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200473 switch (pipe) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200474 u32 dsparb, dsparb2, dsparb3;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200475 case PIPE_A:
476 dsparb = I915_READ(DSPARB);
477 dsparb2 = I915_READ(DSPARB2);
478 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
479 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
480 break;
481 case PIPE_B:
482 dsparb = I915_READ(DSPARB);
483 dsparb2 = I915_READ(DSPARB2);
484 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
485 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
486 break;
487 case PIPE_C:
488 dsparb2 = I915_READ(DSPARB2);
489 dsparb3 = I915_READ(DSPARB3);
490 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
491 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
492 break;
493 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200494 MISSING_CASE(pipe);
495 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200496 }
497
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200498 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
499 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
500 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
501 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200502}
503
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200504static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv,
505 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300506{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200507 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300508 int size;
509
510 size = dsparb & 0x7f;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200511 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300512 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
513
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300514 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
515 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300516
517 return size;
518}
519
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200520static int i830_get_fifo_size(struct drm_i915_private *dev_priv,
521 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300522{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200523 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300524 int size;
525
526 size = dsparb & 0x1ff;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200527 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300528 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
529 size >>= 1; /* Convert to cachelines */
530
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300531 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
532 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300533
534 return size;
535}
536
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200537static int i845_get_fifo_size(struct drm_i915_private *dev_priv,
538 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300539{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200540 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300541 int size;
542
543 size = dsparb & 0x7f;
544 size >>= 2; /* Convert to cachelines */
545
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300546 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
547 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300548
549 return size;
550}
551
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300552/* Pineview has different values for various configs */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800553static const struct intel_watermark_params pnv_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300554 .fifo_size = PINEVIEW_DISPLAY_FIFO,
555 .max_wm = PINEVIEW_MAX_WM,
556 .default_wm = PINEVIEW_DFT_WM,
557 .guard_size = PINEVIEW_GUARD_WM,
558 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300559};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800560
561static const struct intel_watermark_params pnv_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300562 .fifo_size = PINEVIEW_DISPLAY_FIFO,
563 .max_wm = PINEVIEW_MAX_WM,
564 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
565 .guard_size = PINEVIEW_GUARD_WM,
566 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300567};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800568
569static const struct intel_watermark_params pnv_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300570 .fifo_size = PINEVIEW_CURSOR_FIFO,
571 .max_wm = PINEVIEW_CURSOR_MAX_WM,
572 .default_wm = PINEVIEW_CURSOR_DFT_WM,
573 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
574 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300575};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800576
577static const struct intel_watermark_params pnv_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300578 .fifo_size = PINEVIEW_CURSOR_FIFO,
579 .max_wm = PINEVIEW_CURSOR_MAX_WM,
580 .default_wm = PINEVIEW_CURSOR_DFT_WM,
581 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
582 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300583};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800584
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300585static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300586 .fifo_size = I965_CURSOR_FIFO,
587 .max_wm = I965_CURSOR_MAX_WM,
588 .default_wm = I965_CURSOR_DFT_WM,
589 .guard_size = 2,
590 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300591};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800592
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300593static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300594 .fifo_size = I945_FIFO_SIZE,
595 .max_wm = I915_MAX_WM,
596 .default_wm = 1,
597 .guard_size = 2,
598 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300599};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800600
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300601static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300602 .fifo_size = I915_FIFO_SIZE,
603 .max_wm = I915_MAX_WM,
604 .default_wm = 1,
605 .guard_size = 2,
606 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300607};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800608
Ville Syrjälä9d539102014-08-15 01:21:53 +0300609static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300610 .fifo_size = I855GM_FIFO_SIZE,
611 .max_wm = I915_MAX_WM,
612 .default_wm = 1,
613 .guard_size = 2,
614 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300615};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800616
Ville Syrjälä9d539102014-08-15 01:21:53 +0300617static const struct intel_watermark_params i830_bc_wm_info = {
618 .fifo_size = I855GM_FIFO_SIZE,
619 .max_wm = I915_MAX_WM/2,
620 .default_wm = 1,
621 .guard_size = 2,
622 .cacheline_size = I830_FIFO_LINE_SIZE,
623};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800624
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200625static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300626 .fifo_size = I830_FIFO_SIZE,
627 .max_wm = I915_MAX_WM,
628 .default_wm = 1,
629 .guard_size = 2,
630 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300631};
632
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300633/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300634 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
635 * @pixel_rate: Pipe pixel rate in kHz
636 * @cpp: Plane bytes per pixel
637 * @latency: Memory wakeup latency in 0.1us units
638 *
639 * Compute the watermark using the method 1 or "small buffer"
640 * formula. The caller may additonally add extra cachelines
641 * to account for TLB misses and clock crossings.
642 *
643 * This method is concerned with the short term drain rate
644 * of the FIFO, ie. it does not account for blanking periods
645 * which would effectively reduce the average drain rate across
646 * a longer period. The name "small" refers to the fact the
647 * FIFO is relatively small compared to the amount of data
648 * fetched.
649 *
650 * The FIFO level vs. time graph might look something like:
651 *
652 * |\ |\
653 * | \ | \
654 * __---__---__ (- plane active, _ blanking)
655 * -> time
656 *
657 * or perhaps like this:
658 *
659 * |\|\ |\|\
660 * __----__----__ (- plane active, _ blanking)
661 * -> time
662 *
663 * Returns:
664 * The watermark in bytes
665 */
666static unsigned int intel_wm_method1(unsigned int pixel_rate,
667 unsigned int cpp,
668 unsigned int latency)
669{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200670 u64 ret;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300671
Ville Syrjäläd492a292019-04-08 18:27:01 +0300672 ret = mul_u32_u32(pixel_rate, cpp * latency);
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300673 ret = DIV_ROUND_UP_ULL(ret, 10000);
674
675 return ret;
676}
677
678/**
679 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
680 * @pixel_rate: Pipe pixel rate in kHz
681 * @htotal: Pipe horizontal total
682 * @width: Plane width in pixels
683 * @cpp: Plane bytes per pixel
684 * @latency: Memory wakeup latency in 0.1us units
685 *
686 * Compute the watermark using the method 2 or "large buffer"
687 * formula. The caller may additonally add extra cachelines
688 * to account for TLB misses and clock crossings.
689 *
690 * This method is concerned with the long term drain rate
691 * of the FIFO, ie. it does account for blanking periods
692 * which effectively reduce the average drain rate across
693 * a longer period. The name "large" refers to the fact the
694 * FIFO is relatively large compared to the amount of data
695 * fetched.
696 *
697 * The FIFO level vs. time graph might look something like:
698 *
699 * |\___ |\___
700 * | \___ | \___
701 * | \ | \
702 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
703 * -> time
704 *
705 * Returns:
706 * The watermark in bytes
707 */
708static unsigned int intel_wm_method2(unsigned int pixel_rate,
709 unsigned int htotal,
710 unsigned int width,
711 unsigned int cpp,
712 unsigned int latency)
713{
714 unsigned int ret;
715
716 /*
717 * FIXME remove once all users are computing
718 * watermarks in the correct place.
719 */
720 if (WARN_ON_ONCE(htotal == 0))
721 htotal = 1;
722
723 ret = (latency * pixel_rate) / (htotal * 10000);
724 ret = (ret + 1) * width * cpp;
725
726 return ret;
727}
728
729/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300730 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300731 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300732 * @wm: chip FIFO params
Chris Wilson31383412018-02-14 14:03:03 +0000733 * @fifo_size: size of the FIFO buffer
Ville Syrjäläac484962016-01-20 21:05:26 +0200734 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300735 * @latency_ns: memory latency for the platform
736 *
737 * Calculate the watermark level (the level at which the display plane will
738 * start fetching from memory again). Each chip has a different display
739 * FIFO size and allocation, so the caller needs to figure that out and pass
740 * in the correct intel_watermark_params structure.
741 *
742 * As the pixel clock runs, the FIFO will be drained at a rate that depends
743 * on the pixel size. When it reaches the watermark level, it'll start
744 * fetching FIFO line sized based chunks from memory until the FIFO fills
745 * past the watermark point. If the FIFO drains completely, a FIFO underrun
746 * will occur, and a display engine hang could result.
747 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300748static unsigned int intel_calculate_wm(int pixel_rate,
749 const struct intel_watermark_params *wm,
750 int fifo_size, int cpp,
751 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300752{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300753 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300754
755 /*
756 * Note: we need to make sure we don't overflow for various clock &
757 * latency values.
758 * clocks go from a few thousand to several hundred thousand.
759 * latency is usually a few thousand
760 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300761 entries = intel_wm_method1(pixel_rate, cpp,
762 latency_ns / 100);
763 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
764 wm->guard_size;
765 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300766
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300767 wm_size = fifo_size - entries;
768 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300769
770 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300771 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300772 wm_size = wm->max_wm;
773 if (wm_size <= 0)
774 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300775
776 /*
777 * Bspec seems to indicate that the value shouldn't be lower than
778 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
779 * Lets go for 8 which is the burst size since certain platforms
780 * already use a hardcoded 8 (which is what the spec says should be
781 * done).
782 */
783 if (wm_size <= 8)
784 wm_size = 8;
785
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300786 return wm_size;
787}
788
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300789static bool is_disabling(int old, int new, int threshold)
790{
791 return old >= threshold && new < threshold;
792}
793
794static bool is_enabling(int old, int new, int threshold)
795{
796 return old < threshold && new >= threshold;
797}
798
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300799static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
800{
801 return dev_priv->wm.max_level + 1;
802}
803
Ville Syrjälä24304d812017-03-14 17:10:49 +0200804static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
805 const struct intel_plane_state *plane_state)
806{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +0100807 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä24304d812017-03-14 17:10:49 +0200808
809 /* FIXME check the 'enable' instead */
Maarten Lankhorst1326a922019-10-31 12:26:02 +0100810 if (!crtc_state->hw.active)
Ville Syrjälä24304d812017-03-14 17:10:49 +0200811 return false;
812
813 /*
814 * Treat cursor with fb as always visible since cursor updates
815 * can happen faster than the vrefresh rate, and the current
816 * watermark code doesn't handle that correctly. Cursor updates
817 * which set/clear the fb or change the cursor size are going
818 * to get throttled by intel_legacy_cursor_update() to work
819 * around this problem with the watermark code.
820 */
821 if (plane->id == PLANE_CURSOR)
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +0100822 return plane_state->hw.fb != NULL;
Ville Syrjälä24304d812017-03-14 17:10:49 +0200823 else
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +0100824 return plane_state->uapi.visible;
Ville Syrjälä24304d812017-03-14 17:10:49 +0200825}
826
Ville Syrjälä04da7b92019-11-27 22:12:11 +0200827static bool intel_crtc_active(struct intel_crtc *crtc)
828{
829 /* Be paranoid as we can arrive here with only partial
830 * state retrieved from the hardware during setup.
831 *
832 * We can ditch the adjusted_mode.crtc_clock check as soon
833 * as Haswell has gained clock readout/fastboot support.
834 *
835 * We can ditch the crtc->primary->state->fb check as soon as we can
836 * properly reconstruct framebuffers.
837 *
838 * FIXME: The intel_crtc->active here should be switched to
839 * crtc->state->active once we have proper CRTC states wired up
840 * for atomic.
841 */
842 return crtc->active && crtc->base.primary->state->fb &&
843 crtc->config->hw.adjusted_mode.crtc_clock;
844}
845
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200846static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300847{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200848 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300849
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200850 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200851 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300852 if (enabled)
853 return NULL;
854 enabled = crtc;
855 }
856 }
857
858 return enabled;
859}
860
Lucas De Marchi1d218222019-12-24 00:40:04 -0800861static void pnv_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300862{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200863 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200864 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300865 const struct cxsr_latency *latency;
866 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300867 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300868
Tvrtko Ursulin86d35d42019-03-26 07:40:54 +0000869 latency = intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100870 dev_priv->is_ddr3,
871 dev_priv->fsb_freq,
872 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300873 if (!latency) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300874 drm_dbg_kms(&dev_priv->drm,
875 "Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300876 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300877 return;
878 }
879
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200880 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300881 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200882 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +0100883 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200884 const struct drm_framebuffer *fb =
885 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200886 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300887 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300888
889 /* Display SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800890 wm = intel_calculate_wm(clock, &pnv_display_wm,
891 pnv_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200892 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300893 reg = I915_READ(DSPFW1);
894 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200895 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300896 I915_WRITE(DSPFW1, reg);
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300897 drm_dbg_kms(&dev_priv->drm, "DSPFW1 register is %x\n", reg);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300898
899 /* cursor SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800900 wm = intel_calculate_wm(clock, &pnv_cursor_wm,
901 pnv_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300902 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300903 reg = I915_READ(DSPFW3);
904 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200905 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300906 I915_WRITE(DSPFW3, reg);
907
908 /* Display HPLL off SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800909 wm = intel_calculate_wm(clock, &pnv_display_hplloff_wm,
910 pnv_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200911 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300912 reg = I915_READ(DSPFW3);
913 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200914 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300915 I915_WRITE(DSPFW3, reg);
916
917 /* cursor HPLL off SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800918 wm = intel_calculate_wm(clock, &pnv_cursor_hplloff_wm,
919 pnv_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300920 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300921 reg = I915_READ(DSPFW3);
922 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200923 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300924 I915_WRITE(DSPFW3, reg);
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300925 drm_dbg_kms(&dev_priv->drm, "DSPFW3 register is %x\n", reg);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300926
Imre Deak5209b1f2014-07-01 12:36:17 +0300927 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300928 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300929 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300930 }
931}
932
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300933/*
934 * Documentation says:
935 * "If the line size is small, the TLB fetches can get in the way of the
936 * data fetches, causing some lag in the pixel data return which is not
937 * accounted for in the above formulas. The following adjustment only
938 * needs to be applied if eight whole lines fit in the buffer at once.
939 * The WM is adjusted upwards by the difference between the FIFO size
940 * and the size of 8 whole lines. This adjustment is always performed
941 * in the actual pixel depth regardless of whether FBC is enabled or not."
942 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000943static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300944{
945 int tlb_miss = fifo_size * 64 - width * cpp * 8;
946
947 return max(0, tlb_miss);
948}
949
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300950static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
951 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300952{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300953 enum pipe pipe;
954
955 for_each_pipe(dev_priv, pipe)
956 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
957
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300958 I915_WRITE(DSPFW1,
959 FW_WM(wm->sr.plane, SR) |
960 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
961 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
962 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
963 I915_WRITE(DSPFW2,
964 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
965 FW_WM(wm->sr.fbc, FBC_SR) |
966 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
967 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
968 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
969 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
970 I915_WRITE(DSPFW3,
971 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
972 FW_WM(wm->sr.cursor, CURSOR_SR) |
973 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
974 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300975
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300976 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300977}
978
Ville Syrjälä15665972015-03-10 16:16:28 +0200979#define FW_WM_VLV(value, plane) \
980 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
981
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200982static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200983 const struct vlv_wm_values *wm)
984{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200985 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200986
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200987 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +0200988 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
989
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200990 I915_WRITE(VLV_DDL(pipe),
991 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
992 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
993 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
994 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
995 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200996
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +0200997 /*
998 * Zero the (unused) WM1 watermarks, and also clear all the
999 * high order bits so that there are no out of bounds values
1000 * present in the registers during the reprogramming.
1001 */
1002 I915_WRITE(DSPHOWM, 0);
1003 I915_WRITE(DSPHOWM1, 0);
1004 I915_WRITE(DSPFW4, 0);
1005 I915_WRITE(DSPFW5, 0);
1006 I915_WRITE(DSPFW6, 0);
1007
Ville Syrjäläae801522015-03-05 21:19:49 +02001008 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +02001009 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001010 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
1011 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
1012 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001013 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001014 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
1015 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
1016 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001017 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +02001018 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +02001019
1020 if (IS_CHERRYVIEW(dev_priv)) {
1021 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001022 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1023 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001024 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001025 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1026 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001027 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001028 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1029 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001030 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001031 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001032 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1033 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1034 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1035 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1036 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1037 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1038 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1039 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1040 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001041 } else {
1042 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001043 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1044 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001045 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001046 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001047 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1048 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1049 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1050 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1051 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1052 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001053 }
1054
1055 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001056}
1057
Ville Syrjälä15665972015-03-10 16:16:28 +02001058#undef FW_WM_VLV
1059
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001060static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1061{
1062 /* all latencies in usec */
1063 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1064 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001065 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001066
Ville Syrjälä79d94302017-04-21 21:14:30 +03001067 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001068}
1069
1070static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1071{
1072 /*
1073 * DSPCNTR[13] supposedly controls whether the
1074 * primary plane can use the FIFO space otherwise
1075 * reserved for the sprite plane. It's not 100% clear
1076 * what the actual FIFO size is, but it looks like we
1077 * can happily set both primary and sprite watermarks
1078 * up to 127 cachelines. So that would seem to mean
1079 * that either DSPCNTR[13] doesn't do anything, or that
1080 * the total FIFO is >= 256 cachelines in size. Either
1081 * way, we don't seem to have to worry about this
1082 * repartitioning as the maximum watermark value the
1083 * register can hold for each plane is lower than the
1084 * minimum FIFO size.
1085 */
1086 switch (plane_id) {
1087 case PLANE_CURSOR:
1088 return 63;
1089 case PLANE_PRIMARY:
1090 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1091 case PLANE_SPRITE0:
1092 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1093 default:
1094 MISSING_CASE(plane_id);
1095 return 0;
1096 }
1097}
1098
1099static int g4x_fbc_fifo_size(int level)
1100{
1101 switch (level) {
1102 case G4X_WM_LEVEL_SR:
1103 return 7;
1104 case G4X_WM_LEVEL_HPLL:
1105 return 15;
1106 default:
1107 MISSING_CASE(level);
1108 return 0;
1109 }
1110}
1111
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001112static u16 g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1113 const struct intel_plane_state *plane_state,
1114 int level)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001115{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001116 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001117 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1118 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01001119 &crtc_state->hw.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001120 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1121 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001122
1123 if (latency == 0)
1124 return USHRT_MAX;
1125
1126 if (!intel_wm_plane_visible(crtc_state, plane_state))
1127 return 0;
1128
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001129 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläd56e8232019-07-03 23:08:22 +03001130
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001131 /*
1132 * Not 100% sure which way ELK should go here as the
1133 * spec only says CL/CTG should assume 32bpp and BW
1134 * doesn't need to. But as these things followed the
1135 * mobile vs. desktop lines on gen3 as well, let's
1136 * assume ELK doesn't need this.
1137 *
1138 * The spec also fails to list such a restriction for
1139 * the HPLL watermark, which seems a little strange.
1140 * Let's use 32bpp for the HPLL watermark as well.
1141 */
1142 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1143 level != G4X_WM_LEVEL_NORMAL)
Ville Syrjäläd56e8232019-07-03 23:08:22 +03001144 cpp = max(cpp, 4u);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001145
1146 clock = adjusted_mode->crtc_clock;
1147 htotal = adjusted_mode->crtc_htotal;
1148
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001149 width = drm_rect_width(&plane_state->uapi.dst);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001150
1151 if (plane->id == PLANE_CURSOR) {
1152 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1153 } else if (plane->id == PLANE_PRIMARY &&
1154 level == G4X_WM_LEVEL_NORMAL) {
1155 wm = intel_wm_method1(clock, cpp, latency);
1156 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001157 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001158
1159 small = intel_wm_method1(clock, cpp, latency);
1160 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1161
1162 wm = min(small, large);
1163 }
1164
1165 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1166 width, cpp);
1167
1168 wm = DIV_ROUND_UP(wm, 64) + 2;
1169
Chris Wilson1a1f1282017-11-07 14:03:38 +00001170 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001171}
1172
1173static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1174 int level, enum plane_id plane_id, u16 value)
1175{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001176 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001177 bool dirty = false;
1178
1179 for (; level < intel_wm_num_levels(dev_priv); level++) {
1180 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1181
1182 dirty |= raw->plane[plane_id] != value;
1183 raw->plane[plane_id] = value;
1184 }
1185
1186 return dirty;
1187}
1188
1189static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1190 int level, u16 value)
1191{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001192 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001193 bool dirty = false;
1194
1195 /* NORMAL level doesn't have an FBC watermark */
1196 level = max(level, G4X_WM_LEVEL_SR);
1197
1198 for (; level < intel_wm_num_levels(dev_priv); level++) {
1199 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1200
1201 dirty |= raw->fbc != value;
1202 raw->fbc = value;
1203 }
1204
1205 return dirty;
1206}
1207
Maarten Lankhorstec193642019-06-28 10:55:17 +02001208static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
1209 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001210 u32 pri_val);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001211
1212static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1213 const struct intel_plane_state *plane_state)
1214{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001215 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001216 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001217 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1218 enum plane_id plane_id = plane->id;
1219 bool dirty = false;
1220 int level;
1221
1222 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1223 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1224 if (plane_id == PLANE_PRIMARY)
1225 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1226 goto out;
1227 }
1228
1229 for (level = 0; level < num_levels; level++) {
1230 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1231 int wm, max_wm;
1232
1233 wm = g4x_compute_wm(crtc_state, plane_state, level);
1234 max_wm = g4x_plane_fifo_size(plane_id, level);
1235
1236 if (wm > max_wm)
1237 break;
1238
1239 dirty |= raw->plane[plane_id] != wm;
1240 raw->plane[plane_id] = wm;
1241
1242 if (plane_id != PLANE_PRIMARY ||
1243 level == G4X_WM_LEVEL_NORMAL)
1244 continue;
1245
1246 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1247 raw->plane[plane_id]);
1248 max_wm = g4x_fbc_fifo_size(level);
1249
1250 /*
1251 * FBC wm is not mandatory as we
1252 * can always just disable its use.
1253 */
1254 if (wm > max_wm)
1255 wm = USHRT_MAX;
1256
1257 dirty |= raw->fbc != wm;
1258 raw->fbc = wm;
1259 }
1260
1261 /* mark watermarks as invalid */
1262 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1263
1264 if (plane_id == PLANE_PRIMARY)
1265 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1266
1267 out:
1268 if (dirty) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001269 drm_dbg_kms(&dev_priv->drm,
1270 "%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1271 plane->base.name,
1272 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1273 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1274 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001275
1276 if (plane_id == PLANE_PRIMARY)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001277 drm_dbg_kms(&dev_priv->drm,
1278 "FBC watermarks: SR=%d, HPLL=%d\n",
1279 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1280 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001281 }
1282
1283 return dirty;
1284}
1285
1286static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1287 enum plane_id plane_id, int level)
1288{
1289 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1290
1291 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1292}
1293
1294static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1295 int level)
1296{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001297 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001298
1299 if (level > dev_priv->wm.max_level)
1300 return false;
1301
1302 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1303 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1304 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1305}
1306
1307/* mark all levels starting from 'level' as invalid */
1308static void g4x_invalidate_wms(struct intel_crtc *crtc,
1309 struct g4x_wm_state *wm_state, int level)
1310{
1311 if (level <= G4X_WM_LEVEL_NORMAL) {
1312 enum plane_id plane_id;
1313
1314 for_each_plane_id_on_crtc(crtc, plane_id)
1315 wm_state->wm.plane[plane_id] = USHRT_MAX;
1316 }
1317
1318 if (level <= G4X_WM_LEVEL_SR) {
1319 wm_state->cxsr = false;
1320 wm_state->sr.cursor = USHRT_MAX;
1321 wm_state->sr.plane = USHRT_MAX;
1322 wm_state->sr.fbc = USHRT_MAX;
1323 }
1324
1325 if (level <= G4X_WM_LEVEL_HPLL) {
1326 wm_state->hpll_en = false;
1327 wm_state->hpll.cursor = USHRT_MAX;
1328 wm_state->hpll.plane = USHRT_MAX;
1329 wm_state->hpll.fbc = USHRT_MAX;
1330 }
1331}
1332
1333static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1334{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001335 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001336 struct intel_atomic_state *state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001337 to_intel_atomic_state(crtc_state->uapi.state);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001338 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001339 int num_active_planes = hweight8(crtc_state->active_planes &
1340 ~BIT(PLANE_CURSOR));
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001341 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001342 const struct intel_plane_state *old_plane_state;
1343 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001344 struct intel_plane *plane;
1345 enum plane_id plane_id;
1346 int i, level;
1347 unsigned int dirty = 0;
1348
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001349 for_each_oldnew_intel_plane_in_state(state, plane,
1350 old_plane_state,
1351 new_plane_state, i) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001352 if (new_plane_state->hw.crtc != &crtc->base &&
1353 old_plane_state->hw.crtc != &crtc->base)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001354 continue;
1355
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001356 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001357 dirty |= BIT(plane->id);
1358 }
1359
1360 if (!dirty)
1361 return 0;
1362
1363 level = G4X_WM_LEVEL_NORMAL;
1364 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1365 goto out;
1366
1367 raw = &crtc_state->wm.g4x.raw[level];
1368 for_each_plane_id_on_crtc(crtc, plane_id)
1369 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1370
1371 level = G4X_WM_LEVEL_SR;
1372
1373 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1374 goto out;
1375
1376 raw = &crtc_state->wm.g4x.raw[level];
1377 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1378 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1379 wm_state->sr.fbc = raw->fbc;
1380
1381 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1382
1383 level = G4X_WM_LEVEL_HPLL;
1384
1385 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1386 goto out;
1387
1388 raw = &crtc_state->wm.g4x.raw[level];
1389 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1390 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1391 wm_state->hpll.fbc = raw->fbc;
1392
1393 wm_state->hpll_en = wm_state->cxsr;
1394
1395 level++;
1396
1397 out:
1398 if (level == G4X_WM_LEVEL_NORMAL)
1399 return -EINVAL;
1400
1401 /* invalidate the higher levels */
1402 g4x_invalidate_wms(crtc, wm_state, level);
1403
1404 /*
1405 * Determine if the FBC watermark(s) can be used. IF
1406 * this isn't the case we prefer to disable the FBC
1407 ( watermark(s) rather than disable the SR/HPLL
1408 * level(s) entirely.
1409 */
1410 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1411
1412 if (level >= G4X_WM_LEVEL_SR &&
1413 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1414 wm_state->fbc_en = false;
1415 else if (level >= G4X_WM_LEVEL_HPLL &&
1416 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1417 wm_state->fbc_en = false;
1418
1419 return 0;
1420}
1421
Matt Ropercd1d3ee2018-12-10 13:54:14 -08001422static int g4x_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001423{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001424 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001425 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1426 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1427 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001428 to_intel_atomic_state(new_crtc_state->uapi.state);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001429 const struct intel_crtc_state *old_crtc_state =
1430 intel_atomic_get_old_crtc_state(intel_state, crtc);
1431 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001432 enum plane_id plane_id;
1433
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001434 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001435 *intermediate = *optimal;
1436
1437 intermediate->cxsr = false;
1438 intermediate->hpll_en = false;
1439 goto out;
1440 }
1441
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001442 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001443 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001444 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001445 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001446 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1447
1448 for_each_plane_id_on_crtc(crtc, plane_id) {
1449 intermediate->wm.plane[plane_id] =
1450 max(optimal->wm.plane[plane_id],
1451 active->wm.plane[plane_id]);
1452
1453 WARN_ON(intermediate->wm.plane[plane_id] >
1454 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1455 }
1456
1457 intermediate->sr.plane = max(optimal->sr.plane,
1458 active->sr.plane);
1459 intermediate->sr.cursor = max(optimal->sr.cursor,
1460 active->sr.cursor);
1461 intermediate->sr.fbc = max(optimal->sr.fbc,
1462 active->sr.fbc);
1463
1464 intermediate->hpll.plane = max(optimal->hpll.plane,
1465 active->hpll.plane);
1466 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1467 active->hpll.cursor);
1468 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1469 active->hpll.fbc);
1470
1471 WARN_ON((intermediate->sr.plane >
1472 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1473 intermediate->sr.cursor >
1474 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1475 intermediate->cxsr);
1476 WARN_ON((intermediate->sr.plane >
1477 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1478 intermediate->sr.cursor >
1479 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1480 intermediate->hpll_en);
1481
1482 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1483 intermediate->fbc_en && intermediate->cxsr);
1484 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1485 intermediate->fbc_en && intermediate->hpll_en);
1486
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001487out:
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001488 /*
1489 * If our intermediate WM are identical to the final WM, then we can
1490 * omit the post-vblank programming; only update if it's different.
1491 */
1492 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001493 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001494
1495 return 0;
1496}
1497
1498static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1499 struct g4x_wm_values *wm)
1500{
1501 struct intel_crtc *crtc;
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001502 int num_active_pipes = 0;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001503
1504 wm->cxsr = true;
1505 wm->hpll_en = true;
1506 wm->fbc_en = true;
1507
1508 for_each_intel_crtc(&dev_priv->drm, crtc) {
1509 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1510
1511 if (!crtc->active)
1512 continue;
1513
1514 if (!wm_state->cxsr)
1515 wm->cxsr = false;
1516 if (!wm_state->hpll_en)
1517 wm->hpll_en = false;
1518 if (!wm_state->fbc_en)
1519 wm->fbc_en = false;
1520
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001521 num_active_pipes++;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001522 }
1523
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001524 if (num_active_pipes != 1) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001525 wm->cxsr = false;
1526 wm->hpll_en = false;
1527 wm->fbc_en = false;
1528 }
1529
1530 for_each_intel_crtc(&dev_priv->drm, crtc) {
1531 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1532 enum pipe pipe = crtc->pipe;
1533
1534 wm->pipe[pipe] = wm_state->wm;
1535 if (crtc->active && wm->cxsr)
1536 wm->sr = wm_state->sr;
1537 if (crtc->active && wm->hpll_en)
1538 wm->hpll = wm_state->hpll;
1539 }
1540}
1541
1542static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1543{
1544 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1545 struct g4x_wm_values new_wm = {};
1546
1547 g4x_merge_wm(dev_priv, &new_wm);
1548
1549 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1550 return;
1551
1552 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1553 _intel_set_memory_cxsr(dev_priv, false);
1554
1555 g4x_write_wm_values(dev_priv, &new_wm);
1556
1557 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1558 _intel_set_memory_cxsr(dev_priv, true);
1559
1560 *old_wm = new_wm;
1561}
1562
1563static void g4x_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001564 struct intel_crtc *crtc)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001565{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001566 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1567 const struct intel_crtc_state *crtc_state =
1568 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001569
1570 mutex_lock(&dev_priv->wm.wm_mutex);
1571 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1572 g4x_program_watermarks(dev_priv);
1573 mutex_unlock(&dev_priv->wm.wm_mutex);
1574}
1575
1576static void g4x_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001577 struct intel_crtc *crtc)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001578{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001579 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1580 const struct intel_crtc_state *crtc_state =
1581 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001582
1583 if (!crtc_state->wm.need_postvbl_update)
1584 return;
1585
1586 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03001587 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001588 g4x_program_watermarks(dev_priv);
1589 mutex_unlock(&dev_priv->wm.wm_mutex);
1590}
1591
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001592/* latency must be in 0.1us units. */
1593static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001594 unsigned int htotal,
1595 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001596 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001597 unsigned int latency)
1598{
1599 unsigned int ret;
1600
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001601 ret = intel_wm_method2(pixel_rate, htotal,
1602 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001603 ret = DIV_ROUND_UP(ret, 64);
1604
1605 return ret;
1606}
1607
Ville Syrjäläbb726512016-10-31 22:37:24 +02001608static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001609{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001610 /* all latencies in usec */
1611 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1612
Ville Syrjälä58590c12015-09-08 21:05:12 +03001613 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1614
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001615 if (IS_CHERRYVIEW(dev_priv)) {
1616 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1617 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001618
1619 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001620 }
1621}
1622
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001623static u16 vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1624 const struct intel_plane_state *plane_state,
1625 int level)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001626{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001627 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001628 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001629 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01001630 &crtc_state->hw.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001631 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001632
1633 if (dev_priv->wm.pri_latency[level] == 0)
1634 return USHRT_MAX;
1635
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001636 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001637 return 0;
1638
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001639 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001640 clock = adjusted_mode->crtc_clock;
1641 htotal = adjusted_mode->crtc_htotal;
1642 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001643
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001644 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001645 /*
1646 * FIXME the formula gives values that are
1647 * too big for the cursor FIFO, and hence we
1648 * would never be able to use cursors. For
1649 * now just hardcode the watermark.
1650 */
1651 wm = 63;
1652 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001653 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001654 dev_priv->wm.pri_latency[level] * 10);
1655 }
1656
Chris Wilson1a1f1282017-11-07 14:03:38 +00001657 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001658}
1659
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001660static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1661{
1662 return (active_planes & (BIT(PLANE_SPRITE0) |
1663 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1664}
1665
Ville Syrjälä5012e602017-03-02 19:14:56 +02001666static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001667{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001668 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001669 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001670 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001671 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001672 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001673 int num_active_planes = hweight8(active_planes);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001674 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001675 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001676 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001677 unsigned int total_rate;
1678 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001679
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001680 /*
1681 * When enabling sprite0 after sprite1 has already been enabled
1682 * we tend to get an underrun unless sprite0 already has some
1683 * FIFO space allcoated. Hence we always allocate at least one
1684 * cacheline for sprite0 whenever sprite1 is enabled.
1685 *
1686 * All other plane enable sequences appear immune to this problem.
1687 */
1688 if (vlv_need_sprite0_fifo_workaround(active_planes))
1689 sprite0_fifo_extra = 1;
1690
Ville Syrjälä5012e602017-03-02 19:14:56 +02001691 total_rate = raw->plane[PLANE_PRIMARY] +
1692 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001693 raw->plane[PLANE_SPRITE1] +
1694 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001695
Ville Syrjälä5012e602017-03-02 19:14:56 +02001696 if (total_rate > fifo_size)
1697 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001698
Ville Syrjälä5012e602017-03-02 19:14:56 +02001699 if (total_rate == 0)
1700 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001701
Ville Syrjälä5012e602017-03-02 19:14:56 +02001702 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001703 unsigned int rate;
1704
Ville Syrjälä5012e602017-03-02 19:14:56 +02001705 if ((active_planes & BIT(plane_id)) == 0) {
1706 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001707 continue;
1708 }
1709
Ville Syrjälä5012e602017-03-02 19:14:56 +02001710 rate = raw->plane[plane_id];
1711 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1712 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001713 }
1714
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001715 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1716 fifo_left -= sprite0_fifo_extra;
1717
Ville Syrjälä5012e602017-03-02 19:14:56 +02001718 fifo_state->plane[PLANE_CURSOR] = 63;
1719
1720 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001721
1722 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001723 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001724 int plane_extra;
1725
1726 if (fifo_left == 0)
1727 break;
1728
Ville Syrjälä5012e602017-03-02 19:14:56 +02001729 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001730 continue;
1731
1732 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001733 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001734 fifo_left -= plane_extra;
1735 }
1736
Ville Syrjälä5012e602017-03-02 19:14:56 +02001737 WARN_ON(active_planes != 0 && fifo_left != 0);
1738
1739 /* give it all to the first plane if none are active */
1740 if (active_planes == 0) {
1741 WARN_ON(fifo_left != fifo_size);
1742 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1743 }
1744
1745 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001746}
1747
Ville Syrjäläff32c542017-03-02 19:14:57 +02001748/* mark all levels starting from 'level' as invalid */
1749static void vlv_invalidate_wms(struct intel_crtc *crtc,
1750 struct vlv_wm_state *wm_state, int level)
1751{
1752 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1753
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001754 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001755 enum plane_id plane_id;
1756
1757 for_each_plane_id_on_crtc(crtc, plane_id)
1758 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1759
1760 wm_state->sr[level].cursor = USHRT_MAX;
1761 wm_state->sr[level].plane = USHRT_MAX;
1762 }
1763}
1764
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001765static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1766{
1767 if (wm > fifo_size)
1768 return USHRT_MAX;
1769 else
1770 return fifo_size - wm;
1771}
1772
Ville Syrjäläff32c542017-03-02 19:14:57 +02001773/*
1774 * Starting from 'level' set all higher
1775 * levels to 'value' in the "raw" watermarks.
1776 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001777static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001778 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001779{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001780 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001781 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001782 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001783
Ville Syrjäläff32c542017-03-02 19:14:57 +02001784 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001785 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001786
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001787 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001788 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001789 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001790
1791 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001792}
1793
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001794static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1795 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001796{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001797 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001798 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001799 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001800 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001801 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001802 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001803
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001804 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001805 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1806 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001807 }
1808
1809 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001810 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001811 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1812 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1813
Ville Syrjäläff32c542017-03-02 19:14:57 +02001814 if (wm > max_wm)
1815 break;
1816
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001817 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001818 raw->plane[plane_id] = wm;
1819 }
1820
1821 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001822 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001823
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001824out:
1825 if (dirty)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001826 drm_dbg_kms(&dev_priv->drm,
1827 "%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
1828 plane->base.name,
1829 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1830 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1831 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001832
1833 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001834}
1835
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001836static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1837 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001838{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001839 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001840 &crtc_state->wm.vlv.raw[level];
1841 const struct vlv_fifo_state *fifo_state =
1842 &crtc_state->wm.vlv.fifo_state;
1843
1844 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1845}
1846
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001847static 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 +02001848{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001849 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1850 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1851 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1852 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001853}
1854
1855static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001856{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001857 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001858 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001859 struct intel_atomic_state *state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001860 to_intel_atomic_state(crtc_state->uapi.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001861 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001862 const struct vlv_fifo_state *fifo_state =
1863 &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001864 int num_active_planes = hweight8(crtc_state->active_planes &
1865 ~BIT(PLANE_CURSOR));
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001866 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->uapi);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001867 const struct intel_plane_state *old_plane_state;
1868 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001869 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001870 enum plane_id plane_id;
1871 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001872 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001873
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001874 for_each_oldnew_intel_plane_in_state(state, plane,
1875 old_plane_state,
1876 new_plane_state, i) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001877 if (new_plane_state->hw.crtc != &crtc->base &&
1878 old_plane_state->hw.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001879 continue;
1880
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001881 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001882 dirty |= BIT(plane->id);
1883 }
1884
1885 /*
1886 * DSPARB registers may have been reset due to the
1887 * power well being turned off. Make sure we restore
1888 * them to a consistent state even if no primary/sprite
1889 * planes are initially active.
1890 */
1891 if (needs_modeset)
1892 crtc_state->fifo_changed = true;
1893
1894 if (!dirty)
1895 return 0;
1896
1897 /* cursor changes don't warrant a FIFO recompute */
1898 if (dirty & ~BIT(PLANE_CURSOR)) {
1899 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001900 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001901 const struct vlv_fifo_state *old_fifo_state =
1902 &old_crtc_state->wm.vlv.fifo_state;
1903
1904 ret = vlv_compute_fifo(crtc_state);
1905 if (ret)
1906 return ret;
1907
1908 if (needs_modeset ||
1909 memcmp(old_fifo_state, fifo_state,
1910 sizeof(*fifo_state)) != 0)
1911 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001912 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001913
Ville Syrjäläff32c542017-03-02 19:14:57 +02001914 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001915 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001916 /*
1917 * Note that enabling cxsr with no primary/sprite planes
1918 * enabled can wedge the pipe. Hence we only allow cxsr
1919 * with exactly one enabled primary/sprite plane.
1920 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001921 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001922
Ville Syrjälä5012e602017-03-02 19:14:56 +02001923 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001924 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Jani Nikula24977872019-09-11 12:26:08 +03001925 const int sr_fifo_size = INTEL_NUM_PIPES(dev_priv) * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001926
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001927 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001928 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001929
Ville Syrjäläff32c542017-03-02 19:14:57 +02001930 for_each_plane_id_on_crtc(crtc, plane_id) {
1931 wm_state->wm[level].plane[plane_id] =
1932 vlv_invert_wm_value(raw->plane[plane_id],
1933 fifo_state->plane[plane_id]);
1934 }
1935
1936 wm_state->sr[level].plane =
1937 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001938 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001939 raw->plane[PLANE_SPRITE1]),
1940 sr_fifo_size);
1941
1942 wm_state->sr[level].cursor =
1943 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1944 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001945 }
1946
Ville Syrjäläff32c542017-03-02 19:14:57 +02001947 if (level == 0)
1948 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001949
Ville Syrjäläff32c542017-03-02 19:14:57 +02001950 /* limit to only levels we can actually handle */
1951 wm_state->num_levels = level;
1952
1953 /* invalidate the higher levels */
1954 vlv_invalidate_wms(crtc, wm_state, level);
1955
1956 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001957}
1958
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001959#define VLV_FIFO(plane, value) \
1960 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1961
Ville Syrjäläff32c542017-03-02 19:14:57 +02001962static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001963 struct intel_crtc *crtc)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001964{
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001965 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001966 struct intel_uncore *uncore = &dev_priv->uncore;
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001967 const struct intel_crtc_state *crtc_state =
1968 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001969 const struct vlv_fifo_state *fifo_state =
1970 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001971 int sprite0_start, sprite1_start, fifo_size;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001972
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001973 if (!crtc_state->fifo_changed)
1974 return;
1975
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001976 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1977 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1978 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001979
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05301980 drm_WARN_ON(&dev_priv->drm, fifo_state->plane[PLANE_CURSOR] != 63);
1981 drm_WARN_ON(&dev_priv->drm, fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001982
Ville Syrjäläc137d662017-03-02 19:15:06 +02001983 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
1984
Ville Syrjälä44e921d2017-03-09 17:44:34 +02001985 /*
1986 * uncore.lock serves a double purpose here. It allows us to
1987 * use the less expensive I915_{READ,WRITE}_FW() functions, and
1988 * it protects the DSPARB registers from getting clobbered by
1989 * parallel updates from multiple pipes.
1990 *
1991 * intel_pipe_update_start() has already disabled interrupts
1992 * for us, so a plain spin_lock() is sufficient here.
1993 */
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001994 spin_lock(&uncore->lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02001995
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001996 switch (crtc->pipe) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001997 u32 dsparb, dsparb2, dsparb3;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001998 case PIPE_A:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001999 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2000 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002001
2002 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
2003 VLV_FIFO(SPRITEB, 0xff));
2004 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
2005 VLV_FIFO(SPRITEB, sprite1_start));
2006
2007 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
2008 VLV_FIFO(SPRITEB_HI, 0x1));
2009 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
2010 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
2011
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002012 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2013 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002014 break;
2015 case PIPE_B:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002016 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2017 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002018
2019 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
2020 VLV_FIFO(SPRITED, 0xff));
2021 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
2022 VLV_FIFO(SPRITED, sprite1_start));
2023
2024 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
2025 VLV_FIFO(SPRITED_HI, 0xff));
2026 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2027 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2028
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002029 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2030 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002031 break;
2032 case PIPE_C:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002033 dsparb3 = intel_uncore_read_fw(uncore, DSPARB3);
2034 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002035
2036 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2037 VLV_FIFO(SPRITEF, 0xff));
2038 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2039 VLV_FIFO(SPRITEF, sprite1_start));
2040
2041 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2042 VLV_FIFO(SPRITEF_HI, 0xff));
2043 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2044 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2045
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002046 intel_uncore_write_fw(uncore, DSPARB3, dsparb3);
2047 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002048 break;
2049 default:
2050 break;
2051 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002052
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002053 intel_uncore_posting_read_fw(uncore, DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002054
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002055 spin_unlock(&uncore->lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002056}
2057
2058#undef VLV_FIFO
2059
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002060static int vlv_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002061{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002062 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002063 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2064 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2065 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002066 to_intel_atomic_state(new_crtc_state->uapi.state);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002067 const struct intel_crtc_state *old_crtc_state =
2068 intel_atomic_get_old_crtc_state(intel_state, crtc);
2069 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002070 int level;
2071
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002072 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002073 *intermediate = *optimal;
2074
2075 intermediate->cxsr = false;
2076 goto out;
2077 }
2078
Ville Syrjälä4841da52017-03-02 19:14:59 +02002079 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002080 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002081 !new_crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002082
2083 for (level = 0; level < intermediate->num_levels; level++) {
2084 enum plane_id plane_id;
2085
2086 for_each_plane_id_on_crtc(crtc, plane_id) {
2087 intermediate->wm[level].plane[plane_id] =
2088 min(optimal->wm[level].plane[plane_id],
2089 active->wm[level].plane[plane_id]);
2090 }
2091
2092 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2093 active->sr[level].plane);
2094 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2095 active->sr[level].cursor);
2096 }
2097
2098 vlv_invalidate_wms(crtc, intermediate, level);
2099
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002100out:
Ville Syrjälä4841da52017-03-02 19:14:59 +02002101 /*
2102 * If our intermediate WM are identical to the final WM, then we can
2103 * omit the post-vblank programming; only update if it's different.
2104 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002105 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002106 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002107
2108 return 0;
2109}
2110
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002111static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002112 struct vlv_wm_values *wm)
2113{
2114 struct intel_crtc *crtc;
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002115 int num_active_pipes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002116
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002117 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002118 wm->cxsr = true;
2119
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002120 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002121 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002122
2123 if (!crtc->active)
2124 continue;
2125
2126 if (!wm_state->cxsr)
2127 wm->cxsr = false;
2128
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002129 num_active_pipes++;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002130 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2131 }
2132
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002133 if (num_active_pipes != 1)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002134 wm->cxsr = false;
2135
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002136 if (num_active_pipes > 1)
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002137 wm->level = VLV_WM_LEVEL_PM2;
2138
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002139 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002140 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002141 enum pipe pipe = crtc->pipe;
2142
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002143 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002144 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002145 wm->sr = wm_state->sr[wm->level];
2146
Ville Syrjälä1b313892016-11-28 19:37:08 +02002147 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2148 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2149 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2150 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002151 }
2152}
2153
Ville Syrjäläff32c542017-03-02 19:14:57 +02002154static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002155{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002156 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2157 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002158
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002159 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002160
Ville Syrjäläff32c542017-03-02 19:14:57 +02002161 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002162 return;
2163
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002164 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002165 chv_set_memory_dvfs(dev_priv, false);
2166
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002167 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002168 chv_set_memory_pm5(dev_priv, false);
2169
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002170 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002171 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002172
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002173 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002174
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002175 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002176 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002177
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002178 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002179 chv_set_memory_pm5(dev_priv, true);
2180
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002181 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002182 chv_set_memory_dvfs(dev_priv, true);
2183
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002184 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002185}
2186
Ville Syrjäläff32c542017-03-02 19:14:57 +02002187static void vlv_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002188 struct intel_crtc *crtc)
Ville Syrjäläff32c542017-03-02 19:14:57 +02002189{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002190 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2191 const struct intel_crtc_state *crtc_state =
2192 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjäläff32c542017-03-02 19:14:57 +02002193
2194 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002195 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2196 vlv_program_watermarks(dev_priv);
2197 mutex_unlock(&dev_priv->wm.wm_mutex);
2198}
2199
2200static void vlv_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002201 struct intel_crtc *crtc)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002202{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002203 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2204 const struct intel_crtc_state *crtc_state =
2205 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002206
2207 if (!crtc_state->wm.need_postvbl_update)
2208 return;
2209
2210 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03002211 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002212 vlv_program_watermarks(dev_priv);
2213 mutex_unlock(&dev_priv->wm.wm_mutex);
2214}
2215
Ville Syrjälä432081b2016-10-31 22:37:03 +02002216static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002217{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002218 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002219 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002220 int srwm = 1;
2221 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002222 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002223
2224 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002225 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002226 if (crtc) {
2227 /* self-refresh has much higher latency */
2228 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002229 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002230 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002231 const struct drm_framebuffer *fb =
2232 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002233 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002234 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002235 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002236 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002237 int entries;
2238
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002239 entries = intel_wm_method2(clock, htotal,
2240 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002241 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2242 srwm = I965_FIFO_SIZE - entries;
2243 if (srwm < 0)
2244 srwm = 1;
2245 srwm &= 0x1ff;
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002246 drm_dbg_kms(&dev_priv->drm,
2247 "self-refresh entries: %d, wm: %d\n",
2248 entries, srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002249
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002250 entries = intel_wm_method2(clock, htotal,
2251 crtc->base.cursor->state->crtc_w, 4,
2252 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002253 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002254 i965_cursor_wm_info.cacheline_size) +
2255 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002256
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002257 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002258 if (cursor_sr > i965_cursor_wm_info.max_wm)
2259 cursor_sr = i965_cursor_wm_info.max_wm;
2260
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002261 drm_dbg_kms(&dev_priv->drm,
2262 "self-refresh watermark: display plane %d "
2263 "cursor %d\n", srwm, cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002264
Imre Deak98584252014-06-13 14:54:20 +03002265 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002266 } else {
Imre Deak98584252014-06-13 14:54:20 +03002267 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002268 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002269 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002270 }
2271
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002272 drm_dbg_kms(&dev_priv->drm,
2273 "Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2274 srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002275
2276 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002277 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2278 FW_WM(8, CURSORB) |
2279 FW_WM(8, PLANEB) |
2280 FW_WM(8, PLANEA));
2281 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2282 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002283 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002284 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002285
2286 if (cxsr_enabled)
2287 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002288}
2289
Ville Syrjäläf4998962015-03-10 17:02:21 +02002290#undef FW_WM
2291
Ville Syrjälä432081b2016-10-31 22:37:03 +02002292static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002293{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002294 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002295 const struct intel_watermark_params *wm_info;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002296 u32 fwater_lo;
2297 u32 fwater_hi;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002298 int cwm, srwm = 1;
2299 int fifo_size;
2300 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002301 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002302
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002303 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002304 wm_info = &i945_wm_info;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002305 else if (!IS_GEN(dev_priv, 2))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002306 wm_info = &i915_wm_info;
2307 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002308 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002309
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002310 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A);
2311 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002312 if (intel_crtc_active(crtc)) {
2313 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002314 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002315 const struct drm_framebuffer *fb =
2316 crtc->base.primary->state->fb;
2317 int cpp;
2318
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002319 if (IS_GEN(dev_priv, 2))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002320 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002321 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002322 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002323
Damien Lespiau241bfc32013-09-25 16:45:37 +01002324 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002325 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002326 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002327 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002328 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002329 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002330 if (planea_wm > (long)wm_info->max_wm)
2331 planea_wm = wm_info->max_wm;
2332 }
2333
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002334 if (IS_GEN(dev_priv, 2))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002335 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002336
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002337 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B);
2338 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002339 if (intel_crtc_active(crtc)) {
2340 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002341 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002342 const struct drm_framebuffer *fb =
2343 crtc->base.primary->state->fb;
2344 int cpp;
2345
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002346 if (IS_GEN(dev_priv, 2))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002347 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002348 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002349 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002350
Damien Lespiau241bfc32013-09-25 16:45:37 +01002351 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002352 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002353 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002354 if (enabled == NULL)
2355 enabled = crtc;
2356 else
2357 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002358 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002359 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002360 if (planeb_wm > (long)wm_info->max_wm)
2361 planeb_wm = wm_info->max_wm;
2362 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002363
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002364 drm_dbg_kms(&dev_priv->drm,
2365 "FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002366
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002367 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002368 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002369
Ville Syrjäläefc26112016-10-31 22:37:04 +02002370 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002371
2372 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002373 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002374 enabled = NULL;
2375 }
2376
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002377 /*
2378 * Overlay gets an aggressive default since video jitter is bad.
2379 */
2380 cwm = 2;
2381
2382 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002383 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002384
2385 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002386 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002387 /* self-refresh has much higher latency */
2388 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002389 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002390 &enabled->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002391 const struct drm_framebuffer *fb =
2392 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002393 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002394 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002395 int hdisplay = enabled->config->pipe_src_w;
2396 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002397 int entries;
2398
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002399 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002400 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002401 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002402 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002403
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002404 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2405 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002406 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002407 drm_dbg_kms(&dev_priv->drm,
2408 "self-refresh entries: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002409 srwm = wm_info->fifo_size - entries;
2410 if (srwm < 0)
2411 srwm = 1;
2412
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002413 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002414 I915_WRITE(FW_BLC_SELF,
2415 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002416 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002417 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2418 }
2419
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002420 drm_dbg_kms(&dev_priv->drm,
2421 "Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2422 planea_wm, planeb_wm, cwm, srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002423
2424 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2425 fwater_hi = (cwm & 0x1f);
2426
2427 /* Set request length to 8 cachelines per fetch */
2428 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2429 fwater_hi = fwater_hi | (1 << 8);
2430
2431 I915_WRITE(FW_BLC, fwater_lo);
2432 I915_WRITE(FW_BLC2, fwater_hi);
2433
Imre Deak5209b1f2014-07-01 12:36:17 +03002434 if (enabled)
2435 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002436}
2437
Ville Syrjälä432081b2016-10-31 22:37:03 +02002438static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002439{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002440 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002441 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002442 const struct drm_display_mode *adjusted_mode;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002443 u32 fwater_lo;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002444 int planea_wm;
2445
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002446 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002447 if (crtc == NULL)
2448 return;
2449
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002450 adjusted_mode = &crtc->config->hw.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002451 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002452 &i845_wm_info,
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002453 dev_priv->display.get_fifo_size(dev_priv, PLANE_A),
Chris Wilson5aef6002014-09-03 11:56:07 +01002454 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002455 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2456 fwater_lo |= (3<<8) | planea_wm;
2457
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002458 drm_dbg_kms(&dev_priv->drm,
2459 "Setting FIFO watermarks - A: %d\n", planea_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002460
2461 I915_WRITE(FW_BLC, fwater_lo);
2462}
2463
Ville Syrjälä37126462013-08-01 16:18:55 +03002464/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002465static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2466 unsigned int cpp,
2467 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002468{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002469 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002470
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002471 ret = intel_wm_method1(pixel_rate, cpp, latency);
2472 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002473
2474 return ret;
2475}
2476
Ville Syrjälä37126462013-08-01 16:18:55 +03002477/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002478static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2479 unsigned int htotal,
2480 unsigned int width,
2481 unsigned int cpp,
2482 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002483{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002484 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002485
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002486 ret = intel_wm_method2(pixel_rate, htotal,
2487 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002488 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002489
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002490 return ret;
2491}
2492
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002493static u32 ilk_wm_fbc(u32 pri_val, u32 horiz_pixels, u8 cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002494{
Matt Roper15126882015-12-03 11:37:40 -08002495 /*
2496 * Neither of these should be possible since this function shouldn't be
2497 * called if the CRTC is off or the plane is invisible. But let's be
2498 * extra paranoid to avoid a potential divide-by-zero if we screw up
2499 * elsewhere in the driver.
2500 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002501 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002502 return 0;
2503 if (WARN_ON(!horiz_pixels))
2504 return 0;
2505
Ville Syrjäläac484962016-01-20 21:05:26 +02002506 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002507}
2508
Imre Deak820c1982013-12-17 14:46:36 +02002509struct ilk_wm_maximums {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002510 u16 pri;
2511 u16 spr;
2512 u16 cur;
2513 u16 fbc;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002514};
2515
Ville Syrjälä37126462013-08-01 16:18:55 +03002516/*
2517 * For both WM_PIPE and WM_LP.
2518 * mem_value must be in 0.1us units.
2519 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002520static u32 ilk_compute_pri_wm(const struct intel_crtc_state *crtc_state,
2521 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002522 u32 mem_value, bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002523{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002524 u32 method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002525 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002526
Ville Syrjälä03981c62018-11-14 19:34:40 +02002527 if (mem_value == 0)
2528 return U32_MAX;
2529
Maarten Lankhorstec193642019-06-28 10:55:17 +02002530 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002531 return 0;
2532
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002533 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002534
Maarten Lankhorstec193642019-06-28 10:55:17 +02002535 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002536
2537 if (!is_lp)
2538 return method1;
2539
Maarten Lankhorstec193642019-06-28 10:55:17 +02002540 method2 = ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002541 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002542 drm_rect_width(&plane_state->uapi.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002543 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002544
2545 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002546}
2547
Ville Syrjälä37126462013-08-01 16:18:55 +03002548/*
2549 * For both WM_PIPE and WM_LP.
2550 * mem_value must be in 0.1us units.
2551 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002552static u32 ilk_compute_spr_wm(const struct intel_crtc_state *crtc_state,
2553 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002554 u32 mem_value)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002555{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002556 u32 method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002557 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002558
Ville Syrjälä03981c62018-11-14 19:34:40 +02002559 if (mem_value == 0)
2560 return U32_MAX;
2561
Maarten Lankhorstec193642019-06-28 10:55:17 +02002562 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002563 return 0;
2564
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002565 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002566
Maarten Lankhorstec193642019-06-28 10:55:17 +02002567 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
2568 method2 = ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002569 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002570 drm_rect_width(&plane_state->uapi.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002571 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002572 return min(method1, method2);
2573}
2574
Ville Syrjälä37126462013-08-01 16:18:55 +03002575/*
2576 * For both WM_PIPE and WM_LP.
2577 * mem_value must be in 0.1us units.
2578 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002579static u32 ilk_compute_cur_wm(const struct intel_crtc_state *crtc_state,
2580 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002581 u32 mem_value)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002582{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002583 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002584
Ville Syrjälä03981c62018-11-14 19:34:40 +02002585 if (mem_value == 0)
2586 return U32_MAX;
2587
Maarten Lankhorstec193642019-06-28 10:55:17 +02002588 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002589 return 0;
2590
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002591 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002592
Maarten Lankhorstec193642019-06-28 10:55:17 +02002593 return ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002594 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002595 drm_rect_width(&plane_state->uapi.dst),
Maarten Lankhorst3a612762019-10-04 13:34:54 +02002596 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002597}
2598
Paulo Zanonicca32e92013-05-31 11:45:06 -03002599/* Only for WM_LP. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002600static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
2601 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002602 u32 pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002603{
Ville Syrjälä83054942016-11-18 21:53:00 +02002604 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002605
Maarten Lankhorstec193642019-06-28 10:55:17 +02002606 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002607 return 0;
2608
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002609 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002610
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002611 return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst),
2612 cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002613}
2614
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002615static unsigned int
2616ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002617{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002618 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002619 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002620 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002621 return 768;
2622 else
2623 return 512;
2624}
2625
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002626static unsigned int
2627ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2628 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002629{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002630 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002631 /* BDW primary/sprite plane watermarks */
2632 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002633 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002634 /* IVB/HSW primary/sprite plane watermarks */
2635 return level == 0 ? 127 : 1023;
2636 else if (!is_sprite)
2637 /* ILK/SNB primary plane watermarks */
2638 return level == 0 ? 127 : 511;
2639 else
2640 /* ILK/SNB sprite plane watermarks */
2641 return level == 0 ? 63 : 255;
2642}
2643
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002644static unsigned int
2645ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002646{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002647 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002648 return level == 0 ? 63 : 255;
2649 else
2650 return level == 0 ? 31 : 63;
2651}
2652
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002653static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002654{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002655 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002656 return 31;
2657 else
2658 return 15;
2659}
2660
Ville Syrjälä158ae642013-08-07 13:28:19 +03002661/* Calculate the maximum primary/sprite plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002662static unsigned int ilk_plane_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002663 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002664 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002665 enum intel_ddb_partitioning ddb_partitioning,
2666 bool is_sprite)
2667{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002668 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002669
2670 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002671 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002672 return 0;
2673
2674 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002675 if (level == 0 || config->num_pipes_active > 1) {
Jani Nikula24977872019-09-11 12:26:08 +03002676 fifo_size /= INTEL_NUM_PIPES(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002677
2678 /*
2679 * For some reason the non self refresh
2680 * FIFO size is only half of the self
2681 * refresh FIFO size on ILK/SNB.
2682 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002683 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002684 fifo_size /= 2;
2685 }
2686
Ville Syrjälä240264f2013-08-07 13:29:12 +03002687 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002688 /* level 0 is always calculated with 1:1 split */
2689 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2690 if (is_sprite)
2691 fifo_size *= 5;
2692 fifo_size /= 6;
2693 } else {
2694 fifo_size /= 2;
2695 }
2696 }
2697
2698 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002699 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002700}
2701
2702/* Calculate the maximum cursor plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002703static unsigned int ilk_cursor_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002704 int level,
2705 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002706{
2707 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002708 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002709 return 64;
2710
2711 /* otherwise just report max that registers can hold */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002712 return ilk_cursor_wm_reg_max(dev_priv, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002713}
2714
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002715static void ilk_compute_wm_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002716 int level,
2717 const struct intel_wm_config *config,
2718 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002719 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002720{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002721 max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false);
2722 max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true);
2723 max->cur = ilk_cursor_wm_max(dev_priv, level, config);
2724 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002725}
2726
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002727static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002728 int level,
2729 struct ilk_wm_maximums *max)
2730{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002731 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2732 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2733 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2734 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002735}
2736
Ville Syrjäläd9395652013-10-09 19:18:10 +03002737static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002738 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002739 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002740{
2741 bool ret;
2742
2743 /* already determined to be invalid? */
2744 if (!result->enable)
2745 return false;
2746
2747 result->enable = result->pri_val <= max->pri &&
2748 result->spr_val <= max->spr &&
2749 result->cur_val <= max->cur;
2750
2751 ret = result->enable;
2752
2753 /*
2754 * HACK until we can pre-compute everything,
2755 * and thus fail gracefully if LP0 watermarks
2756 * are exceeded...
2757 */
2758 if (level == 0 && !result->enable) {
2759 if (result->pri_val > max->pri)
2760 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2761 level, result->pri_val, max->pri);
2762 if (result->spr_val > max->spr)
2763 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2764 level, result->spr_val, max->spr);
2765 if (result->cur_val > max->cur)
2766 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2767 level, result->cur_val, max->cur);
2768
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002769 result->pri_val = min_t(u32, result->pri_val, max->pri);
2770 result->spr_val = min_t(u32, result->spr_val, max->spr);
2771 result->cur_val = min_t(u32, result->cur_val, max->cur);
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002772 result->enable = true;
2773 }
2774
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002775 return ret;
2776}
2777
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002778static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Matt Roper43d59ed2015-09-24 15:53:07 -07002779 const struct intel_crtc *intel_crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002780 int level,
Maarten Lankhorstec193642019-06-28 10:55:17 +02002781 struct intel_crtc_state *crtc_state,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002782 const struct intel_plane_state *pristate,
2783 const struct intel_plane_state *sprstate,
2784 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002785 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002786{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002787 u16 pri_latency = dev_priv->wm.pri_latency[level];
2788 u16 spr_latency = dev_priv->wm.spr_latency[level];
2789 u16 cur_latency = dev_priv->wm.cur_latency[level];
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002790
2791 /* WM1+ latency values stored in 0.5us units */
2792 if (level > 0) {
2793 pri_latency *= 5;
2794 spr_latency *= 5;
2795 cur_latency *= 5;
2796 }
2797
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002798 if (pristate) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02002799 result->pri_val = ilk_compute_pri_wm(crtc_state, pristate,
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002800 pri_latency, level);
Maarten Lankhorstec193642019-06-28 10:55:17 +02002801 result->fbc_val = ilk_compute_fbc_wm(crtc_state, pristate, result->pri_val);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002802 }
2803
2804 if (sprstate)
Maarten Lankhorstec193642019-06-28 10:55:17 +02002805 result->spr_val = ilk_compute_spr_wm(crtc_state, sprstate, spr_latency);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002806
2807 if (curstate)
Maarten Lankhorstec193642019-06-28 10:55:17 +02002808 result->cur_val = ilk_compute_cur_wm(crtc_state, curstate, cur_latency);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002809
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002810 result->enable = true;
2811}
2812
Ville Syrjäläbb726512016-10-31 22:37:24 +02002813static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002814 u16 wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002815{
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002816 struct intel_uncore *uncore = &dev_priv->uncore;
2817
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002818 if (INTEL_GEN(dev_priv) >= 9) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002819 u32 val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002820 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002821 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002822
2823 /* read the first set of memory latencies[0:3] */
2824 val = 0; /* data0 to be programmed to 0 for first set */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002825 ret = sandybridge_pcode_read(dev_priv,
2826 GEN9_PCODE_READ_MEM_LATENCY,
Ville Syrjäläd284d512019-05-21 19:40:24 +03002827 &val, NULL);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002828
2829 if (ret) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002830 drm_err(&dev_priv->drm,
2831 "SKL Mailbox read error = %d\n", ret);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002832 return;
2833 }
2834
2835 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2836 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2837 GEN9_MEM_LATENCY_LEVEL_MASK;
2838 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2839 GEN9_MEM_LATENCY_LEVEL_MASK;
2840 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2841 GEN9_MEM_LATENCY_LEVEL_MASK;
2842
2843 /* read the second set of memory latencies[4:7] */
2844 val = 1; /* data0 to be programmed to 1 for second set */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002845 ret = sandybridge_pcode_read(dev_priv,
2846 GEN9_PCODE_READ_MEM_LATENCY,
Ville Syrjäläd284d512019-05-21 19:40:24 +03002847 &val, NULL);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002848 if (ret) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002849 drm_err(&dev_priv->drm,
2850 "SKL Mailbox read error = %d\n", ret);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002851 return;
2852 }
2853
2854 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2855 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2856 GEN9_MEM_LATENCY_LEVEL_MASK;
2857 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2858 GEN9_MEM_LATENCY_LEVEL_MASK;
2859 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2860 GEN9_MEM_LATENCY_LEVEL_MASK;
2861
Vandana Kannan367294b2014-11-04 17:06:46 +00002862 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002863 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2864 * need to be disabled. We make sure to sanitize the values out
2865 * of the punit to satisfy this requirement.
2866 */
2867 for (level = 1; level <= max_level; level++) {
2868 if (wm[level] == 0) {
2869 for (i = level + 1; i <= max_level; i++)
2870 wm[i] = 0;
2871 break;
2872 }
2873 }
2874
2875 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002876 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002877 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002878 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002879 * to add 2us to the various latency levels we retrieve from the
2880 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002881 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002882 if (wm[0] == 0) {
2883 wm[0] += 2;
2884 for (level = 1; level <= max_level; level++) {
2885 if (wm[level] == 0)
2886 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002887 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002888 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002889 }
2890
Mahesh Kumar86b59282018-08-31 16:39:42 +05302891 /*
2892 * WA Level-0 adjustment for 16GB DIMMs: SKL+
2893 * If we could not get dimm info enable this WA to prevent from
2894 * any underrun. If not able to get Dimm info assume 16GB dimm
2895 * to avoid any underrun.
2896 */
Ville Syrjälä5d6f36b2018-10-23 21:21:02 +03002897 if (dev_priv->dram_info.is_16gb_dimm)
Mahesh Kumar86b59282018-08-31 16:39:42 +05302898 wm[0] += 1;
2899
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002900 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002901 u64 sskpd = intel_uncore_read64(uncore, MCH_SSKPD);
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002902
2903 wm[0] = (sskpd >> 56) & 0xFF;
2904 if (wm[0] == 0)
2905 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002906 wm[1] = (sskpd >> 4) & 0xFF;
2907 wm[2] = (sskpd >> 12) & 0xFF;
2908 wm[3] = (sskpd >> 20) & 0x1FF;
2909 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002910 } else if (INTEL_GEN(dev_priv) >= 6) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002911 u32 sskpd = intel_uncore_read(uncore, MCH_SSKPD);
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002912
2913 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2914 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2915 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2916 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002917 } else if (INTEL_GEN(dev_priv) >= 5) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002918 u32 mltr = intel_uncore_read(uncore, MLTR_ILK);
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002919
2920 /* ILK primary LP0 latency is 700 ns */
2921 wm[0] = 7;
2922 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2923 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002924 } else {
2925 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002926 }
2927}
2928
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002929static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002930 u16 wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002931{
2932 /* ILK sprite LP0 latency is 1300 ns */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002933 if (IS_GEN(dev_priv, 5))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002934 wm[0] = 13;
2935}
2936
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002937static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002938 u16 wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002939{
2940 /* ILK cursor LP0 latency is 1300 ns */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002941 if (IS_GEN(dev_priv, 5))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002942 wm[0] = 13;
Ville Syrjälä53615a52013-08-01 16:18:50 +03002943}
2944
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002945int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002946{
2947 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002948 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002949 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002950 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002951 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002952 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002953 return 3;
2954 else
2955 return 2;
2956}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002957
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002958static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002959 const char *name,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002960 const u16 wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002961{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002962 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002963
2964 for (level = 0; level <= max_level; level++) {
2965 unsigned int latency = wm[level];
2966
2967 if (latency == 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002968 drm_dbg_kms(&dev_priv->drm,
2969 "%s WM%d latency not provided\n",
2970 name, level);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002971 continue;
2972 }
2973
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002974 /*
2975 * - latencies are in us on gen9.
2976 * - before then, WM1+ latency values are in 0.5us units
2977 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002978 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002979 latency *= 10;
2980 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002981 latency *= 5;
2982
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002983 drm_dbg_kms(&dev_priv->drm,
2984 "%s WM%d latency %u (%u.%u usec)\n", name, level,
2985 wm[level], latency / 10, latency % 10);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002986 }
2987}
2988
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002989static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002990 u16 wm[5], u16 min)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002991{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002992 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03002993
2994 if (wm[0] >= min)
2995 return false;
2996
2997 wm[0] = max(wm[0], min);
2998 for (level = 1; level <= max_level; level++)
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002999 wm[level] = max_t(u16, wm[level], DIV_ROUND_UP(min, 5));
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003000
3001 return true;
3002}
3003
Ville Syrjäläbb726512016-10-31 22:37:24 +02003004static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003005{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003006 bool changed;
3007
3008 /*
3009 * The BIOS provided WM memory latency values are often
3010 * inadequate for high resolution displays. Adjust them.
3011 */
3012 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
3013 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
3014 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
3015
3016 if (!changed)
3017 return;
3018
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003019 drm_dbg_kms(&dev_priv->drm,
3020 "WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003021 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3022 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3023 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003024}
3025
Ville Syrjälä03981c62018-11-14 19:34:40 +02003026static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv)
3027{
3028 /*
3029 * On some SNB machines (Thinkpad X220 Tablet at least)
3030 * LP3 usage can cause vblank interrupts to be lost.
3031 * The DEIIR bit will go high but it looks like the CPU
3032 * never gets interrupted.
3033 *
3034 * It's not clear whether other interrupt source could
3035 * be affected or if this is somehow limited to vblank
3036 * interrupts only. To play it safe we disable LP3
3037 * watermarks entirely.
3038 */
3039 if (dev_priv->wm.pri_latency[3] == 0 &&
3040 dev_priv->wm.spr_latency[3] == 0 &&
3041 dev_priv->wm.cur_latency[3] == 0)
3042 return;
3043
3044 dev_priv->wm.pri_latency[3] = 0;
3045 dev_priv->wm.spr_latency[3] = 0;
3046 dev_priv->wm.cur_latency[3] = 0;
3047
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003048 drm_dbg_kms(&dev_priv->drm,
3049 "LP3 watermarks disabled due to potential for lost interrupts\n");
Ville Syrjälä03981c62018-11-14 19:34:40 +02003050 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3051 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3052 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
3053}
3054
Ville Syrjäläbb726512016-10-31 22:37:24 +02003055static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03003056{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003057 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003058
3059 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
3060 sizeof(dev_priv->wm.pri_latency));
3061 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
3062 sizeof(dev_priv->wm.pri_latency));
3063
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003064 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003065 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003066
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003067 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3068 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3069 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003070
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003071 if (IS_GEN(dev_priv, 6)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02003072 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä03981c62018-11-14 19:34:40 +02003073 snb_wm_lp3_irq_quirk(dev_priv);
3074 }
Ville Syrjälä53615a52013-08-01 16:18:50 +03003075}
3076
Ville Syrjäläbb726512016-10-31 22:37:24 +02003077static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003078{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003079 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003080 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003081}
3082
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003083static bool ilk_validate_pipe_wm(const struct drm_i915_private *dev_priv,
Matt Ropered4a6a72016-02-23 17:20:13 -08003084 struct intel_pipe_wm *pipe_wm)
3085{
3086 /* LP0 watermark maximums depend on this pipe alone */
3087 const struct intel_wm_config config = {
3088 .num_pipes_active = 1,
3089 .sprites_enabled = pipe_wm->sprites_enabled,
3090 .sprites_scaled = pipe_wm->sprites_scaled,
3091 };
3092 struct ilk_wm_maximums max;
3093
3094 /* LP0 watermarks always use 1/2 DDB partitioning */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003095 ilk_compute_wm_maximums(dev_priv, 0, &config, INTEL_DDB_PART_1_2, &max);
Matt Ropered4a6a72016-02-23 17:20:13 -08003096
3097 /* At least LP0 must be valid */
3098 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003099 drm_dbg_kms(&dev_priv->drm, "LP0 watermark invalid\n");
Matt Ropered4a6a72016-02-23 17:20:13 -08003100 return false;
3101 }
3102
3103 return true;
3104}
3105
Matt Roper261a27d2015-10-08 15:28:25 -07003106/* Compute new watermarks for the pipe */
Maarten Lankhorstec193642019-06-28 10:55:17 +02003107static int ilk_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Matt Roper261a27d2015-10-08 15:28:25 -07003108{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003109 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
3110 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->uapi.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003111 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02003112 struct intel_plane *plane;
3113 const struct intel_plane_state *plane_state;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003114 const struct intel_plane_state *pristate = NULL;
3115 const struct intel_plane_state *sprstate = NULL;
3116 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003117 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003118 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003119
Maarten Lankhorstec193642019-06-28 10:55:17 +02003120 pipe_wm = &crtc_state->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003121
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02003122 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
3123 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
3124 pristate = plane_state;
3125 else if (plane->base.type == DRM_PLANE_TYPE_OVERLAY)
3126 sprstate = plane_state;
3127 else if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
3128 curstate = plane_state;
Matt Roper43d59ed2015-09-24 15:53:07 -07003129 }
3130
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003131 pipe_wm->pipe_enabled = crtc_state->hw.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003132 if (sprstate) {
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01003133 pipe_wm->sprites_enabled = sprstate->uapi.visible;
3134 pipe_wm->sprites_scaled = sprstate->uapi.visible &&
3135 (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 ||
3136 drm_rect_height(&sprstate->uapi.dst) != drm_rect_height(&sprstate->uapi.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003137 }
3138
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003139 usable_level = max_level;
3140
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003141 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003142 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003143 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003144
3145 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003146 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003147 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003148
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003149 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Maarten Lankhorstec193642019-06-28 10:55:17 +02003150 ilk_compute_wm_level(dev_priv, intel_crtc, 0, crtc_state,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003151 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003152
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003153 if (!ilk_validate_pipe_wm(dev_priv, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003154 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003155
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003156 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003157
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003158 for (level = 1; level <= usable_level; level++) {
3159 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003160
Maarten Lankhorstec193642019-06-28 10:55:17 +02003161 ilk_compute_wm_level(dev_priv, intel_crtc, level, crtc_state,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003162 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003163
3164 /*
3165 * Disable any watermark level that exceeds the
3166 * register maximums since such watermarks are
3167 * always invalid.
3168 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003169 if (!ilk_validate_wm_level(level, &max, wm)) {
3170 memset(wm, 0, sizeof(*wm));
3171 break;
3172 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003173 }
3174
Matt Roper86c8bbb2015-09-24 15:53:16 -07003175 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003176}
3177
3178/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003179 * Build a set of 'intermediate' watermark values that satisfy both the old
3180 * state and the new state. These can be programmed to the hardware
3181 * immediately.
3182 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003183static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08003184{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003185 struct intel_crtc *intel_crtc = to_intel_crtc(newstate->uapi.crtc);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003186 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Matt Ropere8f1f022016-05-12 07:05:55 -07003187 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003188 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003189 to_intel_atomic_state(newstate->uapi.state);
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003190 const struct intel_crtc_state *oldstate =
3191 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3192 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003193 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08003194
3195 /*
3196 * Start with the final, target watermarks, then combine with the
3197 * currently active watermarks to get values that are safe both before
3198 * and after the vblank.
3199 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003200 *a = newstate->wm.ilk.optimal;
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003201 if (!newstate->hw.active || drm_atomic_crtc_needs_modeset(&newstate->uapi) ||
Ville Syrjäläf255c622018-11-08 17:10:13 +02003202 intel_state->skip_intermediate_wm)
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003203 return 0;
3204
Matt Ropered4a6a72016-02-23 17:20:13 -08003205 a->pipe_enabled |= b->pipe_enabled;
3206 a->sprites_enabled |= b->sprites_enabled;
3207 a->sprites_scaled |= b->sprites_scaled;
3208
3209 for (level = 0; level <= max_level; level++) {
3210 struct intel_wm_level *a_wm = &a->wm[level];
3211 const struct intel_wm_level *b_wm = &b->wm[level];
3212
3213 a_wm->enable &= b_wm->enable;
3214 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3215 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3216 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3217 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3218 }
3219
3220 /*
3221 * We need to make sure that these merged watermark values are
3222 * actually a valid configuration themselves. If they're not,
3223 * there's no safe way to transition from the old state to
3224 * the new state, so we need to fail the atomic transaction.
3225 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003226 if (!ilk_validate_pipe_wm(dev_priv, a))
Matt Ropered4a6a72016-02-23 17:20:13 -08003227 return -EINVAL;
3228
3229 /*
3230 * If our intermediate WM are identical to the final WM, then we can
3231 * omit the post-vblank programming; only update if it's different.
3232 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003233 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3234 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003235
3236 return 0;
3237}
3238
3239/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003240 * Merge the watermarks from all active pipes for a specific level.
3241 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003242static void ilk_merge_wm_level(struct drm_i915_private *dev_priv,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003243 int level,
3244 struct intel_wm_level *ret_wm)
3245{
3246 const struct intel_crtc *intel_crtc;
3247
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003248 ret_wm->enable = true;
3249
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003250 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003251 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003252 const struct intel_wm_level *wm = &active->wm[level];
3253
3254 if (!active->pipe_enabled)
3255 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003256
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003257 /*
3258 * The watermark values may have been used in the past,
3259 * so we must maintain them in the registers for some
3260 * time even if the level is now disabled.
3261 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003262 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003263 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003264
3265 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3266 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3267 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3268 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3269 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003270}
3271
3272/*
3273 * Merge all low power watermarks for all active pipes.
3274 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003275static void ilk_wm_merge(struct drm_i915_private *dev_priv,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003276 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003277 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003278 struct intel_pipe_wm *merged)
3279{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003280 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003281 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003282
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003283 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003284 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003285 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003286 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003287
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003288 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003289 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003290
3291 /* merge each WM1+ level */
3292 for (level = 1; level <= max_level; level++) {
3293 struct intel_wm_level *wm = &merged->wm[level];
3294
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003295 ilk_merge_wm_level(dev_priv, level, wm);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003296
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003297 if (level > last_enabled_level)
3298 wm->enable = false;
3299 else if (!ilk_validate_wm_level(level, max, wm))
3300 /* make sure all following levels get disabled */
3301 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003302
3303 /*
3304 * The spec says it is preferred to disable
3305 * FBC WMs instead of disabling a WM level.
3306 */
3307 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003308 if (wm->enable)
3309 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003310 wm->fbc_val = 0;
3311 }
3312 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003313
3314 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3315 /*
3316 * FIXME this is racy. FBC might get enabled later.
3317 * What we should check here is whether FBC can be
3318 * enabled sometime later.
3319 */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003320 if (IS_GEN(dev_priv, 5) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003321 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003322 for (level = 2; level <= max_level; level++) {
3323 struct intel_wm_level *wm = &merged->wm[level];
3324
3325 wm->enable = false;
3326 }
3327 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003328}
3329
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003330static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3331{
3332 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3333 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3334}
3335
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003336/* The value we need to program into the WM_LPx latency field */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003337static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv,
3338 int level)
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003339{
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003340 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003341 return 2 * level;
3342 else
3343 return dev_priv->wm.pri_latency[level];
3344}
3345
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003346static void ilk_compute_wm_results(struct drm_i915_private *dev_priv,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003347 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003348 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003349 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003350{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003351 struct intel_crtc *intel_crtc;
3352 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003353
Ville Syrjälä0362c782013-10-09 19:17:57 +03003354 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003355 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003356
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003357 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003358 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003359 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003360
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003361 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003362
Ville Syrjälä0362c782013-10-09 19:17:57 +03003363 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003364
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003365 /*
3366 * Maintain the watermark values even if the level is
3367 * disabled. Doing otherwise could cause underruns.
3368 */
3369 results->wm_lp[wm_lp - 1] =
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003370 (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003371 (r->pri_val << WM1_LP_SR_SHIFT) |
3372 r->cur_val;
3373
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003374 if (r->enable)
3375 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3376
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003377 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003378 results->wm_lp[wm_lp - 1] |=
3379 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3380 else
3381 results->wm_lp[wm_lp - 1] |=
3382 r->fbc_val << WM1_LP_FBC_SHIFT;
3383
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003384 /*
3385 * Always set WM1S_LP_EN when spr_val != 0, even if the
3386 * level is disabled. Doing otherwise could cause underruns.
3387 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003388 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303389 drm_WARN_ON(&dev_priv->drm, wm_lp != 1);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003390 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3391 } else
3392 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003393 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003394
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003395 /* LP0 register values */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003396 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003397 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä0560b0c2020-01-20 19:47:11 +02003398 const struct intel_pipe_wm *pipe_wm = &intel_crtc->wm.active.ilk;
3399 const struct intel_wm_level *r = &pipe_wm->wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003400
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303401 if (drm_WARN_ON(&dev_priv->drm, !r->enable))
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003402 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003403
3404 results->wm_pipe[pipe] =
3405 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3406 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3407 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003408 }
3409}
3410
Paulo Zanoni861f3382013-05-31 10:19:21 -03003411/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3412 * case both are at the same level. Prefer r1 in case they're the same. */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003413static struct intel_pipe_wm *
3414ilk_find_best_result(struct drm_i915_private *dev_priv,
3415 struct intel_pipe_wm *r1,
3416 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003417{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003418 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003419 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003420
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003421 for (level = 1; level <= max_level; level++) {
3422 if (r1->wm[level].enable)
3423 level1 = level;
3424 if (r2->wm[level].enable)
3425 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003426 }
3427
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003428 if (level1 == level2) {
3429 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003430 return r2;
3431 else
3432 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003433 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003434 return r1;
3435 } else {
3436 return r2;
3437 }
3438}
3439
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003440/* dirty bits used to track which watermarks need changes */
3441#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003442#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3443#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3444#define WM_DIRTY_FBC (1 << 24)
3445#define WM_DIRTY_DDB (1 << 25)
3446
Damien Lespiau055e3932014-08-18 13:49:10 +01003447static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003448 const struct ilk_wm_values *old,
3449 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003450{
3451 unsigned int dirty = 0;
3452 enum pipe pipe;
3453 int wm_lp;
3454
Damien Lespiau055e3932014-08-18 13:49:10 +01003455 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003456 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3457 dirty |= WM_DIRTY_PIPE(pipe);
3458 /* Must disable LP1+ watermarks too */
3459 dirty |= WM_DIRTY_LP_ALL;
3460 }
3461 }
3462
3463 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3464 dirty |= WM_DIRTY_FBC;
3465 /* Must disable LP1+ watermarks too */
3466 dirty |= WM_DIRTY_LP_ALL;
3467 }
3468
3469 if (old->partitioning != new->partitioning) {
3470 dirty |= WM_DIRTY_DDB;
3471 /* Must disable LP1+ watermarks too */
3472 dirty |= WM_DIRTY_LP_ALL;
3473 }
3474
3475 /* LP1+ watermarks already deemed dirty, no need to continue */
3476 if (dirty & WM_DIRTY_LP_ALL)
3477 return dirty;
3478
3479 /* Find the lowest numbered LP1+ watermark in need of an update... */
3480 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3481 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3482 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3483 break;
3484 }
3485
3486 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3487 for (; wm_lp <= 3; wm_lp++)
3488 dirty |= WM_DIRTY_LP(wm_lp);
3489
3490 return dirty;
3491}
3492
Ville Syrjälä8553c182013-12-05 15:51:39 +02003493static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3494 unsigned int dirty)
3495{
Imre Deak820c1982013-12-17 14:46:36 +02003496 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003497 bool changed = false;
3498
3499 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3500 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3501 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3502 changed = true;
3503 }
3504 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3505 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3506 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3507 changed = true;
3508 }
3509 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3510 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3511 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3512 changed = true;
3513 }
3514
3515 /*
3516 * Don't touch WM1S_LP_EN here.
3517 * Doing so could cause underruns.
3518 */
3519
3520 return changed;
3521}
3522
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003523/*
3524 * The spec says we shouldn't write when we don't need, because every write
3525 * causes WMs to be re-evaluated, expending some power.
3526 */
Imre Deak820c1982013-12-17 14:46:36 +02003527static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3528 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003529{
Imre Deak820c1982013-12-17 14:46:36 +02003530 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003531 unsigned int dirty;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02003532 u32 val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003533
Damien Lespiau055e3932014-08-18 13:49:10 +01003534 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003535 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003536 return;
3537
Ville Syrjälä8553c182013-12-05 15:51:39 +02003538 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003539
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003540 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003541 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003542 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003543 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003544 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003545 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3546
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003547 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003548 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003549 val = I915_READ(WM_MISC);
3550 if (results->partitioning == INTEL_DDB_PART_1_2)
3551 val &= ~WM_MISC_DATA_PARTITION_5_6;
3552 else
3553 val |= WM_MISC_DATA_PARTITION_5_6;
3554 I915_WRITE(WM_MISC, val);
3555 } else {
3556 val = I915_READ(DISP_ARB_CTL2);
3557 if (results->partitioning == INTEL_DDB_PART_1_2)
3558 val &= ~DISP_DATA_PARTITION_5_6;
3559 else
3560 val |= DISP_DATA_PARTITION_5_6;
3561 I915_WRITE(DISP_ARB_CTL2, val);
3562 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003563 }
3564
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003565 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003566 val = I915_READ(DISP_ARB_CTL);
3567 if (results->enable_fbc_wm)
3568 val &= ~DISP_FBC_WM_DIS;
3569 else
3570 val |= DISP_FBC_WM_DIS;
3571 I915_WRITE(DISP_ARB_CTL, val);
3572 }
3573
Imre Deak954911e2013-12-17 14:46:34 +02003574 if (dirty & WM_DIRTY_LP(1) &&
3575 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3576 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3577
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003578 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003579 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3580 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3581 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3582 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3583 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003584
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003585 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003586 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003587 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003588 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003589 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003590 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003591
3592 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003593}
3594
Ville Syrjälä60aca572019-11-27 21:05:51 +02003595bool ilk_disable_lp_wm(struct drm_i915_private *dev_priv)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003596{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003597 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3598}
3599
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003600u8 intel_enabled_dbuf_slices_mask(struct drm_i915_private *dev_priv)
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303601{
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003602 int i;
3603 int max_slices = INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
3604 u8 enabled_slices_mask = 0;
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303605
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003606 for (i = 0; i < max_slices; i++) {
3607 if (I915_READ(DBUF_CTL_S(i)) & DBUF_POWER_STATE)
3608 enabled_slices_mask |= BIT(i);
3609 }
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303610
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003611 return enabled_slices_mask;
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303612}
3613
Matt Roper024c9042015-09-24 15:53:11 -07003614/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003615 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3616 * so assume we'll always need it in order to avoid underruns.
3617 */
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003618static bool skl_needs_memory_bw_wa(struct drm_i915_private *dev_priv)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003619{
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003620 return IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003621}
3622
Paulo Zanoni56feca92016-09-22 18:00:28 -03003623static bool
3624intel_has_sagv(struct drm_i915_private *dev_priv)
3625{
Lucas De Marchi8ffa4392019-09-04 14:34:18 -07003626 /* HACK! */
3627 if (IS_GEN(dev_priv, 12))
3628 return false;
3629
Rodrigo Vivi1ca2b062018-10-26 13:03:17 -07003630 return (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) &&
3631 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003632}
3633
James Ausmusb068a862019-10-09 10:23:14 -07003634static void
3635skl_setup_sagv_block_time(struct drm_i915_private *dev_priv)
3636{
James Ausmusda80f042019-10-09 10:23:15 -07003637 if (INTEL_GEN(dev_priv) >= 12) {
3638 u32 val = 0;
3639 int ret;
3640
3641 ret = sandybridge_pcode_read(dev_priv,
3642 GEN12_PCODE_READ_SAGV_BLOCK_TIME_US,
3643 &val, NULL);
3644 if (!ret) {
3645 dev_priv->sagv_block_time_us = val;
3646 return;
3647 }
3648
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003649 drm_dbg(&dev_priv->drm, "Couldn't read SAGV block time!\n");
James Ausmusda80f042019-10-09 10:23:15 -07003650 } else if (IS_GEN(dev_priv, 11)) {
James Ausmusb068a862019-10-09 10:23:14 -07003651 dev_priv->sagv_block_time_us = 10;
3652 return;
3653 } else if (IS_GEN(dev_priv, 10)) {
3654 dev_priv->sagv_block_time_us = 20;
3655 return;
3656 } else if (IS_GEN(dev_priv, 9)) {
3657 dev_priv->sagv_block_time_us = 30;
3658 return;
3659 } else {
3660 MISSING_CASE(INTEL_GEN(dev_priv));
3661 }
3662
3663 /* Default to an unusable block time */
3664 dev_priv->sagv_block_time_us = -1;
3665}
3666
Lyude656d1b82016-08-17 15:55:54 -04003667/*
3668 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3669 * depending on power and performance requirements. The display engine access
3670 * to system memory is blocked during the adjustment time. Because of the
3671 * blocking time, having this enabled can cause full system hangs and/or pipe
3672 * underruns if we don't meet all of the following requirements:
3673 *
3674 * - <= 1 pipe enabled
3675 * - All planes can enable watermarks for latencies >= SAGV engine block time
3676 * - We're not using an interlaced display configuration
3677 */
3678int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003679intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003680{
3681 int ret;
3682
Paulo Zanoni56feca92016-09-22 18:00:28 -03003683 if (!intel_has_sagv(dev_priv))
3684 return 0;
3685
3686 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003687 return 0;
3688
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003689 drm_dbg_kms(&dev_priv->drm, "Enabling SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003690 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3691 GEN9_SAGV_ENABLE);
3692
Ville Syrjäläff61a972018-12-21 19:14:34 +02003693 /* We don't need to wait for SAGV when enabling */
Lyude656d1b82016-08-17 15:55:54 -04003694
3695 /*
3696 * Some skl systems, pre-release machines in particular,
Ville Syrjäläff61a972018-12-21 19:14:34 +02003697 * don't actually have SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003698 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003699 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003700 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003701 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003702 return 0;
3703 } else if (ret < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003704 drm_err(&dev_priv->drm, "Failed to enable SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003705 return ret;
3706 }
3707
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003708 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003709 return 0;
3710}
3711
Lyude656d1b82016-08-17 15:55:54 -04003712int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003713intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003714{
Imre Deakb3b8e992016-12-05 18:27:38 +02003715 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003716
Paulo Zanoni56feca92016-09-22 18:00:28 -03003717 if (!intel_has_sagv(dev_priv))
3718 return 0;
3719
3720 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003721 return 0;
3722
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003723 drm_dbg_kms(&dev_priv->drm, "Disabling SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003724 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003725 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3726 GEN9_SAGV_DISABLE,
3727 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3728 1);
Lyude656d1b82016-08-17 15:55:54 -04003729 /*
3730 * Some skl systems, pre-release machines in particular,
Ville Syrjäläff61a972018-12-21 19:14:34 +02003731 * don't actually have SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003732 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003733 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003734 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003735 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003736 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003737 } else if (ret < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003738 drm_err(&dev_priv->drm, "Failed to disable SAGV (%d)\n", ret);
Imre Deakb3b8e992016-12-05 18:27:38 +02003739 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003740 }
3741
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003742 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003743 return 0;
3744}
3745
Maarten Lankhorst855e0d62019-06-28 10:55:13 +02003746bool intel_can_enable_sagv(struct intel_atomic_state *state)
Lyude656d1b82016-08-17 15:55:54 -04003747{
Maarten Lankhorst855e0d62019-06-28 10:55:13 +02003748 struct drm_device *dev = state->base.dev;
Lyude656d1b82016-08-17 15:55:54 -04003749 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003750 struct intel_crtc *crtc;
3751 struct intel_plane *plane;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003752 struct intel_crtc_state *crtc_state;
Lyude656d1b82016-08-17 15:55:54 -04003753 enum pipe pipe;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003754 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003755
Paulo Zanoni56feca92016-09-22 18:00:28 -03003756 if (!intel_has_sagv(dev_priv))
3757 return false;
3758
Lyude656d1b82016-08-17 15:55:54 -04003759 /*
Lyude656d1b82016-08-17 15:55:54 -04003760 * If there are no active CRTCs, no additional checks need be performed
3761 */
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003762 if (hweight8(state->active_pipes) == 0)
Lyude656d1b82016-08-17 15:55:54 -04003763 return true;
Lucas De Marchida172232019-04-04 16:04:26 -07003764
3765 /*
3766 * SKL+ workaround: bspec recommends we disable SAGV when we have
3767 * more then one pipe enabled
3768 */
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003769 if (hweight8(state->active_pipes) > 1)
Lyude656d1b82016-08-17 15:55:54 -04003770 return false;
3771
3772 /* Since we're now guaranteed to only have one active CRTC... */
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03003773 pipe = ffs(state->active_pipes) - 1;
Ville Syrjälä98187832016-10-31 22:37:10 +02003774 crtc = intel_get_crtc_for_pipe(dev_priv, pipe);
Maarten Lankhorstec193642019-06-28 10:55:17 +02003775 crtc_state = to_intel_crtc_state(crtc->base.state);
Lyude656d1b82016-08-17 15:55:54 -04003776
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003777 if (crtc_state->hw.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003778 return false;
3779
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003780 for_each_intel_plane_on_crtc(dev, crtc, plane) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02003781 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02003782 &crtc_state->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003783
Lyude656d1b82016-08-17 15:55:54 -04003784 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003785 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003786 continue;
3787
3788 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003789 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003790 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003791 { }
3792
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003793 latency = dev_priv->wm.skl_latency[level];
3794
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003795 if (skl_needs_memory_bw_wa(dev_priv) &&
Ville Syrjäläbae781b2016-11-16 13:33:16 +02003796 plane->base.state->fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003797 I915_FORMAT_MOD_X_TILED)
3798 latency += 15;
3799
Lyude656d1b82016-08-17 15:55:54 -04003800 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003801 * If any of the planes on this pipe don't enable wm levels that
3802 * incur memory latencies higher than sagv_block_time_us we
Ville Syrjäläff61a972018-12-21 19:14:34 +02003803 * can't enable SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003804 */
James Ausmusb068a862019-10-09 10:23:14 -07003805 if (latency < dev_priv->sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003806 return false;
3807 }
3808
3809 return true;
3810}
3811
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003812/*
3813 * Calculate initial DBuf slice offset, based on slice size
3814 * and mask(i.e if slice size is 1024 and second slice is enabled
3815 * offset would be 1024)
3816 */
3817static unsigned int
3818icl_get_first_dbuf_slice_offset(u32 dbuf_slice_mask,
3819 u32 slice_size,
3820 u32 ddb_size)
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303821{
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003822 unsigned int offset = 0;
3823
3824 if (!dbuf_slice_mask)
3825 return 0;
3826
3827 offset = (ffs(dbuf_slice_mask) - 1) * slice_size;
3828
3829 WARN_ON(offset >= ddb_size);
3830 return offset;
3831}
3832
3833static u16 intel_get_ddb_size(struct drm_i915_private *dev_priv)
3834{
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303835 u16 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3836
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303837 drm_WARN_ON(&dev_priv->drm, ddb_size == 0);
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303838
3839 if (INTEL_GEN(dev_priv) < 11)
3840 return ddb_size - 4; /* 4 blocks for bypass path allocation */
3841
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303842 return ddb_size;
3843}
3844
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003845static u8 skl_compute_dbuf_slices(const struct intel_crtc_state *crtc_state,
3846 u32 active_pipes);
3847
Damien Lespiaub9cec072014-11-04 17:06:43 +00003848static void
Maarten Lankhorstb048a002018-10-18 13:51:30 +02003849skl_ddb_get_pipe_allocation_limits(struct drm_i915_private *dev_priv,
Maarten Lankhorstec193642019-06-28 10:55:17 +02003850 const struct intel_crtc_state *crtc_state,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003851 const u64 total_data_rate,
Matt Roperc107acf2016-05-12 07:06:01 -07003852 struct skl_ddb_entry *alloc, /* out */
3853 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003854{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003855 struct drm_atomic_state *state = crtc_state->uapi.state;
Matt Roperc107acf2016-05-12 07:06:01 -07003856 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003857 struct drm_crtc *for_crtc = crtc_state->uapi.crtc;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003858 const struct intel_crtc *crtc;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003859 u32 pipe_width = 0, total_width_in_range = 0, width_before_pipe_in_range = 0;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303860 enum pipe for_pipe = to_intel_crtc(for_crtc)->pipe;
3861 u16 ddb_size;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003862 u32 ddb_range_size;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303863 u32 i;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003864 u32 dbuf_slice_mask;
3865 u32 active_pipes;
3866 u32 offset;
3867 u32 slice_size;
3868 u32 total_slice_mask;
3869 u32 start, end;
Matt Roperc107acf2016-05-12 07:06:01 -07003870
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303871 if (drm_WARN_ON(&dev_priv->drm, !state) || !crtc_state->hw.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003872 alloc->start = 0;
3873 alloc->end = 0;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003874 *num_active = hweight8(dev_priv->active_pipes);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003875 return;
3876 }
3877
Matt Ropera6d3460e2016-05-12 07:06:04 -07003878 if (intel_state->active_pipe_changes)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003879 active_pipes = intel_state->active_pipes;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003880 else
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003881 active_pipes = dev_priv->active_pipes;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003882
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003883 *num_active = hweight8(active_pipes);
3884
3885 ddb_size = intel_get_ddb_size(dev_priv);
3886
3887 slice_size = ddb_size / INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003888
Matt Roperc107acf2016-05-12 07:06:01 -07003889 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303890 * If the state doesn't change the active CRTC's or there is no
3891 * modeset request, then there's no need to recalculate;
3892 * the existing pipe allocation limits should remain unchanged.
3893 * Note that we're safe from racing commits since any racing commit
3894 * that changes the active CRTC list or do modeset would need to
3895 * grab _all_ crtc locks, including the one we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003896 */
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303897 if (!intel_state->active_pipe_changes && !intel_state->modeset) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003898 /*
3899 * alloc may be cleared by clear_intel_crtc_state,
3900 * copy from old state to be sure
3901 */
3902 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003903 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003904 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07003905
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303906 /*
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003907 * Get allowed DBuf slices for correspondent pipe and platform.
3908 */
3909 dbuf_slice_mask = skl_compute_dbuf_slices(crtc_state, active_pipes);
3910
3911 DRM_DEBUG_KMS("DBuf slice mask %x pipe %c active pipes %x\n",
3912 dbuf_slice_mask,
3913 pipe_name(for_pipe), active_pipes);
3914
3915 /*
3916 * Figure out at which DBuf slice we start, i.e if we start at Dbuf S2
3917 * and slice size is 1024, the offset would be 1024
3918 */
3919 offset = icl_get_first_dbuf_slice_offset(dbuf_slice_mask,
3920 slice_size, ddb_size);
3921
3922 /*
3923 * Figure out total size of allowed DBuf slices, which is basically
3924 * a number of allowed slices for that pipe multiplied by slice size.
3925 * Inside of this
3926 * range ddb entries are still allocated in proportion to display width.
3927 */
3928 ddb_range_size = hweight8(dbuf_slice_mask) * slice_size;
3929
3930 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303931 * Watermark/ddb requirement highly depends upon width of the
3932 * framebuffer, So instead of allocating DDB equally among pipes
3933 * distribute DDB based on resolution/width of the display.
3934 */
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003935 total_slice_mask = dbuf_slice_mask;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003936 for_each_new_intel_crtc_in_state(intel_state, crtc, crtc_state, i) {
3937 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003938 &crtc_state->hw.adjusted_mode;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003939 enum pipe pipe = crtc->pipe;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303940 int hdisplay, vdisplay;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003941 u32 pipe_dbuf_slice_mask;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303942
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003943 if (!crtc_state->hw.active)
3944 continue;
3945
3946 pipe_dbuf_slice_mask = skl_compute_dbuf_slices(crtc_state,
3947 active_pipes);
3948
3949 /*
3950 * According to BSpec pipe can share one dbuf slice with another
3951 * pipes or pipe can use multiple dbufs, in both cases we
3952 * account for other pipes only if they have exactly same mask.
3953 * However we need to account how many slices we should enable
3954 * in total.
3955 */
3956 total_slice_mask |= pipe_dbuf_slice_mask;
3957
3958 /*
3959 * Do not account pipes using other slice sets
3960 * luckily as of current BSpec slice sets do not partially
3961 * intersect(pipes share either same one slice or same slice set
3962 * i.e no partial intersection), so it is enough to check for
3963 * equality for now.
3964 */
3965 if (dbuf_slice_mask != pipe_dbuf_slice_mask)
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303966 continue;
3967
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303968 drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003969
3970 total_width_in_range += hdisplay;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303971
3972 if (pipe < for_pipe)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003973 width_before_pipe_in_range += hdisplay;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303974 else if (pipe == for_pipe)
3975 pipe_width = hdisplay;
3976 }
3977
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003978 /*
3979 * FIXME: For now we always enable slice S1 as per
3980 * the Bspec display initialization sequence.
3981 */
3982 intel_state->enabled_dbuf_slices_mask = total_slice_mask | BIT(DBUF_S1);
3983
3984 start = ddb_range_size * width_before_pipe_in_range / total_width_in_range;
3985 end = ddb_range_size *
3986 (width_before_pipe_in_range + pipe_width) / total_width_in_range;
3987
3988 alloc->start = offset + start;
3989 alloc->end = offset + end;
3990
3991 DRM_DEBUG_KMS("Pipe %d ddb %d-%d\n", for_pipe,
3992 alloc->start, alloc->end);
3993 DRM_DEBUG_KMS("Enabled ddb slices mask %x num supported %d\n",
3994 intel_state->enabled_dbuf_slices_mask,
3995 INTEL_INFO(dev_priv)->num_supported_dbuf_slices);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003996}
3997
Ville Syrjälädf331de2019-03-19 18:03:11 +02003998static int skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
3999 int width, const struct drm_format_info *format,
4000 u64 modifier, unsigned int rotation,
4001 u32 plane_pixel_rate, struct skl_wm_params *wp,
4002 int color_plane);
Maarten Lankhorstec193642019-06-28 10:55:17 +02004003static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
Ville Syrjälädf331de2019-03-19 18:03:11 +02004004 int level,
4005 const struct skl_wm_params *wp,
4006 const struct skl_wm_level *result_prev,
4007 struct skl_wm_level *result /* out */);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004008
Ville Syrjälädf331de2019-03-19 18:03:11 +02004009static unsigned int
4010skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
4011 int num_active)
4012{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004013 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004014 int level, max_level = ilk_wm_max_level(dev_priv);
4015 struct skl_wm_level wm = {};
4016 int ret, min_ddb_alloc = 0;
4017 struct skl_wm_params wp;
4018
4019 ret = skl_compute_wm_params(crtc_state, 256,
4020 drm_format_info(DRM_FORMAT_ARGB8888),
4021 DRM_FORMAT_MOD_LINEAR,
4022 DRM_MODE_ROTATE_0,
4023 crtc_state->pixel_rate, &wp, 0);
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304024 drm_WARN_ON(&dev_priv->drm, ret);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004025
4026 for (level = 0; level <= max_level; level++) {
Ville Syrjälä6086e472019-03-21 19:51:28 +02004027 skl_compute_plane_wm(crtc_state, level, &wp, &wm, &wm);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004028 if (wm.min_ddb_alloc == U16_MAX)
4029 break;
4030
4031 min_ddb_alloc = wm.min_ddb_alloc;
4032 }
4033
4034 return max(num_active == 1 ? 32 : 8, min_ddb_alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004035}
4036
Mahesh Kumar37cde112018-04-26 19:55:17 +05304037static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv,
4038 struct skl_ddb_entry *entry, u32 reg)
Damien Lespiaua269c582014-11-04 17:06:49 +00004039{
Mahesh Kumar37cde112018-04-26 19:55:17 +05304040
Ville Syrjäläd7e449a2019-02-05 22:50:56 +02004041 entry->start = reg & DDB_ENTRY_MASK;
4042 entry->end = (reg >> DDB_ENTRY_END_SHIFT) & DDB_ENTRY_MASK;
Mahesh Kumar37cde112018-04-26 19:55:17 +05304043
Damien Lespiau16160e32014-11-04 17:06:53 +00004044 if (entry->end)
4045 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00004046}
4047
Mahesh Kumarddf34312018-04-09 09:11:03 +05304048static void
4049skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv,
4050 const enum pipe pipe,
4051 const enum plane_id plane_id,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004052 struct skl_ddb_entry *ddb_y,
4053 struct skl_ddb_entry *ddb_uv)
Mahesh Kumarddf34312018-04-09 09:11:03 +05304054{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004055 u32 val, val2;
4056 u32 fourcc = 0;
Mahesh Kumarddf34312018-04-09 09:11:03 +05304057
4058 /* Cursor doesn't support NV12/planar, so no extra calculation needed */
4059 if (plane_id == PLANE_CURSOR) {
4060 val = I915_READ(CUR_BUF_CFG(pipe));
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004061 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304062 return;
4063 }
4064
4065 val = I915_READ(PLANE_CTL(pipe, plane_id));
4066
4067 /* No DDB allocated for disabled planes */
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004068 if (val & PLANE_CTL_ENABLE)
4069 fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK,
4070 val & PLANE_CTL_ORDER_RGBX,
4071 val & PLANE_CTL_ALPHA_MASK);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304072
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004073 if (INTEL_GEN(dev_priv) >= 11) {
4074 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
4075 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4076 } else {
4077 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
Paulo Zanoni12a6c932018-07-31 17:46:14 -07004078 val2 = I915_READ(PLANE_NV12_BUF_CFG(pipe, plane_id));
Mahesh Kumarddf34312018-04-09 09:11:03 +05304079
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004080 if (fourcc &&
4081 drm_format_info_is_yuv_semiplanar(drm_format_info(fourcc)))
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004082 swap(val, val2);
4083
4084 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4085 skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304086 }
4087}
4088
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004089void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc,
4090 struct skl_ddb_entry *ddb_y,
4091 struct skl_ddb_entry *ddb_uv)
4092{
4093 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4094 enum intel_display_power_domain power_domain;
4095 enum pipe pipe = crtc->pipe;
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004096 intel_wakeref_t wakeref;
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004097 enum plane_id plane_id;
4098
4099 power_domain = POWER_DOMAIN_PIPE(pipe);
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004100 wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain);
4101 if (!wakeref)
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004102 return;
4103
4104 for_each_plane_id_on_crtc(crtc, plane_id)
4105 skl_ddb_get_hw_plane_state(dev_priv, pipe,
4106 plane_id,
4107 &ddb_y[plane_id],
4108 &ddb_uv[plane_id]);
4109
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004110 intel_display_power_put(dev_priv, power_domain, wakeref);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004111}
4112
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004113void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv)
Damien Lespiaua269c582014-11-04 17:06:49 +00004114{
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02004115 dev_priv->enabled_dbuf_slices_mask =
4116 intel_enabled_dbuf_slices_mask(dev_priv);
Damien Lespiaua269c582014-11-04 17:06:49 +00004117}
4118
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004119/*
4120 * Determines the downscale amount of a plane for the purposes of watermark calculations.
4121 * The bspec defines downscale amount as:
4122 *
4123 * """
4124 * Horizontal down scale amount = maximum[1, Horizontal source size /
4125 * Horizontal destination size]
4126 * Vertical down scale amount = maximum[1, Vertical source size /
4127 * Vertical destination size]
4128 * Total down scale amount = Horizontal down scale amount *
4129 * Vertical down scale amount
4130 * """
4131 *
4132 * Return value is provided in 16.16 fixed point form to retain fractional part.
4133 * Caller should take care of dividing & rounding off the value.
4134 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304135static uint_fixed_16_16_t
Maarten Lankhorstec193642019-06-28 10:55:17 +02004136skl_plane_downscale_amount(const struct intel_crtc_state *crtc_state,
4137 const struct intel_plane_state *plane_state)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004138{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004139 u32 src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304140 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
4141 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004142
Maarten Lankhorstec193642019-06-28 10:55:17 +02004143 if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304144 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004145
Maarten Lankhorst3a612762019-10-04 13:34:54 +02004146 /*
4147 * Src coordinates are already rotated by 270 degrees for
4148 * the 90/270 degree plane rotation cases (to match the
4149 * GTT mapping), hence no need to account for rotation here.
4150 *
4151 * n.b., src is 16.16 fixed point, dst is whole integer.
4152 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004153 src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
4154 src_h = drm_rect_height(&plane_state->uapi.src) >> 16;
4155 dst_w = drm_rect_width(&plane_state->uapi.dst);
4156 dst_h = drm_rect_height(&plane_state->uapi.dst);
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004157
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304158 fp_w_ratio = div_fixed16(src_w, dst_w);
4159 fp_h_ratio = div_fixed16(src_h, dst_h);
4160 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
4161 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004162
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304163 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004164}
4165
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004166struct dbuf_slice_conf_entry {
4167 u8 active_pipes;
4168 u8 dbuf_mask[I915_MAX_PIPES];
4169};
4170
4171/*
4172 * Table taken from Bspec 12716
4173 * Pipes do have some preferred DBuf slice affinity,
4174 * plus there are some hardcoded requirements on how
4175 * those should be distributed for multipipe scenarios.
4176 * For more DBuf slices algorithm can get even more messy
4177 * and less readable, so decided to use a table almost
4178 * as is from BSpec itself - that way it is at least easier
4179 * to compare, change and check.
4180 */
Jani Nikulaf8226d02020-02-19 17:45:42 +02004181static const struct dbuf_slice_conf_entry icl_allowed_dbufs[] =
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004182/* Autogenerated with igt/tools/intel_dbuf_map tool: */
4183{
4184 {
4185 .active_pipes = BIT(PIPE_A),
4186 .dbuf_mask = {
4187 [PIPE_A] = BIT(DBUF_S1)
4188 }
4189 },
4190 {
4191 .active_pipes = BIT(PIPE_B),
4192 .dbuf_mask = {
4193 [PIPE_B] = BIT(DBUF_S1)
4194 }
4195 },
4196 {
4197 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4198 .dbuf_mask = {
4199 [PIPE_A] = BIT(DBUF_S1),
4200 [PIPE_B] = BIT(DBUF_S2)
4201 }
4202 },
4203 {
4204 .active_pipes = BIT(PIPE_C),
4205 .dbuf_mask = {
4206 [PIPE_C] = BIT(DBUF_S2)
4207 }
4208 },
4209 {
4210 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4211 .dbuf_mask = {
4212 [PIPE_A] = BIT(DBUF_S1),
4213 [PIPE_C] = BIT(DBUF_S2)
4214 }
4215 },
4216 {
4217 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4218 .dbuf_mask = {
4219 [PIPE_B] = BIT(DBUF_S1),
4220 [PIPE_C] = BIT(DBUF_S2)
4221 }
4222 },
4223 {
4224 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4225 .dbuf_mask = {
4226 [PIPE_A] = BIT(DBUF_S1),
4227 [PIPE_B] = BIT(DBUF_S1),
4228 [PIPE_C] = BIT(DBUF_S2)
4229 }
4230 },
4231};
4232
4233/*
4234 * Table taken from Bspec 49255
4235 * Pipes do have some preferred DBuf slice affinity,
4236 * plus there are some hardcoded requirements on how
4237 * those should be distributed for multipipe scenarios.
4238 * For more DBuf slices algorithm can get even more messy
4239 * and less readable, so decided to use a table almost
4240 * as is from BSpec itself - that way it is at least easier
4241 * to compare, change and check.
4242 */
Jani Nikulaf8226d02020-02-19 17:45:42 +02004243static const struct dbuf_slice_conf_entry tgl_allowed_dbufs[] =
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004244/* Autogenerated with igt/tools/intel_dbuf_map tool: */
4245{
4246 {
4247 .active_pipes = BIT(PIPE_A),
4248 .dbuf_mask = {
4249 [PIPE_A] = BIT(DBUF_S1) | BIT(DBUF_S2)
4250 }
4251 },
4252 {
4253 .active_pipes = BIT(PIPE_B),
4254 .dbuf_mask = {
4255 [PIPE_B] = BIT(DBUF_S1) | BIT(DBUF_S2)
4256 }
4257 },
4258 {
4259 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4260 .dbuf_mask = {
4261 [PIPE_A] = BIT(DBUF_S2),
4262 [PIPE_B] = BIT(DBUF_S1)
4263 }
4264 },
4265 {
4266 .active_pipes = BIT(PIPE_C),
4267 .dbuf_mask = {
4268 [PIPE_C] = BIT(DBUF_S2) | BIT(DBUF_S1)
4269 }
4270 },
4271 {
4272 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4273 .dbuf_mask = {
4274 [PIPE_A] = BIT(DBUF_S1),
4275 [PIPE_C] = BIT(DBUF_S2)
4276 }
4277 },
4278 {
4279 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4280 .dbuf_mask = {
4281 [PIPE_B] = BIT(DBUF_S1),
4282 [PIPE_C] = BIT(DBUF_S2)
4283 }
4284 },
4285 {
4286 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4287 .dbuf_mask = {
4288 [PIPE_A] = BIT(DBUF_S1),
4289 [PIPE_B] = BIT(DBUF_S1),
4290 [PIPE_C] = BIT(DBUF_S2)
4291 }
4292 },
4293 {
4294 .active_pipes = BIT(PIPE_D),
4295 .dbuf_mask = {
4296 [PIPE_D] = BIT(DBUF_S2) | BIT(DBUF_S1)
4297 }
4298 },
4299 {
4300 .active_pipes = BIT(PIPE_A) | BIT(PIPE_D),
4301 .dbuf_mask = {
4302 [PIPE_A] = BIT(DBUF_S1),
4303 [PIPE_D] = BIT(DBUF_S2)
4304 }
4305 },
4306 {
4307 .active_pipes = BIT(PIPE_B) | BIT(PIPE_D),
4308 .dbuf_mask = {
4309 [PIPE_B] = BIT(DBUF_S1),
4310 [PIPE_D] = BIT(DBUF_S2)
4311 }
4312 },
4313 {
4314 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_D),
4315 .dbuf_mask = {
4316 [PIPE_A] = BIT(DBUF_S1),
4317 [PIPE_B] = BIT(DBUF_S1),
4318 [PIPE_D] = BIT(DBUF_S2)
4319 }
4320 },
4321 {
4322 .active_pipes = BIT(PIPE_C) | BIT(PIPE_D),
4323 .dbuf_mask = {
4324 [PIPE_C] = BIT(DBUF_S1),
4325 [PIPE_D] = BIT(DBUF_S2)
4326 }
4327 },
4328 {
4329 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C) | BIT(PIPE_D),
4330 .dbuf_mask = {
4331 [PIPE_A] = BIT(DBUF_S1),
4332 [PIPE_C] = BIT(DBUF_S2),
4333 [PIPE_D] = BIT(DBUF_S2)
4334 }
4335 },
4336 {
4337 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4338 .dbuf_mask = {
4339 [PIPE_B] = BIT(DBUF_S1),
4340 [PIPE_C] = BIT(DBUF_S2),
4341 [PIPE_D] = BIT(DBUF_S2)
4342 }
4343 },
4344 {
4345 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4346 .dbuf_mask = {
4347 [PIPE_A] = BIT(DBUF_S1),
4348 [PIPE_B] = BIT(DBUF_S1),
4349 [PIPE_C] = BIT(DBUF_S2),
4350 [PIPE_D] = BIT(DBUF_S2)
4351 }
4352 },
4353};
4354
4355static u8 compute_dbuf_slices(enum pipe pipe,
4356 u32 active_pipes,
4357 const struct dbuf_slice_conf_entry *dbuf_slices,
4358 int size)
4359{
4360 int i;
4361
4362 for (i = 0; i < size; i++) {
4363 if (dbuf_slices[i].active_pipes == active_pipes)
4364 return dbuf_slices[i].dbuf_mask[pipe];
4365 }
4366 return 0;
4367}
4368
4369/*
4370 * This function finds an entry with same enabled pipe configuration and
4371 * returns correspondent DBuf slice mask as stated in BSpec for particular
4372 * platform.
4373 */
4374static u32 icl_compute_dbuf_slices(enum pipe pipe,
4375 u32 active_pipes)
4376{
4377 /*
4378 * FIXME: For ICL this is still a bit unclear as prev BSpec revision
4379 * required calculating "pipe ratio" in order to determine
4380 * if one or two slices can be used for single pipe configurations
4381 * as additional constraint to the existing table.
4382 * However based on recent info, it should be not "pipe ratio"
4383 * but rather ratio between pixel_rate and cdclk with additional
4384 * constants, so for now we are using only table until this is
4385 * clarified. Also this is the reason why crtc_state param is
4386 * still here - we will need it once those additional constraints
4387 * pop up.
4388 */
4389 return compute_dbuf_slices(pipe, active_pipes,
4390 icl_allowed_dbufs,
4391 ARRAY_SIZE(icl_allowed_dbufs));
4392}
4393
4394static u32 tgl_compute_dbuf_slices(enum pipe pipe,
4395 u32 active_pipes)
4396{
4397 return compute_dbuf_slices(pipe, active_pipes,
4398 tgl_allowed_dbufs,
4399 ARRAY_SIZE(tgl_allowed_dbufs));
4400}
4401
4402static u8 skl_compute_dbuf_slices(const struct intel_crtc_state *crtc_state,
4403 u32 active_pipes)
4404{
4405 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
4406 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4407 enum pipe pipe = crtc->pipe;
4408
4409 if (IS_GEN(dev_priv, 12))
4410 return tgl_compute_dbuf_slices(pipe,
4411 active_pipes);
4412 else if (IS_GEN(dev_priv, 11))
4413 return icl_compute_dbuf_slices(pipe,
4414 active_pipes);
4415 /*
4416 * For anything else just return one slice yet.
4417 * Should be extended for other platforms.
4418 */
4419 return BIT(DBUF_S1);
4420}
4421
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004422static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004423skl_plane_relative_data_rate(const struct intel_crtc_state *crtc_state,
4424 const struct intel_plane_state *plane_state,
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004425 int color_plane)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004426{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004427 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004428 const struct drm_framebuffer *fb = plane_state->hw.fb;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004429 u32 data_rate;
4430 u32 width = 0, height = 0;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304431 uint_fixed_16_16_t down_scale_amount;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004432 u64 rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004433
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004434 if (!plane_state->uapi.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004435 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004436
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004437 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004438 return 0;
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004439
4440 if (color_plane == 1 &&
Imre Deak4941f352019-12-21 14:05:43 +02004441 !intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier))
Matt Ropera1de91e2016-05-12 07:05:57 -07004442 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004443
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004444 /*
4445 * Src coordinates are already rotated by 270 degrees for
4446 * the 90/270 degree plane rotation cases (to match the
4447 * GTT mapping), hence no need to account for rotation here.
4448 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004449 width = drm_rect_width(&plane_state->uapi.src) >> 16;
4450 height = drm_rect_height(&plane_state->uapi.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004451
Mahesh Kumarb879d582018-04-09 09:11:01 +05304452 /* UV plane does 1/2 pixel sub-sampling */
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004453 if (color_plane == 1) {
Mahesh Kumarb879d582018-04-09 09:11:01 +05304454 width /= 2;
4455 height /= 2;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004456 }
4457
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004458 data_rate = width * height;
Mahesh Kumarb879d582018-04-09 09:11:01 +05304459
Maarten Lankhorstec193642019-06-28 10:55:17 +02004460 down_scale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004461
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004462 rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount);
4463
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004464 rate *= fb->format->cpp[color_plane];
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004465 return rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004466}
4467
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004468static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004469skl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004470 u64 *plane_data_rate,
4471 u64 *uv_plane_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004472{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004473 struct drm_atomic_state *state = crtc_state->uapi.state;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004474 struct intel_plane *plane;
4475 const struct intel_plane_state *plane_state;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004476 u64 total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004477
4478 if (WARN_ON(!state))
4479 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004480
Matt Ropera1de91e2016-05-12 07:05:57 -07004481 /* Calculate and cache data rate for each plane */
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004482 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
4483 enum plane_id plane_id = plane->id;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004484 u64 rate;
Matt Roper024c9042015-09-24 15:53:11 -07004485
Mahesh Kumarb879d582018-04-09 09:11:01 +05304486 /* packed/y */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004487 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004488 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004489 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004490
Mahesh Kumarb879d582018-04-09 09:11:01 +05304491 /* uv-plane */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004492 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1);
Mahesh Kumarb879d582018-04-09 09:11:01 +05304493 uv_plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004494 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004495 }
4496
4497 return total_data_rate;
4498}
4499
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004500static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004501icl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004502 u64 *plane_data_rate)
4503{
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004504 struct intel_plane *plane;
4505 const struct intel_plane_state *plane_state;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004506 u64 total_data_rate = 0;
4507
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004508 if (WARN_ON(!crtc_state->uapi.state))
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004509 return 0;
4510
4511 /* Calculate and cache data rate for each plane */
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004512 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
4513 enum plane_id plane_id = plane->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004514 u64 rate;
4515
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004516 if (!plane_state->planar_linked_plane) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02004517 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004518 plane_data_rate[plane_id] = rate;
4519 total_data_rate += rate;
4520 } else {
4521 enum plane_id y_plane_id;
4522
4523 /*
4524 * The slave plane might not iterate in
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004525 * intel_atomic_crtc_state_for_each_plane_state(),
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004526 * and needs the master plane state which may be
4527 * NULL if we try get_new_plane_state(), so we
4528 * always calculate from the master.
4529 */
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004530 if (plane_state->planar_slave)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004531 continue;
4532
4533 /* Y plane rate is calculated on the slave */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004534 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004535 y_plane_id = plane_state->planar_linked_plane->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004536 plane_data_rate[y_plane_id] = rate;
4537 total_data_rate += rate;
4538
Maarten Lankhorstec193642019-06-28 10:55:17 +02004539 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004540 plane_data_rate[plane_id] = rate;
4541 total_data_rate += rate;
4542 }
4543 }
4544
4545 return total_data_rate;
4546}
4547
Matt Roperc107acf2016-05-12 07:06:01 -07004548static int
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004549skl_allocate_pipe_ddb(struct intel_crtc_state *crtc_state)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004550{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004551 struct drm_atomic_state *state = crtc_state->uapi.state;
4552 struct drm_crtc *crtc = crtc_state->uapi.crtc;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004553 struct drm_i915_private *dev_priv = to_i915(crtc->dev);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004554 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Maarten Lankhorstec193642019-06-28 10:55:17 +02004555 struct skl_ddb_entry *alloc = &crtc_state->wm.skl.ddb;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004556 u16 alloc_size, start = 0;
4557 u16 total[I915_MAX_PLANES] = {};
4558 u16 uv_total[I915_MAX_PLANES] = {};
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004559 u64 total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004560 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004561 int num_active;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004562 u64 plane_data_rate[I915_MAX_PLANES] = {};
4563 u64 uv_plane_data_rate[I915_MAX_PLANES] = {};
Ville Syrjälä0aded172019-02-05 17:50:53 +02004564 u32 blocks;
Matt Roperd8e87492018-12-11 09:31:07 -08004565 int level;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004566
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004567 /* Clear the partitioning for disabled planes. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004568 memset(crtc_state->wm.skl.plane_ddb_y, 0, sizeof(crtc_state->wm.skl.plane_ddb_y));
4569 memset(crtc_state->wm.skl.plane_ddb_uv, 0, sizeof(crtc_state->wm.skl.plane_ddb_uv));
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004570
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304571 if (drm_WARN_ON(&dev_priv->drm, !state))
Matt Ropera6d3460e2016-05-12 07:06:04 -07004572 return 0;
4573
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004574 if (!crtc_state->hw.active) {
Lyudece0ba282016-09-15 10:46:35 -04004575 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004576 return 0;
4577 }
4578
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004579 if (INTEL_GEN(dev_priv) >= 11)
4580 total_data_rate =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004581 icl_get_total_relative_data_rate(crtc_state,
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004582 plane_data_rate);
4583 else
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004584 total_data_rate =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004585 skl_get_total_relative_data_rate(crtc_state,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004586 plane_data_rate,
4587 uv_plane_data_rate);
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004588
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004589
Maarten Lankhorstec193642019-06-28 10:55:17 +02004590 skl_ddb_get_pipe_allocation_limits(dev_priv, crtc_state, total_data_rate,
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004591 alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004592 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304593 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004594 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004595
Matt Roperd8e87492018-12-11 09:31:07 -08004596 /* Allocate fixed number of blocks for cursor. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004597 total[PLANE_CURSOR] = skl_cursor_allocation(crtc_state, num_active);
Matt Roperd8e87492018-12-11 09:31:07 -08004598 alloc_size -= total[PLANE_CURSOR];
Maarten Lankhorstec193642019-06-28 10:55:17 +02004599 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].start =
Matt Roperd8e87492018-12-11 09:31:07 -08004600 alloc->end - total[PLANE_CURSOR];
Maarten Lankhorstec193642019-06-28 10:55:17 +02004601 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004602
Matt Ropera1de91e2016-05-12 07:05:57 -07004603 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004604 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004605
Matt Roperd8e87492018-12-11 09:31:07 -08004606 /*
4607 * Find the highest watermark level for which we can satisfy the block
4608 * requirement of active planes.
4609 */
4610 for (level = ilk_wm_max_level(dev_priv); level >= 0; level--) {
Matt Roper25db2ea2018-12-12 11:17:20 -08004611 blocks = 0;
Matt Roperd8e87492018-12-11 09:31:07 -08004612 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004613 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004614 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjälä10a7e072019-03-12 22:58:40 +02004615
4616 if (plane_id == PLANE_CURSOR) {
Vandita Kulkarni4ba48702019-12-16 13:36:19 +05304617 if (wm->wm[level].min_ddb_alloc > total[PLANE_CURSOR]) {
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304618 drm_WARN_ON(&dev_priv->drm,
4619 wm->wm[level].min_ddb_alloc != U16_MAX);
Ville Syrjälä10a7e072019-03-12 22:58:40 +02004620 blocks = U32_MAX;
4621 break;
4622 }
4623 continue;
4624 }
4625
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004626 blocks += wm->wm[level].min_ddb_alloc;
4627 blocks += wm->uv_wm[level].min_ddb_alloc;
Matt Roperd8e87492018-12-11 09:31:07 -08004628 }
4629
Ville Syrjälä3cf963c2019-03-12 22:58:36 +02004630 if (blocks <= alloc_size) {
Matt Roperd8e87492018-12-11 09:31:07 -08004631 alloc_size -= blocks;
4632 break;
4633 }
4634 }
4635
4636 if (level < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03004637 drm_dbg_kms(&dev_priv->drm,
4638 "Requested display configuration exceeds system DDB limitations");
4639 drm_dbg_kms(&dev_priv->drm, "minimum required %d/%d\n",
4640 blocks, alloc_size);
Matt Roperd8e87492018-12-11 09:31:07 -08004641 return -EINVAL;
4642 }
4643
4644 /*
4645 * Grant each plane the blocks it requires at the highest achievable
4646 * watermark level, plus an extra share of the leftover blocks
4647 * proportional to its relative data rate.
4648 */
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004649 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004650 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004651 &crtc_state->wm.skl.optimal.planes[plane_id];
Matt Roperd8e87492018-12-11 09:31:07 -08004652 u64 rate;
4653 u16 extra;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004654
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004655 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004656 continue;
4657
Damien Lespiaub9cec072014-11-04 17:06:43 +00004658 /*
Matt Roperd8e87492018-12-11 09:31:07 -08004659 * We've accounted for all active planes; remaining planes are
4660 * all disabled.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004661 */
Matt Roperd8e87492018-12-11 09:31:07 -08004662 if (total_data_rate == 0)
4663 break;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004664
Matt Roperd8e87492018-12-11 09:31:07 -08004665 rate = plane_data_rate[plane_id];
4666 extra = min_t(u16, alloc_size,
4667 DIV64_U64_ROUND_UP(alloc_size * rate,
4668 total_data_rate));
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004669 total[plane_id] = wm->wm[level].min_ddb_alloc + extra;
Matt Roperd8e87492018-12-11 09:31:07 -08004670 alloc_size -= extra;
4671 total_data_rate -= rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004672
Matt Roperd8e87492018-12-11 09:31:07 -08004673 if (total_data_rate == 0)
4674 break;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004675
Matt Roperd8e87492018-12-11 09:31:07 -08004676 rate = uv_plane_data_rate[plane_id];
4677 extra = min_t(u16, alloc_size,
4678 DIV64_U64_ROUND_UP(alloc_size * rate,
4679 total_data_rate));
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004680 uv_total[plane_id] = wm->uv_wm[level].min_ddb_alloc + extra;
Matt Roperd8e87492018-12-11 09:31:07 -08004681 alloc_size -= extra;
4682 total_data_rate -= rate;
4683 }
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304684 drm_WARN_ON(&dev_priv->drm, alloc_size != 0 || total_data_rate != 0);
Matt Roperd8e87492018-12-11 09:31:07 -08004685
4686 /* Set the actual DDB start/end points for each plane */
4687 start = alloc->start;
4688 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004689 struct skl_ddb_entry *plane_alloc =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004690 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004691 struct skl_ddb_entry *uv_plane_alloc =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004692 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Matt Roperd8e87492018-12-11 09:31:07 -08004693
4694 if (plane_id == PLANE_CURSOR)
4695 continue;
4696
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004697 /* Gen11+ uses a separate plane for UV watermarks */
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304698 drm_WARN_ON(&dev_priv->drm,
4699 INTEL_GEN(dev_priv) >= 11 && uv_total[plane_id]);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004700
Matt Roperd8e87492018-12-11 09:31:07 -08004701 /* Leave disabled planes at (0,0) */
4702 if (total[plane_id]) {
4703 plane_alloc->start = start;
4704 start += total[plane_id];
4705 plane_alloc->end = start;
Matt Roperc107acf2016-05-12 07:06:01 -07004706 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004707
Matt Roperd8e87492018-12-11 09:31:07 -08004708 if (uv_total[plane_id]) {
4709 uv_plane_alloc->start = start;
4710 start += uv_total[plane_id];
4711 uv_plane_alloc->end = start;
4712 }
4713 }
4714
4715 /*
4716 * When we calculated watermark values we didn't know how high
4717 * of a level we'd actually be able to hit, so we just marked
4718 * all levels as "enabled." Go back now and disable the ones
4719 * that aren't actually possible.
4720 */
4721 for (level++; level <= ilk_wm_max_level(dev_priv); level++) {
4722 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004723 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004724 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjäläa301cb02019-03-12 22:58:41 +02004725
4726 /*
4727 * We only disable the watermarks for each plane if
4728 * they exceed the ddb allocation of said plane. This
4729 * is done so that we don't end up touching cursor
4730 * watermarks needlessly when some other plane reduces
4731 * our max possible watermark level.
4732 *
4733 * Bspec has this to say about the PLANE_WM enable bit:
4734 * "All the watermarks at this level for all enabled
4735 * planes must be enabled before the level will be used."
4736 * So this is actually safe to do.
4737 */
4738 if (wm->wm[level].min_ddb_alloc > total[plane_id] ||
4739 wm->uv_wm[level].min_ddb_alloc > uv_total[plane_id])
4740 memset(&wm->wm[level], 0, sizeof(wm->wm[level]));
Ville Syrjälä290248c2019-02-13 18:54:24 +02004741
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004742 /*
Bob Paauwe39564ae2019-04-12 11:09:20 -07004743 * Wa_1408961008:icl, ehl
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004744 * Underruns with WM1+ disabled
4745 */
Bob Paauwe39564ae2019-04-12 11:09:20 -07004746 if (IS_GEN(dev_priv, 11) &&
Ville Syrjälä290248c2019-02-13 18:54:24 +02004747 level == 1 && wm->wm[0].plane_en) {
4748 wm->wm[level].plane_res_b = wm->wm[0].plane_res_b;
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004749 wm->wm[level].plane_res_l = wm->wm[0].plane_res_l;
4750 wm->wm[level].ignore_lines = wm->wm[0].ignore_lines;
Ville Syrjälä290248c2019-02-13 18:54:24 +02004751 }
Matt Roperd8e87492018-12-11 09:31:07 -08004752 }
4753 }
4754
4755 /*
4756 * Go back and disable the transition watermark if it turns out we
4757 * don't have enough DDB blocks for it.
4758 */
4759 for_each_plane_id_on_crtc(intel_crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004760 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004761 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004762
Ville Syrjäläb19c9bc2018-12-21 19:14:31 +02004763 if (wm->trans_wm.plane_res_b >= total[plane_id])
Matt Roperd8e87492018-12-11 09:31:07 -08004764 memset(&wm->trans_wm, 0, sizeof(wm->trans_wm));
Damien Lespiaub9cec072014-11-04 17:06:43 +00004765 }
4766
Matt Roperc107acf2016-05-12 07:06:01 -07004767 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004768}
4769
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004770/*
4771 * 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 +02004772 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004773 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4774 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4775*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004776static uint_fixed_16_16_t
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004777skl_wm_method1(const struct drm_i915_private *dev_priv, u32 pixel_rate,
4778 u8 cpp, u32 latency, u32 dbuf_block_size)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004779{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004780 u32 wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304781 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004782
4783 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304784 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004785
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304786 wm_intermediate_val = latency * pixel_rate * cpp;
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004787 ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004788
4789 if (INTEL_GEN(dev_priv) >= 10)
4790 ret = add_fixed16_u32(ret, 1);
4791
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004792 return ret;
4793}
4794
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004795static uint_fixed_16_16_t
4796skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
4797 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004798{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004799 u32 wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304800 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004801
4802 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304803 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004804
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004805 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304806 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4807 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304808 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004809 return ret;
4810}
4811
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304812static uint_fixed_16_16_t
Maarten Lankhorstec193642019-06-28 10:55:17 +02004813intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304814{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004815 u32 pixel_rate;
4816 u32 crtc_htotal;
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304817 uint_fixed_16_16_t linetime_us;
4818
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004819 if (!crtc_state->hw.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304820 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304821
Maarten Lankhorstec193642019-06-28 10:55:17 +02004822 pixel_rate = crtc_state->pixel_rate;
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304823
4824 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304825 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304826
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004827 crtc_htotal = crtc_state->hw.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304828 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304829
4830 return linetime_us;
4831}
4832
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004833static u32
Maarten Lankhorstec193642019-06-28 10:55:17 +02004834skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
4835 const struct intel_plane_state *plane_state)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004836{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004837 u64 adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304838 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004839
4840 /* Shouldn't reach here on disabled planes... */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004841 if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004842 return 0;
4843
4844 /*
4845 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4846 * with additional adjustments for plane-specific scaling.
4847 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004848 adjusted_pixel_rate = crtc_state->pixel_rate;
4849 downscale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004850
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304851 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4852 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004853}
4854
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304855static int
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004856skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
4857 int width, const struct drm_format_info *format,
4858 u64 modifier, unsigned int rotation,
4859 u32 plane_pixel_rate, struct skl_wm_params *wp,
4860 int color_plane)
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304861{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004862 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004863 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004864 u32 interm_pbpl;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304865
Juha-Pekka Heikkiladf7d4152019-03-04 17:26:31 +05304866 /* only planar format has two planes */
Imre Deak4941f352019-12-21 14:05:43 +02004867 if (color_plane == 1 &&
4868 !intel_format_info_is_yuv_semiplanar(format, modifier)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03004869 drm_dbg_kms(&dev_priv->drm,
4870 "Non planar format have single plane\n");
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304871 return -EINVAL;
4872 }
4873
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004874 wp->y_tiled = modifier == I915_FORMAT_MOD_Y_TILED ||
4875 modifier == I915_FORMAT_MOD_Yf_TILED ||
4876 modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4877 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4878 wp->x_tiled = modifier == I915_FORMAT_MOD_X_TILED;
4879 wp->rc_surface = modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4880 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
Imre Deak4941f352019-12-21 14:05:43 +02004881 wp->is_planar = intel_format_info_is_yuv_semiplanar(format, modifier);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304882
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004883 wp->width = width;
Ville Syrjälä45bee432018-11-14 23:07:28 +02004884 if (color_plane == 1 && wp->is_planar)
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304885 wp->width /= 2;
4886
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004887 wp->cpp = format->cpp[color_plane];
4888 wp->plane_pixel_rate = plane_pixel_rate;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304889
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004890 if (INTEL_GEN(dev_priv) >= 11 &&
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004891 modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 1)
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004892 wp->dbuf_block_size = 256;
4893 else
4894 wp->dbuf_block_size = 512;
4895
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004896 if (drm_rotation_90_or_270(rotation)) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304897 switch (wp->cpp) {
4898 case 1:
4899 wp->y_min_scanlines = 16;
4900 break;
4901 case 2:
4902 wp->y_min_scanlines = 8;
4903 break;
4904 case 4:
4905 wp->y_min_scanlines = 4;
4906 break;
4907 default:
4908 MISSING_CASE(wp->cpp);
4909 return -EINVAL;
4910 }
4911 } else {
4912 wp->y_min_scanlines = 4;
4913 }
4914
Ville Syrjälä60e983f2018-12-21 19:14:33 +02004915 if (skl_needs_memory_bw_wa(dev_priv))
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304916 wp->y_min_scanlines *= 2;
4917
4918 wp->plane_bytes_per_line = wp->width * wp->cpp;
4919 if (wp->y_tiled) {
4920 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004921 wp->y_min_scanlines,
4922 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304923
4924 if (INTEL_GEN(dev_priv) >= 10)
4925 interm_pbpl++;
4926
4927 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
4928 wp->y_min_scanlines);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08004929 } else if (wp->x_tiled && IS_GEN(dev_priv, 9)) {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004930 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
4931 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304932 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4933 } else {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004934 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
4935 wp->dbuf_block_size) + 1;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304936 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
4937 }
4938
4939 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
4940 wp->plane_blocks_per_line);
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004941
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304942 wp->linetime_us = fixed16_to_u32_round_up(
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004943 intel_get_linetime_us(crtc_state));
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304944
4945 return 0;
4946}
4947
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004948static int
4949skl_compute_plane_wm_params(const struct intel_crtc_state *crtc_state,
4950 const struct intel_plane_state *plane_state,
4951 struct skl_wm_params *wp, int color_plane)
4952{
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004953 const struct drm_framebuffer *fb = plane_state->hw.fb;
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004954 int width;
4955
Maarten Lankhorst3a612762019-10-04 13:34:54 +02004956 /*
4957 * Src coordinates are already rotated by 270 degrees for
4958 * the 90/270 degree plane rotation cases (to match the
4959 * GTT mapping), hence no need to account for rotation here.
4960 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004961 width = drm_rect_width(&plane_state->uapi.src) >> 16;
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004962
4963 return skl_compute_wm_params(crtc_state, width,
4964 fb->format, fb->modifier,
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004965 plane_state->hw.rotation,
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004966 skl_adjusted_plane_pixel_rate(crtc_state, plane_state),
4967 wp, color_plane);
4968}
4969
Ville Syrjäläb52c2732018-12-21 19:14:28 +02004970static bool skl_wm_has_lines(struct drm_i915_private *dev_priv, int level)
4971{
4972 if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv))
4973 return true;
4974
4975 /* The number of lines are ignored for the level 0 watermark. */
4976 return level > 0;
4977}
4978
Maarten Lankhorstec193642019-06-28 10:55:17 +02004979static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
Matt Roperd8e87492018-12-11 09:31:07 -08004980 int level,
4981 const struct skl_wm_params *wp,
4982 const struct skl_wm_level *result_prev,
4983 struct skl_wm_level *result /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004984{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004985 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004986 u32 latency = dev_priv->wm.skl_latency[level];
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304987 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304988 uint_fixed_16_16_t selected_result;
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004989 u32 res_blocks, res_lines, min_ddb_alloc = 0;
Ville Syrjäläce110ec2018-11-14 23:07:21 +02004990
Ville Syrjälä0aded172019-02-05 17:50:53 +02004991 if (latency == 0) {
4992 /* reject it */
4993 result->min_ddb_alloc = U16_MAX;
Ville Syrjälä692927f2018-12-21 19:14:29 +02004994 return;
Ville Syrjälä0aded172019-02-05 17:50:53 +02004995 }
Ville Syrjälä692927f2018-12-21 19:14:29 +02004996
Ville Syrjälä25312ef2019-05-03 20:38:05 +03004997 /*
4998 * WaIncreaseLatencyIPCEnabled: kbl,cfl
4999 * Display WA #1141: kbl,cfl
5000 */
Ville Syrjälä5a7d2022019-05-03 20:38:06 +03005001 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) ||
Rodrigo Vivi82525c12017-06-08 08:50:00 -07005002 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05305003 latency += 4;
5004
Ville Syrjälä60e983f2018-12-21 19:14:33 +02005005 if (skl_needs_memory_bw_wa(dev_priv) && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03005006 latency += 15;
5007
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305008 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005009 wp->cpp, latency, wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305010 method2 = skl_wm_method2(wp->plane_pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01005011 crtc_state->hw.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03005012 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305013 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005014
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305015 if (wp->y_tiled) {
5016 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005017 } else {
Maarten Lankhorst1326a922019-10-31 12:26:02 +01005018 if ((wp->cpp * crtc_state->hw.adjusted_mode.crtc_htotal /
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005019 wp->dbuf_block_size < 1) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07005020 (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03005021 selected_result = method2;
Paulo Zanoni077b5822018-10-04 16:15:57 -07005022 } else if (latency >= wp->linetime_us) {
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005023 if (IS_GEN(dev_priv, 9) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07005024 !IS_GEMINILAKE(dev_priv))
5025 selected_result = min_fixed16(method1, method2);
5026 else
5027 selected_result = method2;
5028 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005029 selected_result = method1;
Paulo Zanoni077b5822018-10-04 16:15:57 -07005030 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005031 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005032
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05305033 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05305034 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305035 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00005036
Paulo Zanonia5b79d32018-11-13 17:24:32 -08005037 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv)) {
5038 /* Display WA #1125: skl,bxt,kbl */
5039 if (level == 0 && wp->rc_surface)
5040 res_blocks +=
5041 fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07005042
Paulo Zanonia5b79d32018-11-13 17:24:32 -08005043 /* Display WA #1126: skl,bxt,kbl */
5044 if (level >= 1 && level <= 7) {
5045 if (wp->y_tiled) {
5046 res_blocks +=
5047 fixed16_to_u32_round_up(wp->y_tile_minimum);
5048 res_lines += wp->y_min_scanlines;
5049 } else {
5050 res_blocks++;
5051 }
5052
5053 /*
5054 * Make sure result blocks for higher latency levels are
5055 * atleast as high as level below the current level.
5056 * Assumption in DDB algorithm optimization for special
5057 * cases. Also covers Display WA #1125 for RC.
5058 */
5059 if (result_prev->plane_res_b > res_blocks)
5060 res_blocks = result_prev->plane_res_b;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03005061 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005062 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00005063
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005064 if (INTEL_GEN(dev_priv) >= 11) {
5065 if (wp->y_tiled) {
5066 int extra_lines;
5067
5068 if (res_lines % wp->y_min_scanlines == 0)
5069 extra_lines = wp->y_min_scanlines;
5070 else
5071 extra_lines = wp->y_min_scanlines * 2 -
5072 res_lines % wp->y_min_scanlines;
5073
5074 min_ddb_alloc = mul_round_up_u32_fixed16(res_lines + extra_lines,
5075 wp->plane_blocks_per_line);
5076 } else {
5077 min_ddb_alloc = res_blocks +
5078 DIV_ROUND_UP(res_blocks, 10);
5079 }
5080 }
5081
Ville Syrjäläb52c2732018-12-21 19:14:28 +02005082 if (!skl_wm_has_lines(dev_priv, level))
5083 res_lines = 0;
5084
Ville Syrjälä0aded172019-02-05 17:50:53 +02005085 if (res_lines > 31) {
5086 /* reject it */
5087 result->min_ddb_alloc = U16_MAX;
Matt Roperd8e87492018-12-11 09:31:07 -08005088 return;
Ville Syrjälä0aded172019-02-05 17:50:53 +02005089 }
Matt Roperd8e87492018-12-11 09:31:07 -08005090
5091 /*
5092 * If res_lines is valid, assume we can use this watermark level
5093 * for now. We'll come back and disable it after we calculate the
5094 * DDB allocation if it turns out we don't actually have enough
5095 * blocks to satisfy it.
5096 */
Mahesh Kumar62027b72018-04-09 09:11:05 +05305097 result->plane_res_b = res_blocks;
5098 result->plane_res_l = res_lines;
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005099 /* Bspec says: value >= plane ddb allocation -> invalid, hence the +1 here */
5100 result->min_ddb_alloc = max(min_ddb_alloc, res_blocks) + 1;
Mahesh Kumar62027b72018-04-09 09:11:05 +05305101 result->plane_en = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005102}
5103
Matt Roperd8e87492018-12-11 09:31:07 -08005104static void
Maarten Lankhorstec193642019-06-28 10:55:17 +02005105skl_compute_wm_levels(const struct intel_crtc_state *crtc_state,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305106 const struct skl_wm_params *wm_params,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005107 struct skl_wm_level *levels)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005108{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005109 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305110 int level, max_level = ilk_wm_max_level(dev_priv);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005111 struct skl_wm_level *result_prev = &levels[0];
Lyudea62163e2016-10-04 14:28:20 -04005112
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305113 for (level = 0; level <= max_level; level++) {
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005114 struct skl_wm_level *result = &levels[level];
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305115
Maarten Lankhorstec193642019-06-28 10:55:17 +02005116 skl_compute_plane_wm(crtc_state, level, wm_params,
Matt Roperd8e87492018-12-11 09:31:07 -08005117 result_prev, result);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005118
5119 result_prev = result;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305120 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005121}
5122
Maarten Lankhorstec193642019-06-28 10:55:17 +02005123static void skl_compute_transition_wm(const struct intel_crtc_state *crtc_state,
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02005124 const struct skl_wm_params *wp,
Matt Roperd8e87492018-12-11 09:31:07 -08005125 struct skl_plane_wm *wm)
Damien Lespiau407b50f2014-11-04 17:06:57 +00005126{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005127 struct drm_device *dev = crtc_state->uapi.crtc->dev;
Kumar, Maheshca476672017-08-17 19:15:24 +05305128 const struct drm_i915_private *dev_priv = to_i915(dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005129 u16 trans_min, trans_y_tile_min;
5130 const u16 trans_amount = 10; /* This is configurable amount */
5131 u16 wm0_sel_res_b, trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00005132
Kumar, Maheshca476672017-08-17 19:15:24 +05305133 /* Transition WM are not recommended by HW team for GEN9 */
5134 if (INTEL_GEN(dev_priv) <= 9)
Ville Syrjälä14a43062018-11-14 23:07:22 +02005135 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05305136
5137 /* Transition WM don't make any sense if ipc is disabled */
5138 if (!dev_priv->ipc_enabled)
Ville Syrjälä14a43062018-11-14 23:07:22 +02005139 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05305140
Paulo Zanoni91961a82018-10-04 16:15:56 -07005141 trans_min = 14;
5142 if (INTEL_GEN(dev_priv) >= 11)
Kumar, Maheshca476672017-08-17 19:15:24 +05305143 trans_min = 4;
5144
5145 trans_offset_b = trans_min + trans_amount;
5146
Paulo Zanonicbacc792018-10-04 16:15:58 -07005147 /*
5148 * The spec asks for Selected Result Blocks for wm0 (the real value),
5149 * not Result Blocks (the integer value). Pay attention to the capital
5150 * letters. The value wm_l0->plane_res_b is actually Result Blocks, but
5151 * since Result Blocks is the ceiling of Selected Result Blocks plus 1,
5152 * and since we later will have to get the ceiling of the sum in the
5153 * transition watermarks calculation, we can just pretend Selected
5154 * Result Blocks is Result Blocks minus 1 and it should work for the
5155 * current platforms.
5156 */
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02005157 wm0_sel_res_b = wm->wm[0].plane_res_b - 1;
Paulo Zanonicbacc792018-10-04 16:15:58 -07005158
Kumar, Maheshca476672017-08-17 19:15:24 +05305159 if (wp->y_tiled) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005160 trans_y_tile_min =
5161 (u16)mul_round_up_u32_fixed16(2, wp->y_tile_minimum);
Paulo Zanonicbacc792018-10-04 16:15:58 -07005162 res_blocks = max(wm0_sel_res_b, trans_y_tile_min) +
Kumar, Maheshca476672017-08-17 19:15:24 +05305163 trans_offset_b;
5164 } else {
Paulo Zanonicbacc792018-10-04 16:15:58 -07005165 res_blocks = wm0_sel_res_b + trans_offset_b;
Kumar, Maheshca476672017-08-17 19:15:24 +05305166
5167 /* WA BUG:1938466 add one block for non y-tile planes */
5168 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
5169 res_blocks += 1;
5170
5171 }
5172
Matt Roperd8e87492018-12-11 09:31:07 -08005173 /*
5174 * Just assume we can enable the transition watermark. After
5175 * computing the DDB we'll come back and disable it if that
5176 * assumption turns out to be false.
5177 */
5178 wm->trans_wm.plane_res_b = res_blocks + 1;
5179 wm->trans_wm.plane_en = true;
Damien Lespiau407b50f2014-11-04 17:06:57 +00005180}
5181
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005182static int skl_build_plane_wm_single(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005183 const struct intel_plane_state *plane_state,
5184 enum plane_id plane_id, int color_plane)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005185{
Ville Syrjälä83158472018-11-27 18:57:26 +02005186 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005187 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005188 int ret;
5189
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, color_plane);
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->wm);
Matt Roperd8e87492018-12-11 09:31:07 -08005196 skl_compute_transition_wm(crtc_state, &wm_params, wm);
Ville Syrjälä83158472018-11-27 18:57:26 +02005197
5198 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005199}
5200
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005201static int skl_build_plane_wm_uv(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005202 const struct intel_plane_state *plane_state,
5203 enum plane_id plane_id)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005204{
Ville Syrjälä83158472018-11-27 18:57:26 +02005205 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
5206 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005207 int ret;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005208
Ville Syrjälä83158472018-11-27 18:57:26 +02005209 wm->is_planar = true;
5210
5211 /* uv plane watermarks must also be validated for NV12/Planar */
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005212 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005213 &wm_params, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005214 if (ret)
5215 return ret;
5216
Ville Syrjälä67155a62019-03-12 22:58:37 +02005217 skl_compute_wm_levels(crtc_state, &wm_params, wm->uv_wm);
Ville Syrjälä83158472018-11-27 18:57:26 +02005218
5219 return 0;
5220}
5221
Ville Syrjälä96cb7cd2019-03-12 22:58:43 +02005222static int skl_build_plane_wm(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005223 const struct intel_plane_state *plane_state)
5224{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005225 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005226 const struct drm_framebuffer *fb = plane_state->hw.fb;
Ville Syrjälä83158472018-11-27 18:57:26 +02005227 enum plane_id plane_id = plane->id;
5228 int ret;
5229
5230 if (!intel_wm_plane_visible(crtc_state, plane_state))
5231 return 0;
5232
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005233 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005234 plane_id, 0);
5235 if (ret)
5236 return ret;
5237
5238 if (fb->format->is_yuv && fb->format->num_planes > 1) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005239 ret = skl_build_plane_wm_uv(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005240 plane_id);
5241 if (ret)
5242 return ret;
5243 }
5244
5245 return 0;
5246}
5247
Ville Syrjälä96cb7cd2019-03-12 22:58:43 +02005248static int icl_build_plane_wm(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005249 const struct intel_plane_state *plane_state)
5250{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005251 enum plane_id plane_id = to_intel_plane(plane_state->uapi.plane)->id;
Ville Syrjälä83158472018-11-27 18:57:26 +02005252 int ret;
5253
5254 /* Watermarks calculated in master */
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005255 if (plane_state->planar_slave)
Ville Syrjälä83158472018-11-27 18:57:26 +02005256 return 0;
5257
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005258 if (plane_state->planar_linked_plane) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005259 const struct drm_framebuffer *fb = plane_state->hw.fb;
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005260 enum plane_id y_plane_id = plane_state->planar_linked_plane->id;
Ville Syrjälä83158472018-11-27 18:57:26 +02005261
5262 WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state));
5263 WARN_ON(!fb->format->is_yuv ||
5264 fb->format->num_planes == 1);
5265
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005266 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005267 y_plane_id, 0);
5268 if (ret)
5269 return ret;
5270
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005271 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005272 plane_id, 1);
5273 if (ret)
5274 return ret;
5275 } else if (intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005276 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005277 plane_id, 0);
5278 if (ret)
5279 return ret;
5280 }
5281
5282 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005283}
5284
Maarten Lankhorstec193642019-06-28 10:55:17 +02005285static int skl_build_pipe_wm(struct intel_crtc_state *crtc_state)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005286{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005287 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Maarten Lankhorstec193642019-06-28 10:55:17 +02005288 struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02005289 struct intel_plane *plane;
5290 const struct intel_plane_state *plane_state;
Matt Roper55994c22016-05-12 07:06:08 -07005291 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005292
Lyudea62163e2016-10-04 14:28:20 -04005293 /*
5294 * We'll only calculate watermarks for planes that are actually
5295 * enabled, so make sure all other planes are set as disabled.
5296 */
5297 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
5298
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02005299 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state,
5300 crtc_state) {
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305301
Ville Syrjälä83158472018-11-27 18:57:26 +02005302 if (INTEL_GEN(dev_priv) >= 11)
Maarten Lankhorstec193642019-06-28 10:55:17 +02005303 ret = icl_build_plane_wm(crtc_state, plane_state);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005304 else
Maarten Lankhorstec193642019-06-28 10:55:17 +02005305 ret = skl_build_plane_wm(crtc_state, plane_state);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305306 if (ret)
5307 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005308 }
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05305309
Matt Roper55994c22016-05-12 07:06:08 -07005310 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005311}
5312
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005313static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
5314 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00005315 const struct skl_ddb_entry *entry)
5316{
5317 if (entry->end)
Jani Nikula9b6320a2020-01-23 16:00:04 +02005318 intel_de_write_fw(dev_priv, reg,
5319 (entry->end - 1) << 16 | entry->start);
Damien Lespiau16160e32014-11-04 17:06:53 +00005320 else
Jani Nikula9b6320a2020-01-23 16:00:04 +02005321 intel_de_write_fw(dev_priv, reg, 0);
Damien Lespiau16160e32014-11-04 17:06:53 +00005322}
5323
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005324static void skl_write_wm_level(struct drm_i915_private *dev_priv,
5325 i915_reg_t reg,
5326 const struct skl_wm_level *level)
5327{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005328 u32 val = 0;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005329
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005330 if (level->plane_en)
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005331 val |= PLANE_WM_EN;
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005332 if (level->ignore_lines)
5333 val |= PLANE_WM_IGNORE_LINES;
5334 val |= level->plane_res_b;
5335 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005336
Jani Nikula9b6320a2020-01-23 16:00:04 +02005337 intel_de_write_fw(dev_priv, reg, val);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005338}
5339
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005340void skl_write_plane_wm(struct intel_plane *plane,
5341 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005342{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005343 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005344 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005345 enum plane_id plane_id = plane->id;
5346 enum pipe pipe = plane->pipe;
5347 const struct skl_plane_wm *wm =
5348 &crtc_state->wm.skl.optimal.planes[plane_id];
5349 const struct skl_ddb_entry *ddb_y =
5350 &crtc_state->wm.skl.plane_ddb_y[plane_id];
5351 const struct skl_ddb_entry *ddb_uv =
5352 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005353
5354 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005355 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005356 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005357 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005358 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005359 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005360
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005361 if (INTEL_GEN(dev_priv) >= 11) {
Mahesh Kumar234059d2018-01-30 11:49:13 -02005362 skl_ddb_entry_write(dev_priv,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005363 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5364 return;
Mahesh Kumarb879d582018-04-09 09:11:01 +05305365 }
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005366
5367 if (wm->is_planar)
5368 swap(ddb_y, ddb_uv);
5369
5370 skl_ddb_entry_write(dev_priv,
5371 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5372 skl_ddb_entry_write(dev_priv,
5373 PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv);
Lyude62e0fb82016-08-22 12:50:08 -04005374}
5375
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005376void skl_write_cursor_wm(struct intel_plane *plane,
5377 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005378{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005379 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005380 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005381 enum plane_id plane_id = plane->id;
5382 enum pipe pipe = plane->pipe;
5383 const struct skl_plane_wm *wm =
5384 &crtc_state->wm.skl.optimal.planes[plane_id];
5385 const struct skl_ddb_entry *ddb =
5386 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005387
5388 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005389 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
5390 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005391 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005392 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005393
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005394 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb);
Lyude62e0fb82016-08-22 12:50:08 -04005395}
5396
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005397bool skl_wm_level_equals(const struct skl_wm_level *l1,
5398 const struct skl_wm_level *l2)
5399{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005400 return l1->plane_en == l2->plane_en &&
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005401 l1->ignore_lines == l2->ignore_lines &&
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005402 l1->plane_res_l == l2->plane_res_l &&
5403 l1->plane_res_b == l2->plane_res_b;
5404}
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005405
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005406static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv,
5407 const struct skl_plane_wm *wm1,
5408 const struct skl_plane_wm *wm2)
5409{
5410 int level, max_level = ilk_wm_max_level(dev_priv);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005411
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005412 for (level = 0; level <= max_level; level++) {
5413 if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]) ||
5414 !skl_wm_level_equals(&wm1->uv_wm[level], &wm2->uv_wm[level]))
5415 return false;
5416 }
5417
5418 return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005419}
5420
Lyude27082492016-08-24 07:48:10 +02005421static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
5422 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005423{
Lyude27082492016-08-24 07:48:10 +02005424 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005425}
5426
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005427bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb,
Jani Nikula696173b2019-04-05 14:00:15 +03005428 const struct skl_ddb_entry *entries,
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005429 int num_entries, int ignore_idx)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005430{
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005431 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005432
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005433 for (i = 0; i < num_entries; i++) {
5434 if (i != ignore_idx &&
5435 skl_ddb_entries_overlap(ddb, &entries[i]))
Lyude27082492016-08-24 07:48:10 +02005436 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03005437 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005438
Lyude27082492016-08-24 07:48:10 +02005439 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005440}
5441
Jani Nikulabb7791b2016-10-04 12:29:17 +03005442static int
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005443skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state,
5444 struct intel_crtc_state *new_crtc_state)
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005445{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005446 struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state);
5447 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005448 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5449 struct intel_plane *plane;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005450
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005451 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5452 struct intel_plane_state *plane_state;
5453 enum plane_id plane_id = plane->id;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005454
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005455 if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id],
5456 &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) &&
5457 skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id],
5458 &new_crtc_state->wm.skl.plane_ddb_uv[plane_id]))
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005459 continue;
5460
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005461 plane_state = intel_atomic_get_plane_state(state, plane);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005462 if (IS_ERR(plane_state))
5463 return PTR_ERR(plane_state);
Maarten Lankhorst1ab554b2018-10-22 15:51:52 +02005464
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005465 new_crtc_state->update_planes |= BIT(plane_id);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005466 }
5467
5468 return 0;
5469}
5470
5471static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005472skl_compute_ddb(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005473{
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005474 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005475 struct intel_crtc_state *old_crtc_state;
5476 struct intel_crtc_state *new_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305477 struct intel_crtc *crtc;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305478 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005479
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02005480 state->enabled_dbuf_slices_mask = dev_priv->enabled_dbuf_slices_mask;
Paulo Zanoni5a920b82016-10-04 14:37:32 -03005481
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005482 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005483 new_crtc_state, i) {
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005484 ret = skl_allocate_pipe_ddb(new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005485 if (ret)
5486 return ret;
5487
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005488 ret = skl_ddb_add_affected_planes(old_crtc_state,
5489 new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005490 if (ret)
5491 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07005492 }
5493
5494 return 0;
5495}
5496
Ville Syrjäläab98e942019-02-08 22:05:27 +02005497static char enast(bool enable)
5498{
5499 return enable ? '*' : ' ';
5500}
5501
Matt Roper2722efb2016-08-17 15:55:55 -04005502static void
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005503skl_print_wm_changes(struct intel_atomic_state *state)
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005504{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005505 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5506 const struct intel_crtc_state *old_crtc_state;
5507 const struct intel_crtc_state *new_crtc_state;
5508 struct intel_plane *plane;
5509 struct intel_crtc *crtc;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005510 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005511
Jani Nikulabdbf43d2019-10-28 12:38:15 +02005512 if (!drm_debug_enabled(DRM_UT_KMS))
Ville Syrjäläab98e942019-02-08 22:05:27 +02005513 return;
5514
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005515 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5516 new_crtc_state, i) {
Ville Syrjäläab98e942019-02-08 22:05:27 +02005517 const struct skl_pipe_wm *old_pipe_wm, *new_pipe_wm;
5518
5519 old_pipe_wm = &old_crtc_state->wm.skl.optimal;
5520 new_pipe_wm = &new_crtc_state->wm.skl.optimal;
5521
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005522 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5523 enum plane_id plane_id = plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005524 const struct skl_ddb_entry *old, *new;
5525
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005526 old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id];
5527 new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005528
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005529 if (skl_ddb_entry_equal(old, new))
5530 continue;
5531
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005532 drm_dbg_kms(&dev_priv->drm,
5533 "[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n",
5534 plane->base.base.id, plane->base.name,
5535 old->start, old->end, new->start, new->end,
5536 skl_ddb_entry_size(old), skl_ddb_entry_size(new));
Ville Syrjäläab98e942019-02-08 22:05:27 +02005537 }
5538
5539 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5540 enum plane_id plane_id = plane->id;
5541 const struct skl_plane_wm *old_wm, *new_wm;
5542
5543 old_wm = &old_pipe_wm->planes[plane_id];
5544 new_wm = &new_pipe_wm->planes[plane_id];
5545
5546 if (skl_plane_wm_equals(dev_priv, old_wm, new_wm))
5547 continue;
5548
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005549 drm_dbg_kms(&dev_priv->drm,
5550 "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm"
5551 " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm\n",
5552 plane->base.base.id, plane->base.name,
5553 enast(old_wm->wm[0].plane_en), enast(old_wm->wm[1].plane_en),
5554 enast(old_wm->wm[2].plane_en), enast(old_wm->wm[3].plane_en),
5555 enast(old_wm->wm[4].plane_en), enast(old_wm->wm[5].plane_en),
5556 enast(old_wm->wm[6].plane_en), enast(old_wm->wm[7].plane_en),
5557 enast(old_wm->trans_wm.plane_en),
5558 enast(new_wm->wm[0].plane_en), enast(new_wm->wm[1].plane_en),
5559 enast(new_wm->wm[2].plane_en), enast(new_wm->wm[3].plane_en),
5560 enast(new_wm->wm[4].plane_en), enast(new_wm->wm[5].plane_en),
5561 enast(new_wm->wm[6].plane_en), enast(new_wm->wm[7].plane_en),
5562 enast(new_wm->trans_wm.plane_en));
Ville Syrjäläab98e942019-02-08 22:05:27 +02005563
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005564 drm_dbg_kms(&dev_priv->drm,
5565 "[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 +02005566 " -> %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 +03005567 plane->base.base.id, plane->base.name,
5568 enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].plane_res_l,
5569 enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].plane_res_l,
5570 enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].plane_res_l,
5571 enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].plane_res_l,
5572 enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].plane_res_l,
5573 enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].plane_res_l,
5574 enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].plane_res_l,
5575 enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].plane_res_l,
5576 enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.plane_res_l,
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005577
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005578 enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].plane_res_l,
5579 enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].plane_res_l,
5580 enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].plane_res_l,
5581 enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].plane_res_l,
5582 enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].plane_res_l,
5583 enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].plane_res_l,
5584 enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].plane_res_l,
5585 enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].plane_res_l,
5586 enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.plane_res_l);
Ville Syrjäläab98e942019-02-08 22:05:27 +02005587
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005588 drm_dbg_kms(&dev_priv->drm,
5589 "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d"
5590 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n",
5591 plane->base.base.id, plane->base.name,
5592 old_wm->wm[0].plane_res_b, old_wm->wm[1].plane_res_b,
5593 old_wm->wm[2].plane_res_b, old_wm->wm[3].plane_res_b,
5594 old_wm->wm[4].plane_res_b, old_wm->wm[5].plane_res_b,
5595 old_wm->wm[6].plane_res_b, old_wm->wm[7].plane_res_b,
5596 old_wm->trans_wm.plane_res_b,
5597 new_wm->wm[0].plane_res_b, new_wm->wm[1].plane_res_b,
5598 new_wm->wm[2].plane_res_b, new_wm->wm[3].plane_res_b,
5599 new_wm->wm[4].plane_res_b, new_wm->wm[5].plane_res_b,
5600 new_wm->wm[6].plane_res_b, new_wm->wm[7].plane_res_b,
5601 new_wm->trans_wm.plane_res_b);
Ville Syrjäläab98e942019-02-08 22:05:27 +02005602
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005603 drm_dbg_kms(&dev_priv->drm,
5604 "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d"
5605 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n",
5606 plane->base.base.id, plane->base.name,
5607 old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc,
5608 old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc,
5609 old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc,
5610 old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc,
5611 old_wm->trans_wm.min_ddb_alloc,
5612 new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc,
5613 new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc,
5614 new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc,
5615 new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc,
5616 new_wm->trans_wm.min_ddb_alloc);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005617 }
5618 }
5619}
5620
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005621static int intel_add_all_pipes(struct intel_atomic_state *state)
5622{
5623 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5624 struct intel_crtc *crtc;
5625
5626 for_each_intel_crtc(&dev_priv->drm, crtc) {
5627 struct intel_crtc_state *crtc_state;
5628
5629 crtc_state = intel_atomic_get_crtc_state(&state->base, crtc);
5630 if (IS_ERR(crtc_state))
5631 return PTR_ERR(crtc_state);
5632 }
5633
5634 return 0;
5635}
5636
Matt Roper98d39492016-05-12 07:06:03 -07005637static int
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005638skl_ddb_add_affected_pipes(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005639{
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005640 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005641 int ret;
Matt Roper98d39492016-05-12 07:06:03 -07005642
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305643 /*
5644 * If this is our first atomic update following hardware readout,
5645 * we can't trust the DDB that the BIOS programmed for us. Let's
5646 * pretend that all pipes switched active status so that we'll
5647 * ensure a full DDB recompute.
5648 */
5649 if (dev_priv->wm.distrust_bios_wm) {
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005650 ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005651 state->base.acquire_ctx);
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305652 if (ret)
5653 return ret;
5654
Ville Syrjälä8d9875b2019-10-11 23:09:45 +03005655 state->active_pipe_changes = INTEL_INFO(dev_priv)->pipe_mask;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305656
5657 /*
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005658 * We usually only initialize state->active_pipes if we
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305659 * we're doing a modeset; make sure this field is always
5660 * initialized during the sanitization process that happens
5661 * on the first commit too.
5662 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005663 if (!state->modeset)
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005664 state->active_pipes = dev_priv->active_pipes;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305665 }
5666
5667 /*
5668 * If the modeset changes which CRTC's are active, we need to
5669 * recompute the DDB allocation for *all* active pipes, even
5670 * those that weren't otherwise being modified in any way by this
5671 * atomic commit. Due to the shrinking of the per-pipe allocations
5672 * when new active CRTC's are added, it's possible for a pipe that
5673 * we were already using and aren't changing at all here to suddenly
5674 * become invalid if its DDB needs exceeds its new allocation.
5675 *
5676 * Note that if we wind up doing a full DDB recompute, we can't let
5677 * any other display updates race with this transaction, so we need
5678 * to grab the lock on *all* CRTC's.
5679 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005680 if (state->active_pipe_changes || state->modeset) {
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005681 ret = intel_add_all_pipes(state);
5682 if (ret)
5683 return ret;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305684 }
5685
5686 return 0;
5687}
5688
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005689/*
5690 * To make sure the cursor watermark registers are always consistent
5691 * with our computed state the following scenario needs special
5692 * treatment:
5693 *
5694 * 1. enable cursor
5695 * 2. move cursor entirely offscreen
5696 * 3. disable cursor
5697 *
5698 * Step 2. does call .disable_plane() but does not zero the watermarks
5699 * (since we consider an offscreen cursor still active for the purposes
5700 * of watermarks). Step 3. would not normally call .disable_plane()
5701 * because the actual plane visibility isn't changing, and we don't
5702 * deallocate the cursor ddb until the pipe gets disabled. So we must
5703 * force step 3. to call .disable_plane() to update the watermark
5704 * registers properly.
5705 *
5706 * Other planes do not suffer from this issues as their watermarks are
5707 * calculated based on the actual plane visibility. The only time this
5708 * can trigger for the other planes is during the initial readout as the
5709 * default value of the watermarks registers is not zero.
5710 */
5711static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
5712 struct intel_crtc *crtc)
5713{
5714 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5715 const struct intel_crtc_state *old_crtc_state =
5716 intel_atomic_get_old_crtc_state(state, crtc);
5717 struct intel_crtc_state *new_crtc_state =
5718 intel_atomic_get_new_crtc_state(state, crtc);
5719 struct intel_plane *plane;
5720
5721 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5722 struct intel_plane_state *plane_state;
5723 enum plane_id plane_id = plane->id;
5724
5725 /*
5726 * Force a full wm update for every plane on modeset.
5727 * Required because the reset value of the wm registers
5728 * is non-zero, whereas we want all disabled planes to
5729 * have zero watermarks. So if we turn off the relevant
5730 * power well the hardware state will go out of sync
5731 * with the software state.
5732 */
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005733 if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi) &&
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005734 skl_plane_wm_equals(dev_priv,
5735 &old_crtc_state->wm.skl.optimal.planes[plane_id],
5736 &new_crtc_state->wm.skl.optimal.planes[plane_id]))
5737 continue;
5738
5739 plane_state = intel_atomic_get_plane_state(state, plane);
5740 if (IS_ERR(plane_state))
5741 return PTR_ERR(plane_state);
5742
5743 new_crtc_state->update_planes |= BIT(plane_id);
5744 }
5745
5746 return 0;
5747}
5748
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305749static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005750skl_compute_wm(struct intel_atomic_state *state)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305751{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005752 struct intel_crtc *crtc;
Ville Syrjälä8cac9fd2019-03-12 22:58:44 +02005753 struct intel_crtc_state *new_crtc_state;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005754 struct intel_crtc_state *old_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305755 int ret, i;
5756
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005757 ret = skl_ddb_add_affected_pipes(state);
5758 if (ret)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305759 return ret;
5760
Matt Roper734fa012016-05-12 15:11:40 -07005761 /*
5762 * Calculate WM's for all pipes that are part of this transaction.
Matt Roperd8e87492018-12-11 09:31:07 -08005763 * Note that skl_ddb_add_affected_pipes may have added more CRTC's that
Ville Syrjäläf119a5e2020-01-20 19:47:13 +02005764 * weren't otherwise being modified if pipe allocations had to change.
Matt Roper734fa012016-05-12 15:11:40 -07005765 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005766 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjälä8cac9fd2019-03-12 22:58:44 +02005767 new_crtc_state, i) {
5768 ret = skl_build_pipe_wm(new_crtc_state);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005769 if (ret)
5770 return ret;
5771
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005772 ret = skl_wm_add_affected_planes(state, crtc);
Matt Roper734fa012016-05-12 15:11:40 -07005773 if (ret)
5774 return ret;
Matt Roper734fa012016-05-12 15:11:40 -07005775 }
5776
Matt Roperd8e87492018-12-11 09:31:07 -08005777 ret = skl_compute_ddb(state);
5778 if (ret)
5779 return ret;
5780
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005781 skl_print_wm_changes(state);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005782
Matt Roper98d39492016-05-12 07:06:03 -07005783 return 0;
5784}
5785
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005786static void ilk_compute_wm_config(struct drm_i915_private *dev_priv,
Ville Syrjäläd8905652016-01-14 14:53:35 +02005787 struct intel_wm_config *config)
5788{
5789 struct intel_crtc *crtc;
5790
5791 /* Compute the currently _active_ config */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005792 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläd8905652016-01-14 14:53:35 +02005793 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5794
5795 if (!wm->pipe_enabled)
5796 continue;
5797
5798 config->sprites_enabled |= wm->sprites_enabled;
5799 config->sprites_scaled |= wm->sprites_scaled;
5800 config->num_pipes_active++;
5801 }
5802}
5803
Matt Ropered4a6a72016-02-23 17:20:13 -08005804static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005805{
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005806 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005807 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005808 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005809 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005810 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005811
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005812 ilk_compute_wm_config(dev_priv, &config);
Ville Syrjäläd8905652016-01-14 14:53:35 +02005813
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005814 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max);
5815 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005816
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005817 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005818 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005819 config.num_pipes_active == 1 && config.sprites_enabled) {
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005820 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max);
5821 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005822
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005823 best_lp_wm = ilk_find_best_result(dev_priv, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005824 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005825 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005826 }
5827
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005828 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005829 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005830
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005831 ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005832
Imre Deak820c1982013-12-17 14:46:36 +02005833 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005834}
5835
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005836static void ilk_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005837 struct intel_crtc *crtc)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005838{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005839 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5840 const struct intel_crtc_state *crtc_state =
5841 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005842
Matt Ropered4a6a72016-02-23 17:20:13 -08005843 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005844 crtc->wm.active.ilk = crtc_state->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005845 ilk_program_watermarks(dev_priv);
5846 mutex_unlock(&dev_priv->wm.wm_mutex);
5847}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005848
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005849static void ilk_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005850 struct intel_crtc *crtc)
Matt Ropered4a6a72016-02-23 17:20:13 -08005851{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005852 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5853 const struct intel_crtc_state *crtc_state =
5854 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005855
5856 if (!crtc_state->wm.need_postvbl_update)
5857 return;
Matt Ropered4a6a72016-02-23 17:20:13 -08005858
5859 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005860 crtc->wm.active.ilk = crtc_state->wm.ilk.optimal;
5861 ilk_program_watermarks(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08005862 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005863}
5864
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005865static inline void skl_wm_level_from_reg_val(u32 val,
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005866 struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005867{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005868 level->plane_en = val & PLANE_WM_EN;
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005869 level->ignore_lines = val & PLANE_WM_IGNORE_LINES;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005870 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5871 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5872 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005873}
5874
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005875void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005876 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005877{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005878 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5879 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005880 int level, max_level;
5881 enum plane_id plane_id;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005882 u32 val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005883
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005884 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005885
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005886 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005887 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005888
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005889 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005890 if (plane_id != PLANE_CURSOR)
5891 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005892 else
5893 val = I915_READ(CUR_WM(pipe, level));
5894
5895 skl_wm_level_from_reg_val(val, &wm->wm[level]);
5896 }
5897
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005898 if (plane_id != PLANE_CURSOR)
5899 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005900 else
5901 val = I915_READ(CUR_WM_TRANS(pipe));
5902
5903 skl_wm_level_from_reg_val(val, &wm->trans_wm);
5904 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005905
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005906 if (!crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00005907 return;
Pradeep Bhat30789992014-11-04 17:06:45 +00005908}
5909
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005910void skl_wm_get_hw_state(struct drm_i915_private *dev_priv)
Pradeep Bhat30789992014-11-04 17:06:45 +00005911{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005912 struct intel_crtc *crtc;
Maarten Lankhorstec193642019-06-28 10:55:17 +02005913 struct intel_crtc_state *crtc_state;
Pradeep Bhat30789992014-11-04 17:06:45 +00005914
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005915 skl_ddb_get_hw_state(dev_priv);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005916 for_each_intel_crtc(&dev_priv->drm, crtc) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02005917 crtc_state = to_intel_crtc_state(crtc->base.state);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005918
Maarten Lankhorstec193642019-06-28 10:55:17 +02005919 skl_pipe_wm_get_hw_state(crtc, &crtc_state->wm.skl.optimal);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005920 }
Matt Ropera1de91e2016-05-12 07:05:57 -07005921
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005922 if (dev_priv->active_pipes) {
Matt Roper279e99d2016-05-12 07:06:02 -07005923 /* Fully recompute DDB on first atomic commit */
5924 dev_priv->wm.distrust_bios_wm = true;
Matt Roper279e99d2016-05-12 07:06:02 -07005925 }
Pradeep Bhat30789992014-11-04 17:06:45 +00005926}
5927
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005928static void ilk_pipe_wm_get_hw_state(struct intel_crtc *crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005929{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005930 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01005931 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02005932 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Maarten Lankhorstec193642019-06-28 10:55:17 +02005933 struct intel_crtc_state *crtc_state = to_intel_crtc_state(crtc->base.state);
5934 struct intel_pipe_wm *active = &crtc_state->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005935 enum pipe pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005936 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005937 [PIPE_A] = WM0_PIPEA_ILK,
5938 [PIPE_B] = WM0_PIPEB_ILK,
5939 [PIPE_C] = WM0_PIPEC_IVB,
5940 };
5941
5942 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005943
Ville Syrjälä15606532016-05-13 17:55:17 +03005944 memset(active, 0, sizeof(*active));
5945
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005946 active->pipe_enabled = crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02005947
5948 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005949 u32 tmp = hw->wm_pipe[pipe];
5950
5951 /*
5952 * For active pipes LP0 watermark is marked as
5953 * enabled, and LP1+ watermaks as disabled since
5954 * we can't really reverse compute them in case
5955 * multiple pipes are active.
5956 */
5957 active->wm[0].enable = true;
5958 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
5959 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
5960 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005961 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005962 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005963
5964 /*
5965 * For inactive pipes, all watermark levels
5966 * should be marked as enabled but zeroed,
5967 * which is what we'd compute them to.
5968 */
5969 for (level = 0; level <= max_level; level++)
5970 active->wm[level].enable = true;
5971 }
Matt Roper4e0963c2015-09-24 15:53:15 -07005972
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005973 crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03005974}
5975
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03005976#define _FW_WM(value, plane) \
5977 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
5978#define _FW_WM_VLV(value, plane) \
5979 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
5980
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005981static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
5982 struct g4x_wm_values *wm)
5983{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005984 u32 tmp;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03005985
5986 tmp = I915_READ(DSPFW1);
5987 wm->sr.plane = _FW_WM(tmp, SR);
5988 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
5989 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
5990 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
5991
5992 tmp = I915_READ(DSPFW2);
5993 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
5994 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
5995 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
5996 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
5997 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
5998 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
5999
6000 tmp = I915_READ(DSPFW3);
6001 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
6002 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6003 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
6004 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
6005}
6006
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006007static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
6008 struct vlv_wm_values *wm)
6009{
6010 enum pipe pipe;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006011 u32 tmp;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006012
6013 for_each_pipe(dev_priv, pipe) {
6014 tmp = I915_READ(VLV_DDL(pipe));
6015
Ville Syrjälä1b313892016-11-28 19:37:08 +02006016 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006017 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006018 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006019 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006020 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006021 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006022 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006023 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6024 }
6025
6026 tmp = I915_READ(DSPFW1);
6027 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006028 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
6029 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
6030 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006031
6032 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006033 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
6034 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
6035 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006036
6037 tmp = I915_READ(DSPFW3);
6038 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6039
6040 if (IS_CHERRYVIEW(dev_priv)) {
6041 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006042 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6043 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006044
6045 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006046 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
6047 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006048
6049 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006050 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
6051 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006052
6053 tmp = I915_READ(DSPHOWM);
6054 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02006055 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
6056 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
6057 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
6058 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6059 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6060 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6061 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6062 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6063 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006064 } else {
6065 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006066 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6067 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006068
6069 tmp = I915_READ(DSPHOWM);
6070 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02006071 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6072 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6073 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6074 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6075 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6076 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006077 }
6078}
6079
6080#undef _FW_WM
6081#undef _FW_WM_VLV
6082
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006083void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006084{
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006085 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
6086 struct intel_crtc *crtc;
6087
6088 g4x_read_wm_values(dev_priv, wm);
6089
6090 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
6091
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006092 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006093 struct intel_crtc_state *crtc_state =
6094 to_intel_crtc_state(crtc->base.state);
6095 struct g4x_wm_state *active = &crtc->wm.active.g4x;
6096 struct g4x_pipe_wm *raw;
6097 enum pipe pipe = crtc->pipe;
6098 enum plane_id plane_id;
6099 int level, max_level;
6100
6101 active->cxsr = wm->cxsr;
6102 active->hpll_en = wm->hpll_en;
6103 active->fbc_en = wm->fbc_en;
6104
6105 active->sr = wm->sr;
6106 active->hpll = wm->hpll;
6107
6108 for_each_plane_id_on_crtc(crtc, plane_id) {
6109 active->wm.plane[plane_id] =
6110 wm->pipe[pipe].plane[plane_id];
6111 }
6112
6113 if (wm->cxsr && wm->hpll_en)
6114 max_level = G4X_WM_LEVEL_HPLL;
6115 else if (wm->cxsr)
6116 max_level = G4X_WM_LEVEL_SR;
6117 else
6118 max_level = G4X_WM_LEVEL_NORMAL;
6119
6120 level = G4X_WM_LEVEL_NORMAL;
6121 raw = &crtc_state->wm.g4x.raw[level];
6122 for_each_plane_id_on_crtc(crtc, plane_id)
6123 raw->plane[plane_id] = active->wm.plane[plane_id];
6124
6125 if (++level > max_level)
6126 goto out;
6127
6128 raw = &crtc_state->wm.g4x.raw[level];
6129 raw->plane[PLANE_PRIMARY] = active->sr.plane;
6130 raw->plane[PLANE_CURSOR] = active->sr.cursor;
6131 raw->plane[PLANE_SPRITE0] = 0;
6132 raw->fbc = active->sr.fbc;
6133
6134 if (++level > max_level)
6135 goto out;
6136
6137 raw = &crtc_state->wm.g4x.raw[level];
6138 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
6139 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
6140 raw->plane[PLANE_SPRITE0] = 0;
6141 raw->fbc = active->hpll.fbc;
6142
6143 out:
6144 for_each_plane_id_on_crtc(crtc, plane_id)
6145 g4x_raw_plane_wm_set(crtc_state, level,
6146 plane_id, USHRT_MAX);
6147 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
6148
6149 crtc_state->wm.g4x.optimal = *active;
6150 crtc_state->wm.g4x.intermediate = *active;
6151
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006152 drm_dbg_kms(&dev_priv->drm,
6153 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
6154 pipe_name(pipe),
6155 wm->pipe[pipe].plane[PLANE_PRIMARY],
6156 wm->pipe[pipe].plane[PLANE_CURSOR],
6157 wm->pipe[pipe].plane[PLANE_SPRITE0]);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006158 }
6159
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006160 drm_dbg_kms(&dev_priv->drm,
6161 "Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
6162 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
6163 drm_dbg_kms(&dev_priv->drm,
6164 "Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
6165 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
6166 drm_dbg_kms(&dev_priv->drm, "Initial SR=%s HPLL=%s FBC=%s\n",
6167 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006168}
6169
6170void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
6171{
6172 struct intel_plane *plane;
6173 struct intel_crtc *crtc;
6174
6175 mutex_lock(&dev_priv->wm.wm_mutex);
6176
6177 for_each_intel_plane(&dev_priv->drm, plane) {
6178 struct intel_crtc *crtc =
6179 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6180 struct intel_crtc_state *crtc_state =
6181 to_intel_crtc_state(crtc->base.state);
6182 struct intel_plane_state *plane_state =
6183 to_intel_plane_state(plane->base.state);
6184 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
6185 enum plane_id plane_id = plane->id;
6186 int level;
6187
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01006188 if (plane_state->uapi.visible)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006189 continue;
6190
6191 for (level = 0; level < 3; level++) {
6192 struct g4x_pipe_wm *raw =
6193 &crtc_state->wm.g4x.raw[level];
6194
6195 raw->plane[plane_id] = 0;
6196 wm_state->wm.plane[plane_id] = 0;
6197 }
6198
6199 if (plane_id == PLANE_PRIMARY) {
6200 for (level = 0; level < 3; level++) {
6201 struct g4x_pipe_wm *raw =
6202 &crtc_state->wm.g4x.raw[level];
6203 raw->fbc = 0;
6204 }
6205
6206 wm_state->sr.fbc = 0;
6207 wm_state->hpll.fbc = 0;
6208 wm_state->fbc_en = false;
6209 }
6210 }
6211
6212 for_each_intel_crtc(&dev_priv->drm, crtc) {
6213 struct intel_crtc_state *crtc_state =
6214 to_intel_crtc_state(crtc->base.state);
6215
6216 crtc_state->wm.g4x.intermediate =
6217 crtc_state->wm.g4x.optimal;
6218 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
6219 }
6220
6221 g4x_program_watermarks(dev_priv);
6222
6223 mutex_unlock(&dev_priv->wm.wm_mutex);
6224}
6225
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006226void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006227{
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006228 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02006229 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006230 u32 val;
6231
6232 vlv_read_wm_values(dev_priv, wm);
6233
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006234 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
6235 wm->level = VLV_WM_LEVEL_PM2;
6236
6237 if (IS_CHERRYVIEW(dev_priv)) {
Chris Wilson337fa6e2019-04-26 09:17:20 +01006238 vlv_punit_get(dev_priv);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006239
Ville Syrjäläc11b8132018-11-29 19:55:03 +02006240 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006241 if (val & DSP_MAXFIFO_PM5_ENABLE)
6242 wm->level = VLV_WM_LEVEL_PM5;
6243
Ville Syrjälä58590c12015-09-08 21:05:12 +03006244 /*
6245 * If DDR DVFS is disabled in the BIOS, Punit
6246 * will never ack the request. So if that happens
6247 * assume we don't have to enable/disable DDR DVFS
6248 * dynamically. To test that just set the REQ_ACK
6249 * bit to poke the Punit, but don't change the
6250 * HIGH/LOW bits so that we don't actually change
6251 * the current state.
6252 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006253 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03006254 val |= FORCE_DDR_FREQ_REQ_ACK;
6255 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
6256
6257 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
6258 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006259 drm_dbg_kms(&dev_priv->drm,
6260 "Punit not acking DDR DVFS request, "
6261 "assuming DDR DVFS is disabled\n");
Ville Syrjälä58590c12015-09-08 21:05:12 +03006262 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
6263 } else {
6264 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
6265 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
6266 wm->level = VLV_WM_LEVEL_DDR_DVFS;
6267 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006268
Chris Wilson337fa6e2019-04-26 09:17:20 +01006269 vlv_punit_put(dev_priv);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006270 }
6271
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006272 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02006273 struct intel_crtc_state *crtc_state =
6274 to_intel_crtc_state(crtc->base.state);
6275 struct vlv_wm_state *active = &crtc->wm.active.vlv;
6276 const struct vlv_fifo_state *fifo_state =
6277 &crtc_state->wm.vlv.fifo_state;
6278 enum pipe pipe = crtc->pipe;
6279 enum plane_id plane_id;
6280 int level;
6281
6282 vlv_get_fifo_size(crtc_state);
6283
6284 active->num_levels = wm->level + 1;
6285 active->cxsr = wm->cxsr;
6286
Ville Syrjäläff32c542017-03-02 19:14:57 +02006287 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006288 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02006289 &crtc_state->wm.vlv.raw[level];
6290
6291 active->sr[level].plane = wm->sr.plane;
6292 active->sr[level].cursor = wm->sr.cursor;
6293
6294 for_each_plane_id_on_crtc(crtc, plane_id) {
6295 active->wm[level].plane[plane_id] =
6296 wm->pipe[pipe].plane[plane_id];
6297
6298 raw->plane[plane_id] =
6299 vlv_invert_wm_value(active->wm[level].plane[plane_id],
6300 fifo_state->plane[plane_id]);
6301 }
6302 }
6303
6304 for_each_plane_id_on_crtc(crtc, plane_id)
6305 vlv_raw_plane_wm_set(crtc_state, level,
6306 plane_id, USHRT_MAX);
6307 vlv_invalidate_wms(crtc, active, level);
6308
6309 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02006310 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02006311
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006312 drm_dbg_kms(&dev_priv->drm,
6313 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
6314 pipe_name(pipe),
6315 wm->pipe[pipe].plane[PLANE_PRIMARY],
6316 wm->pipe[pipe].plane[PLANE_CURSOR],
6317 wm->pipe[pipe].plane[PLANE_SPRITE0],
6318 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02006319 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006320
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006321 drm_dbg_kms(&dev_priv->drm,
6322 "Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
6323 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006324}
6325
Ville Syrjälä602ae832017-03-02 19:15:02 +02006326void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
6327{
6328 struct intel_plane *plane;
6329 struct intel_crtc *crtc;
6330
6331 mutex_lock(&dev_priv->wm.wm_mutex);
6332
6333 for_each_intel_plane(&dev_priv->drm, plane) {
6334 struct intel_crtc *crtc =
6335 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6336 struct intel_crtc_state *crtc_state =
6337 to_intel_crtc_state(crtc->base.state);
6338 struct intel_plane_state *plane_state =
6339 to_intel_plane_state(plane->base.state);
6340 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
6341 const struct vlv_fifo_state *fifo_state =
6342 &crtc_state->wm.vlv.fifo_state;
6343 enum plane_id plane_id = plane->id;
6344 int level;
6345
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01006346 if (plane_state->uapi.visible)
Ville Syrjälä602ae832017-03-02 19:15:02 +02006347 continue;
6348
6349 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006350 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02006351 &crtc_state->wm.vlv.raw[level];
6352
6353 raw->plane[plane_id] = 0;
6354
6355 wm_state->wm[level].plane[plane_id] =
6356 vlv_invert_wm_value(raw->plane[plane_id],
6357 fifo_state->plane[plane_id]);
6358 }
6359 }
6360
6361 for_each_intel_crtc(&dev_priv->drm, crtc) {
6362 struct intel_crtc_state *crtc_state =
6363 to_intel_crtc_state(crtc->base.state);
6364
6365 crtc_state->wm.vlv.intermediate =
6366 crtc_state->wm.vlv.optimal;
6367 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
6368 }
6369
6370 vlv_program_watermarks(dev_priv);
6371
6372 mutex_unlock(&dev_priv->wm.wm_mutex);
6373}
6374
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006375/*
6376 * FIXME should probably kill this and improve
6377 * the real watermark readout/sanitation instead
6378 */
6379static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
6380{
6381 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6382 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6383 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6384
6385 /*
6386 * Don't touch WM1S_LP_EN here.
6387 * Doing so could cause underruns.
6388 */
6389}
6390
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006391void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006392{
Imre Deak820c1982013-12-17 14:46:36 +02006393 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006394 struct intel_crtc *crtc;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006395
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006396 ilk_init_lp_watermarks(dev_priv);
6397
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006398 for_each_intel_crtc(&dev_priv->drm, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006399 ilk_pipe_wm_get_hw_state(crtc);
6400
6401 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
6402 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
6403 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
6404
6405 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00006406 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02006407 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
6408 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
6409 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006410
Tvrtko Ursulin86527442016-10-13 11:03:00 +01006411 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006412 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
6413 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01006414 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006415 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
6416 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006417
6418 hw->enable_fbc_wm =
6419 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
6420}
6421
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006422/**
6423 * intel_update_watermarks - update FIFO watermark values based on current modes
Chris Wilson31383412018-02-14 14:03:03 +00006424 * @crtc: the #intel_crtc on which to compute the WM
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006425 *
6426 * Calculate watermark values for the various WM regs based on current mode
6427 * and plane configuration.
6428 *
6429 * There are several cases to deal with here:
6430 * - normal (i.e. non-self-refresh)
6431 * - self-refresh (SR) mode
6432 * - lines are large relative to FIFO size (buffer can hold up to 2)
6433 * - lines are small relative to FIFO size (buffer can hold more than 2
6434 * lines), so need to account for TLB latency
6435 *
6436 * The normal calculation is:
6437 * watermark = dotclock * bytes per pixel * latency
6438 * where latency is platform & configuration dependent (we assume pessimal
6439 * values here).
6440 *
6441 * The SR calculation is:
6442 * watermark = (trunc(latency/line time)+1) * surface width *
6443 * bytes per pixel
6444 * where
6445 * line time = htotal / dotclock
6446 * surface width = hdisplay for normal plane and 64 for cursor
6447 * and latency is assumed to be high, as above.
6448 *
6449 * The final value programmed to the register should always be rounded up,
6450 * and include an extra 2 entries to account for clock crossings.
6451 *
6452 * We don't use the sprite, so we can ignore that. And on Crestline we have
6453 * to set the non-SR watermarks to 8.
6454 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02006455void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006456{
Ville Syrjälä432081b2016-10-31 22:37:03 +02006457 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006458
6459 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006460 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006461}
6462
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306463void intel_enable_ipc(struct drm_i915_private *dev_priv)
6464{
6465 u32 val;
6466
José Roberto de Souzafd847b82018-09-18 13:47:11 -07006467 if (!HAS_IPC(dev_priv))
6468 return;
6469
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306470 val = I915_READ(DISP_ARB_CTL2);
6471
6472 if (dev_priv->ipc_enabled)
6473 val |= DISP_IPC_ENABLE;
6474 else
6475 val &= ~DISP_IPC_ENABLE;
6476
6477 I915_WRITE(DISP_ARB_CTL2, val);
6478}
6479
Ville Syrjäläc91a45f2019-05-03 20:38:07 +03006480static bool intel_can_enable_ipc(struct drm_i915_private *dev_priv)
6481{
6482 /* Display WA #0477 WaDisableIPC: skl */
6483 if (IS_SKYLAKE(dev_priv))
6484 return false;
6485
6486 /* Display WA #1141: SKL:all KBL:all CFL */
6487 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
6488 return dev_priv->dram_info.symmetric_memory;
6489
6490 return true;
6491}
6492
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306493void intel_init_ipc(struct drm_i915_private *dev_priv)
6494{
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306495 if (!HAS_IPC(dev_priv))
6496 return;
6497
Ville Syrjäläc91a45f2019-05-03 20:38:07 +03006498 dev_priv->ipc_enabled = intel_can_enable_ipc(dev_priv);
José Roberto de Souzac9b818d2018-09-18 13:47:13 -07006499
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306500 intel_enable_ipc(dev_priv);
6501}
6502
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006503static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006504{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006505 /*
6506 * On Ibex Peak and Cougar Point, we need to disable clock
6507 * gating for the panel power sequencer or it will fail to
6508 * start up when no ports are active.
6509 */
6510 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6511}
6512
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006513static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006514{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006515 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006516
Damien Lespiau055e3932014-08-18 13:49:10 +01006517 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006518 I915_WRITE(DSPCNTR(pipe),
6519 I915_READ(DSPCNTR(pipe)) |
6520 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006521
6522 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6523 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006524 }
6525}
6526
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006527static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006528{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006529 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006530
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006531 /*
6532 * Required for FBC
6533 * WaFbcDisableDpfcClockGating:ilk
6534 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006535 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6536 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6537 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006538
6539 I915_WRITE(PCH_3DCGDIS0,
6540 MARIUNIT_CLOCK_GATE_DISABLE |
6541 SVSMUNIT_CLOCK_GATE_DISABLE);
6542 I915_WRITE(PCH_3DCGDIS1,
6543 VFMUNIT_CLOCK_GATE_DISABLE);
6544
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006545 /*
6546 * According to the spec the following bits should be set in
6547 * order to enable memory self-refresh
6548 * The bit 22/21 of 0x42004
6549 * The bit 5 of 0x42020
6550 * The bit 15 of 0x45000
6551 */
6552 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6553 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6554 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006555 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006556 I915_WRITE(DISP_ARB_CTL,
6557 (I915_READ(DISP_ARB_CTL) |
6558 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006559
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006560 /*
6561 * Based on the document from hardware guys the following bits
6562 * should be set unconditionally in order to enable FBC.
6563 * The bit 22 of 0x42000
6564 * The bit 22 of 0x42004
6565 * The bit 7,8,9 of 0x42020.
6566 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006567 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006568 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006569 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6570 I915_READ(ILK_DISPLAY_CHICKEN1) |
6571 ILK_FBCQ_DIS);
6572 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6573 I915_READ(ILK_DISPLAY_CHICKEN2) |
6574 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006575 }
6576
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006577 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6578
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006579 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6580 I915_READ(ILK_DISPLAY_CHICKEN2) |
6581 ILK_ELPIN_409_SELECT);
6582 I915_WRITE(_3D_CHICKEN2,
6583 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6584 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006585
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006586 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006587 I915_WRITE(CACHE_MODE_0,
6588 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006589
Akash Goel4e046322014-04-04 17:14:38 +05306590 /* WaDisable_RenderCache_OperationalFlush:ilk */
6591 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6592
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006593 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006594
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006595 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006596}
6597
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006598static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006599{
Ville Syrjäläd048a262019-08-21 20:30:31 +03006600 enum pipe pipe;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006601 u32 val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006602
6603 /*
6604 * On Ibex Peak and Cougar Point, we need to disable clock
6605 * gating for the panel power sequencer or it will fail to
6606 * start up when no ports are active.
6607 */
Jesse Barnescd664072013-10-02 10:34:19 -07006608 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6609 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6610 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006611 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6612 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006613 /* The below fixes the weird display corruption, a few pixels shifted
6614 * downward, on (only) LVDS of some HP laptops with IVY.
6615 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006616 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006617 val = I915_READ(TRANS_CHICKEN2(pipe));
6618 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6619 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006620 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006621 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006622 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6623 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006624 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6625 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006626 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006627 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006628 I915_WRITE(TRANS_CHICKEN1(pipe),
6629 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6630 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006631}
6632
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006633static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006634{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006635 u32 tmp;
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006636
6637 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006638 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006639 drm_dbg_kms(&dev_priv->drm,
6640 "Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6641 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006642}
6643
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006644static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006645{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006646 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006647
Damien Lespiau231e54f2012-10-19 17:55:41 +01006648 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006649
6650 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6651 I915_READ(ILK_DISPLAY_CHICKEN2) |
6652 ILK_ELPIN_409_SELECT);
6653
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006654 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006655 I915_WRITE(_3D_CHICKEN,
6656 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6657
Akash Goel4e046322014-04-04 17:14:38 +05306658 /* WaDisable_RenderCache_OperationalFlush:snb */
6659 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6660
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006661 /*
6662 * BSpec recoomends 8x4 when MSAA is used,
6663 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006664 *
6665 * Note that PS/WM thread counts depend on the WIZ hashing
6666 * disable bit, which we don't touch here, but it's good
6667 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006668 */
6669 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006670 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006671
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006672 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006673 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006674
6675 I915_WRITE(GEN6_UCGCTL1,
6676 I915_READ(GEN6_UCGCTL1) |
6677 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6678 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6679
6680 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6681 * gating disable must be set. Failure to set it results in
6682 * flickering pixels due to Z write ordering failures after
6683 * some amount of runtime in the Mesa "fire" demo, and Unigine
6684 * Sanctuary and Tropics, and apparently anything else with
6685 * alpha test or pixel discard.
6686 *
6687 * According to the spec, bit 11 (RCCUNIT) must also be set,
6688 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006689 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006690 * WaDisableRCCUnitClockGating:snb
6691 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006692 */
6693 I915_WRITE(GEN6_UCGCTL2,
6694 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6695 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6696
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006697 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006698 I915_WRITE(_3D_CHICKEN3,
6699 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006700
6701 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006702 * Bspec says:
6703 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6704 * 3DSTATE_SF number of SF output attributes is more than 16."
6705 */
6706 I915_WRITE(_3D_CHICKEN3,
6707 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6708
6709 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006710 * According to the spec the following bits should be
6711 * set in order to enable memory self-refresh and fbc:
6712 * The bit21 and bit22 of 0x42000
6713 * The bit21 and bit22 of 0x42004
6714 * The bit5 and bit7 of 0x42020
6715 * The bit14 of 0x70180
6716 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006717 *
6718 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006719 */
6720 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6721 I915_READ(ILK_DISPLAY_CHICKEN1) |
6722 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6723 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6724 I915_READ(ILK_DISPLAY_CHICKEN2) |
6725 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006726 I915_WRITE(ILK_DSPCLK_GATE_D,
6727 I915_READ(ILK_DSPCLK_GATE_D) |
6728 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6729 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006730
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006731 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006732
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006733 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006734
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006735 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006736}
6737
6738static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6739{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006740 u32 reg = I915_READ(GEN7_FF_THREAD_MODE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006741
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006742 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006743 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006744 *
6745 * This actually overrides the dispatch
6746 * mode for all thread types.
6747 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006748 reg &= ~GEN7_FF_SCHED_MASK;
6749 reg |= GEN7_FF_TS_SCHED_HW;
6750 reg |= GEN7_FF_VS_SCHED_HW;
6751 reg |= GEN7_FF_DS_SCHED_HW;
6752
6753 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6754}
6755
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006756static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006757{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006758 /*
6759 * TODO: this bit should only be enabled when really needed, then
6760 * disabled when not needed anymore in order to save power.
6761 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006762 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006763 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6764 I915_READ(SOUTH_DSPCLK_GATE_D) |
6765 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006766
6767 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006768 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6769 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006770 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006771}
6772
Ville Syrjälä712bf362016-10-31 22:37:23 +02006773static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03006774{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006775 if (HAS_PCH_LPT_LP(dev_priv)) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006776 u32 val = I915_READ(SOUTH_DSPCLK_GATE_D);
Imre Deak7d708ee2013-04-17 14:04:50 +03006777
6778 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6779 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6780 }
6781}
6782
Imre Deak450174f2016-05-03 15:54:21 +03006783static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
6784 int general_prio_credits,
6785 int high_prio_credits)
6786{
6787 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07006788 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03006789
6790 /* WaTempDisableDOPClkGating:bdw */
6791 misccpctl = I915_READ(GEN7_MISCCPCTL);
6792 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6793
Oscar Mateo930a7842017-10-17 13:25:45 -07006794 val = I915_READ(GEN8_L3SQCREG1);
6795 val &= ~L3_PRIO_CREDITS_MASK;
6796 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
6797 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
6798 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03006799
6800 /*
6801 * Wait at least 100 clocks before re-enabling clock gating.
6802 * See the definition of L3SQCREG1 in BSpec.
6803 */
6804 POSTING_READ(GEN8_L3SQCREG1);
6805 udelay(1);
6806 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6807}
6808
Oscar Mateod65dc3e2018-05-08 14:29:24 -07006809static void icl_init_clock_gating(struct drm_i915_private *dev_priv)
6810{
6811 /* This is not an Wa. Enable to reduce Sampler power */
6812 I915_WRITE(GEN10_DFR_RATIO_EN_AND_CHICKEN,
6813 I915_READ(GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE);
Radhakrishna Sripada622b3f62018-10-30 01:45:01 -07006814
6815 /* WaEnable32PlaneMode:icl */
6816 I915_WRITE(GEN9_CSFE_CHICKEN1_RCS,
6817 _MASKED_BIT_ENABLE(GEN11_ENABLE_32_PLANE_MODE));
Matt Roperb9cf9da2019-12-23 17:20:25 -08006818
6819 /*
6820 * Wa_1408615072:icl,ehl (vsunit)
6821 * Wa_1407596294:icl,ehl (hsunit)
6822 */
6823 intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE,
6824 0, VSUNIT_CLKGATE_DIS | HSUNIT_CLKGATE_DIS);
6825
Matt Roper1cd21a72019-12-31 11:07:13 -08006826 /* Wa_1407352427:icl,ehl */
6827 intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE2,
6828 0, PSDUNIT_CLKGATE_DIS);
Matt Atwood6f4194c2020-01-13 23:11:28 -05006829
6830 /*Wa_14010594013:icl, ehl */
6831 intel_uncore_rmw(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1,
6832 0, CNL_DELAY_PMRSP);
Oscar Mateod65dc3e2018-05-08 14:29:24 -07006833}
6834
Michel Thierry5d869232019-08-23 01:20:34 -07006835static void tgl_init_clock_gating(struct drm_i915_private *dev_priv)
6836{
6837 u32 vd_pg_enable = 0;
6838 unsigned int i;
6839
Matt Roper4ca15382019-12-23 17:20:26 -08006840 /* Wa_1408615072:tgl */
6841 intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE2,
6842 0, VSUNIT_CLKGATE_DIS_TGL);
6843
Michel Thierry5d869232019-08-23 01:20:34 -07006844 /* This is not a WA. Enable VD HCP & MFX_ENC powergate */
6845 for (i = 0; i < I915_MAX_VCS; i++) {
6846 if (HAS_ENGINE(dev_priv, _VCS(i)))
6847 vd_pg_enable |= VDN_HCP_POWERGATE_ENABLE(i) |
6848 VDN_MFX_POWERGATE_ENABLE(i);
6849 }
6850
6851 I915_WRITE(POWERGATE_ENABLE,
6852 I915_READ(POWERGATE_ENABLE) | vd_pg_enable);
Radhakrishna Sripadaf78d5da2020-01-09 14:37:27 -08006853
6854 /* Wa_1409825376:tgl (pre-prod)*/
6855 if (IS_TGL_REVID(dev_priv, TGL_REVID_A0, TGL_REVID_A0))
6856 I915_WRITE(GEN9_CLKGATE_DIS_3, I915_READ(GEN9_CLKGATE_DIS_3) |
6857 TGL_VRH_GATING_DIS);
Michel Thierry5d869232019-08-23 01:20:34 -07006858}
6859
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006860static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
6861{
6862 if (!HAS_PCH_CNP(dev_priv))
6863 return;
6864
Rodrigo Vivi470e7c62018-03-05 17:28:12 -08006865 /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07006866 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
6867 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006868}
6869
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006870static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006871{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07006872 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006873 cnp_init_clock_gating(dev_priv);
6874
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07006875 /* This is not an Wa. Enable for better image quality */
6876 I915_WRITE(_3D_CHICKEN3,
6877 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
6878
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006879 /* WaEnableChickenDCPR:cnl */
6880 I915_WRITE(GEN8_CHICKEN_DCPR_1,
6881 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
6882
6883 /* WaFbcWakeMemOn:cnl */
6884 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
6885 DISP_FBC_MEMORY_WAKE);
6886
Chris Wilson34991bd2017-11-11 10:03:36 +00006887 val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE);
6888 /* ReadHitWriteOnlyDisable:cnl */
6889 val |= RCCUNIT_CLKGATE_DIS;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006890 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
6891 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
Chris Wilson34991bd2017-11-11 10:03:36 +00006892 val |= SARBUNIT_CLKGATE_DIS;
6893 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val);
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006894
Rodrigo Vivia4713c52018-03-07 14:09:12 -08006895 /* Wa_2201832410:cnl */
6896 val = I915_READ(SUBSLICE_UNIT_LEVEL_CLKGATE);
6897 val |= GWUNIT_CLKGATE_DIS;
6898 I915_WRITE(SUBSLICE_UNIT_LEVEL_CLKGATE, val);
6899
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006900 /* WaDisableVFclkgate:cnl */
Rodrigo Vivi14941b62018-03-05 17:20:00 -08006901 /* WaVFUnitClockGatingDisable:cnl */
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006902 val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE);
6903 val |= VFUNIT_CLKGATE_DIS;
6904 I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006905}
6906
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006907static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
6908{
6909 cnp_init_clock_gating(dev_priv);
6910 gen9_init_clock_gating(dev_priv);
6911
6912 /* WaFbcNukeOnHostModify:cfl */
6913 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
6914 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
6915}
6916
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006917static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03006918{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006919 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03006920
6921 /* WaDisableSDEUnitClockGating:kbl */
6922 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
6923 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6924 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03006925
6926 /* WaDisableGamClockGating:kbl */
6927 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
6928 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
6929 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03006930
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006931 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03006932 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
6933 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03006934}
6935
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006936static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02006937{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006938 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03006939
6940 /* WAC6entrylatency:skl */
6941 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
6942 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03006943
6944 /* WaFbcNukeOnHostModify:skl */
6945 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
6946 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02006947}
6948
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006949static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006950{
Damien Lespiau07d27e22014-03-03 17:31:46 +00006951 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006952
Ben Widawskyab57fff2013-12-12 15:28:04 -08006953 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07006954 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006955
Ben Widawskyab57fff2013-12-12 15:28:04 -08006956 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006957 I915_WRITE(CHICKEN_PAR1_1,
6958 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
6959
Ben Widawskyab57fff2013-12-12 15:28:04 -08006960 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01006961 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00006962 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02006963 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02006964 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07006965 }
Ben Widawsky63801f22013-12-12 17:26:03 -08006966
Ben Widawskyab57fff2013-12-12 15:28:04 -08006967 /* WaVSRefCountFullforceMissDisable:bdw */
6968 /* WaDSRefCountFullforceMissDisable:bdw */
6969 I915_WRITE(GEN7_FF_THREAD_MODE,
6970 I915_READ(GEN7_FF_THREAD_MODE) &
6971 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02006972
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02006973 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
6974 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02006975
6976 /* WaDisableSDEUnitClockGating:bdw */
6977 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
6978 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00006979
Imre Deak450174f2016-05-03 15:54:21 +03006980 /* WaProgramL3SqcReg1Default:bdw */
6981 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03006982
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03006983 /* WaKVMNotificationOnConfigChange:bdw */
6984 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
6985 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
6986
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006987 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00006988
6989 /* WaDisableDopClockGating:bdw
6990 *
6991 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
6992 * clock gating.
6993 */
6994 I915_WRITE(GEN6_UCGCTL1,
6995 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07006996}
6997
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006998static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03006999{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007000 /* L3 caching of data atomics doesn't work -- disable it. */
7001 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7002 I915_WRITE(HSW_ROW_CHICKEN3,
7003 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7004
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007005 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007006 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7007 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7008 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7009
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007010 /* WaVSRefCountFullforceMissDisable:hsw */
7011 I915_WRITE(GEN7_FF_THREAD_MODE,
7012 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007013
Akash Goel4e046322014-04-04 17:14:38 +05307014 /* WaDisable_RenderCache_OperationalFlush:hsw */
7015 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7016
Chia-I Wufe27c602014-01-28 13:29:33 +08007017 /* enable HiZ Raw Stall Optimization */
7018 I915_WRITE(CACHE_MODE_0_GEN7,
7019 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7020
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007021 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007022 I915_WRITE(CACHE_MODE_1,
7023 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007024
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007025 /*
7026 * BSpec recommends 8x4 when MSAA is used,
7027 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007028 *
7029 * Note that PS/WM thread counts depend on the WIZ hashing
7030 * disable bit, which we don't touch here, but it's good
7031 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007032 */
7033 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007034 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007035
Kenneth Graunke94411592014-12-31 16:23:00 -08007036 /* WaSampleCChickenBitEnable:hsw */
7037 I915_WRITE(HALF_SLICE_CHICKEN3,
7038 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7039
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007040 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007041 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7042
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007043 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007044}
7045
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007046static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007047{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02007048 u32 snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007049
Damien Lespiau231e54f2012-10-19 17:55:41 +01007050 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007051
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007052 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007053 I915_WRITE(_3D_CHICKEN3,
7054 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7055
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007056 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007057 I915_WRITE(IVB_CHICKEN3,
7058 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7059 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7060
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007061 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007062 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007063 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7064 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007065
Akash Goel4e046322014-04-04 17:14:38 +05307066 /* WaDisable_RenderCache_OperationalFlush:ivb */
7067 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7068
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007069 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007070 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7071 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7072
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007073 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007074 I915_WRITE(GEN7_L3CNTLREG1,
7075 GEN7_WA_FOR_GEN7_L3_CONTROL);
7076 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007077 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007078 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007079 I915_WRITE(GEN7_ROW_CHICKEN2,
7080 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007081 else {
7082 /* must write both registers */
7083 I915_WRITE(GEN7_ROW_CHICKEN2,
7084 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007085 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7086 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007087 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007088
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007089 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007090 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7091 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7092
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007093 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007094 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007095 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007096 */
7097 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007098 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007099
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007100 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007101 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7102 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7103 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7104
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007105 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007106
7107 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007108
Chris Wilson22721342014-03-04 09:41:43 +00007109 if (0) { /* causes HiZ corruption on ivb:gt1 */
7110 /* enable HiZ Raw Stall Optimization */
7111 I915_WRITE(CACHE_MODE_0_GEN7,
7112 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7113 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007114
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007115 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007116 I915_WRITE(CACHE_MODE_1,
7117 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007118
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007119 /*
7120 * BSpec recommends 8x4 when MSAA is used,
7121 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007122 *
7123 * Note that PS/WM thread counts depend on the WIZ hashing
7124 * disable bit, which we don't touch here, but it's good
7125 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007126 */
7127 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007128 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007129
Ben Widawsky20848222012-05-04 18:58:59 -07007130 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7131 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7132 snpcr |= GEN6_MBC_SNPCR_MED;
7133 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007134
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007135 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007136 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007137
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007138 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007139}
7140
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007141static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007142{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007143 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007144 I915_WRITE(_3D_CHICKEN3,
7145 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7146
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007147 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007148 I915_WRITE(IVB_CHICKEN3,
7149 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7150 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7151
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007152 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007153 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007154 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007155 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7156 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007157
Akash Goel4e046322014-04-04 17:14:38 +05307158 /* WaDisable_RenderCache_OperationalFlush:vlv */
7159 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7160
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007161 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007162 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7163 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7164
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007165 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007166 I915_WRITE(GEN7_ROW_CHICKEN2,
7167 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7168
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007169 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007170 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7171 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7172 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7173
Ville Syrjälä46680e02014-01-22 21:33:01 +02007174 gen7_setup_fixed_func_scheduler(dev_priv);
7175
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007176 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007177 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007178 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007179 */
7180 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007181 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007182
Akash Goelc98f5062014-03-24 23:00:07 +05307183 /* WaDisableL3Bank2xClockGate:vlv
7184 * Disabling L3 clock gating- MMIO 940c[25] = 1
7185 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7186 I915_WRITE(GEN7_UCGCTL4,
7187 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007188
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007189 /*
7190 * BSpec says this must be set, even though
7191 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7192 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007193 I915_WRITE(CACHE_MODE_1,
7194 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007195
7196 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007197 * BSpec recommends 8x4 when MSAA is used,
7198 * however in practice 16x4 seems fastest.
7199 *
7200 * Note that PS/WM thread counts depend on the WIZ hashing
7201 * disable bit, which we don't touch here, but it's good
7202 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7203 */
7204 I915_WRITE(GEN7_GT_MODE,
7205 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7206
7207 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007208 * WaIncreaseL3CreditsForVLVB0:vlv
7209 * This is the hardware default actually.
7210 */
7211 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7212
7213 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007214 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007215 * Disable clock gating on th GCFG unit to prevent a delay
7216 * in the reporting of vblank events.
7217 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007218 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007219}
7220
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007221static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007222{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007223 /* WaVSRefCountFullforceMissDisable:chv */
7224 /* WaDSRefCountFullforceMissDisable:chv */
7225 I915_WRITE(GEN7_FF_THREAD_MODE,
7226 I915_READ(GEN7_FF_THREAD_MODE) &
7227 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007228
7229 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7230 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7231 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007232
7233 /* WaDisableCSUnitClockGating:chv */
7234 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7235 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007236
7237 /* WaDisableSDEUnitClockGating:chv */
7238 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7239 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007240
7241 /*
Imre Deak450174f2016-05-03 15:54:21 +03007242 * WaProgramL3SqcReg1Default:chv
7243 * See gfxspecs/Related Documents/Performance Guide/
7244 * LSQC Setting Recommendations.
7245 */
7246 gen8_set_l3sqc_credits(dev_priv, 38, 2);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007247}
7248
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007249static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007250{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02007251 u32 dspclk_gate;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007252
7253 I915_WRITE(RENCLK_GATE_D1, 0);
7254 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7255 GS_UNIT_CLOCK_GATE_DISABLE |
7256 CL_UNIT_CLOCK_GATE_DISABLE);
7257 I915_WRITE(RAMCLK_GATE_D, 0);
7258 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7259 OVRUNIT_CLOCK_GATE_DISABLE |
7260 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007261 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007262 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7263 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007264
7265 /* WaDisableRenderCachePipelinedFlush */
7266 I915_WRITE(CACHE_MODE_0,
7267 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007268
Akash Goel4e046322014-04-04 17:14:38 +05307269 /* WaDisable_RenderCache_OperationalFlush:g4x */
7270 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7271
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007272 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007273}
7274
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007275static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007276{
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +01007277 struct intel_uncore *uncore = &dev_priv->uncore;
7278
7279 intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7280 intel_uncore_write(uncore, RENCLK_GATE_D2, 0);
7281 intel_uncore_write(uncore, DSPCLK_GATE_D, 0);
7282 intel_uncore_write(uncore, RAMCLK_GATE_D, 0);
7283 intel_uncore_write16(uncore, DEUC, 0);
7284 intel_uncore_write(uncore,
7285 MI_ARB_STATE,
7286 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307287
7288 /* WaDisable_RenderCache_OperationalFlush:gen4 */
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +01007289 intel_uncore_write(uncore,
7290 CACHE_MODE_0,
7291 _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007292}
7293
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007294static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007295{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007296 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7297 I965_RCC_CLOCK_GATE_DISABLE |
7298 I965_RCPB_CLOCK_GATE_DISABLE |
7299 I965_ISC_CLOCK_GATE_DISABLE |
7300 I965_FBC_CLOCK_GATE_DISABLE);
7301 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007302 I915_WRITE(MI_ARB_STATE,
7303 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307304
7305 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7306 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007307}
7308
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007309static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007310{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007311 u32 dstate = I915_READ(D_STATE);
7312
7313 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7314 DSTATE_DOT_CLOCK_GATING;
7315 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007316
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007317 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007318 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007319
7320 /* IIR "flip pending" means done if this bit is set */
7321 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007322
7323 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007324 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007325
7326 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7327 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007328
7329 I915_WRITE(MI_ARB_STATE,
7330 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007331}
7332
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007333static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007334{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007335 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007336
7337 /* interrupts should cause a wake up from C3 */
7338 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7339 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007340
7341 I915_WRITE(MEM_MODE,
7342 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007343}
7344
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007345static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007346{
Ville Syrjälä10383922014-08-15 01:21:54 +03007347 I915_WRITE(MEM_MODE,
7348 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7349 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007350}
7351
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007352void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007353{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007354 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007355}
7356
Ville Syrjälä712bf362016-10-31 22:37:23 +02007357void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007358{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007359 if (HAS_PCH_LPT(dev_priv))
7360 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007361}
7362
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007363static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007364{
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007365 drm_dbg_kms(&dev_priv->drm,
7366 "No clock gating settings or workarounds applied.\n");
Imre Deakbb400da2016-03-16 13:38:54 +02007367}
7368
7369/**
7370 * intel_init_clock_gating_hooks - setup the clock gating hooks
7371 * @dev_priv: device private
7372 *
7373 * Setup the hooks that configure which clocks of a given platform can be
7374 * gated and also apply various GT and display specific workarounds for these
7375 * platforms. Note that some GT specific workarounds are applied separately
7376 * when GPU contexts or batchbuffers start their execution.
7377 */
7378void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7379{
Lucas De Marchi13e53c52019-08-17 02:38:42 -07007380 if (IS_GEN(dev_priv, 12))
Michel Thierry5d869232019-08-23 01:20:34 -07007381 dev_priv->display.init_clock_gating = tgl_init_clock_gating;
Lucas De Marchi13e53c52019-08-17 02:38:42 -07007382 else if (IS_GEN(dev_priv, 11))
Oscar Mateod65dc3e2018-05-08 14:29:24 -07007383 dev_priv->display.init_clock_gating = icl_init_clock_gating;
Oscar Mateocc38cae2018-05-08 14:29:23 -07007384 else if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007385 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007386 else if (IS_COFFEELAKE(dev_priv))
7387 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07007388 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007389 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007390 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007391 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007392 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007393 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007394 else if (IS_GEMINILAKE(dev_priv))
7395 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007396 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007397 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007398 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007399 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007400 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007401 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007402 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007403 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007404 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007405 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007406 else if (IS_GEN(dev_priv, 6))
Imre Deakbb400da2016-03-16 13:38:54 +02007407 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007408 else if (IS_GEN(dev_priv, 5))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007409 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007410 else if (IS_G4X(dev_priv))
7411 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007412 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007413 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007414 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007415 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007416 else if (IS_GEN(dev_priv, 3))
Imre Deakbb400da2016-03-16 13:38:54 +02007417 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7418 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7419 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007420 else if (IS_GEN(dev_priv, 2))
Imre Deakbb400da2016-03-16 13:38:54 +02007421 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7422 else {
7423 MISSING_CASE(INTEL_DEVID(dev_priv));
7424 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7425 }
7426}
7427
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007428/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007429void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007430{
Daniel Vetterc921aba2012-04-26 23:28:17 +02007431 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007432 if (IS_PINEVIEW(dev_priv))
Lucas De Marchi1d218222019-12-24 00:40:04 -08007433 pnv_get_mem_freq(dev_priv);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007434 else if (IS_GEN(dev_priv, 5))
Lucas De Marchi9eae5e22019-12-24 00:40:09 -08007435 ilk_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007436
James Ausmusb068a862019-10-09 10:23:14 -07007437 if (intel_has_sagv(dev_priv))
7438 skl_setup_sagv_block_time(dev_priv);
7439
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007440 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007441 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007442 skl_setup_wm_latency(dev_priv);
Matt Roper98d39492016-05-12 07:06:03 -07007443 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007444 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007445 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007446
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007447 if ((IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007448 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007449 (!IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007450 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007451 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007452 dev_priv->display.compute_intermediate_wm =
7453 ilk_compute_intermediate_wm;
7454 dev_priv->display.initial_watermarks =
7455 ilk_initial_watermarks;
7456 dev_priv->display.optimize_watermarks =
7457 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007458 } else {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007459 drm_dbg_kms(&dev_priv->drm,
7460 "Failed to read display plane latency. "
7461 "Disable CxSR\n");
Ville Syrjäläbd602542014-01-07 16:14:10 +02007462 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007463 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007464 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02007465 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007466 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007467 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007468 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007469 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03007470 } else if (IS_G4X(dev_priv)) {
7471 g4x_setup_wm_latency(dev_priv);
7472 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
7473 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
7474 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
7475 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007476 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin86d35d42019-03-26 07:40:54 +00007477 if (!intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007478 dev_priv->is_ddr3,
7479 dev_priv->fsb_freq,
7480 dev_priv->mem_freq)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007481 drm_info(&dev_priv->drm,
7482 "failed to find known CxSR latency "
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007483 "(found ddr%s fsb freq %d, mem freq %d), "
7484 "disabling CxSR\n",
7485 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7486 dev_priv->fsb_freq, dev_priv->mem_freq);
7487 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007488 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007489 dev_priv->display.update_wm = NULL;
7490 } else
Lucas De Marchi1d218222019-12-24 00:40:04 -08007491 dev_priv->display.update_wm = pnv_update_wm;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007492 } else if (IS_GEN(dev_priv, 4)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007493 dev_priv->display.update_wm = i965_update_wm;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007494 } else if (IS_GEN(dev_priv, 3)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007495 dev_priv->display.update_wm = i9xx_update_wm;
7496 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007497 } else if (IS_GEN(dev_priv, 2)) {
Jani Nikula24977872019-09-11 12:26:08 +03007498 if (INTEL_NUM_PIPES(dev_priv) == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007499 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007500 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007501 } else {
7502 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007503 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007504 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007505 } else {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007506 drm_err(&dev_priv->drm,
7507 "unexpected fall-through in %s\n", __func__);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007508 }
7509}
7510
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00007511void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01007512{
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01007513 dev_priv->runtime_pm.suspended = false;
7514 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007515}