blob: 29c37e4a666cf5d87afa4def44878876d35baa1a [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 Nikulaa10510a2020-02-27 19:00:47 +020043#include "i915_fixed.h"
Jani Nikula440e2b32019-04-29 15:29:27 +030044#include "i915_irq.h"
Jani Nikulaa09d9a82019-08-06 13:07:28 +030045#include "i915_trace.h"
Stanislav Lisovskiy97288892020-04-30 22:17:57 +030046#include "display/intel_bw.h"
Jani Nikula696173b2019-04-05 14:00:15 +030047#include "intel_pm.h"
Chris Wilson56c50982019-04-26 09:17:22 +010048#include "intel_sideband.h"
Daniel Vettereb48eb02012-04-26 23:28:12 +020049#include "../../../platform/x86/intel_ips.h"
Eugeni Dodonov85208be2012-04-16 22:20:34 -030050
Jani Nikulaa10510a2020-02-27 19:00:47 +020051/* Stores plane specific WM parameters */
52struct skl_wm_params {
53 bool x_tiled, y_tiled;
54 bool rc_surface;
55 bool is_planar;
56 u32 width;
57 u8 cpp;
58 u32 plane_pixel_rate;
59 u32 y_min_scanlines;
60 u32 plane_bytes_per_line;
61 uint_fixed_16_16_t plane_blocks_per_line;
62 uint_fixed_16_16_t y_tile_minimum;
63 u32 linetime_us;
64 u32 dbuf_block_size;
65};
66
67/* used in computing the new watermarks state */
68struct intel_wm_config {
69 unsigned int num_pipes_active;
70 bool sprites_enabled;
71 bool sprites_scaled;
72};
73
Ville Syrjälä46f16e62016-10-31 22:37:22 +020074static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppalab033bb62016-06-07 17:19:04 +030075{
Ville Syrjälä93564042017-08-24 22:10:51 +030076 if (HAS_LLC(dev_priv)) {
77 /*
78 * WaCompressedResourceDisplayNewHashMode:skl,kbl
Lucas De Marchie0403cb2017-12-05 11:01:17 -080079 * Display WA #0390: skl,kbl
Ville Syrjälä93564042017-08-24 22:10:51 +030080 *
81 * Must match Sampler, Pixel Back End, and Media. See
82 * WaCompressedResourceSamplerPbeMediaNewHashMode.
83 */
84 I915_WRITE(CHICKEN_PAR1_1,
85 I915_READ(CHICKEN_PAR1_1) |
86 SKL_DE_COMPRESSED_HASH_MODE);
87 }
88
Rodrigo Vivi82525c12017-06-08 08:50:00 -070089 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
Mika Kuoppalab033bb62016-06-07 17:19:04 +030090 I915_WRITE(CHICKEN_PAR1_1,
91 I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
92
Rodrigo Vivi82525c12017-06-08 08:50:00 -070093 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
Mika Kuoppala590e8ff2016-06-07 17:19:13 +030094 I915_WRITE(GEN8_CHICKEN_DCPR_1,
95 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
Mika Kuoppala0f78dee2016-06-07 17:19:16 +030096
Rodrigo Vivi82525c12017-06-08 08:50:00 -070097 /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */
98 /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */
Mika Kuoppala303d4ea2016-06-07 17:19:17 +030099 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
100 DISP_FBC_WM_DIS |
101 DISP_FBC_MEMORY_WAKE);
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +0300102
Rodrigo Vivi82525c12017-06-08 08:50:00 -0700103 /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */
Mika Kuoppalad1b4eef2016-06-07 17:19:19 +0300104 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
105 ILK_DPFC_DISABLE_DUMMY0);
Praveen Paneri32087d12017-08-03 23:02:10 +0530106
107 if (IS_SKYLAKE(dev_priv)) {
108 /* WaDisableDopClockGating */
109 I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL)
110 & ~GEN7_DOP_CLOCK_GATE_ENABLE);
111 }
Mika Kuoppalab033bb62016-06-07 17:19:04 +0300112}
113
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200114static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deaka82abe42015-03-27 14:00:04 +0200115{
Ville Syrjälä46f16e62016-10-31 22:37:22 +0200116 gen9_init_clock_gating(dev_priv);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +0200117
Nick Hoatha7546152015-06-29 14:07:32 +0100118 /* WaDisableSDEUnitClockGating:bxt */
119 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
120 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
121
Imre Deak32608ca2015-03-11 11:10:27 +0200122 /*
123 * FIXME:
Ben Widawsky868434c2015-03-11 10:49:32 +0200124 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
Imre Deak32608ca2015-03-11 11:10:27 +0200125 */
Imre Deak32608ca2015-03-11 11:10:27 +0200126 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
Ben Widawsky868434c2015-03-11 10:49:32 +0200127 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
Imre Deakd965e7ac2015-12-01 10:23:52 +0200128
129 /*
130 * Wa: Backlight PWM may stop in the asserted state, causing backlight
131 * to stay fully on.
132 */
Jani Nikula8aeaf642017-02-15 17:21:37 +0200133 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
134 PWM1_GATING_DIS | PWM2_GATING_DIS);
Uma Shankar1d85a292018-08-07 21:15:35 +0530135
136 /*
137 * Lower the display internal timeout.
138 * This is needed to avoid any hard hangs when DSI port PLL
139 * is off and a MMIO access is attempted by any privilege
140 * application, using batch buffers or any other means.
141 */
142 I915_WRITE(RM_TIMEOUT, MMIO_TIMEOUT_US(950));
Imre Deaka82abe42015-03-27 14:00:04 +0200143}
144
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +0200145static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
146{
147 gen9_init_clock_gating(dev_priv);
148
149 /*
150 * WaDisablePWMClockGating:glk
151 * Backlight PWM may stop in the asserted state, causing backlight
152 * to stay fully on.
153 */
154 I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) |
155 PWM1_GATING_DIS | PWM2_GATING_DIS);
156}
157
Lucas De Marchi1d218222019-12-24 00:40:04 -0800158static void pnv_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200159{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200160 u32 tmp;
161
162 tmp = I915_READ(CLKCFG);
163
164 switch (tmp & CLKCFG_FSB_MASK) {
165 case CLKCFG_FSB_533:
166 dev_priv->fsb_freq = 533; /* 133*4 */
167 break;
168 case CLKCFG_FSB_800:
169 dev_priv->fsb_freq = 800; /* 200*4 */
170 break;
171 case CLKCFG_FSB_667:
172 dev_priv->fsb_freq = 667; /* 167*4 */
173 break;
174 case CLKCFG_FSB_400:
175 dev_priv->fsb_freq = 400; /* 100*4 */
176 break;
177 }
178
179 switch (tmp & CLKCFG_MEM_MASK) {
180 case CLKCFG_MEM_533:
181 dev_priv->mem_freq = 533;
182 break;
183 case CLKCFG_MEM_667:
184 dev_priv->mem_freq = 667;
185 break;
186 case CLKCFG_MEM_800:
187 dev_priv->mem_freq = 800;
188 break;
189 }
190
191 /* detect pineview DDR3 setting */
192 tmp = I915_READ(CSHRDDR3CTL);
193 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
194}
195
Lucas De Marchi9eae5e22019-12-24 00:40:09 -0800196static void ilk_get_mem_freq(struct drm_i915_private *dev_priv)
Daniel Vetterc921aba2012-04-26 23:28:17 +0200197{
Daniel Vetterc921aba2012-04-26 23:28:17 +0200198 u16 ddrpll, csipll;
199
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +0100200 ddrpll = intel_uncore_read16(&dev_priv->uncore, DDRMPLL1);
201 csipll = intel_uncore_read16(&dev_priv->uncore, CSIPLL0);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200202
203 switch (ddrpll & 0xff) {
204 case 0xc:
205 dev_priv->mem_freq = 800;
206 break;
207 case 0x10:
208 dev_priv->mem_freq = 1066;
209 break;
210 case 0x14:
211 dev_priv->mem_freq = 1333;
212 break;
213 case 0x18:
214 dev_priv->mem_freq = 1600;
215 break;
216 default:
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300217 drm_dbg(&dev_priv->drm, "unknown memory frequency 0x%02x\n",
218 ddrpll & 0xff);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200219 dev_priv->mem_freq = 0;
220 break;
221 }
222
Daniel Vetterc921aba2012-04-26 23:28:17 +0200223 switch (csipll & 0x3ff) {
224 case 0x00c:
225 dev_priv->fsb_freq = 3200;
226 break;
227 case 0x00e:
228 dev_priv->fsb_freq = 3733;
229 break;
230 case 0x010:
231 dev_priv->fsb_freq = 4266;
232 break;
233 case 0x012:
234 dev_priv->fsb_freq = 4800;
235 break;
236 case 0x014:
237 dev_priv->fsb_freq = 5333;
238 break;
239 case 0x016:
240 dev_priv->fsb_freq = 5866;
241 break;
242 case 0x018:
243 dev_priv->fsb_freq = 6400;
244 break;
245 default:
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300246 drm_dbg(&dev_priv->drm, "unknown fsb frequency 0x%04x\n",
247 csipll & 0x3ff);
Daniel Vetterc921aba2012-04-26 23:28:17 +0200248 dev_priv->fsb_freq = 0;
249 break;
250 }
Daniel Vetterc921aba2012-04-26 23:28:17 +0200251}
252
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300253static const struct cxsr_latency cxsr_latency_table[] = {
254 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
255 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
256 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
257 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
258 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
259
260 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
261 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
262 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
263 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
264 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
265
266 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
267 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
268 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
269 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
270 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
271
272 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
273 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
274 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
275 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
276 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
277
278 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
279 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
280 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
281 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
282 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
283
284 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
285 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
286 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
287 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
288 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
289};
290
Tvrtko Ursulin44a655c2016-10-13 11:09:23 +0100291static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
292 bool is_ddr3,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300293 int fsb,
294 int mem)
295{
296 const struct cxsr_latency *latency;
297 int i;
298
299 if (fsb == 0 || mem == 0)
300 return NULL;
301
302 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
303 latency = &cxsr_latency_table[i];
304 if (is_desktop == latency->is_desktop &&
305 is_ddr3 == latency->is_ddr3 &&
306 fsb == latency->fsb_freq && mem == latency->mem_freq)
307 return latency;
308 }
309
310 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
311
312 return NULL;
313}
314
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200315static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
316{
317 u32 val;
318
Chris Wilson337fa6e2019-04-26 09:17:20 +0100319 vlv_punit_get(dev_priv);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200320
321 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
322 if (enable)
323 val &= ~FORCE_DDR_HIGH_FREQ;
324 else
325 val |= FORCE_DDR_HIGH_FREQ;
326 val &= ~FORCE_DDR_LOW_FREQ;
327 val |= FORCE_DDR_FREQ_REQ_ACK;
328 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
329
330 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
331 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300332 drm_err(&dev_priv->drm,
333 "timed out waiting for Punit DDR DVFS request\n");
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200334
Chris Wilson337fa6e2019-04-26 09:17:20 +0100335 vlv_punit_put(dev_priv);
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200336}
337
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200338static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
339{
340 u32 val;
341
Chris Wilson337fa6e2019-04-26 09:17:20 +0100342 vlv_punit_get(dev_priv);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200343
Ville Syrjäläc11b8132018-11-29 19:55:03 +0200344 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200345 if (enable)
346 val |= DSP_MAXFIFO_PM5_ENABLE;
347 else
348 val &= ~DSP_MAXFIFO_PM5_ENABLE;
Ville Syrjäläc11b8132018-11-29 19:55:03 +0200349 vlv_punit_write(dev_priv, PUNIT_REG_DSPSSPM, val);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200350
Chris Wilson337fa6e2019-04-26 09:17:20 +0100351 vlv_punit_put(dev_priv);
Ville Syrjäläcfb41412015-03-05 21:19:51 +0200352}
353
Ville Syrjäläf4998962015-03-10 17:02:21 +0200354#define FW_WM(value, plane) \
355 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
356
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200357static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300358{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200359 bool was_enabled;
Imre Deak5209b1f2014-07-01 12:36:17 +0300360 u32 val;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300361
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100362 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200363 was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300364 I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300365 POSTING_READ(FW_BLC_SELF_VLV);
Jani Nikulac0f86832016-12-07 12:13:04 +0200366 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200367 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300368 I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300369 POSTING_READ(FW_BLC_SELF);
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +0200370 } else if (IS_PINEVIEW(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200371 val = I915_READ(DSPFW3);
372 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
373 if (enable)
374 val |= PINEVIEW_SELF_REFRESH_EN;
375 else
376 val &= ~PINEVIEW_SELF_REFRESH_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300377 I915_WRITE(DSPFW3, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300378 POSTING_READ(DSPFW3);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100379 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200380 was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300381 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
382 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
383 I915_WRITE(FW_BLC_SELF, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300384 POSTING_READ(FW_BLC_SELF);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100385 } else if (IS_I915GM(dev_priv)) {
Ville Syrjäläacb91352016-07-29 17:57:02 +0300386 /*
387 * FIXME can't find a bit like this for 915G, and
388 * and yet it does have the related watermark in
389 * FW_BLC_SELF. What's going on?
390 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200391 was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN;
Imre Deak5209b1f2014-07-01 12:36:17 +0300392 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
393 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
394 I915_WRITE(INSTPM, val);
Ville Syrjäläa7a6c492015-06-24 22:00:01 +0300395 POSTING_READ(INSTPM);
Imre Deak5209b1f2014-07-01 12:36:17 +0300396 } else {
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200397 return false;
Imre Deak5209b1f2014-07-01 12:36:17 +0300398 }
399
Ville Syrjälä1489bba2017-03-02 19:15:07 +0200400 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
401
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300402 drm_dbg_kms(&dev_priv->drm, "memory self-refresh is %s (was %s)\n",
403 enableddisabled(enable),
404 enableddisabled(was_enabled));
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200405
406 return was_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300407}
408
Ville Syrjälä62571fc2017-04-21 21:14:23 +0300409/**
410 * intel_set_memory_cxsr - Configure CxSR state
411 * @dev_priv: i915 device
412 * @enable: Allow vs. disallow CxSR
413 *
414 * Allow or disallow the system to enter a special CxSR
415 * (C-state self refresh) state. What typically happens in CxSR mode
416 * is that several display FIFOs may get combined into a single larger
417 * FIFO for a particular plane (so called max FIFO mode) to allow the
418 * system to defer memory fetches longer, and the memory will enter
419 * self refresh.
420 *
421 * Note that enabling CxSR does not guarantee that the system enter
422 * this special mode, nor does it guarantee that the system stays
423 * in that mode once entered. So this just allows/disallows the system
424 * to autonomously utilize the CxSR mode. Other factors such as core
425 * C-states will affect when/if the system actually enters/exits the
426 * CxSR mode.
427 *
428 * Note that on VLV/CHV this actually only controls the max FIFO mode,
429 * and the system is free to enter/exit memory self refresh at any time
430 * even when the use of CxSR has been disallowed.
431 *
432 * While the system is actually in the CxSR/max FIFO mode, some plane
433 * control registers will not get latched on vblank. Thus in order to
434 * guarantee the system will respond to changes in the plane registers
435 * we must always disallow CxSR prior to making changes to those registers.
436 * Unfortunately the system will re-evaluate the CxSR conditions at
437 * frame start which happens after vblank start (which is when the plane
438 * registers would get latched), so we can't proceed with the plane update
439 * during the same frame where we disallowed CxSR.
440 *
441 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
442 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
443 * the hardware w.r.t. HPLL SR when writing to plane registers.
444 * Disallowing just CxSR is sufficient.
445 */
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200446bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200447{
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200448 bool ret;
449
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200450 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200451 ret = _intel_set_memory_cxsr(dev_priv, enable);
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300452 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
453 dev_priv->wm.vlv.cxsr = enable;
454 else if (IS_G4X(dev_priv))
455 dev_priv->wm.g4x.cxsr = enable;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200456 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjälä11a85d62016-11-28 19:37:12 +0200457
458 return ret;
Ville Syrjälä3d90e642016-11-28 19:37:11 +0200459}
Ville Syrjäläfc1ac8d2015-03-05 21:19:52 +0200460
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300461/*
462 * Latency for FIFO fetches is dependent on several factors:
463 * - memory configuration (speed, channels)
464 * - chipset
465 * - current MCH state
466 * It can be fairly high in some situations, so here we assume a fairly
467 * pessimal value. It's a tradeoff between extra memory fetches (if we
468 * set this value too high, the FIFO will fetch frequently to stay full)
469 * and power consumption (set it too low to save power and we might see
470 * FIFO underruns and display "flicker").
471 *
472 * A value of 5us seems to be a good balance; safe for very low end
473 * platforms but not overly aggressive on lower latency configs.
474 */
Chris Wilson5aef6002014-09-03 11:56:07 +0100475static const int pessimal_latency_ns = 5000;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300476
Ville Syrjäläb5004722015-03-05 21:19:47 +0200477#define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
478 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
479
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200480static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
Ville Syrjäläb5004722015-03-05 21:19:47 +0200481{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +0100482 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200483 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjälä814e7f02017-03-02 19:14:55 +0200484 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200485 enum pipe pipe = crtc->pipe;
486 int sprite0_start, sprite1_start;
Kees Cook2713eb42020-02-20 16:05:17 -0800487 u32 dsparb, dsparb2, dsparb3;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200488
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200489 switch (pipe) {
Ville Syrjäläb5004722015-03-05 21:19:47 +0200490 case PIPE_A:
491 dsparb = I915_READ(DSPARB);
492 dsparb2 = I915_READ(DSPARB2);
493 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
494 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
495 break;
496 case PIPE_B:
497 dsparb = I915_READ(DSPARB);
498 dsparb2 = I915_READ(DSPARB2);
499 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
500 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
501 break;
502 case PIPE_C:
503 dsparb2 = I915_READ(DSPARB2);
504 dsparb3 = I915_READ(DSPARB3);
505 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
506 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
507 break;
508 default:
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200509 MISSING_CASE(pipe);
510 return;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200511 }
512
Ville Syrjäläf07d43d2017-03-02 19:14:52 +0200513 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
514 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
515 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
516 fifo_state->plane[PLANE_CURSOR] = 63;
Ville Syrjäläb5004722015-03-05 21:19:47 +0200517}
518
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200519static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv,
520 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300521{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200522 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300523 int size;
524
525 size = dsparb & 0x7f;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200526 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300527 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
528
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300529 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
530 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300531
532 return size;
533}
534
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200535static int i830_get_fifo_size(struct drm_i915_private *dev_priv,
536 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300537{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200538 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300539 int size;
540
541 size = dsparb & 0x1ff;
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200542 if (i9xx_plane == PLANE_B)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300543 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
544 size >>= 1; /* 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
Ville Syrjäläbdaf8432017-11-17 21:19:11 +0200552static int i845_get_fifo_size(struct drm_i915_private *dev_priv,
553 enum i9xx_plane_id i9xx_plane)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300554{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200555 u32 dsparb = I915_READ(DSPARB);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300556 int size;
557
558 size = dsparb & 0x7f;
559 size >>= 2; /* Convert to cachelines */
560
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300561 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
562 dsparb, plane_name(i9xx_plane), size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300563
564 return size;
565}
566
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300567/* Pineview has different values for various configs */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800568static const struct intel_watermark_params pnv_display_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300569 .fifo_size = PINEVIEW_DISPLAY_FIFO,
570 .max_wm = PINEVIEW_MAX_WM,
571 .default_wm = PINEVIEW_DFT_WM,
572 .guard_size = PINEVIEW_GUARD_WM,
573 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300574};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800575
576static const struct intel_watermark_params pnv_display_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300577 .fifo_size = PINEVIEW_DISPLAY_FIFO,
578 .max_wm = PINEVIEW_MAX_WM,
579 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
580 .guard_size = PINEVIEW_GUARD_WM,
581 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300582};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800583
584static const struct intel_watermark_params pnv_cursor_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300585 .fifo_size = PINEVIEW_CURSOR_FIFO,
586 .max_wm = PINEVIEW_CURSOR_MAX_WM,
587 .default_wm = PINEVIEW_CURSOR_DFT_WM,
588 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
589 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300590};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800591
592static const struct intel_watermark_params pnv_cursor_hplloff_wm = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300593 .fifo_size = PINEVIEW_CURSOR_FIFO,
594 .max_wm = PINEVIEW_CURSOR_MAX_WM,
595 .default_wm = PINEVIEW_CURSOR_DFT_WM,
596 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
597 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300598};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800599
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300600static const struct intel_watermark_params i965_cursor_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300601 .fifo_size = I965_CURSOR_FIFO,
602 .max_wm = I965_CURSOR_MAX_WM,
603 .default_wm = I965_CURSOR_DFT_WM,
604 .guard_size = 2,
605 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300606};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800607
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300608static const struct intel_watermark_params i945_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300609 .fifo_size = I945_FIFO_SIZE,
610 .max_wm = I915_MAX_WM,
611 .default_wm = 1,
612 .guard_size = 2,
613 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300614};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800615
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300616static const struct intel_watermark_params i915_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300617 .fifo_size = I915_FIFO_SIZE,
618 .max_wm = I915_MAX_WM,
619 .default_wm = 1,
620 .guard_size = 2,
621 .cacheline_size = I915_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300622};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800623
Ville Syrjälä9d539102014-08-15 01:21:53 +0300624static const struct intel_watermark_params i830_a_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300625 .fifo_size = I855GM_FIFO_SIZE,
626 .max_wm = I915_MAX_WM,
627 .default_wm = 1,
628 .guard_size = 2,
629 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300630};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800631
Ville Syrjälä9d539102014-08-15 01:21:53 +0300632static const struct intel_watermark_params i830_bc_wm_info = {
633 .fifo_size = I855GM_FIFO_SIZE,
634 .max_wm = I915_MAX_WM/2,
635 .default_wm = 1,
636 .guard_size = 2,
637 .cacheline_size = I830_FIFO_LINE_SIZE,
638};
Lucas De Marchi1d218222019-12-24 00:40:04 -0800639
Daniel Vetterfeb56b92013-12-14 20:38:30 -0200640static const struct intel_watermark_params i845_wm_info = {
Ville Syrjäläe0f02732014-06-05 19:15:50 +0300641 .fifo_size = I830_FIFO_SIZE,
642 .max_wm = I915_MAX_WM,
643 .default_wm = 1,
644 .guard_size = 2,
645 .cacheline_size = I830_FIFO_LINE_SIZE,
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300646};
647
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300648/**
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300649 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
650 * @pixel_rate: Pipe pixel rate in kHz
651 * @cpp: Plane bytes per pixel
652 * @latency: Memory wakeup latency in 0.1us units
653 *
654 * Compute the watermark using the method 1 or "small buffer"
655 * formula. The caller may additonally add extra cachelines
656 * to account for TLB misses and clock crossings.
657 *
658 * This method is concerned with the short term drain rate
659 * of the FIFO, ie. it does not account for blanking periods
660 * which would effectively reduce the average drain rate across
661 * a longer period. The name "small" refers to the fact the
662 * FIFO is relatively small compared to the amount of data
663 * fetched.
664 *
665 * The FIFO level vs. time graph might look something like:
666 *
667 * |\ |\
668 * | \ | \
669 * __---__---__ (- plane active, _ blanking)
670 * -> time
671 *
672 * or perhaps like this:
673 *
674 * |\|\ |\|\
675 * __----__----__ (- plane active, _ blanking)
676 * -> time
677 *
678 * Returns:
679 * The watermark in bytes
680 */
681static unsigned int intel_wm_method1(unsigned int pixel_rate,
682 unsigned int cpp,
683 unsigned int latency)
684{
Jani Nikula5ce9a6492019-01-18 14:01:20 +0200685 u64 ret;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300686
Ville Syrjäläd492a292019-04-08 18:27:01 +0300687 ret = mul_u32_u32(pixel_rate, cpp * latency);
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300688 ret = DIV_ROUND_UP_ULL(ret, 10000);
689
690 return ret;
691}
692
693/**
694 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
695 * @pixel_rate: Pipe pixel rate in kHz
696 * @htotal: Pipe horizontal total
697 * @width: Plane width in pixels
698 * @cpp: Plane bytes per pixel
699 * @latency: Memory wakeup latency in 0.1us units
700 *
701 * Compute the watermark using the method 2 or "large buffer"
702 * formula. The caller may additonally add extra cachelines
703 * to account for TLB misses and clock crossings.
704 *
705 * This method is concerned with the long term drain rate
706 * of the FIFO, ie. it does account for blanking periods
707 * which effectively reduce the average drain rate across
708 * a longer period. The name "large" refers to the fact the
709 * FIFO is relatively large compared to the amount of data
710 * fetched.
711 *
712 * The FIFO level vs. time graph might look something like:
713 *
714 * |\___ |\___
715 * | \___ | \___
716 * | \ | \
717 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
718 * -> time
719 *
720 * Returns:
721 * The watermark in bytes
722 */
723static unsigned int intel_wm_method2(unsigned int pixel_rate,
724 unsigned int htotal,
725 unsigned int width,
726 unsigned int cpp,
727 unsigned int latency)
728{
729 unsigned int ret;
730
731 /*
732 * FIXME remove once all users are computing
733 * watermarks in the correct place.
734 */
735 if (WARN_ON_ONCE(htotal == 0))
736 htotal = 1;
737
738 ret = (latency * pixel_rate) / (htotal * 10000);
739 ret = (ret + 1) * width * cpp;
740
741 return ret;
742}
743
744/**
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300745 * intel_calculate_wm - calculate watermark level
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300746 * @pixel_rate: pixel clock
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300747 * @wm: chip FIFO params
Chris Wilson31383412018-02-14 14:03:03 +0000748 * @fifo_size: size of the FIFO buffer
Ville Syrjäläac484962016-01-20 21:05:26 +0200749 * @cpp: bytes per pixel
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300750 * @latency_ns: memory latency for the platform
751 *
752 * Calculate the watermark level (the level at which the display plane will
753 * start fetching from memory again). Each chip has a different display
754 * FIFO size and allocation, so the caller needs to figure that out and pass
755 * in the correct intel_watermark_params structure.
756 *
757 * As the pixel clock runs, the FIFO will be drained at a rate that depends
758 * on the pixel size. When it reaches the watermark level, it'll start
759 * fetching FIFO line sized based chunks from memory until the FIFO fills
760 * past the watermark point. If the FIFO drains completely, a FIFO underrun
761 * will occur, and a display engine hang could result.
762 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300763static unsigned int intel_calculate_wm(int pixel_rate,
764 const struct intel_watermark_params *wm,
765 int fifo_size, int cpp,
766 unsigned int latency_ns)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300767{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300768 int entries, wm_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300769
770 /*
771 * Note: we need to make sure we don't overflow for various clock &
772 * latency values.
773 * clocks go from a few thousand to several hundred thousand.
774 * latency is usually a few thousand
775 */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300776 entries = intel_wm_method1(pixel_rate, cpp,
777 latency_ns / 100);
778 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
779 wm->guard_size;
780 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300781
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300782 wm_size = fifo_size - entries;
783 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300784
785 /* Don't promote wm_size to unsigned... */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300786 if (wm_size > wm->max_wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300787 wm_size = wm->max_wm;
788 if (wm_size <= 0)
789 wm_size = wm->default_wm;
Ville Syrjäläd6feb192014-09-05 21:54:13 +0300790
791 /*
792 * Bspec seems to indicate that the value shouldn't be lower than
793 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
794 * Lets go for 8 which is the burst size since certain platforms
795 * already use a hardcoded 8 (which is what the spec says should be
796 * done).
797 */
798 if (wm_size <= 8)
799 wm_size = 8;
800
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300801 return wm_size;
802}
803
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300804static bool is_disabling(int old, int new, int threshold)
805{
806 return old >= threshold && new < threshold;
807}
808
809static bool is_enabling(int old, int new, int threshold)
810{
811 return old < threshold && new >= threshold;
812}
813
Ville Syrjälä6d5019b2017-04-21 21:14:20 +0300814static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
815{
816 return dev_priv->wm.max_level + 1;
817}
818
Ville Syrjälä24304d812017-03-14 17:10:49 +0200819static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
820 const struct intel_plane_state *plane_state)
821{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +0100822 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä24304d812017-03-14 17:10:49 +0200823
824 /* FIXME check the 'enable' instead */
Maarten Lankhorst1326a922019-10-31 12:26:02 +0100825 if (!crtc_state->hw.active)
Ville Syrjälä24304d812017-03-14 17:10:49 +0200826 return false;
827
828 /*
829 * Treat cursor with fb as always visible since cursor updates
830 * can happen faster than the vrefresh rate, and the current
831 * watermark code doesn't handle that correctly. Cursor updates
832 * which set/clear the fb or change the cursor size are going
833 * to get throttled by intel_legacy_cursor_update() to work
834 * around this problem with the watermark code.
835 */
836 if (plane->id == PLANE_CURSOR)
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +0100837 return plane_state->hw.fb != NULL;
Ville Syrjälä24304d812017-03-14 17:10:49 +0200838 else
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +0100839 return plane_state->uapi.visible;
Ville Syrjälä24304d812017-03-14 17:10:49 +0200840}
841
Ville Syrjälä04da7b92019-11-27 22:12:11 +0200842static bool intel_crtc_active(struct intel_crtc *crtc)
843{
844 /* Be paranoid as we can arrive here with only partial
845 * state retrieved from the hardware during setup.
846 *
847 * We can ditch the adjusted_mode.crtc_clock check as soon
848 * as Haswell has gained clock readout/fastboot support.
849 *
850 * We can ditch the crtc->primary->state->fb check as soon as we can
851 * properly reconstruct framebuffers.
852 *
853 * FIXME: The intel_crtc->active here should be switched to
854 * crtc->state->active once we have proper CRTC states wired up
855 * for atomic.
856 */
857 return crtc->active && crtc->base.primary->state->fb &&
858 crtc->config->hw.adjusted_mode.crtc_clock;
859}
860
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200861static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300862{
Ville Syrjäläefc26112016-10-31 22:37:04 +0200863 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300864
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200865 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200866 if (intel_crtc_active(crtc)) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300867 if (enabled)
868 return NULL;
869 enabled = crtc;
870 }
871 }
872
873 return enabled;
874}
875
Lucas De Marchi1d218222019-12-24 00:40:04 -0800876static void pnv_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300877{
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200878 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +0200879 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300880 const struct cxsr_latency *latency;
881 u32 reg;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +0300882 unsigned int wm;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300883
Tvrtko Ursulin86d35d42019-03-26 07:40:54 +0000884 latency = intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100885 dev_priv->is_ddr3,
886 dev_priv->fsb_freq,
887 dev_priv->mem_freq);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300888 if (!latency) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300889 drm_dbg_kms(&dev_priv->drm,
890 "Unknown FSB/MEM found, disable CxSR\n");
Imre Deak5209b1f2014-07-01 12:36:17 +0300891 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300892 return;
893 }
894
Ville Syrjäläffc7a762016-10-31 22:37:21 +0200895 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300896 if (crtc) {
Ville Syrjäläefc26112016-10-31 22:37:04 +0200897 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +0100898 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +0200899 const struct drm_framebuffer *fb =
900 crtc->base.primary->state->fb;
Ville Syrjälä353c8592016-12-14 23:30:57 +0200901 int cpp = fb->format->cpp[0];
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300902 int clock = adjusted_mode->crtc_clock;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300903
904 /* Display SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800905 wm = intel_calculate_wm(clock, &pnv_display_wm,
906 pnv_display_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200907 cpp, latency->display_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300908 reg = I915_READ(DSPFW1);
909 reg &= ~DSPFW_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200910 reg |= FW_WM(wm, SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300911 I915_WRITE(DSPFW1, reg);
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300912 drm_dbg_kms(&dev_priv->drm, "DSPFW1 register is %x\n", reg);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300913
914 /* cursor SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800915 wm = intel_calculate_wm(clock, &pnv_cursor_wm,
916 pnv_display_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300917 4, latency->cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300918 reg = I915_READ(DSPFW3);
919 reg &= ~DSPFW_CURSOR_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200920 reg |= FW_WM(wm, CURSOR_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300921 I915_WRITE(DSPFW3, reg);
922
923 /* Display HPLL off SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800924 wm = intel_calculate_wm(clock, &pnv_display_hplloff_wm,
925 pnv_display_hplloff_wm.fifo_size,
Ville Syrjäläac484962016-01-20 21:05:26 +0200926 cpp, latency->display_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300927 reg = I915_READ(DSPFW3);
928 reg &= ~DSPFW_HPLL_SR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200929 reg |= FW_WM(wm, HPLL_SR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300930 I915_WRITE(DSPFW3, reg);
931
932 /* cursor HPLL off SR */
Lucas De Marchi1d218222019-12-24 00:40:04 -0800933 wm = intel_calculate_wm(clock, &pnv_cursor_hplloff_wm,
934 pnv_display_hplloff_wm.fifo_size,
Ville Syrjälä99834b12017-04-21 21:14:24 +0300935 4, latency->cursor_hpll_disable);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300936 reg = I915_READ(DSPFW3);
937 reg &= ~DSPFW_HPLL_CURSOR_MASK;
Ville Syrjäläf4998962015-03-10 17:02:21 +0200938 reg |= FW_WM(wm, HPLL_CURSOR);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300939 I915_WRITE(DSPFW3, reg);
Wambui Karugaf8d18d52020-01-07 18:13:30 +0300940 drm_dbg_kms(&dev_priv->drm, "DSPFW3 register is %x\n", reg);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300941
Imre Deak5209b1f2014-07-01 12:36:17 +0300942 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300943 } else {
Imre Deak5209b1f2014-07-01 12:36:17 +0300944 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300945 }
946}
947
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300948/*
949 * Documentation says:
950 * "If the line size is small, the TLB fetches can get in the way of the
951 * data fetches, causing some lag in the pixel data return which is not
952 * accounted for in the above formulas. The following adjustment only
953 * needs to be applied if eight whole lines fit in the buffer at once.
954 * The WM is adjusted upwards by the difference between the FIFO size
955 * and the size of 8 whole lines. This adjustment is always performed
956 * in the actual pixel depth regardless of whether FBC is enabled or not."
957 */
Chris Wilson1a1f1282017-11-07 14:03:38 +0000958static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
Ville Syrjälä0f95ff82017-04-21 21:14:26 +0300959{
960 int tlb_miss = fifo_size * 64 - width * cpp * 8;
961
962 return max(0, tlb_miss);
963}
964
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300965static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
966 const struct g4x_wm_values *wm)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300967{
Ville Syrjäläe93329a2017-04-21 21:14:31 +0300968 enum pipe pipe;
969
970 for_each_pipe(dev_priv, pipe)
971 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
972
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300973 I915_WRITE(DSPFW1,
974 FW_WM(wm->sr.plane, SR) |
975 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
976 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
977 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
978 I915_WRITE(DSPFW2,
979 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
980 FW_WM(wm->sr.fbc, FBC_SR) |
981 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
982 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
983 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
984 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
985 I915_WRITE(DSPFW3,
986 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
987 FW_WM(wm->sr.cursor, CURSOR_SR) |
988 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
989 FW_WM(wm->hpll.plane, HPLL_SR));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300990
Ville Syrjälä04548cb2017-04-21 21:14:29 +0300991 POSTING_READ(DSPFW1);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -0300992}
993
Ville Syrjälä15665972015-03-10 16:16:28 +0200994#define FW_WM_VLV(value, plane) \
995 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
996
Ville Syrjälä50f4cae2016-11-28 19:37:15 +0200997static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
Ville Syrjälä0018fda2015-03-05 21:19:45 +0200998 const struct vlv_wm_values *wm)
999{
Ville Syrjälä50f4cae2016-11-28 19:37:15 +02001000 enum pipe pipe;
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001001
Ville Syrjälä50f4cae2016-11-28 19:37:15 +02001002 for_each_pipe(dev_priv, pipe) {
Ville Syrjäläc137d662017-03-02 19:15:06 +02001003 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
1004
Ville Syrjälä50f4cae2016-11-28 19:37:15 +02001005 I915_WRITE(VLV_DDL(pipe),
1006 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
1007 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
1008 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
1009 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
1010 }
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001011
Ville Syrjälä6fe6a7f2016-11-28 19:37:14 +02001012 /*
1013 * Zero the (unused) WM1 watermarks, and also clear all the
1014 * high order bits so that there are no out of bounds values
1015 * present in the registers during the reprogramming.
1016 */
1017 I915_WRITE(DSPHOWM, 0);
1018 I915_WRITE(DSPHOWM1, 0);
1019 I915_WRITE(DSPFW4, 0);
1020 I915_WRITE(DSPFW5, 0);
1021 I915_WRITE(DSPFW6, 0);
1022
Ville Syrjäläae801522015-03-05 21:19:49 +02001023 I915_WRITE(DSPFW1,
Ville Syrjälä15665972015-03-10 16:16:28 +02001024 FW_WM(wm->sr.plane, SR) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001025 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
1026 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
1027 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001028 I915_WRITE(DSPFW2,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001029 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
1030 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
1031 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
Ville Syrjäläae801522015-03-05 21:19:49 +02001032 I915_WRITE(DSPFW3,
Ville Syrjälä15665972015-03-10 16:16:28 +02001033 FW_WM(wm->sr.cursor, CURSOR_SR));
Ville Syrjäläae801522015-03-05 21:19:49 +02001034
1035 if (IS_CHERRYVIEW(dev_priv)) {
1036 I915_WRITE(DSPFW7_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001037 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1038 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001039 I915_WRITE(DSPFW8_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001040 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1041 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
Ville Syrjäläae801522015-03-05 21:19:49 +02001042 I915_WRITE(DSPFW9_CHV,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001043 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1044 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
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_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1048 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1049 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1050 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1051 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1052 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1053 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1054 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1055 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001056 } else {
1057 I915_WRITE(DSPFW7,
Ville Syrjälä1b313892016-11-28 19:37:08 +02001058 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1059 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
Ville Syrjäläae801522015-03-05 21:19:49 +02001060 I915_WRITE(DSPHOWM,
Ville Syrjälä15665972015-03-10 16:16:28 +02001061 FW_WM(wm->sr.plane >> 9, SR_HI) |
Ville Syrjälä1b313892016-11-28 19:37:08 +02001062 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1063 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1064 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1065 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1066 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1067 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
Ville Syrjäläae801522015-03-05 21:19:49 +02001068 }
1069
1070 POSTING_READ(DSPFW1);
Ville Syrjälä0018fda2015-03-05 21:19:45 +02001071}
1072
Ville Syrjälä15665972015-03-10 16:16:28 +02001073#undef FW_WM_VLV
1074
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001075static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1076{
1077 /* all latencies in usec */
1078 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1079 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
Ville Syrjälä79d94302017-04-21 21:14:30 +03001080 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001081
Ville Syrjälä79d94302017-04-21 21:14:30 +03001082 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001083}
1084
1085static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1086{
1087 /*
1088 * DSPCNTR[13] supposedly controls whether the
1089 * primary plane can use the FIFO space otherwise
1090 * reserved for the sprite plane. It's not 100% clear
1091 * what the actual FIFO size is, but it looks like we
1092 * can happily set both primary and sprite watermarks
1093 * up to 127 cachelines. So that would seem to mean
1094 * that either DSPCNTR[13] doesn't do anything, or that
1095 * the total FIFO is >= 256 cachelines in size. Either
1096 * way, we don't seem to have to worry about this
1097 * repartitioning as the maximum watermark value the
1098 * register can hold for each plane is lower than the
1099 * minimum FIFO size.
1100 */
1101 switch (plane_id) {
1102 case PLANE_CURSOR:
1103 return 63;
1104 case PLANE_PRIMARY:
1105 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1106 case PLANE_SPRITE0:
1107 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1108 default:
1109 MISSING_CASE(plane_id);
1110 return 0;
1111 }
1112}
1113
1114static int g4x_fbc_fifo_size(int level)
1115{
1116 switch (level) {
1117 case G4X_WM_LEVEL_SR:
1118 return 7;
1119 case G4X_WM_LEVEL_HPLL:
1120 return 15;
1121 default:
1122 MISSING_CASE(level);
1123 return 0;
1124 }
1125}
1126
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001127static u16 g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1128 const struct intel_plane_state *plane_state,
1129 int level)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001130{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001131 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001132 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1133 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01001134 &crtc_state->hw.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001135 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1136 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001137
1138 if (latency == 0)
1139 return USHRT_MAX;
1140
1141 if (!intel_wm_plane_visible(crtc_state, plane_state))
1142 return 0;
1143
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001144 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläd56e8232019-07-03 23:08:22 +03001145
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001146 /*
1147 * Not 100% sure which way ELK should go here as the
1148 * spec only says CL/CTG should assume 32bpp and BW
1149 * doesn't need to. But as these things followed the
1150 * mobile vs. desktop lines on gen3 as well, let's
1151 * assume ELK doesn't need this.
1152 *
1153 * The spec also fails to list such a restriction for
1154 * the HPLL watermark, which seems a little strange.
1155 * Let's use 32bpp for the HPLL watermark as well.
1156 */
1157 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1158 level != G4X_WM_LEVEL_NORMAL)
Ville Syrjäläd56e8232019-07-03 23:08:22 +03001159 cpp = max(cpp, 4u);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001160
1161 clock = adjusted_mode->crtc_clock;
1162 htotal = adjusted_mode->crtc_htotal;
1163
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001164 width = drm_rect_width(&plane_state->uapi.dst);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001165
1166 if (plane->id == PLANE_CURSOR) {
1167 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1168 } else if (plane->id == PLANE_PRIMARY &&
1169 level == G4X_WM_LEVEL_NORMAL) {
1170 wm = intel_wm_method1(clock, cpp, latency);
1171 } else {
Chris Wilson1a1f1282017-11-07 14:03:38 +00001172 unsigned int small, large;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001173
1174 small = intel_wm_method1(clock, cpp, latency);
1175 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1176
1177 wm = min(small, large);
1178 }
1179
1180 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1181 width, cpp);
1182
1183 wm = DIV_ROUND_UP(wm, 64) + 2;
1184
Chris Wilson1a1f1282017-11-07 14:03:38 +00001185 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001186}
1187
1188static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1189 int level, enum plane_id plane_id, u16 value)
1190{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001191 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001192 bool dirty = false;
1193
1194 for (; level < intel_wm_num_levels(dev_priv); level++) {
1195 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1196
1197 dirty |= raw->plane[plane_id] != value;
1198 raw->plane[plane_id] = value;
1199 }
1200
1201 return dirty;
1202}
1203
1204static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1205 int level, u16 value)
1206{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001207 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001208 bool dirty = false;
1209
1210 /* NORMAL level doesn't have an FBC watermark */
1211 level = max(level, G4X_WM_LEVEL_SR);
1212
1213 for (; level < intel_wm_num_levels(dev_priv); level++) {
1214 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1215
1216 dirty |= raw->fbc != value;
1217 raw->fbc = value;
1218 }
1219
1220 return dirty;
1221}
1222
Maarten Lankhorstec193642019-06-28 10:55:17 +02001223static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
1224 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001225 u32 pri_val);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001226
1227static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1228 const struct intel_plane_state *plane_state)
1229{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001230 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001231 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001232 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1233 enum plane_id plane_id = plane->id;
1234 bool dirty = false;
1235 int level;
1236
1237 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1238 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1239 if (plane_id == PLANE_PRIMARY)
1240 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1241 goto out;
1242 }
1243
1244 for (level = 0; level < num_levels; level++) {
1245 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1246 int wm, max_wm;
1247
1248 wm = g4x_compute_wm(crtc_state, plane_state, level);
1249 max_wm = g4x_plane_fifo_size(plane_id, level);
1250
1251 if (wm > max_wm)
1252 break;
1253
1254 dirty |= raw->plane[plane_id] != wm;
1255 raw->plane[plane_id] = wm;
1256
1257 if (plane_id != PLANE_PRIMARY ||
1258 level == G4X_WM_LEVEL_NORMAL)
1259 continue;
1260
1261 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1262 raw->plane[plane_id]);
1263 max_wm = g4x_fbc_fifo_size(level);
1264
1265 /*
1266 * FBC wm is not mandatory as we
1267 * can always just disable its use.
1268 */
1269 if (wm > max_wm)
1270 wm = USHRT_MAX;
1271
1272 dirty |= raw->fbc != wm;
1273 raw->fbc = wm;
1274 }
1275
1276 /* mark watermarks as invalid */
1277 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1278
1279 if (plane_id == PLANE_PRIMARY)
1280 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1281
1282 out:
1283 if (dirty) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001284 drm_dbg_kms(&dev_priv->drm,
1285 "%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1286 plane->base.name,
1287 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1288 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1289 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001290
1291 if (plane_id == PLANE_PRIMARY)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001292 drm_dbg_kms(&dev_priv->drm,
1293 "FBC watermarks: SR=%d, HPLL=%d\n",
1294 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1295 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001296 }
1297
1298 return dirty;
1299}
1300
1301static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1302 enum plane_id plane_id, int level)
1303{
1304 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1305
1306 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1307}
1308
1309static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1310 int level)
1311{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001312 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001313
1314 if (level > dev_priv->wm.max_level)
1315 return false;
1316
1317 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1318 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1319 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1320}
1321
1322/* mark all levels starting from 'level' as invalid */
1323static void g4x_invalidate_wms(struct intel_crtc *crtc,
1324 struct g4x_wm_state *wm_state, int level)
1325{
1326 if (level <= G4X_WM_LEVEL_NORMAL) {
1327 enum plane_id plane_id;
1328
1329 for_each_plane_id_on_crtc(crtc, plane_id)
1330 wm_state->wm.plane[plane_id] = USHRT_MAX;
1331 }
1332
1333 if (level <= G4X_WM_LEVEL_SR) {
1334 wm_state->cxsr = false;
1335 wm_state->sr.cursor = USHRT_MAX;
1336 wm_state->sr.plane = USHRT_MAX;
1337 wm_state->sr.fbc = USHRT_MAX;
1338 }
1339
1340 if (level <= G4X_WM_LEVEL_HPLL) {
1341 wm_state->hpll_en = false;
1342 wm_state->hpll.cursor = USHRT_MAX;
1343 wm_state->hpll.plane = USHRT_MAX;
1344 wm_state->hpll.fbc = USHRT_MAX;
1345 }
1346}
1347
1348static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1349{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001350 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001351 struct intel_atomic_state *state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001352 to_intel_atomic_state(crtc_state->uapi.state);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001353 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001354 int num_active_planes = hweight8(crtc_state->active_planes &
1355 ~BIT(PLANE_CURSOR));
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001356 const struct g4x_pipe_wm *raw;
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001357 const struct intel_plane_state *old_plane_state;
1358 const struct intel_plane_state *new_plane_state;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001359 struct intel_plane *plane;
1360 enum plane_id plane_id;
1361 int i, level;
1362 unsigned int dirty = 0;
1363
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001364 for_each_oldnew_intel_plane_in_state(state, plane,
1365 old_plane_state,
1366 new_plane_state, i) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001367 if (new_plane_state->hw.crtc != &crtc->base &&
1368 old_plane_state->hw.crtc != &crtc->base)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001369 continue;
1370
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001371 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001372 dirty |= BIT(plane->id);
1373 }
1374
1375 if (!dirty)
1376 return 0;
1377
1378 level = G4X_WM_LEVEL_NORMAL;
1379 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1380 goto out;
1381
1382 raw = &crtc_state->wm.g4x.raw[level];
1383 for_each_plane_id_on_crtc(crtc, plane_id)
1384 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1385
1386 level = G4X_WM_LEVEL_SR;
1387
1388 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1389 goto out;
1390
1391 raw = &crtc_state->wm.g4x.raw[level];
1392 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1393 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1394 wm_state->sr.fbc = raw->fbc;
1395
1396 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1397
1398 level = G4X_WM_LEVEL_HPLL;
1399
1400 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1401 goto out;
1402
1403 raw = &crtc_state->wm.g4x.raw[level];
1404 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1405 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1406 wm_state->hpll.fbc = raw->fbc;
1407
1408 wm_state->hpll_en = wm_state->cxsr;
1409
1410 level++;
1411
1412 out:
1413 if (level == G4X_WM_LEVEL_NORMAL)
1414 return -EINVAL;
1415
1416 /* invalidate the higher levels */
1417 g4x_invalidate_wms(crtc, wm_state, level);
1418
1419 /*
1420 * Determine if the FBC watermark(s) can be used. IF
1421 * this isn't the case we prefer to disable the FBC
1422 ( watermark(s) rather than disable the SR/HPLL
1423 * level(s) entirely.
1424 */
1425 wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL;
1426
1427 if (level >= G4X_WM_LEVEL_SR &&
1428 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1429 wm_state->fbc_en = false;
1430 else if (level >= G4X_WM_LEVEL_HPLL &&
1431 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1432 wm_state->fbc_en = false;
1433
1434 return 0;
1435}
1436
Matt Ropercd1d3ee2018-12-10 13:54:14 -08001437static int g4x_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001438{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001439 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001440 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1441 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1442 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001443 to_intel_atomic_state(new_crtc_state->uapi.state);
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001444 const struct intel_crtc_state *old_crtc_state =
1445 intel_atomic_get_old_crtc_state(intel_state, crtc);
1446 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001447 enum plane_id plane_id;
1448
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001449 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001450 *intermediate = *optimal;
1451
1452 intermediate->cxsr = false;
1453 intermediate->hpll_en = false;
1454 goto out;
1455 }
1456
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001457 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001458 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001459 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001460 !new_crtc_state->disable_cxsr;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001461 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1462
1463 for_each_plane_id_on_crtc(crtc, plane_id) {
1464 intermediate->wm.plane[plane_id] =
1465 max(optimal->wm.plane[plane_id],
1466 active->wm.plane[plane_id]);
1467
1468 WARN_ON(intermediate->wm.plane[plane_id] >
1469 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1470 }
1471
1472 intermediate->sr.plane = max(optimal->sr.plane,
1473 active->sr.plane);
1474 intermediate->sr.cursor = max(optimal->sr.cursor,
1475 active->sr.cursor);
1476 intermediate->sr.fbc = max(optimal->sr.fbc,
1477 active->sr.fbc);
1478
1479 intermediate->hpll.plane = max(optimal->hpll.plane,
1480 active->hpll.plane);
1481 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1482 active->hpll.cursor);
1483 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1484 active->hpll.fbc);
1485
1486 WARN_ON((intermediate->sr.plane >
1487 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1488 intermediate->sr.cursor >
1489 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1490 intermediate->cxsr);
1491 WARN_ON((intermediate->sr.plane >
1492 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1493 intermediate->sr.cursor >
1494 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1495 intermediate->hpll_en);
1496
1497 WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1498 intermediate->fbc_en && intermediate->cxsr);
1499 WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1500 intermediate->fbc_en && intermediate->hpll_en);
1501
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001502out:
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001503 /*
1504 * If our intermediate WM are identical to the final WM, then we can
1505 * omit the post-vblank programming; only update if it's different.
1506 */
1507 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst248c2432017-11-15 17:31:57 +01001508 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001509
1510 return 0;
1511}
1512
1513static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1514 struct g4x_wm_values *wm)
1515{
1516 struct intel_crtc *crtc;
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001517 int num_active_pipes = 0;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001518
1519 wm->cxsr = true;
1520 wm->hpll_en = true;
1521 wm->fbc_en = true;
1522
1523 for_each_intel_crtc(&dev_priv->drm, crtc) {
1524 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1525
1526 if (!crtc->active)
1527 continue;
1528
1529 if (!wm_state->cxsr)
1530 wm->cxsr = false;
1531 if (!wm_state->hpll_en)
1532 wm->hpll_en = false;
1533 if (!wm_state->fbc_en)
1534 wm->fbc_en = false;
1535
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001536 num_active_pipes++;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001537 }
1538
Ville Syrjäläc08e9132019-08-21 20:30:32 +03001539 if (num_active_pipes != 1) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001540 wm->cxsr = false;
1541 wm->hpll_en = false;
1542 wm->fbc_en = false;
1543 }
1544
1545 for_each_intel_crtc(&dev_priv->drm, crtc) {
1546 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1547 enum pipe pipe = crtc->pipe;
1548
1549 wm->pipe[pipe] = wm_state->wm;
1550 if (crtc->active && wm->cxsr)
1551 wm->sr = wm_state->sr;
1552 if (crtc->active && wm->hpll_en)
1553 wm->hpll = wm_state->hpll;
1554 }
1555}
1556
1557static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1558{
1559 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1560 struct g4x_wm_values new_wm = {};
1561
1562 g4x_merge_wm(dev_priv, &new_wm);
1563
1564 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1565 return;
1566
1567 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1568 _intel_set_memory_cxsr(dev_priv, false);
1569
1570 g4x_write_wm_values(dev_priv, &new_wm);
1571
1572 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1573 _intel_set_memory_cxsr(dev_priv, true);
1574
1575 *old_wm = new_wm;
1576}
1577
1578static void g4x_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001579 struct intel_crtc *crtc)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001580{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001581 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1582 const struct intel_crtc_state *crtc_state =
1583 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001584
1585 mutex_lock(&dev_priv->wm.wm_mutex);
1586 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1587 g4x_program_watermarks(dev_priv);
1588 mutex_unlock(&dev_priv->wm.wm_mutex);
1589}
1590
1591static void g4x_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001592 struct intel_crtc *crtc)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001593{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001594 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1595 const struct intel_crtc_state *crtc_state =
1596 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001597
1598 if (!crtc_state->wm.need_postvbl_update)
1599 return;
1600
1601 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03001602 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03001603 g4x_program_watermarks(dev_priv);
1604 mutex_unlock(&dev_priv->wm.wm_mutex);
1605}
1606
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001607/* latency must be in 0.1us units. */
1608static unsigned int vlv_wm_method2(unsigned int pixel_rate,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001609 unsigned int htotal,
1610 unsigned int width,
Ville Syrjäläac484962016-01-20 21:05:26 +02001611 unsigned int cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001612 unsigned int latency)
1613{
1614 unsigned int ret;
1615
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03001616 ret = intel_wm_method2(pixel_rate, htotal,
1617 width, cpp, latency);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001618 ret = DIV_ROUND_UP(ret, 64);
1619
1620 return ret;
1621}
1622
Ville Syrjäläbb726512016-10-31 22:37:24 +02001623static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001624{
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001625 /* all latencies in usec */
1626 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1627
Ville Syrjälä58590c12015-09-08 21:05:12 +03001628 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1629
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001630 if (IS_CHERRYVIEW(dev_priv)) {
1631 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1632 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
Ville Syrjälä58590c12015-09-08 21:05:12 +03001633
1634 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001635 }
1636}
1637
Jani Nikula5ce9a6492019-01-18 14:01:20 +02001638static u16 vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1639 const struct intel_plane_state *plane_state,
1640 int level)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001641{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001642 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001643 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Ville Syrjäläe339d672016-11-28 19:37:17 +02001644 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01001645 &crtc_state->hw.adjusted_mode;
Chris Wilson1a1f1282017-11-07 14:03:38 +00001646 unsigned int clock, htotal, cpp, width, wm;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001647
1648 if (dev_priv->wm.pri_latency[level] == 0)
1649 return USHRT_MAX;
1650
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001651 if (!intel_wm_plane_visible(crtc_state, plane_state))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001652 return 0;
1653
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001654 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläe339d672016-11-28 19:37:17 +02001655 clock = adjusted_mode->crtc_clock;
1656 htotal = adjusted_mode->crtc_htotal;
1657 width = crtc_state->pipe_src_w;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001658
Ville Syrjälä709f3fc2017-03-03 17:19:26 +02001659 if (plane->id == PLANE_CURSOR) {
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001660 /*
1661 * FIXME the formula gives values that are
1662 * too big for the cursor FIFO, and hence we
1663 * would never be able to use cursors. For
1664 * now just hardcode the watermark.
1665 */
1666 wm = 63;
1667 } else {
Ville Syrjäläac484962016-01-20 21:05:26 +02001668 wm = vlv_wm_method2(clock, htotal, width, cpp,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001669 dev_priv->wm.pri_latency[level] * 10);
1670 }
1671
Chris Wilson1a1f1282017-11-07 14:03:38 +00001672 return min_t(unsigned int, wm, USHRT_MAX);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001673}
1674
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001675static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1676{
1677 return (active_planes & (BIT(PLANE_SPRITE0) |
1678 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1679}
1680
Ville Syrjälä5012e602017-03-02 19:14:56 +02001681static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001682{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001683 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001684 const struct g4x_pipe_wm *raw =
Ville Syrjälä5012e602017-03-02 19:14:56 +02001685 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001686 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001687 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001688 int num_active_planes = hweight8(active_planes);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001689 const int fifo_size = 511;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001690 int fifo_extra, fifo_left = fifo_size;
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001691 int sprite0_fifo_extra = 0;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001692 unsigned int total_rate;
1693 enum plane_id plane_id;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001694
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001695 /*
1696 * When enabling sprite0 after sprite1 has already been enabled
1697 * we tend to get an underrun unless sprite0 already has some
1698 * FIFO space allcoated. Hence we always allocate at least one
1699 * cacheline for sprite0 whenever sprite1 is enabled.
1700 *
1701 * All other plane enable sequences appear immune to this problem.
1702 */
1703 if (vlv_need_sprite0_fifo_workaround(active_planes))
1704 sprite0_fifo_extra = 1;
1705
Ville Syrjälä5012e602017-03-02 19:14:56 +02001706 total_rate = raw->plane[PLANE_PRIMARY] +
1707 raw->plane[PLANE_SPRITE0] +
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001708 raw->plane[PLANE_SPRITE1] +
1709 sprite0_fifo_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001710
Ville Syrjälä5012e602017-03-02 19:14:56 +02001711 if (total_rate > fifo_size)
1712 return -EINVAL;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001713
Ville Syrjälä5012e602017-03-02 19:14:56 +02001714 if (total_rate == 0)
1715 total_rate = 1;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001716
Ville Syrjälä5012e602017-03-02 19:14:56 +02001717 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001718 unsigned int rate;
1719
Ville Syrjälä5012e602017-03-02 19:14:56 +02001720 if ((active_planes & BIT(plane_id)) == 0) {
1721 fifo_state->plane[plane_id] = 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001722 continue;
1723 }
1724
Ville Syrjälä5012e602017-03-02 19:14:56 +02001725 rate = raw->plane[plane_id];
1726 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1727 fifo_left -= fifo_state->plane[plane_id];
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001728 }
1729
Ville Syrjälä1a10ae62017-03-02 19:15:03 +02001730 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1731 fifo_left -= sprite0_fifo_extra;
1732
Ville Syrjälä5012e602017-03-02 19:14:56 +02001733 fifo_state->plane[PLANE_CURSOR] = 63;
1734
1735 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001736
1737 /* spread the remainder evenly */
Ville Syrjälä5012e602017-03-02 19:14:56 +02001738 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001739 int plane_extra;
1740
1741 if (fifo_left == 0)
1742 break;
1743
Ville Syrjälä5012e602017-03-02 19:14:56 +02001744 if ((active_planes & BIT(plane_id)) == 0)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001745 continue;
1746
1747 plane_extra = min(fifo_extra, fifo_left);
Ville Syrjälä5012e602017-03-02 19:14:56 +02001748 fifo_state->plane[plane_id] += plane_extra;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001749 fifo_left -= plane_extra;
1750 }
1751
Ville Syrjälä5012e602017-03-02 19:14:56 +02001752 WARN_ON(active_planes != 0 && fifo_left != 0);
1753
1754 /* give it all to the first plane if none are active */
1755 if (active_planes == 0) {
1756 WARN_ON(fifo_left != fifo_size);
1757 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1758 }
1759
1760 return 0;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001761}
1762
Ville Syrjäläff32c542017-03-02 19:14:57 +02001763/* mark all levels starting from 'level' as invalid */
1764static void vlv_invalidate_wms(struct intel_crtc *crtc,
1765 struct vlv_wm_state *wm_state, int level)
1766{
1767 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1768
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001769 for (; level < intel_wm_num_levels(dev_priv); level++) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02001770 enum plane_id plane_id;
1771
1772 for_each_plane_id_on_crtc(crtc, plane_id)
1773 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1774
1775 wm_state->sr[level].cursor = USHRT_MAX;
1776 wm_state->sr[level].plane = USHRT_MAX;
1777 }
1778}
1779
Ville Syrjälä26cca0e2016-11-28 19:37:09 +02001780static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1781{
1782 if (wm > fifo_size)
1783 return USHRT_MAX;
1784 else
1785 return fifo_size - wm;
1786}
1787
Ville Syrjäläff32c542017-03-02 19:14:57 +02001788/*
1789 * Starting from 'level' set all higher
1790 * levels to 'value' in the "raw" watermarks.
1791 */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001792static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
Ville Syrjäläff32c542017-03-02 19:14:57 +02001793 int level, enum plane_id plane_id, u16 value)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001794{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001795 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001796 int num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001797 bool dirty = false;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001798
Ville Syrjäläff32c542017-03-02 19:14:57 +02001799 for (; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001800 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001801
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001802 dirty |= raw->plane[plane_id] != value;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001803 raw->plane[plane_id] = value;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001804 }
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001805
1806 return dirty;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001807}
1808
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001809static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1810 const struct intel_plane_state *plane_state)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001811{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01001812 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001813 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001814 enum plane_id plane_id = plane->id;
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001815 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
Ville Syrjäläff32c542017-03-02 19:14:57 +02001816 int level;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001817 bool dirty = false;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001818
Ville Syrjäläa07102f2017-03-03 17:19:27 +02001819 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001820 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1821 goto out;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001822 }
1823
1824 for (level = 0; level < num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001825 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02001826 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1827 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1828
Ville Syrjäläff32c542017-03-02 19:14:57 +02001829 if (wm > max_wm)
1830 break;
1831
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001832 dirty |= raw->plane[plane_id] != wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001833 raw->plane[plane_id] = wm;
1834 }
1835
1836 /* mark all higher levels as invalid */
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001837 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001838
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001839out:
1840 if (dirty)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03001841 drm_dbg_kms(&dev_priv->drm,
1842 "%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
1843 plane->base.name,
1844 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1845 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1846 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001847
1848 return dirty;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001849}
1850
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001851static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1852 enum plane_id plane_id, int level)
Ville Syrjäläff32c542017-03-02 19:14:57 +02001853{
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001854 const struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02001855 &crtc_state->wm.vlv.raw[level];
1856 const struct vlv_fifo_state *fifo_state =
1857 &crtc_state->wm.vlv.fifo_state;
1858
1859 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1860}
1861
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001862static 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 +02001863{
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001864 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1865 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1866 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1867 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001868}
1869
1870static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001871{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001872 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjälä7c951c02016-11-28 19:37:10 +02001873 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001874 struct intel_atomic_state *state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001875 to_intel_atomic_state(crtc_state->uapi.state);
Ville Syrjälä855c79f2017-03-02 19:14:54 +02001876 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001877 const struct vlv_fifo_state *fifo_state =
1878 &crtc_state->wm.vlv.fifo_state;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03001879 int num_active_planes = hweight8(crtc_state->active_planes &
1880 ~BIT(PLANE_CURSOR));
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01001881 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->uapi);
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001882 const struct intel_plane_state *old_plane_state;
1883 const struct intel_plane_state *new_plane_state;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001884 struct intel_plane *plane;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001885 enum plane_id plane_id;
1886 int level, ret, i;
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001887 unsigned int dirty = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001888
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001889 for_each_oldnew_intel_plane_in_state(state, plane,
1890 old_plane_state,
1891 new_plane_state, i) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01001892 if (new_plane_state->hw.crtc != &crtc->base &&
1893 old_plane_state->hw.crtc != &crtc->base)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001894 continue;
1895
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001896 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001897 dirty |= BIT(plane->id);
1898 }
1899
1900 /*
1901 * DSPARB registers may have been reset due to the
1902 * power well being turned off. Make sure we restore
1903 * them to a consistent state even if no primary/sprite
1904 * planes are initially active.
1905 */
1906 if (needs_modeset)
1907 crtc_state->fifo_changed = true;
1908
1909 if (!dirty)
1910 return 0;
1911
1912 /* cursor changes don't warrant a FIFO recompute */
1913 if (dirty & ~BIT(PLANE_CURSOR)) {
1914 const struct intel_crtc_state *old_crtc_state =
Ville Syrjälä7b5104512017-08-23 18:22:22 +03001915 intel_atomic_get_old_crtc_state(state, crtc);
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001916 const struct vlv_fifo_state *old_fifo_state =
1917 &old_crtc_state->wm.vlv.fifo_state;
1918
1919 ret = vlv_compute_fifo(crtc_state);
1920 if (ret)
1921 return ret;
1922
1923 if (needs_modeset ||
1924 memcmp(old_fifo_state, fifo_state,
1925 sizeof(*fifo_state)) != 0)
1926 crtc_state->fifo_changed = true;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001927 }
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001928
Ville Syrjäläff32c542017-03-02 19:14:57 +02001929 /* initially allow all levels */
Ville Syrjälä6d5019b2017-04-21 21:14:20 +03001930 wm_state->num_levels = intel_wm_num_levels(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02001931 /*
1932 * Note that enabling cxsr with no primary/sprite planes
1933 * enabled can wedge the pipe. Hence we only allow cxsr
1934 * with exactly one enabled primary/sprite plane.
1935 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02001936 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
Ville Syrjäläff32c542017-03-02 19:14:57 +02001937
Ville Syrjälä5012e602017-03-02 19:14:56 +02001938 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03001939 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
Jani Nikula24977872019-09-11 12:26:08 +03001940 const int sr_fifo_size = INTEL_NUM_PIPES(dev_priv) * 512 - 1;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001941
Ville Syrjälä77d14ee2017-04-21 21:14:18 +03001942 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
Ville Syrjäläff32c542017-03-02 19:14:57 +02001943 break;
Ville Syrjälä5012e602017-03-02 19:14:56 +02001944
Ville Syrjäläff32c542017-03-02 19:14:57 +02001945 for_each_plane_id_on_crtc(crtc, plane_id) {
1946 wm_state->wm[level].plane[plane_id] =
1947 vlv_invert_wm_value(raw->plane[plane_id],
1948 fifo_state->plane[plane_id]);
1949 }
1950
1951 wm_state->sr[level].plane =
1952 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
Ville Syrjälä5012e602017-03-02 19:14:56 +02001953 raw->plane[PLANE_SPRITE0],
Ville Syrjäläff32c542017-03-02 19:14:57 +02001954 raw->plane[PLANE_SPRITE1]),
1955 sr_fifo_size);
1956
1957 wm_state->sr[level].cursor =
1958 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1959 63);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001960 }
1961
Ville Syrjäläff32c542017-03-02 19:14:57 +02001962 if (level == 0)
1963 return -EINVAL;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001964
Ville Syrjäläff32c542017-03-02 19:14:57 +02001965 /* limit to only levels we can actually handle */
1966 wm_state->num_levels = level;
1967
1968 /* invalidate the higher levels */
1969 vlv_invalidate_wms(crtc, wm_state, level);
1970
1971 return 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03001972}
1973
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001974#define VLV_FIFO(plane, value) \
1975 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1976
Ville Syrjäläff32c542017-03-02 19:14:57 +02001977static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001978 struct intel_crtc *crtc)
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001979{
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001980 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01001981 struct intel_uncore *uncore = &dev_priv->uncore;
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02001982 const struct intel_crtc_state *crtc_state =
1983 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä814e7f02017-03-02 19:14:55 +02001984 const struct vlv_fifo_state *fifo_state =
1985 &crtc_state->wm.vlv.fifo_state;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001986 int sprite0_start, sprite1_start, fifo_size;
Kees Cook2713eb42020-02-20 16:05:17 -08001987 u32 dsparb, dsparb2, dsparb3;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001988
Ville Syrjälä236c48e2017-03-02 19:14:58 +02001989 if (!crtc_state->fifo_changed)
1990 return;
1991
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02001992 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
1993 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
1994 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001995
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05301996 drm_WARN_ON(&dev_priv->drm, fifo_state->plane[PLANE_CURSOR] != 63);
1997 drm_WARN_ON(&dev_priv->drm, fifo_size != 511);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03001998
Ville Syrjäläc137d662017-03-02 19:15:06 +02001999 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
2000
Ville Syrjälä44e921d2017-03-09 17:44:34 +02002001 /*
2002 * uncore.lock serves a double purpose here. It allows us to
2003 * use the less expensive I915_{READ,WRITE}_FW() functions, and
2004 * it protects the DSPARB registers from getting clobbered by
2005 * parallel updates from multiple pipes.
2006 *
2007 * intel_pipe_update_start() has already disabled interrupts
2008 * for us, so a plain spin_lock() is sufficient here.
2009 */
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002010 spin_lock(&uncore->lock);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002011
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002012 switch (crtc->pipe) {
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002013 case PIPE_A:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002014 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2015 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002016
2017 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
2018 VLV_FIFO(SPRITEB, 0xff));
2019 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
2020 VLV_FIFO(SPRITEB, sprite1_start));
2021
2022 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
2023 VLV_FIFO(SPRITEB_HI, 0x1));
2024 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
2025 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
2026
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002027 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2028 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002029 break;
2030 case PIPE_B:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002031 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2032 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002033
2034 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
2035 VLV_FIFO(SPRITED, 0xff));
2036 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
2037 VLV_FIFO(SPRITED, sprite1_start));
2038
2039 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
2040 VLV_FIFO(SPRITED_HI, 0xff));
2041 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2042 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2043
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002044 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2045 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002046 break;
2047 case PIPE_C:
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002048 dsparb3 = intel_uncore_read_fw(uncore, DSPARB3);
2049 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002050
2051 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2052 VLV_FIFO(SPRITEF, 0xff));
2053 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2054 VLV_FIFO(SPRITEF, sprite1_start));
2055
2056 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2057 VLV_FIFO(SPRITEF_HI, 0xff));
2058 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2059 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2060
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002061 intel_uncore_write_fw(uncore, DSPARB3, dsparb3);
2062 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002063 break;
2064 default:
2065 break;
2066 }
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002067
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002068 intel_uncore_posting_read_fw(uncore, DSPARB);
Ville Syrjälä467a14d2016-12-05 16:13:28 +02002069
Tvrtko Ursuline33a4be2019-06-11 11:45:44 +01002070 spin_unlock(&uncore->lock);
Ville Syrjälä54f1b6e2015-06-24 22:00:05 +03002071}
2072
2073#undef VLV_FIFO
2074
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002075static int vlv_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002076{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002077 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002078 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2079 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2080 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002081 to_intel_atomic_state(new_crtc_state->uapi.state);
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002082 const struct intel_crtc_state *old_crtc_state =
2083 intel_atomic_get_old_crtc_state(intel_state, crtc);
2084 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002085 int level;
2086
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01002087 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002088 *intermediate = *optimal;
2089
2090 intermediate->cxsr = false;
2091 goto out;
2092 }
2093
Ville Syrjälä4841da52017-03-02 19:14:59 +02002094 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002095 intermediate->cxsr = optimal->cxsr && active->cxsr &&
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002096 !new_crtc_state->disable_cxsr;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002097
2098 for (level = 0; level < intermediate->num_levels; level++) {
2099 enum plane_id plane_id;
2100
2101 for_each_plane_id_on_crtc(crtc, plane_id) {
2102 intermediate->wm[level].plane[plane_id] =
2103 min(optimal->wm[level].plane[plane_id],
2104 active->wm[level].plane[plane_id]);
2105 }
2106
2107 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2108 active->sr[level].plane);
2109 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2110 active->sr[level].cursor);
2111 }
2112
2113 vlv_invalidate_wms(crtc, intermediate, level);
2114
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002115out:
Ville Syrjälä4841da52017-03-02 19:14:59 +02002116 /*
2117 * If our intermediate WM are identical to the final WM, then we can
2118 * omit the post-vblank programming; only update if it's different.
2119 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02002120 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
Maarten Lankhorst5b9489c2017-11-15 17:31:56 +01002121 new_crtc_state->wm.need_postvbl_update = true;
Ville Syrjälä4841da52017-03-02 19:14:59 +02002122
2123 return 0;
2124}
2125
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002126static void vlv_merge_wm(struct drm_i915_private *dev_priv,
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002127 struct vlv_wm_values *wm)
2128{
2129 struct intel_crtc *crtc;
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002130 int num_active_pipes = 0;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002131
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002132 wm->level = dev_priv->wm.max_level;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002133 wm->cxsr = true;
2134
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002135 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002136 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002137
2138 if (!crtc->active)
2139 continue;
2140
2141 if (!wm_state->cxsr)
2142 wm->cxsr = false;
2143
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002144 num_active_pipes++;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002145 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2146 }
2147
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002148 if (num_active_pipes != 1)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002149 wm->cxsr = false;
2150
Ville Syrjäläc08e9132019-08-21 20:30:32 +03002151 if (num_active_pipes > 1)
Ville Syrjälä6f9c7842015-06-24 22:00:08 +03002152 wm->level = VLV_WM_LEVEL_PM2;
2153
Ville Syrjälä7c951c02016-11-28 19:37:10 +02002154 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä7eb49412017-03-02 19:14:53 +02002155 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002156 enum pipe pipe = crtc->pipe;
2157
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002158 wm->pipe[pipe] = wm_state->wm[wm->level];
Ville Syrjäläff32c542017-03-02 19:14:57 +02002159 if (crtc->active && wm->cxsr)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002160 wm->sr = wm_state->sr[wm->level];
2161
Ville Syrjälä1b313892016-11-28 19:37:08 +02002162 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2163 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2164 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2165 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002166 }
2167}
2168
Ville Syrjäläff32c542017-03-02 19:14:57 +02002169static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002170{
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002171 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2172 struct vlv_wm_values new_wm = {};
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002173
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002174 vlv_merge_wm(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002175
Ville Syrjäläff32c542017-03-02 19:14:57 +02002176 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002177 return;
2178
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002179 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002180 chv_set_memory_dvfs(dev_priv, false);
2181
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002182 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002183 chv_set_memory_pm5(dev_priv, false);
2184
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002185 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002186 _intel_set_memory_cxsr(dev_priv, false);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002187
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002188 vlv_write_wm_values(dev_priv, &new_wm);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002189
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002190 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
Ville Syrjälä3d90e642016-11-28 19:37:11 +02002191 _intel_set_memory_cxsr(dev_priv, true);
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002192
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002193 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002194 chv_set_memory_pm5(dev_priv, true);
2195
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002196 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
Ville Syrjälä262cd2e2015-06-24 22:00:04 +03002197 chv_set_memory_dvfs(dev_priv, true);
2198
Ville Syrjäläfa292a42016-11-28 19:37:16 +02002199 *old_wm = new_wm;
Ville Syrjälä3c2777f2014-06-26 17:03:06 +03002200}
2201
Ville Syrjäläff32c542017-03-02 19:14:57 +02002202static void vlv_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002203 struct intel_crtc *crtc)
Ville Syrjäläff32c542017-03-02 19:14:57 +02002204{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002205 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2206 const struct intel_crtc_state *crtc_state =
2207 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjäläff32c542017-03-02 19:14:57 +02002208
2209 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002210 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2211 vlv_program_watermarks(dev_priv);
2212 mutex_unlock(&dev_priv->wm.wm_mutex);
2213}
2214
2215static void vlv_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002216 struct intel_crtc *crtc)
Ville Syrjälä4841da52017-03-02 19:14:59 +02002217{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02002218 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2219 const struct intel_crtc_state *crtc_state =
2220 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä4841da52017-03-02 19:14:59 +02002221
2222 if (!crtc_state->wm.need_postvbl_update)
2223 return;
2224
2225 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03002226 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
Ville Syrjäläff32c542017-03-02 19:14:57 +02002227 vlv_program_watermarks(dev_priv);
2228 mutex_unlock(&dev_priv->wm.wm_mutex);
2229}
2230
Ville Syrjälä432081b2016-10-31 22:37:03 +02002231static void i965_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002232{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002233 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002234 struct intel_crtc *crtc;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002235 int srwm = 1;
2236 int cursor_sr = 16;
Imre Deak98584252014-06-13 14:54:20 +03002237 bool cxsr_enabled;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002238
2239 /* Calc sr entries for one plane configs */
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002240 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002241 if (crtc) {
2242 /* self-refresh has much higher latency */
2243 static const int sr_latency_ns = 12000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002244 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002245 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002246 const struct drm_framebuffer *fb =
2247 crtc->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002248 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002249 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002250 int hdisplay = crtc->config->pipe_src_w;
Ville Syrjälä353c8592016-12-14 23:30:57 +02002251 int cpp = fb->format->cpp[0];
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002252 int entries;
2253
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002254 entries = intel_wm_method2(clock, htotal,
2255 hdisplay, cpp, sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002256 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2257 srwm = I965_FIFO_SIZE - entries;
2258 if (srwm < 0)
2259 srwm = 1;
2260 srwm &= 0x1ff;
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002261 drm_dbg_kms(&dev_priv->drm,
2262 "self-refresh entries: %d, wm: %d\n",
2263 entries, srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002264
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002265 entries = intel_wm_method2(clock, htotal,
2266 crtc->base.cursor->state->crtc_w, 4,
2267 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002268 entries = DIV_ROUND_UP(entries,
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002269 i965_cursor_wm_info.cacheline_size) +
2270 i965_cursor_wm_info.guard_size;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002271
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002272 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002273 if (cursor_sr > i965_cursor_wm_info.max_wm)
2274 cursor_sr = i965_cursor_wm_info.max_wm;
2275
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002276 drm_dbg_kms(&dev_priv->drm,
2277 "self-refresh watermark: display plane %d "
2278 "cursor %d\n", srwm, cursor_sr);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002279
Imre Deak98584252014-06-13 14:54:20 +03002280 cxsr_enabled = true;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002281 } else {
Imre Deak98584252014-06-13 14:54:20 +03002282 cxsr_enabled = false;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002283 /* Turn off self refresh if both pipes are enabled */
Imre Deak5209b1f2014-07-01 12:36:17 +03002284 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002285 }
2286
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002287 drm_dbg_kms(&dev_priv->drm,
2288 "Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2289 srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002290
2291 /* 965 has limitations... */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002292 I915_WRITE(DSPFW1, FW_WM(srwm, SR) |
2293 FW_WM(8, CURSORB) |
2294 FW_WM(8, PLANEB) |
2295 FW_WM(8, PLANEA));
2296 I915_WRITE(DSPFW2, FW_WM(8, CURSORA) |
2297 FW_WM(8, PLANEC_OLD));
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002298 /* update cursor SR watermark */
Ville Syrjäläf4998962015-03-10 17:02:21 +02002299 I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
Imre Deak98584252014-06-13 14:54:20 +03002300
2301 if (cxsr_enabled)
2302 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002303}
2304
Ville Syrjäläf4998962015-03-10 17:02:21 +02002305#undef FW_WM
2306
Ville Syrjälä432081b2016-10-31 22:37:03 +02002307static void i9xx_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002308{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002309 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002310 const struct intel_watermark_params *wm_info;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002311 u32 fwater_lo;
2312 u32 fwater_hi;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002313 int cwm, srwm = 1;
2314 int fifo_size;
2315 int planea_wm, planeb_wm;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002316 struct intel_crtc *crtc, *enabled = NULL;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002317
Ville Syrjäläa9097be2016-10-31 22:37:20 +02002318 if (IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002319 wm_info = &i945_wm_info;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002320 else if (!IS_GEN(dev_priv, 2))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002321 wm_info = &i915_wm_info;
2322 else
Ville Syrjälä9d539102014-08-15 01:21:53 +03002323 wm_info = &i830_a_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002324
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002325 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A);
2326 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002327 if (intel_crtc_active(crtc)) {
2328 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002329 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002330 const struct drm_framebuffer *fb =
2331 crtc->base.primary->state->fb;
2332 int cpp;
2333
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002334 if (IS_GEN(dev_priv, 2))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002335 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002336 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002337 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002338
Damien Lespiau241bfc32013-09-25 16:45:37 +01002339 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002340 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002341 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002342 enabled = crtc;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002343 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002344 planea_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002345 if (planea_wm > (long)wm_info->max_wm)
2346 planea_wm = wm_info->max_wm;
2347 }
2348
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002349 if (IS_GEN(dev_priv, 2))
Ville Syrjälä9d539102014-08-15 01:21:53 +03002350 wm_info = &i830_bc_wm_info;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002351
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002352 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B);
2353 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002354 if (intel_crtc_active(crtc)) {
2355 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002356 &crtc->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002357 const struct drm_framebuffer *fb =
2358 crtc->base.primary->state->fb;
2359 int cpp;
2360
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002361 if (IS_GEN(dev_priv, 2))
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002362 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002363 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002364 cpp = fb->format->cpp[0];
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002365
Damien Lespiau241bfc32013-09-25 16:45:37 +01002366 planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Chris Wilsonb9e0bda2012-10-22 12:32:15 +01002367 wm_info, fifo_size, cpp,
Chris Wilson5aef6002014-09-03 11:56:07 +01002368 pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002369 if (enabled == NULL)
2370 enabled = crtc;
2371 else
2372 enabled = NULL;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002373 } else {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002374 planeb_wm = fifo_size - wm_info->guard_size;
Ville Syrjälä9d539102014-08-15 01:21:53 +03002375 if (planeb_wm > (long)wm_info->max_wm)
2376 planeb_wm = wm_info->max_wm;
2377 }
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002378
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002379 drm_dbg_kms(&dev_priv->drm,
2380 "FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002381
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002382 if (IS_I915GM(dev_priv) && enabled) {
Matt Roper2ff8fde2014-07-08 07:50:07 -07002383 struct drm_i915_gem_object *obj;
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002384
Ville Syrjäläefc26112016-10-31 22:37:04 +02002385 obj = intel_fb_obj(enabled->base.primary->state->fb);
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002386
2387 /* self-refresh seems busted with untiled */
Chris Wilson3e510a82016-08-05 10:14:23 +01002388 if (!i915_gem_object_is_tiled(obj))
Daniel Vetter2ab1bc92014-04-07 08:54:21 +02002389 enabled = NULL;
2390 }
2391
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002392 /*
2393 * Overlay gets an aggressive default since video jitter is bad.
2394 */
2395 cwm = 2;
2396
2397 /* Play safe and disable self-refresh before adjusting watermarks. */
Imre Deak5209b1f2014-07-01 12:36:17 +03002398 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002399
2400 /* Calc sr entries for one plane configs */
Ville Syrjälä03427fc2016-10-31 22:37:18 +02002401 if (HAS_FW_BLC(dev_priv) && enabled) {
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002402 /* self-refresh has much higher latency */
2403 static const int sr_latency_ns = 6000;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002404 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002405 &enabled->config->hw.adjusted_mode;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002406 const struct drm_framebuffer *fb =
2407 enabled->base.primary->state->fb;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002408 int clock = adjusted_mode->crtc_clock;
Jesse Barnesfec8cba2013-11-27 11:10:26 -08002409 int htotal = adjusted_mode->crtc_htotal;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002410 int hdisplay = enabled->config->pipe_src_w;
2411 int cpp;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002412 int entries;
2413
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002414 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002415 cpp = 4;
Ville Syrjäläefc26112016-10-31 22:37:04 +02002416 else
Ville Syrjälä353c8592016-12-14 23:30:57 +02002417 cpp = fb->format->cpp[0];
Ville Syrjälä2d1b5052016-07-29 17:57:01 +03002418
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002419 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2420 sr_latency_ns / 100);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002421 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002422 drm_dbg_kms(&dev_priv->drm,
2423 "self-refresh entries: %d\n", entries);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002424 srwm = wm_info->fifo_size - entries;
2425 if (srwm < 0)
2426 srwm = 1;
2427
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01002428 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002429 I915_WRITE(FW_BLC_SELF,
2430 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
Ville Syrjäläacb91352016-07-29 17:57:02 +03002431 else
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002432 I915_WRITE(FW_BLC_SELF, srwm & 0x3f);
2433 }
2434
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002435 drm_dbg_kms(&dev_priv->drm,
2436 "Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2437 planea_wm, planeb_wm, cwm, srwm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002438
2439 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2440 fwater_hi = (cwm & 0x1f);
2441
2442 /* Set request length to 8 cachelines per fetch */
2443 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2444 fwater_hi = fwater_hi | (1 << 8);
2445
2446 I915_WRITE(FW_BLC, fwater_lo);
2447 I915_WRITE(FW_BLC2, fwater_hi);
2448
Imre Deak5209b1f2014-07-01 12:36:17 +03002449 if (enabled)
2450 intel_set_memory_cxsr(dev_priv, true);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002451}
2452
Ville Syrjälä432081b2016-10-31 22:37:03 +02002453static void i845_update_wm(struct intel_crtc *unused_crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002454{
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002455 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
Ville Syrjäläefc26112016-10-31 22:37:04 +02002456 struct intel_crtc *crtc;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002457 const struct drm_display_mode *adjusted_mode;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002458 u32 fwater_lo;
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002459 int planea_wm;
2460
Ville Syrjäläffc7a762016-10-31 22:37:21 +02002461 crtc = single_enabled_crtc(dev_priv);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002462 if (crtc == NULL)
2463 return;
2464
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002465 adjusted_mode = &crtc->config->hw.adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +01002466 planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock,
Daniel Vetterfeb56b92013-12-14 20:38:30 -02002467 &i845_wm_info,
Ville Syrjäläbdaf8432017-11-17 21:19:11 +02002468 dev_priv->display.get_fifo_size(dev_priv, PLANE_A),
Chris Wilson5aef6002014-09-03 11:56:07 +01002469 4, pessimal_latency_ns);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002470 fwater_lo = I915_READ(FW_BLC) & ~0xfff;
2471 fwater_lo |= (3<<8) | planea_wm;
2472
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002473 drm_dbg_kms(&dev_priv->drm,
2474 "Setting FIFO watermarks - A: %d\n", planea_wm);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03002475
2476 I915_WRITE(FW_BLC, fwater_lo);
2477}
2478
Ville Syrjälä37126462013-08-01 16:18:55 +03002479/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002480static unsigned int ilk_wm_method1(unsigned int pixel_rate,
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_method1(pixel_rate, cpp, latency);
2487 ret = DIV_ROUND_UP(ret, 64) + 2;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002488
2489 return ret;
2490}
2491
Ville Syrjälä37126462013-08-01 16:18:55 +03002492/* latency must be in 0.1us units. */
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002493static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2494 unsigned int htotal,
2495 unsigned int width,
2496 unsigned int cpp,
2497 unsigned int latency)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002498{
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002499 unsigned int ret;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002500
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002501 ret = intel_wm_method2(pixel_rate, htotal,
2502 width, cpp, latency);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002503 ret = DIV_ROUND_UP(ret, 64) + 2;
Ville Syrjäläbaf69ca2017-04-21 21:14:27 +03002504
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002505 return ret;
2506}
2507
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002508static u32 ilk_wm_fbc(u32 pri_val, u32 horiz_pixels, u8 cpp)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002509{
Matt Roper15126882015-12-03 11:37:40 -08002510 /*
2511 * Neither of these should be possible since this function shouldn't be
2512 * called if the CRTC is off or the plane is invisible. But let's be
2513 * extra paranoid to avoid a potential divide-by-zero if we screw up
2514 * elsewhere in the driver.
2515 */
Ville Syrjäläac484962016-01-20 21:05:26 +02002516 if (WARN_ON(!cpp))
Matt Roper15126882015-12-03 11:37:40 -08002517 return 0;
2518 if (WARN_ON(!horiz_pixels))
2519 return 0;
2520
Ville Syrjäläac484962016-01-20 21:05:26 +02002521 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002522}
2523
Imre Deak820c1982013-12-17 14:46:36 +02002524struct ilk_wm_maximums {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002525 u16 pri;
2526 u16 spr;
2527 u16 cur;
2528 u16 fbc;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002529};
2530
Ville Syrjälä37126462013-08-01 16:18:55 +03002531/*
2532 * For both WM_PIPE and WM_LP.
2533 * mem_value must be in 0.1us units.
2534 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002535static u32 ilk_compute_pri_wm(const struct intel_crtc_state *crtc_state,
2536 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002537 u32 mem_value, bool is_lp)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002538{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002539 u32 method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002540 int cpp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03002541
Ville Syrjälä03981c62018-11-14 19:34:40 +02002542 if (mem_value == 0)
2543 return U32_MAX;
2544
Maarten Lankhorstec193642019-06-28 10:55:17 +02002545 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002546 return 0;
2547
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002548 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002549
Maarten Lankhorstec193642019-06-28 10:55:17 +02002550 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002551
2552 if (!is_lp)
2553 return method1;
2554
Maarten Lankhorstec193642019-06-28 10:55:17 +02002555 method2 = ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002556 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002557 drm_rect_width(&plane_state->uapi.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002558 cpp, mem_value);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002559
2560 return min(method1, method2);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002561}
2562
Ville Syrjälä37126462013-08-01 16:18:55 +03002563/*
2564 * For both WM_PIPE and WM_LP.
2565 * mem_value must be in 0.1us units.
2566 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002567static u32 ilk_compute_spr_wm(const struct intel_crtc_state *crtc_state,
2568 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002569 u32 mem_value)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002570{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002571 u32 method1, method2;
Ville Syrjälä83054942016-11-18 21:53:00 +02002572 int cpp;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002573
Ville Syrjälä03981c62018-11-14 19:34:40 +02002574 if (mem_value == 0)
2575 return U32_MAX;
2576
Maarten Lankhorstec193642019-06-28 10:55:17 +02002577 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002578 return 0;
2579
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002580 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002581
Maarten Lankhorstec193642019-06-28 10:55:17 +02002582 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
2583 method2 = ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002584 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002585 drm_rect_width(&plane_state->uapi.dst),
Ville Syrjäläac484962016-01-20 21:05:26 +02002586 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002587 return min(method1, method2);
2588}
2589
Ville Syrjälä37126462013-08-01 16:18:55 +03002590/*
2591 * For both WM_PIPE and WM_LP.
2592 * mem_value must be in 0.1us units.
2593 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002594static u32 ilk_compute_cur_wm(const struct intel_crtc_state *crtc_state,
2595 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002596 u32 mem_value)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002597{
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002598 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002599
Ville Syrjälä03981c62018-11-14 19:34:40 +02002600 if (mem_value == 0)
2601 return U32_MAX;
2602
Maarten Lankhorstec193642019-06-28 10:55:17 +02002603 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002604 return 0;
2605
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002606 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjäläa5509ab2017-02-17 17:01:59 +02002607
Maarten Lankhorstec193642019-06-28 10:55:17 +02002608 return ilk_wm_method2(crtc_state->pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01002609 crtc_state->hw.adjusted_mode.crtc_htotal,
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002610 drm_rect_width(&plane_state->uapi.dst),
Maarten Lankhorst3a612762019-10-04 13:34:54 +02002611 cpp, mem_value);
Paulo Zanoni801bcff2013-05-31 10:08:35 -03002612}
2613
Paulo Zanonicca32e92013-05-31 11:45:06 -03002614/* Only for WM_LP. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02002615static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
2616 const struct intel_plane_state *plane_state,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002617 u32 pri_val)
Paulo Zanonicca32e92013-05-31 11:45:06 -03002618{
Ville Syrjälä83054942016-11-18 21:53:00 +02002619 int cpp;
Matt Roper43d59ed2015-09-24 15:53:07 -07002620
Maarten Lankhorstec193642019-06-28 10:55:17 +02002621 if (!intel_wm_plane_visible(crtc_state, plane_state))
Paulo Zanonicca32e92013-05-31 11:45:06 -03002622 return 0;
2623
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01002624 cpp = plane_state->hw.fb->format->cpp[0];
Ville Syrjälä83054942016-11-18 21:53:00 +02002625
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01002626 return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst),
2627 cpp);
Paulo Zanonicca32e92013-05-31 11:45:06 -03002628}
2629
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002630static unsigned int
2631ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002632{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002633 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07002634 return 3072;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002635 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002636 return 768;
2637 else
2638 return 512;
2639}
2640
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002641static unsigned int
2642ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2643 int level, bool is_sprite)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002644{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002645 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002646 /* BDW primary/sprite plane watermarks */
2647 return level == 0 ? 255 : 2047;
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002648 else if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002649 /* IVB/HSW primary/sprite plane watermarks */
2650 return level == 0 ? 127 : 1023;
2651 else if (!is_sprite)
2652 /* ILK/SNB primary plane watermarks */
2653 return level == 0 ? 127 : 511;
2654 else
2655 /* ILK/SNB sprite plane watermarks */
2656 return level == 0 ? 63 : 255;
2657}
2658
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002659static unsigned int
2660ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002661{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002662 if (INTEL_GEN(dev_priv) >= 7)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002663 return level == 0 ? 63 : 255;
2664 else
2665 return level == 0 ? 31 : 63;
2666}
2667
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002668static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002669{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002670 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä4e975082014-03-07 18:32:11 +02002671 return 31;
2672 else
2673 return 15;
2674}
2675
Ville Syrjälä158ae642013-08-07 13:28:19 +03002676/* Calculate the maximum primary/sprite plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002677static unsigned int ilk_plane_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002678 int level,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002679 const struct intel_wm_config *config,
Ville Syrjälä158ae642013-08-07 13:28:19 +03002680 enum intel_ddb_partitioning ddb_partitioning,
2681 bool is_sprite)
2682{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002683 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002684
2685 /* if sprites aren't enabled, sprites get nothing */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002686 if (is_sprite && !config->sprites_enabled)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002687 return 0;
2688
2689 /* HSW allows LP1+ watermarks even with multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002690 if (level == 0 || config->num_pipes_active > 1) {
Jani Nikula24977872019-09-11 12:26:08 +03002691 fifo_size /= INTEL_NUM_PIPES(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002692
2693 /*
2694 * For some reason the non self refresh
2695 * FIFO size is only half of the self
2696 * refresh FIFO size on ILK/SNB.
2697 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002698 if (INTEL_GEN(dev_priv) <= 6)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002699 fifo_size /= 2;
2700 }
2701
Ville Syrjälä240264f2013-08-07 13:29:12 +03002702 if (config->sprites_enabled) {
Ville Syrjälä158ae642013-08-07 13:28:19 +03002703 /* level 0 is always calculated with 1:1 split */
2704 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2705 if (is_sprite)
2706 fifo_size *= 5;
2707 fifo_size /= 6;
2708 } else {
2709 fifo_size /= 2;
2710 }
2711 }
2712
2713 /* clamp to max that the registers can hold */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002714 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
Ville Syrjälä158ae642013-08-07 13:28:19 +03002715}
2716
2717/* Calculate the maximum cursor plane watermark */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002718static unsigned int ilk_cursor_wm_max(const struct drm_i915_private *dev_priv,
Ville Syrjälä240264f2013-08-07 13:29:12 +03002719 int level,
2720 const struct intel_wm_config *config)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002721{
2722 /* HSW LP1+ watermarks w/ multiple pipes */
Ville Syrjälä240264f2013-08-07 13:29:12 +03002723 if (level > 0 && config->num_pipes_active > 1)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002724 return 64;
2725
2726 /* otherwise just report max that registers can hold */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002727 return ilk_cursor_wm_reg_max(dev_priv, level);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002728}
2729
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002730static void ilk_compute_wm_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjälä34982fe2013-10-09 19:18:09 +03002731 int level,
2732 const struct intel_wm_config *config,
2733 enum intel_ddb_partitioning ddb_partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02002734 struct ilk_wm_maximums *max)
Ville Syrjälä158ae642013-08-07 13:28:19 +03002735{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08002736 max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false);
2737 max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true);
2738 max->cur = ilk_cursor_wm_max(dev_priv, level, config);
2739 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjälä158ae642013-08-07 13:28:19 +03002740}
2741
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002742static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002743 int level,
2744 struct ilk_wm_maximums *max)
2745{
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00002746 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2747 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2748 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2749 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03002750}
2751
Ville Syrjäläd9395652013-10-09 19:18:10 +03002752static bool ilk_validate_wm_level(int level,
Imre Deak820c1982013-12-17 14:46:36 +02002753 const struct ilk_wm_maximums *max,
Ville Syrjäläd9395652013-10-09 19:18:10 +03002754 struct intel_wm_level *result)
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002755{
2756 bool ret;
2757
2758 /* already determined to be invalid? */
2759 if (!result->enable)
2760 return false;
2761
2762 result->enable = result->pri_val <= max->pri &&
2763 result->spr_val <= max->spr &&
2764 result->cur_val <= max->cur;
2765
2766 ret = result->enable;
2767
2768 /*
2769 * HACK until we can pre-compute everything,
2770 * and thus fail gracefully if LP0 watermarks
2771 * are exceeded...
2772 */
2773 if (level == 0 && !result->enable) {
2774 if (result->pri_val > max->pri)
2775 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2776 level, result->pri_val, max->pri);
2777 if (result->spr_val > max->spr)
2778 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2779 level, result->spr_val, max->spr);
2780 if (result->cur_val > max->cur)
2781 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2782 level, result->cur_val, max->cur);
2783
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002784 result->pri_val = min_t(u32, result->pri_val, max->pri);
2785 result->spr_val = min_t(u32, result->spr_val, max->spr);
2786 result->cur_val = min_t(u32, result->cur_val, max->cur);
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002787 result->enable = true;
2788 }
2789
Ville Syrjäläa9786a12013-08-07 13:24:47 +03002790 return ret;
2791}
2792
Damien Lespiaud34ff9c2014-01-06 19:17:23 +00002793static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02002794 const struct intel_crtc *crtc,
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002795 int level,
Maarten Lankhorstec193642019-06-28 10:55:17 +02002796 struct intel_crtc_state *crtc_state,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02002797 const struct intel_plane_state *pristate,
2798 const struct intel_plane_state *sprstate,
2799 const struct intel_plane_state *curstate,
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03002800 struct intel_wm_level *result)
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002801{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002802 u16 pri_latency = dev_priv->wm.pri_latency[level];
2803 u16 spr_latency = dev_priv->wm.spr_latency[level];
2804 u16 cur_latency = dev_priv->wm.cur_latency[level];
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002805
2806 /* WM1+ latency values stored in 0.5us units */
2807 if (level > 0) {
2808 pri_latency *= 5;
2809 spr_latency *= 5;
2810 cur_latency *= 5;
2811 }
2812
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002813 if (pristate) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02002814 result->pri_val = ilk_compute_pri_wm(crtc_state, pristate,
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002815 pri_latency, level);
Maarten Lankhorstec193642019-06-28 10:55:17 +02002816 result->fbc_val = ilk_compute_fbc_wm(crtc_state, pristate, result->pri_val);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002817 }
2818
2819 if (sprstate)
Maarten Lankhorstec193642019-06-28 10:55:17 +02002820 result->spr_val = ilk_compute_spr_wm(crtc_state, sprstate, spr_latency);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002821
2822 if (curstate)
Maarten Lankhorstec193642019-06-28 10:55:17 +02002823 result->cur_val = ilk_compute_cur_wm(crtc_state, curstate, cur_latency);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01002824
Ville Syrjälä6f5ddd12013-08-06 22:24:02 +03002825 result->enable = true;
2826}
2827
Ville Syrjäläbb726512016-10-31 22:37:24 +02002828static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002829 u16 wm[8])
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002830{
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002831 struct intel_uncore *uncore = &dev_priv->uncore;
2832
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002833 if (INTEL_GEN(dev_priv) >= 9) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002834 u32 val;
Vandana Kannan4f947382014-11-04 17:06:47 +00002835 int ret, i;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002836 int level, max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002837
2838 /* read the first set of memory latencies[0:3] */
2839 val = 0; /* data0 to be programmed to 0 for first set */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002840 ret = sandybridge_pcode_read(dev_priv,
2841 GEN9_PCODE_READ_MEM_LATENCY,
Ville Syrjäläd284d512019-05-21 19:40:24 +03002842 &val, NULL);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002843
2844 if (ret) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002845 drm_err(&dev_priv->drm,
2846 "SKL Mailbox read error = %d\n", ret);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002847 return;
2848 }
2849
2850 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2851 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2852 GEN9_MEM_LATENCY_LEVEL_MASK;
2853 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2854 GEN9_MEM_LATENCY_LEVEL_MASK;
2855 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2856 GEN9_MEM_LATENCY_LEVEL_MASK;
2857
2858 /* read the second set of memory latencies[4:7] */
2859 val = 1; /* data0 to be programmed to 1 for second set */
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002860 ret = sandybridge_pcode_read(dev_priv,
2861 GEN9_PCODE_READ_MEM_LATENCY,
Ville Syrjäläd284d512019-05-21 19:40:24 +03002862 &val, NULL);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002863 if (ret) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002864 drm_err(&dev_priv->drm,
2865 "SKL Mailbox read error = %d\n", ret);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002866 return;
2867 }
2868
2869 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2870 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2871 GEN9_MEM_LATENCY_LEVEL_MASK;
2872 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2873 GEN9_MEM_LATENCY_LEVEL_MASK;
2874 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2875 GEN9_MEM_LATENCY_LEVEL_MASK;
2876
Vandana Kannan367294b2014-11-04 17:06:46 +00002877 /*
Paulo Zanoni0727e402016-09-22 18:00:30 -03002878 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2879 * need to be disabled. We make sure to sanitize the values out
2880 * of the punit to satisfy this requirement.
2881 */
2882 for (level = 1; level <= max_level; level++) {
2883 if (wm[level] == 0) {
2884 for (i = level + 1; i <= max_level; i++)
2885 wm[i] = 0;
2886 break;
2887 }
2888 }
2889
2890 /*
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002891 * WaWmMemoryReadLatency:skl+,glk
Damien Lespiau6f972352015-02-09 19:33:07 +00002892 *
Vandana Kannan367294b2014-11-04 17:06:46 +00002893 * punit doesn't take into account the read latency so we need
Paulo Zanoni0727e402016-09-22 18:00:30 -03002894 * to add 2us to the various latency levels we retrieve from the
2895 * punit when level 0 response data us 0us.
Vandana Kannan367294b2014-11-04 17:06:46 +00002896 */
Paulo Zanoni0727e402016-09-22 18:00:30 -03002897 if (wm[0] == 0) {
2898 wm[0] += 2;
2899 for (level = 1; level <= max_level; level++) {
2900 if (wm[level] == 0)
2901 break;
Vandana Kannan367294b2014-11-04 17:06:46 +00002902 wm[level] += 2;
Vandana Kannan4f947382014-11-04 17:06:47 +00002903 }
Paulo Zanoni0727e402016-09-22 18:00:30 -03002904 }
2905
Mahesh Kumar86b59282018-08-31 16:39:42 +05302906 /*
2907 * WA Level-0 adjustment for 16GB DIMMs: SKL+
2908 * If we could not get dimm info enable this WA to prevent from
2909 * any underrun. If not able to get Dimm info assume 16GB dimm
2910 * to avoid any underrun.
2911 */
Ville Syrjälä5d6f36b2018-10-23 21:21:02 +03002912 if (dev_priv->dram_info.is_16gb_dimm)
Mahesh Kumar86b59282018-08-31 16:39:42 +05302913 wm[0] += 1;
2914
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002915 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002916 u64 sskpd = intel_uncore_read64(uncore, MCH_SSKPD);
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002917
2918 wm[0] = (sskpd >> 56) & 0xFF;
2919 if (wm[0] == 0)
2920 wm[0] = sskpd & 0xF;
Ville Syrjäläe5d50192013-07-05 11:57:22 +03002921 wm[1] = (sskpd >> 4) & 0xFF;
2922 wm[2] = (sskpd >> 12) & 0xFF;
2923 wm[3] = (sskpd >> 20) & 0x1FF;
2924 wm[4] = (sskpd >> 32) & 0x1FF;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002925 } else if (INTEL_GEN(dev_priv) >= 6) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002926 u32 sskpd = intel_uncore_read(uncore, MCH_SSKPD);
Ville Syrjälä63cf9a12013-07-05 11:57:23 +03002927
2928 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2929 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2930 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2931 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
Ville Syrjäläbb726512016-10-31 22:37:24 +02002932 } else if (INTEL_GEN(dev_priv) >= 5) {
Tvrtko Ursulin1cea02d2019-06-10 13:06:07 +01002933 u32 mltr = intel_uncore_read(uncore, MLTR_ILK);
Ville Syrjälä3a88d0a2013-08-01 16:18:49 +03002934
2935 /* ILK primary LP0 latency is 700 ns */
2936 wm[0] = 7;
2937 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2938 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
Paulo Zanoni50682ee2017-08-09 13:52:43 -07002939 } else {
2940 MISSING_CASE(INTEL_DEVID(dev_priv));
Ville Syrjälä12b134d2013-07-05 11:57:21 +03002941 }
2942}
2943
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002944static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002945 u16 wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002946{
2947 /* ILK sprite LP0 latency is 1300 ns */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002948 if (IS_GEN(dev_priv, 5))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002949 wm[0] = 13;
2950}
2951
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01002952static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002953 u16 wm[5])
Ville Syrjälä53615a52013-08-01 16:18:50 +03002954{
2955 /* ILK cursor LP0 latency is 1300 ns */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08002956 if (IS_GEN(dev_priv, 5))
Ville Syrjälä53615a52013-08-01 16:18:50 +03002957 wm[0] = 13;
Ville Syrjälä53615a52013-08-01 16:18:50 +03002958}
2959
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002960int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002961{
2962 /* how many WM levels are we expecting */
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002963 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002964 return 7;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002965 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002966 return 4;
Tvrtko Ursulin86527442016-10-13 11:03:00 +01002967 else if (INTEL_GEN(dev_priv) >= 6)
Ville Syrjäläad0d6dc2013-08-30 14:30:25 +03002968 return 3;
2969 else
2970 return 2;
2971}
Daniel Vetter7526ed72014-09-29 15:07:19 +02002972
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002973static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002974 const char *name,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02002975 const u16 wm[8])
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002976{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01002977 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002978
2979 for (level = 0; level <= max_level; level++) {
2980 unsigned int latency = wm[level];
2981
2982 if (latency == 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002983 drm_dbg_kms(&dev_priv->drm,
2984 "%s WM%d latency not provided\n",
2985 name, level);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002986 continue;
2987 }
2988
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002989 /*
2990 * - latencies are in us on gen9.
2991 * - before then, WM1+ latency values are in 0.5us units
2992 */
Paulo Zanonidfc267a2017-08-09 13:52:46 -07002993 if (INTEL_GEN(dev_priv) >= 9)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00002994 latency *= 10;
2995 else if (level > 0)
Ville Syrjälä26ec9712013-08-01 16:18:52 +03002996 latency *= 5;
2997
Wambui Karugaf8d18d52020-01-07 18:13:30 +03002998 drm_dbg_kms(&dev_priv->drm,
2999 "%s WM%d latency %u (%u.%u usec)\n", name, level,
3000 wm[level], latency / 10, latency % 10);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003001 }
3002}
3003
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003004static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
Jani Nikula5ce9a6492019-01-18 14:01:20 +02003005 u16 wm[5], u16 min)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003006{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003007 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003008
3009 if (wm[0] >= min)
3010 return false;
3011
3012 wm[0] = max(wm[0], min);
3013 for (level = 1; level <= max_level; level++)
Jani Nikula5ce9a6492019-01-18 14:01:20 +02003014 wm[level] = max_t(u16, wm[level], DIV_ROUND_UP(min, 5));
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003015
3016 return true;
3017}
3018
Ville Syrjäläbb726512016-10-31 22:37:24 +02003019static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003020{
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003021 bool changed;
3022
3023 /*
3024 * The BIOS provided WM memory latency values are often
3025 * inadequate for high resolution displays. Adjust them.
3026 */
3027 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
3028 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
3029 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
3030
3031 if (!changed)
3032 return;
3033
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003034 drm_dbg_kms(&dev_priv->drm,
3035 "WM latency values increased to avoid potential underruns\n");
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003036 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3037 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3038 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003039}
3040
Ville Syrjälä03981c62018-11-14 19:34:40 +02003041static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv)
3042{
3043 /*
3044 * On some SNB machines (Thinkpad X220 Tablet at least)
3045 * LP3 usage can cause vblank interrupts to be lost.
3046 * The DEIIR bit will go high but it looks like the CPU
3047 * never gets interrupted.
3048 *
3049 * It's not clear whether other interrupt source could
3050 * be affected or if this is somehow limited to vblank
3051 * interrupts only. To play it safe we disable LP3
3052 * watermarks entirely.
3053 */
3054 if (dev_priv->wm.pri_latency[3] == 0 &&
3055 dev_priv->wm.spr_latency[3] == 0 &&
3056 dev_priv->wm.cur_latency[3] == 0)
3057 return;
3058
3059 dev_priv->wm.pri_latency[3] = 0;
3060 dev_priv->wm.spr_latency[3] = 0;
3061 dev_priv->wm.cur_latency[3] = 0;
3062
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003063 drm_dbg_kms(&dev_priv->drm,
3064 "LP3 watermarks disabled due to potential for lost interrupts\n");
Ville Syrjälä03981c62018-11-14 19:34:40 +02003065 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3066 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3067 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
3068}
3069
Ville Syrjäläbb726512016-10-31 22:37:24 +02003070static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
Ville Syrjälä53615a52013-08-01 16:18:50 +03003071{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003072 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
Ville Syrjälä53615a52013-08-01 16:18:50 +03003073
3074 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
3075 sizeof(dev_priv->wm.pri_latency));
3076 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
3077 sizeof(dev_priv->wm.pri_latency));
3078
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003079 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003080 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
Ville Syrjälä26ec9712013-08-01 16:18:52 +03003081
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003082 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3083 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3084 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
Ville Syrjäläe95a2f72014-05-08 15:09:19 +03003085
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003086 if (IS_GEN(dev_priv, 6)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02003087 snb_wm_latency_quirk(dev_priv);
Ville Syrjälä03981c62018-11-14 19:34:40 +02003088 snb_wm_lp3_irq_quirk(dev_priv);
3089 }
Ville Syrjälä53615a52013-08-01 16:18:50 +03003090}
3091
Ville Syrjäläbb726512016-10-31 22:37:24 +02003092static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003093{
Ville Syrjäläbb726512016-10-31 22:37:24 +02003094 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003095 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
Pradeep Bhat2af30a52014-11-04 17:06:38 +00003096}
3097
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003098static bool ilk_validate_pipe_wm(const struct drm_i915_private *dev_priv,
Matt Ropered4a6a72016-02-23 17:20:13 -08003099 struct intel_pipe_wm *pipe_wm)
3100{
3101 /* LP0 watermark maximums depend on this pipe alone */
3102 const struct intel_wm_config config = {
3103 .num_pipes_active = 1,
3104 .sprites_enabled = pipe_wm->sprites_enabled,
3105 .sprites_scaled = pipe_wm->sprites_scaled,
3106 };
3107 struct ilk_wm_maximums max;
3108
3109 /* LP0 watermarks always use 1/2 DDB partitioning */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003110 ilk_compute_wm_maximums(dev_priv, 0, &config, INTEL_DDB_PART_1_2, &max);
Matt Ropered4a6a72016-02-23 17:20:13 -08003111
3112 /* At least LP0 must be valid */
3113 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003114 drm_dbg_kms(&dev_priv->drm, "LP0 watermark invalid\n");
Matt Ropered4a6a72016-02-23 17:20:13 -08003115 return false;
3116 }
3117
3118 return true;
3119}
3120
Matt Roper261a27d2015-10-08 15:28:25 -07003121/* Compute new watermarks for the pipe */
Maarten Lankhorstec193642019-06-28 10:55:17 +02003122static int ilk_compute_pipe_wm(struct intel_crtc_state *crtc_state)
Matt Roper261a27d2015-10-08 15:28:25 -07003123{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003124 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02003125 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Matt Roper86c8bbb2015-09-24 15:53:16 -07003126 struct intel_pipe_wm *pipe_wm;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02003127 struct intel_plane *plane;
3128 const struct intel_plane_state *plane_state;
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003129 const struct intel_plane_state *pristate = NULL;
3130 const struct intel_plane_state *sprstate = NULL;
3131 const struct intel_plane_state *curstate = NULL;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003132 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
Imre Deak820c1982013-12-17 14:46:36 +02003133 struct ilk_wm_maximums max;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003134
Maarten Lankhorstec193642019-06-28 10:55:17 +02003135 pipe_wm = &crtc_state->wm.ilk.optimal;
Matt Roper86c8bbb2015-09-24 15:53:16 -07003136
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02003137 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
3138 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
3139 pristate = plane_state;
3140 else if (plane->base.type == DRM_PLANE_TYPE_OVERLAY)
3141 sprstate = plane_state;
3142 else if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
3143 curstate = plane_state;
Matt Roper43d59ed2015-09-24 15:53:07 -07003144 }
3145
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003146 pipe_wm->pipe_enabled = crtc_state->hw.active;
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003147 if (sprstate) {
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01003148 pipe_wm->sprites_enabled = sprstate->uapi.visible;
3149 pipe_wm->sprites_scaled = sprstate->uapi.visible &&
3150 (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 ||
3151 drm_rect_height(&sprstate->uapi.dst) != drm_rect_height(&sprstate->uapi.src) >> 16);
Maarten Lankhorste3bddde2016-03-01 11:07:22 +01003152 }
3153
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003154 usable_level = max_level;
3155
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003156 /* ILK/SNB: LP2+ watermarks only w/o sprites */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003157 if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003158 usable_level = 1;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003159
3160 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
Matt Ropered4a6a72016-02-23 17:20:13 -08003161 if (pipe_wm->sprites_scaled)
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003162 usable_level = 0;
Ville Syrjälä7b39a0b2013-12-05 15:51:30 +02003163
Maarten Lankhorst71f0a622016-03-08 10:57:16 +01003164 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02003165 ilk_compute_wm_level(dev_priv, crtc, 0, crtc_state,
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003166 pristate, sprstate, curstate, &pipe_wm->wm[0]);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003167
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003168 if (!ilk_validate_pipe_wm(dev_priv, pipe_wm))
Maarten Lankhorst1a426d62016-03-02 12:36:03 +01003169 return -EINVAL;
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003170
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003171 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003172
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003173 for (level = 1; level <= usable_level; level++) {
3174 struct intel_wm_level *wm = &pipe_wm->wm[level];
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003175
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02003176 ilk_compute_wm_level(dev_priv, crtc, level, crtc_state,
Maarten Lankhorstd81f04c2016-03-02 12:38:06 +01003177 pristate, sprstate, curstate, wm);
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003178
3179 /*
3180 * Disable any watermark level that exceeds the
3181 * register maximums since such watermarks are
3182 * always invalid.
3183 */
Maarten Lankhorst28283f42017-10-19 17:13:40 +02003184 if (!ilk_validate_wm_level(level, &max, wm)) {
3185 memset(wm, 0, sizeof(*wm));
3186 break;
3187 }
Ville Syrjäläa3cb4042014-04-28 15:44:56 +03003188 }
3189
Matt Roper86c8bbb2015-09-24 15:53:16 -07003190 return 0;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003191}
3192
3193/*
Matt Ropered4a6a72016-02-23 17:20:13 -08003194 * Build a set of 'intermediate' watermark values that satisfy both the old
3195 * state and the new state. These can be programmed to the hardware
3196 * immediately.
3197 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003198static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate)
Matt Ropered4a6a72016-02-23 17:20:13 -08003199{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003200 struct intel_crtc *intel_crtc = to_intel_crtc(newstate->uapi.crtc);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003201 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
Matt Ropere8f1f022016-05-12 07:05:55 -07003202 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003203 struct intel_atomic_state *intel_state =
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003204 to_intel_atomic_state(newstate->uapi.state);
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003205 const struct intel_crtc_state *oldstate =
3206 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3207 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003208 int level, max_level = ilk_wm_max_level(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08003209
3210 /*
3211 * Start with the final, target watermarks, then combine with the
3212 * currently active watermarks to get values that are safe both before
3213 * and after the vblank.
3214 */
Matt Ropere8f1f022016-05-12 07:05:55 -07003215 *a = newstate->wm.ilk.optimal;
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003216 if (!newstate->hw.active || drm_atomic_crtc_needs_modeset(&newstate->uapi) ||
Ville Syrjäläf255c622018-11-08 17:10:13 +02003217 intel_state->skip_intermediate_wm)
Maarten Lankhorstb6b178a2017-10-19 17:13:41 +02003218 return 0;
3219
Matt Ropered4a6a72016-02-23 17:20:13 -08003220 a->pipe_enabled |= b->pipe_enabled;
3221 a->sprites_enabled |= b->sprites_enabled;
3222 a->sprites_scaled |= b->sprites_scaled;
3223
3224 for (level = 0; level <= max_level; level++) {
3225 struct intel_wm_level *a_wm = &a->wm[level];
3226 const struct intel_wm_level *b_wm = &b->wm[level];
3227
3228 a_wm->enable &= b_wm->enable;
3229 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3230 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3231 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3232 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3233 }
3234
3235 /*
3236 * We need to make sure that these merged watermark values are
3237 * actually a valid configuration themselves. If they're not,
3238 * there's no safe way to transition from the old state to
3239 * the new state, so we need to fail the atomic transaction.
3240 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003241 if (!ilk_validate_pipe_wm(dev_priv, a))
Matt Ropered4a6a72016-02-23 17:20:13 -08003242 return -EINVAL;
3243
3244 /*
3245 * If our intermediate WM are identical to the final WM, then we can
3246 * omit the post-vblank programming; only update if it's different.
3247 */
Ville Syrjälä5eeb7982017-03-02 19:15:00 +02003248 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3249 newstate->wm.need_postvbl_update = true;
Matt Ropered4a6a72016-02-23 17:20:13 -08003250
3251 return 0;
3252}
3253
3254/*
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003255 * Merge the watermarks from all active pipes for a specific level.
3256 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003257static void ilk_merge_wm_level(struct drm_i915_private *dev_priv,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003258 int level,
3259 struct intel_wm_level *ret_wm)
3260{
3261 const struct intel_crtc *intel_crtc;
3262
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003263 ret_wm->enable = true;
3264
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003265 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Matt Ropered4a6a72016-02-23 17:20:13 -08003266 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
Ville Syrjäläfe392ef2014-03-07 18:32:10 +02003267 const struct intel_wm_level *wm = &active->wm[level];
3268
3269 if (!active->pipe_enabled)
3270 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003271
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003272 /*
3273 * The watermark values may have been used in the past,
3274 * so we must maintain them in the registers for some
3275 * time even if the level is now disabled.
3276 */
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003277 if (!wm->enable)
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003278 ret_wm->enable = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003279
3280 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3281 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3282 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3283 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3284 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003285}
3286
3287/*
3288 * Merge all low power watermarks for all active pipes.
3289 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003290static void ilk_wm_merge(struct drm_i915_private *dev_priv,
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003291 const struct intel_wm_config *config,
Imre Deak820c1982013-12-17 14:46:36 +02003292 const struct ilk_wm_maximums *max,
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003293 struct intel_pipe_wm *merged)
3294{
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003295 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003296 int last_enabled_level = max_level;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003297
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003298 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01003299 if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003300 config->num_pipes_active > 1)
Ville Syrjälä1204d5b2016-04-01 21:53:18 +03003301 last_enabled_level = 0;
Ville Syrjälä0ba22e22013-12-05 15:51:34 +02003302
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003303 /* ILK: FBC WM must be disabled always */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003304 merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003305
3306 /* merge each WM1+ level */
3307 for (level = 1; level <= max_level; level++) {
3308 struct intel_wm_level *wm = &merged->wm[level];
3309
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003310 ilk_merge_wm_level(dev_priv, level, wm);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003311
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003312 if (level > last_enabled_level)
3313 wm->enable = false;
3314 else if (!ilk_validate_wm_level(level, max, wm))
3315 /* make sure all following levels get disabled */
3316 last_enabled_level = level - 1;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003317
3318 /*
3319 * The spec says it is preferred to disable
3320 * FBC WMs instead of disabling a WM level.
3321 */
3322 if (wm->fbc_val > max->fbc) {
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003323 if (wm->enable)
3324 merged->fbc_wm_enabled = false;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003325 wm->fbc_val = 0;
3326 }
3327 }
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003328
3329 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3330 /*
3331 * FIXME this is racy. FBC might get enabled later.
3332 * What we should check here is whether FBC can be
3333 * enabled sometime later.
3334 */
Lucas De Marchicf819ef2018-12-12 10:10:43 -08003335 if (IS_GEN(dev_priv, 5) && !merged->fbc_wm_enabled &&
Paulo Zanoni0e631ad2015-10-14 17:45:36 -03003336 intel_fbc_is_active(dev_priv)) {
Ville Syrjälä6c8b6c22013-12-05 15:51:35 +02003337 for (level = 2; level <= max_level; level++) {
3338 struct intel_wm_level *wm = &merged->wm[level];
3339
3340 wm->enable = false;
3341 }
3342 }
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003343}
3344
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003345static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3346{
3347 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3348 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3349}
3350
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003351/* The value we need to program into the WM_LPx latency field */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003352static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv,
3353 int level)
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003354{
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003355 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläa68d68e2013-12-05 15:51:29 +02003356 return 2 * level;
3357 else
3358 return dev_priv->wm.pri_latency[level];
3359}
3360
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003361static void ilk_compute_wm_results(struct drm_i915_private *dev_priv,
Ville Syrjälä0362c782013-10-09 19:17:57 +03003362 const struct intel_pipe_wm *merged,
Ville Syrjälä609cede2013-10-09 19:18:03 +03003363 enum intel_ddb_partitioning partitioning,
Imre Deak820c1982013-12-17 14:46:36 +02003364 struct ilk_wm_values *results)
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003365{
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003366 struct intel_crtc *intel_crtc;
3367 int level, wm_lp;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003368
Ville Syrjälä0362c782013-10-09 19:17:57 +03003369 results->enable_fbc_wm = merged->fbc_wm_enabled;
Ville Syrjälä609cede2013-10-09 19:18:03 +03003370 results->partitioning = partitioning;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003371
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003372 /* LP1+ register values */
Paulo Zanonicca32e92013-05-31 11:45:06 -03003373 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
Ville Syrjälä1fd527c2013-08-06 22:24:05 +03003374 const struct intel_wm_level *r;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003375
Ville Syrjäläb380ca32013-10-09 19:18:01 +03003376 level = ilk_wm_lp_to_level(wm_lp, merged);
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003377
Ville Syrjälä0362c782013-10-09 19:17:57 +03003378 r = &merged->wm[level];
Paulo Zanonicca32e92013-05-31 11:45:06 -03003379
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003380 /*
3381 * Maintain the watermark values even if the level is
3382 * disabled. Doing otherwise could cause underruns.
3383 */
3384 results->wm_lp[wm_lp - 1] =
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003385 (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) |
Ville Syrjälä416f4722013-11-02 21:07:46 -07003386 (r->pri_val << WM1_LP_SR_SHIFT) |
3387 r->cur_val;
3388
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003389 if (r->enable)
3390 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3391
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003392 if (INTEL_GEN(dev_priv) >= 8)
Ville Syrjälä416f4722013-11-02 21:07:46 -07003393 results->wm_lp[wm_lp - 1] |=
3394 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3395 else
3396 results->wm_lp[wm_lp - 1] |=
3397 r->fbc_val << WM1_LP_FBC_SHIFT;
3398
Ville Syrjäläd52fea52014-04-28 15:44:57 +03003399 /*
3400 * Always set WM1S_LP_EN when spr_val != 0, even if the
3401 * level is disabled. Doing otherwise could cause underruns.
3402 */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003403 if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) {
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303404 drm_WARN_ON(&dev_priv->drm, wm_lp != 1);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003405 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3406 } else
3407 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
Paulo Zanonicca32e92013-05-31 11:45:06 -03003408 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003409
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003410 /* LP0 register values */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003411 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003412 enum pipe pipe = intel_crtc->pipe;
Ville Syrjälä0560b0c2020-01-20 19:47:11 +02003413 const struct intel_pipe_wm *pipe_wm = &intel_crtc->wm.active.ilk;
3414 const struct intel_wm_level *r = &pipe_wm->wm[0];
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003415
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303416 if (drm_WARN_ON(&dev_priv->drm, !r->enable))
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003417 continue;
Ville Syrjälä0b2ae6d2013-10-09 19:17:55 +03003418
3419 results->wm_pipe[pipe] =
3420 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3421 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3422 r->cur_val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003423 }
3424}
3425
Paulo Zanoni861f3382013-05-31 10:19:21 -03003426/* Find the result with the highest level enabled. Check for enable_fbc_wm in
3427 * case both are at the same level. Prefer r1 in case they're the same. */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003428static struct intel_pipe_wm *
3429ilk_find_best_result(struct drm_i915_private *dev_priv,
3430 struct intel_pipe_wm *r1,
3431 struct intel_pipe_wm *r2)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003432{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08003433 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003434 int level1 = 0, level2 = 0;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003435
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003436 for (level = 1; level <= max_level; level++) {
3437 if (r1->wm[level].enable)
3438 level1 = level;
3439 if (r2->wm[level].enable)
3440 level2 = level;
Paulo Zanoni861f3382013-05-31 10:19:21 -03003441 }
3442
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003443 if (level1 == level2) {
3444 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
Paulo Zanoni861f3382013-05-31 10:19:21 -03003445 return r2;
3446 else
3447 return r1;
Ville Syrjälä198a1e92013-10-09 19:17:58 +03003448 } else if (level1 > level2) {
Paulo Zanoni861f3382013-05-31 10:19:21 -03003449 return r1;
3450 } else {
3451 return r2;
3452 }
3453}
3454
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003455/* dirty bits used to track which watermarks need changes */
3456#define WM_DIRTY_PIPE(pipe) (1 << (pipe))
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003457#define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3458#define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3459#define WM_DIRTY_FBC (1 << 24)
3460#define WM_DIRTY_DDB (1 << 25)
3461
Damien Lespiau055e3932014-08-18 13:49:10 +01003462static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
Imre Deak820c1982013-12-17 14:46:36 +02003463 const struct ilk_wm_values *old,
3464 const struct ilk_wm_values *new)
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003465{
3466 unsigned int dirty = 0;
3467 enum pipe pipe;
3468 int wm_lp;
3469
Damien Lespiau055e3932014-08-18 13:49:10 +01003470 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003471 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3472 dirty |= WM_DIRTY_PIPE(pipe);
3473 /* Must disable LP1+ watermarks too */
3474 dirty |= WM_DIRTY_LP_ALL;
3475 }
3476 }
3477
3478 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3479 dirty |= WM_DIRTY_FBC;
3480 /* Must disable LP1+ watermarks too */
3481 dirty |= WM_DIRTY_LP_ALL;
3482 }
3483
3484 if (old->partitioning != new->partitioning) {
3485 dirty |= WM_DIRTY_DDB;
3486 /* Must disable LP1+ watermarks too */
3487 dirty |= WM_DIRTY_LP_ALL;
3488 }
3489
3490 /* LP1+ watermarks already deemed dirty, no need to continue */
3491 if (dirty & WM_DIRTY_LP_ALL)
3492 return dirty;
3493
3494 /* Find the lowest numbered LP1+ watermark in need of an update... */
3495 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3496 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3497 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3498 break;
3499 }
3500
3501 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3502 for (; wm_lp <= 3; wm_lp++)
3503 dirty |= WM_DIRTY_LP(wm_lp);
3504
3505 return dirty;
3506}
3507
Ville Syrjälä8553c182013-12-05 15:51:39 +02003508static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3509 unsigned int dirty)
3510{
Imre Deak820c1982013-12-17 14:46:36 +02003511 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä8553c182013-12-05 15:51:39 +02003512 bool changed = false;
3513
3514 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3515 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3516 I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]);
3517 changed = true;
3518 }
3519 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3520 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3521 I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]);
3522 changed = true;
3523 }
3524 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3525 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3526 I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]);
3527 changed = true;
3528 }
3529
3530 /*
3531 * Don't touch WM1S_LP_EN here.
3532 * Doing so could cause underruns.
3533 */
3534
3535 return changed;
3536}
3537
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003538/*
3539 * The spec says we shouldn't write when we don't need, because every write
3540 * causes WMs to be re-evaluated, expending some power.
3541 */
Imre Deak820c1982013-12-17 14:46:36 +02003542static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3543 struct ilk_wm_values *results)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003544{
Imre Deak820c1982013-12-17 14:46:36 +02003545 struct ilk_wm_values *previous = &dev_priv->wm.hw;
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003546 unsigned int dirty;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02003547 u32 val;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003548
Damien Lespiau055e3932014-08-18 13:49:10 +01003549 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003550 if (!dirty)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003551 return;
3552
Ville Syrjälä8553c182013-12-05 15:51:39 +02003553 _ilk_disable_lp_wm(dev_priv, dirty);
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003554
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003555 if (dirty & WM_DIRTY_PIPE(PIPE_A))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003556 I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003557 if (dirty & WM_DIRTY_PIPE(PIPE_B))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003558 I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]);
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003559 if (dirty & WM_DIRTY_PIPE(PIPE_C))
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003560 I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]);
3561
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003562 if (dirty & WM_DIRTY_DDB) {
Tvrtko Ursulin86527442016-10-13 11:03:00 +01003563 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
Ville Syrjäläac9545f2013-12-05 15:51:28 +02003564 val = I915_READ(WM_MISC);
3565 if (results->partitioning == INTEL_DDB_PART_1_2)
3566 val &= ~WM_MISC_DATA_PARTITION_5_6;
3567 else
3568 val |= WM_MISC_DATA_PARTITION_5_6;
3569 I915_WRITE(WM_MISC, val);
3570 } else {
3571 val = I915_READ(DISP_ARB_CTL2);
3572 if (results->partitioning == INTEL_DDB_PART_1_2)
3573 val &= ~DISP_DATA_PARTITION_5_6;
3574 else
3575 val |= DISP_DATA_PARTITION_5_6;
3576 I915_WRITE(DISP_ARB_CTL2, val);
3577 }
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03003578 }
3579
Ville Syrjälä49a687c2013-10-11 19:39:52 +03003580 if (dirty & WM_DIRTY_FBC) {
Paulo Zanonicca32e92013-05-31 11:45:06 -03003581 val = I915_READ(DISP_ARB_CTL);
3582 if (results->enable_fbc_wm)
3583 val &= ~DISP_FBC_WM_DIS;
3584 else
3585 val |= DISP_FBC_WM_DIS;
3586 I915_WRITE(DISP_ARB_CTL, val);
3587 }
3588
Imre Deak954911e2013-12-17 14:46:34 +02003589 if (dirty & WM_DIRTY_LP(1) &&
3590 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3591 I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]);
3592
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00003593 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjälä6cef2b8a2013-12-05 15:51:32 +02003594 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3595 I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]);
3596 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3597 I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]);
3598 }
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003599
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003600 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003601 I915_WRITE(WM1_LP_ILK, results->wm_lp[0]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003602 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003603 I915_WRITE(WM2_LP_ILK, results->wm_lp[1]);
Ville Syrjäläfacd619b2013-12-05 15:51:33 +02003604 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003605 I915_WRITE(WM3_LP_ILK, results->wm_lp[2]);
Ville Syrjälä609cede2013-10-09 19:18:03 +03003606
3607 dev_priv->wm.hw = *results;
Paulo Zanoni801bcff2013-05-31 10:08:35 -03003608}
3609
Ville Syrjälä60aca572019-11-27 21:05:51 +02003610bool ilk_disable_lp_wm(struct drm_i915_private *dev_priv)
Ville Syrjälä8553c182013-12-05 15:51:39 +02003611{
Ville Syrjälä8553c182013-12-05 15:51:39 +02003612 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3613}
3614
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003615u8 intel_enabled_dbuf_slices_mask(struct drm_i915_private *dev_priv)
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303616{
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003617 int i;
3618 int max_slices = INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
3619 u8 enabled_slices_mask = 0;
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303620
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003621 for (i = 0; i < max_slices; i++) {
3622 if (I915_READ(DBUF_CTL_S(i)) & DBUF_POWER_STATE)
3623 enabled_slices_mask |= BIT(i);
3624 }
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303625
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02003626 return enabled_slices_mask;
Mahesh Kumar74bd8002018-04-26 19:55:15 +05303627}
3628
Matt Roper024c9042015-09-24 15:53:11 -07003629/*
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003630 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3631 * so assume we'll always need it in order to avoid underruns.
3632 */
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003633static bool skl_needs_memory_bw_wa(struct drm_i915_private *dev_priv)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003634{
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003635 return IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003636}
3637
Paulo Zanoni56feca92016-09-22 18:00:28 -03003638static bool
3639intel_has_sagv(struct drm_i915_private *dev_priv)
3640{
Lucas De Marchi8ffa4392019-09-04 14:34:18 -07003641 /* HACK! */
3642 if (IS_GEN(dev_priv, 12))
3643 return false;
3644
Rodrigo Vivi1ca2b062018-10-26 13:03:17 -07003645 return (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) &&
3646 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED;
Paulo Zanoni56feca92016-09-22 18:00:28 -03003647}
3648
James Ausmusb068a862019-10-09 10:23:14 -07003649static void
3650skl_setup_sagv_block_time(struct drm_i915_private *dev_priv)
3651{
James Ausmusda80f042019-10-09 10:23:15 -07003652 if (INTEL_GEN(dev_priv) >= 12) {
3653 u32 val = 0;
3654 int ret;
3655
3656 ret = sandybridge_pcode_read(dev_priv,
3657 GEN12_PCODE_READ_SAGV_BLOCK_TIME_US,
3658 &val, NULL);
3659 if (!ret) {
3660 dev_priv->sagv_block_time_us = val;
3661 return;
3662 }
3663
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003664 drm_dbg(&dev_priv->drm, "Couldn't read SAGV block time!\n");
James Ausmusda80f042019-10-09 10:23:15 -07003665 } else if (IS_GEN(dev_priv, 11)) {
James Ausmusb068a862019-10-09 10:23:14 -07003666 dev_priv->sagv_block_time_us = 10;
3667 return;
3668 } else if (IS_GEN(dev_priv, 10)) {
3669 dev_priv->sagv_block_time_us = 20;
3670 return;
3671 } else if (IS_GEN(dev_priv, 9)) {
3672 dev_priv->sagv_block_time_us = 30;
3673 return;
3674 } else {
3675 MISSING_CASE(INTEL_GEN(dev_priv));
3676 }
3677
3678 /* Default to an unusable block time */
3679 dev_priv->sagv_block_time_us = -1;
3680}
3681
Lyude656d1b82016-08-17 15:55:54 -04003682/*
3683 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3684 * depending on power and performance requirements. The display engine access
3685 * to system memory is blocked during the adjustment time. Because of the
3686 * blocking time, having this enabled can cause full system hangs and/or pipe
3687 * underruns if we don't meet all of the following requirements:
3688 *
3689 * - <= 1 pipe enabled
3690 * - All planes can enable watermarks for latencies >= SAGV engine block time
3691 * - We're not using an interlaced display configuration
3692 */
3693int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003694intel_enable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003695{
3696 int ret;
3697
Paulo Zanoni56feca92016-09-22 18:00:28 -03003698 if (!intel_has_sagv(dev_priv))
3699 return 0;
3700
3701 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
Lyude656d1b82016-08-17 15:55:54 -04003702 return 0;
3703
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003704 drm_dbg_kms(&dev_priv->drm, "Enabling SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003705 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3706 GEN9_SAGV_ENABLE);
3707
Ville Syrjäläff61a972018-12-21 19:14:34 +02003708 /* We don't need to wait for SAGV when enabling */
Lyude656d1b82016-08-17 15:55:54 -04003709
3710 /*
3711 * Some skl systems, pre-release machines in particular,
Ville Syrjäläff61a972018-12-21 19:14:34 +02003712 * don't actually have SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003713 */
Paulo Zanoni6e3100e2016-09-22 18:00:29 -03003714 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003715 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003716 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003717 return 0;
3718 } else if (ret < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003719 drm_err(&dev_priv->drm, "Failed to enable SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003720 return ret;
3721 }
3722
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003723 dev_priv->sagv_status = I915_SAGV_ENABLED;
Lyude656d1b82016-08-17 15:55:54 -04003724 return 0;
3725}
3726
Lyude656d1b82016-08-17 15:55:54 -04003727int
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003728intel_disable_sagv(struct drm_i915_private *dev_priv)
Lyude656d1b82016-08-17 15:55:54 -04003729{
Imre Deakb3b8e992016-12-05 18:27:38 +02003730 int ret;
Lyude656d1b82016-08-17 15:55:54 -04003731
Paulo Zanoni56feca92016-09-22 18:00:28 -03003732 if (!intel_has_sagv(dev_priv))
3733 return 0;
3734
3735 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
Lyude656d1b82016-08-17 15:55:54 -04003736 return 0;
3737
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003738 drm_dbg_kms(&dev_priv->drm, "Disabling SAGV\n");
Lyude656d1b82016-08-17 15:55:54 -04003739 /* bspec says to keep retrying for at least 1 ms */
Imre Deakb3b8e992016-12-05 18:27:38 +02003740 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3741 GEN9_SAGV_DISABLE,
3742 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3743 1);
Lyude656d1b82016-08-17 15:55:54 -04003744 /*
3745 * Some skl systems, pre-release machines in particular,
Ville Syrjäläff61a972018-12-21 19:14:34 +02003746 * don't actually have SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003747 */
Imre Deakb3b8e992016-12-05 18:27:38 +02003748 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003749 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003750 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
Lyude656d1b82016-08-17 15:55:54 -04003751 return 0;
Imre Deakb3b8e992016-12-05 18:27:38 +02003752 } else if (ret < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03003753 drm_err(&dev_priv->drm, "Failed to disable SAGV (%d)\n", ret);
Imre Deakb3b8e992016-12-05 18:27:38 +02003754 return ret;
Lyude656d1b82016-08-17 15:55:54 -04003755 }
3756
Paulo Zanoni16dcdc42016-09-22 18:00:27 -03003757 dev_priv->sagv_status = I915_SAGV_DISABLED;
Lyude656d1b82016-08-17 15:55:54 -04003758 return 0;
3759}
3760
Stanislav Lisovskiy680e1af2020-04-15 17:39:04 +03003761void intel_sagv_pre_plane_update(struct intel_atomic_state *state)
3762{
3763 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003764 const struct intel_bw_state *new_bw_state;
Stanislav Lisovskiy680e1af2020-04-15 17:39:04 +03003765
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003766 /*
3767 * Just return if we can't control SAGV or don't have it.
3768 * This is different from situation when we have SAGV but just can't
3769 * afford it due to DBuf limitation - in case if SAGV is completely
3770 * disabled in a BIOS, we are not even allowed to send a PCode request,
3771 * as it will throw an error. So have to check it here.
3772 */
3773 if (!intel_has_sagv(dev_priv))
3774 return;
3775
3776 new_bw_state = intel_atomic_get_new_bw_state(state);
3777 if (!new_bw_state)
3778 return;
3779
3780 if (!intel_can_enable_sagv(new_bw_state))
Stanislav Lisovskiy680e1af2020-04-15 17:39:04 +03003781 intel_disable_sagv(dev_priv);
3782}
3783
3784void intel_sagv_post_plane_update(struct intel_atomic_state *state)
3785{
3786 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003787 const struct intel_bw_state *new_bw_state;
Stanislav Lisovskiy680e1af2020-04-15 17:39:04 +03003788
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003789 /*
3790 * Just return if we can't control SAGV or don't have it.
3791 * This is different from situation when we have SAGV but just can't
3792 * afford it due to DBuf limitation - in case if SAGV is completely
3793 * disabled in a BIOS, we are not even allowed to send a PCode request,
3794 * as it will throw an error. So have to check it here.
3795 */
3796 if (!intel_has_sagv(dev_priv))
3797 return;
3798
3799 new_bw_state = intel_atomic_get_new_bw_state(state);
3800 if (!new_bw_state)
3801 return;
3802
3803 if (intel_can_enable_sagv(new_bw_state))
Stanislav Lisovskiy680e1af2020-04-15 17:39:04 +03003804 intel_enable_sagv(dev_priv);
3805}
3806
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003807static bool intel_crtc_can_enable_sagv(const struct intel_crtc_state *crtc_state)
Lyude656d1b82016-08-17 15:55:54 -04003808{
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003809 struct intel_atomic_state *state = to_intel_atomic_state(crtc_state->uapi.state);
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003810 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003811 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003812 struct intel_plane *plane;
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003813 const struct intel_plane_state *plane_state;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003814 int level, latency;
Lyude656d1b82016-08-17 15:55:54 -04003815
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003816 if (!intel_has_sagv(dev_priv))
3817 return false;
3818
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003819 if (!crtc_state->hw.active)
Lyude656d1b82016-08-17 15:55:54 -04003820 return true;
Lucas De Marchida172232019-04-04 16:04:26 -07003821
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003822 /*
3823 * SKL+ workaround: bspec recommends we disable SAGV when we have
3824 * more then one pipe enabled
3825 */
3826 if (hweight8(state->active_pipes) > 1)
3827 return false;
3828
Maarten Lankhorst1326a922019-10-31 12:26:02 +01003829 if (crtc_state->hw.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE)
Lyude656d1b82016-08-17 15:55:54 -04003830 return false;
3831
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003832 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003833 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02003834 &crtc_state->wm.skl.optimal.planes[plane->id];
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003835
Lyude656d1b82016-08-17 15:55:54 -04003836 /* Skip this plane if it's not enabled */
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003837 if (!wm->wm[0].plane_en)
Lyude656d1b82016-08-17 15:55:54 -04003838 continue;
3839
3840 /* Find the highest enabled wm level for this plane */
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01003841 for (level = ilk_wm_max_level(dev_priv);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02003842 !wm->wm[level].plane_en; --level)
Lyude656d1b82016-08-17 15:55:54 -04003843 { }
3844
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003845 latency = dev_priv->wm.skl_latency[level];
3846
Ville Syrjälä60e983f2018-12-21 19:14:33 +02003847 if (skl_needs_memory_bw_wa(dev_priv) &&
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003848 plane_state->uapi.fb->modifier ==
Paulo Zanoniee3d5322016-10-11 15:25:38 -03003849 I915_FORMAT_MOD_X_TILED)
3850 latency += 15;
3851
Lyude656d1b82016-08-17 15:55:54 -04003852 /*
Paulo Zanonifdd11c22017-08-09 13:52:45 -07003853 * If any of the planes on this pipe don't enable wm levels that
3854 * incur memory latencies higher than sagv_block_time_us we
Ville Syrjäläff61a972018-12-21 19:14:34 +02003855 * can't enable SAGV.
Lyude656d1b82016-08-17 15:55:54 -04003856 */
James Ausmusb068a862019-10-09 10:23:14 -07003857 if (latency < dev_priv->sagv_block_time_us)
Lyude656d1b82016-08-17 15:55:54 -04003858 return false;
3859 }
3860
3861 return true;
3862}
3863
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003864bool intel_can_enable_sagv(const struct intel_bw_state *bw_state)
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003865{
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003866 return bw_state->pipe_sagv_reject == 0;
3867}
3868
3869static int intel_compute_sagv_mask(struct intel_atomic_state *state)
3870{
3871 int ret;
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003872 struct intel_crtc *crtc;
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003873 struct intel_crtc_state *new_crtc_state;
3874 struct intel_bw_state *new_bw_state = NULL;
3875 const struct intel_bw_state *old_bw_state = NULL;
3876 int i;
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003877
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003878 for_each_new_intel_crtc_in_state(state, crtc,
3879 new_crtc_state, i) {
3880 new_bw_state = intel_atomic_get_bw_state(state);
3881 if (IS_ERR(new_bw_state))
3882 return PTR_ERR(new_bw_state);
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003883
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003884 old_bw_state = intel_atomic_get_old_bw_state(state);
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003885
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003886 if (intel_crtc_can_enable_sagv(new_crtc_state))
3887 new_bw_state->pipe_sagv_reject &= ~BIT(crtc->pipe);
3888 else
3889 new_bw_state->pipe_sagv_reject |= BIT(crtc->pipe);
3890 }
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003891
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003892 if (!new_bw_state)
3893 return 0;
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003894
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03003895 if (intel_can_enable_sagv(new_bw_state) != intel_can_enable_sagv(old_bw_state)) {
3896 ret = intel_atomic_serialize_global_state(&new_bw_state->base);
3897 if (ret)
3898 return ret;
3899 } else if (new_bw_state->pipe_sagv_reject != old_bw_state->pipe_sagv_reject) {
3900 ret = intel_atomic_lock_global_state(&new_bw_state->base);
3901 if (ret)
3902 return ret;
3903 }
3904
3905 return 0;
Stanislav Lisovskiya389c492020-04-15 17:57:40 +03003906}
3907
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003908/*
3909 * Calculate initial DBuf slice offset, based on slice size
3910 * and mask(i.e if slice size is 1024 and second slice is enabled
3911 * offset would be 1024)
3912 */
3913static unsigned int
3914icl_get_first_dbuf_slice_offset(u32 dbuf_slice_mask,
3915 u32 slice_size,
3916 u32 ddb_size)
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303917{
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003918 unsigned int offset = 0;
3919
3920 if (!dbuf_slice_mask)
3921 return 0;
3922
3923 offset = (ffs(dbuf_slice_mask) - 1) * slice_size;
3924
3925 WARN_ON(offset >= ddb_size);
3926 return offset;
3927}
3928
3929static u16 intel_get_ddb_size(struct drm_i915_private *dev_priv)
3930{
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303931 u16 ddb_size = INTEL_INFO(dev_priv)->ddb_size;
3932
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303933 drm_WARN_ON(&dev_priv->drm, ddb_size == 0);
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303934
3935 if (INTEL_GEN(dev_priv) < 11)
3936 return ddb_size - 4; /* 4 blocks for bypass path allocation */
3937
Mahesh Kumaraa9664f2018-04-26 19:55:16 +05303938 return ddb_size;
3939}
3940
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003941static u8 skl_compute_dbuf_slices(const struct intel_crtc_state *crtc_state,
Ville Syrjälä05e81552020-02-25 19:11:09 +02003942 u8 active_pipes);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003943
Damien Lespiaub9cec072014-11-04 17:06:43 +00003944static void
Maarten Lankhorstb048a002018-10-18 13:51:30 +02003945skl_ddb_get_pipe_allocation_limits(struct drm_i915_private *dev_priv,
Maarten Lankhorstec193642019-06-28 10:55:17 +02003946 const struct intel_crtc_state *crtc_state,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02003947 const u64 total_data_rate,
Matt Roperc107acf2016-05-12 07:06:01 -07003948 struct skl_ddb_entry *alloc, /* out */
3949 int *num_active /* out */)
Damien Lespiaub9cec072014-11-04 17:06:43 +00003950{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003951 struct drm_atomic_state *state = crtc_state->uapi.state;
Matt Roperc107acf2016-05-12 07:06:01 -07003952 struct intel_atomic_state *intel_state = to_intel_atomic_state(state);
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01003953 struct drm_crtc *for_crtc = crtc_state->uapi.crtc;
Maarten Lankhorstec193642019-06-28 10:55:17 +02003954 const struct intel_crtc *crtc;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003955 u32 pipe_width = 0, total_width_in_range = 0, width_before_pipe_in_range = 0;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303956 enum pipe for_pipe = to_intel_crtc(for_crtc)->pipe;
3957 u16 ddb_size;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003958 u32 ddb_range_size;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303959 u32 i;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003960 u32 dbuf_slice_mask;
3961 u32 active_pipes;
3962 u32 offset;
3963 u32 slice_size;
3964 u32 total_slice_mask;
3965 u32 start, end;
Matt Roperc107acf2016-05-12 07:06:01 -07003966
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05303967 if (drm_WARN_ON(&dev_priv->drm, !state) || !crtc_state->hw.active) {
Damien Lespiaub9cec072014-11-04 17:06:43 +00003968 alloc->start = 0;
3969 alloc->end = 0;
Ville Syrjälä0b14d962019-08-21 20:30:33 +03003970 *num_active = hweight8(dev_priv->active_pipes);
Damien Lespiaub9cec072014-11-04 17:06:43 +00003971 return;
3972 }
3973
Matt Ropera6d3460e2016-05-12 07:06:04 -07003974 if (intel_state->active_pipe_changes)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003975 active_pipes = intel_state->active_pipes;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003976 else
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003977 active_pipes = dev_priv->active_pipes;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003978
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02003979 *num_active = hweight8(active_pipes);
3980
3981 ddb_size = intel_get_ddb_size(dev_priv);
3982
3983 slice_size = ddb_size / INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
Damien Lespiaub9cec072014-11-04 17:06:43 +00003984
Matt Roperc107acf2016-05-12 07:06:01 -07003985 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303986 * If the state doesn't change the active CRTC's or there is no
3987 * modeset request, then there's no need to recalculate;
3988 * the existing pipe allocation limits should remain unchanged.
3989 * Note that we're safe from racing commits since any racing commit
3990 * that changes the active CRTC list or do modeset would need to
3991 * grab _all_ crtc locks, including the one we currently hold.
Matt Roperc107acf2016-05-12 07:06:01 -07003992 */
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05303993 if (!intel_state->active_pipe_changes && !intel_state->modeset) {
Maarten Lankhorst512b5522016-11-08 13:55:34 +01003994 /*
3995 * alloc may be cleared by clear_intel_crtc_state,
3996 * copy from old state to be sure
3997 */
3998 *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb;
Matt Ropera6d3460e2016-05-12 07:06:04 -07003999 return;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004000 }
Matt Ropera6d3460e2016-05-12 07:06:04 -07004001
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304002 /*
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004003 * Get allowed DBuf slices for correspondent pipe and platform.
4004 */
4005 dbuf_slice_mask = skl_compute_dbuf_slices(crtc_state, active_pipes);
4006
4007 DRM_DEBUG_KMS("DBuf slice mask %x pipe %c active pipes %x\n",
4008 dbuf_slice_mask,
4009 pipe_name(for_pipe), active_pipes);
4010
4011 /*
4012 * Figure out at which DBuf slice we start, i.e if we start at Dbuf S2
4013 * and slice size is 1024, the offset would be 1024
4014 */
4015 offset = icl_get_first_dbuf_slice_offset(dbuf_slice_mask,
4016 slice_size, ddb_size);
4017
4018 /*
4019 * Figure out total size of allowed DBuf slices, which is basically
4020 * a number of allowed slices for that pipe multiplied by slice size.
4021 * Inside of this
4022 * range ddb entries are still allocated in proportion to display width.
4023 */
4024 ddb_range_size = hweight8(dbuf_slice_mask) * slice_size;
4025
4026 /*
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304027 * Watermark/ddb requirement highly depends upon width of the
4028 * framebuffer, So instead of allocating DDB equally among pipes
4029 * distribute DDB based on resolution/width of the display.
4030 */
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004031 total_slice_mask = dbuf_slice_mask;
Maarten Lankhorstec193642019-06-28 10:55:17 +02004032 for_each_new_intel_crtc_in_state(intel_state, crtc, crtc_state, i) {
4033 const struct drm_display_mode *adjusted_mode =
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004034 &crtc_state->hw.adjusted_mode;
Maarten Lankhorstec193642019-06-28 10:55:17 +02004035 enum pipe pipe = crtc->pipe;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304036 int hdisplay, vdisplay;
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004037 u32 pipe_dbuf_slice_mask;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304038
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004039 if (!crtc_state->hw.active)
4040 continue;
4041
4042 pipe_dbuf_slice_mask = skl_compute_dbuf_slices(crtc_state,
4043 active_pipes);
4044
4045 /*
4046 * According to BSpec pipe can share one dbuf slice with another
4047 * pipes or pipe can use multiple dbufs, in both cases we
4048 * account for other pipes only if they have exactly same mask.
4049 * However we need to account how many slices we should enable
4050 * in total.
4051 */
4052 total_slice_mask |= pipe_dbuf_slice_mask;
4053
4054 /*
4055 * Do not account pipes using other slice sets
4056 * luckily as of current BSpec slice sets do not partially
4057 * intersect(pipes share either same one slice or same slice set
4058 * i.e no partial intersection), so it is enough to check for
4059 * equality for now.
4060 */
4061 if (dbuf_slice_mask != pipe_dbuf_slice_mask)
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304062 continue;
4063
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304064 drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004065
4066 total_width_in_range += hdisplay;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304067
4068 if (pipe < for_pipe)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004069 width_before_pipe_in_range += hdisplay;
Mahesh Kumarcf1f6972018-08-01 20:41:13 +05304070 else if (pipe == for_pipe)
4071 pipe_width = hdisplay;
4072 }
4073
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004074 /*
4075 * FIXME: For now we always enable slice S1 as per
4076 * the Bspec display initialization sequence.
4077 */
4078 intel_state->enabled_dbuf_slices_mask = total_slice_mask | BIT(DBUF_S1);
4079
4080 start = ddb_range_size * width_before_pipe_in_range / total_width_in_range;
4081 end = ddb_range_size *
4082 (width_before_pipe_in_range + pipe_width) / total_width_in_range;
4083
4084 alloc->start = offset + start;
4085 alloc->end = offset + end;
4086
4087 DRM_DEBUG_KMS("Pipe %d ddb %d-%d\n", for_pipe,
4088 alloc->start, alloc->end);
4089 DRM_DEBUG_KMS("Enabled ddb slices mask %x num supported %d\n",
4090 intel_state->enabled_dbuf_slices_mask,
4091 INTEL_INFO(dev_priv)->num_supported_dbuf_slices);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004092}
4093
Ville Syrjälädf331de2019-03-19 18:03:11 +02004094static int skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
4095 int width, const struct drm_format_info *format,
4096 u64 modifier, unsigned int rotation,
4097 u32 plane_pixel_rate, struct skl_wm_params *wp,
4098 int color_plane);
Maarten Lankhorstec193642019-06-28 10:55:17 +02004099static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
Ville Syrjälädf331de2019-03-19 18:03:11 +02004100 int level,
Stanislav Lisovskiy7b994752020-04-09 18:47:18 +03004101 unsigned int latency,
Ville Syrjälädf331de2019-03-19 18:03:11 +02004102 const struct skl_wm_params *wp,
4103 const struct skl_wm_level *result_prev,
4104 struct skl_wm_level *result /* out */);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004105
Ville Syrjälädf331de2019-03-19 18:03:11 +02004106static unsigned int
4107skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
4108 int num_active)
4109{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004110 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004111 int level, max_level = ilk_wm_max_level(dev_priv);
4112 struct skl_wm_level wm = {};
4113 int ret, min_ddb_alloc = 0;
4114 struct skl_wm_params wp;
4115
4116 ret = skl_compute_wm_params(crtc_state, 256,
4117 drm_format_info(DRM_FORMAT_ARGB8888),
4118 DRM_FORMAT_MOD_LINEAR,
4119 DRM_MODE_ROTATE_0,
4120 crtc_state->pixel_rate, &wp, 0);
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304121 drm_WARN_ON(&dev_priv->drm, ret);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004122
4123 for (level = 0; level <= max_level; level++) {
Stanislav Lisovskiy7b994752020-04-09 18:47:18 +03004124 unsigned int latency = dev_priv->wm.skl_latency[level];
4125
4126 skl_compute_plane_wm(crtc_state, level, latency, &wp, &wm, &wm);
Ville Syrjälädf331de2019-03-19 18:03:11 +02004127 if (wm.min_ddb_alloc == U16_MAX)
4128 break;
4129
4130 min_ddb_alloc = wm.min_ddb_alloc;
4131 }
4132
4133 return max(num_active == 1 ? 32 : 8, min_ddb_alloc);
Damien Lespiaub9cec072014-11-04 17:06:43 +00004134}
4135
Mahesh Kumar37cde112018-04-26 19:55:17 +05304136static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv,
4137 struct skl_ddb_entry *entry, u32 reg)
Damien Lespiaua269c582014-11-04 17:06:49 +00004138{
Mahesh Kumar37cde112018-04-26 19:55:17 +05304139
Ville Syrjäläd7e449a2019-02-05 22:50:56 +02004140 entry->start = reg & DDB_ENTRY_MASK;
4141 entry->end = (reg >> DDB_ENTRY_END_SHIFT) & DDB_ENTRY_MASK;
Mahesh Kumar37cde112018-04-26 19:55:17 +05304142
Damien Lespiau16160e32014-11-04 17:06:53 +00004143 if (entry->end)
4144 entry->end += 1;
Damien Lespiaua269c582014-11-04 17:06:49 +00004145}
4146
Mahesh Kumarddf34312018-04-09 09:11:03 +05304147static void
4148skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv,
4149 const enum pipe pipe,
4150 const enum plane_id plane_id,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004151 struct skl_ddb_entry *ddb_y,
4152 struct skl_ddb_entry *ddb_uv)
Mahesh Kumarddf34312018-04-09 09:11:03 +05304153{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004154 u32 val, val2;
4155 u32 fourcc = 0;
Mahesh Kumarddf34312018-04-09 09:11:03 +05304156
4157 /* Cursor doesn't support NV12/planar, so no extra calculation needed */
4158 if (plane_id == PLANE_CURSOR) {
4159 val = I915_READ(CUR_BUF_CFG(pipe));
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004160 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304161 return;
4162 }
4163
4164 val = I915_READ(PLANE_CTL(pipe, plane_id));
4165
4166 /* No DDB allocated for disabled planes */
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004167 if (val & PLANE_CTL_ENABLE)
4168 fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK,
4169 val & PLANE_CTL_ORDER_RGBX,
4170 val & PLANE_CTL_ALPHA_MASK);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304171
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004172 if (INTEL_GEN(dev_priv) >= 11) {
4173 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
4174 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4175 } else {
4176 val = I915_READ(PLANE_BUF_CFG(pipe, plane_id));
Paulo Zanoni12a6c932018-07-31 17:46:14 -07004177 val2 = I915_READ(PLANE_NV12_BUF_CFG(pipe, plane_id));
Mahesh Kumarddf34312018-04-09 09:11:03 +05304178
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004179 if (fourcc &&
4180 drm_format_info_is_yuv_semiplanar(drm_format_info(fourcc)))
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004181 swap(val, val2);
4182
4183 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4184 skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2);
Mahesh Kumarddf34312018-04-09 09:11:03 +05304185 }
4186}
4187
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004188void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc,
4189 struct skl_ddb_entry *ddb_y,
4190 struct skl_ddb_entry *ddb_uv)
4191{
4192 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4193 enum intel_display_power_domain power_domain;
4194 enum pipe pipe = crtc->pipe;
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004195 intel_wakeref_t wakeref;
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004196 enum plane_id plane_id;
4197
4198 power_domain = POWER_DOMAIN_PIPE(pipe);
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004199 wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain);
4200 if (!wakeref)
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004201 return;
4202
4203 for_each_plane_id_on_crtc(crtc, plane_id)
4204 skl_ddb_get_hw_plane_state(dev_priv, pipe,
4205 plane_id,
4206 &ddb_y[plane_id],
4207 &ddb_uv[plane_id]);
4208
Chris Wilson0e6e0be2019-01-14 14:21:24 +00004209 intel_display_power_put(dev_priv, power_domain, wakeref);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02004210}
4211
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004212void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv)
Damien Lespiaua269c582014-11-04 17:06:49 +00004213{
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02004214 dev_priv->enabled_dbuf_slices_mask =
4215 intel_enabled_dbuf_slices_mask(dev_priv);
Damien Lespiaua269c582014-11-04 17:06:49 +00004216}
4217
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004218/*
4219 * Determines the downscale amount of a plane for the purposes of watermark calculations.
4220 * The bspec defines downscale amount as:
4221 *
4222 * """
4223 * Horizontal down scale amount = maximum[1, Horizontal source size /
4224 * Horizontal destination size]
4225 * Vertical down scale amount = maximum[1, Vertical source size /
4226 * Vertical destination size]
4227 * Total down scale amount = Horizontal down scale amount *
4228 * Vertical down scale amount
4229 * """
4230 *
4231 * Return value is provided in 16.16 fixed point form to retain fractional part.
4232 * Caller should take care of dividing & rounding off the value.
4233 */
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304234static uint_fixed_16_16_t
Maarten Lankhorstec193642019-06-28 10:55:17 +02004235skl_plane_downscale_amount(const struct intel_crtc_state *crtc_state,
4236 const struct intel_plane_state *plane_state)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004237{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004238 u32 src_w, src_h, dst_w, dst_h;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304239 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
4240 uint_fixed_16_16_t downscale_h, downscale_w;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004241
Maarten Lankhorstec193642019-06-28 10:55:17 +02004242 if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304243 return u32_to_fixed16(0);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004244
Maarten Lankhorst3a612762019-10-04 13:34:54 +02004245 /*
4246 * Src coordinates are already rotated by 270 degrees for
4247 * the 90/270 degree plane rotation cases (to match the
4248 * GTT mapping), hence no need to account for rotation here.
4249 *
4250 * n.b., src is 16.16 fixed point, dst is whole integer.
4251 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004252 src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
4253 src_h = drm_rect_height(&plane_state->uapi.src) >> 16;
4254 dst_w = drm_rect_width(&plane_state->uapi.dst);
4255 dst_h = drm_rect_height(&plane_state->uapi.dst);
Ville Syrjälä93aa2a12017-03-14 17:10:50 +02004256
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304257 fp_w_ratio = div_fixed16(src_w, dst_w);
4258 fp_h_ratio = div_fixed16(src_h, dst_h);
4259 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
4260 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004261
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304262 return mul_fixed16(downscale_w, downscale_h);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004263}
4264
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004265struct dbuf_slice_conf_entry {
4266 u8 active_pipes;
4267 u8 dbuf_mask[I915_MAX_PIPES];
4268};
4269
4270/*
4271 * Table taken from Bspec 12716
4272 * Pipes do have some preferred DBuf slice affinity,
4273 * plus there are some hardcoded requirements on how
4274 * those should be distributed for multipipe scenarios.
4275 * For more DBuf slices algorithm can get even more messy
4276 * and less readable, so decided to use a table almost
4277 * as is from BSpec itself - that way it is at least easier
4278 * to compare, change and check.
4279 */
Jani Nikulaf8226d02020-02-19 17:45:42 +02004280static const struct dbuf_slice_conf_entry icl_allowed_dbufs[] =
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004281/* Autogenerated with igt/tools/intel_dbuf_map tool: */
4282{
4283 {
4284 .active_pipes = BIT(PIPE_A),
4285 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004286 [PIPE_A] = BIT(DBUF_S1),
4287 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004288 },
4289 {
4290 .active_pipes = BIT(PIPE_B),
4291 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004292 [PIPE_B] = BIT(DBUF_S1),
4293 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004294 },
4295 {
4296 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4297 .dbuf_mask = {
4298 [PIPE_A] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004299 [PIPE_B] = BIT(DBUF_S2),
4300 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004301 },
4302 {
4303 .active_pipes = BIT(PIPE_C),
4304 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004305 [PIPE_C] = BIT(DBUF_S2),
4306 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004307 },
4308 {
4309 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4310 .dbuf_mask = {
4311 [PIPE_A] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004312 [PIPE_C] = BIT(DBUF_S2),
4313 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004314 },
4315 {
4316 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4317 .dbuf_mask = {
4318 [PIPE_B] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004319 [PIPE_C] = BIT(DBUF_S2),
4320 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004321 },
4322 {
4323 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4324 .dbuf_mask = {
4325 [PIPE_A] = BIT(DBUF_S1),
4326 [PIPE_B] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004327 [PIPE_C] = BIT(DBUF_S2),
4328 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004329 },
Ville Syrjälä05e81552020-02-25 19:11:09 +02004330 {}
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004331};
4332
4333/*
4334 * Table taken from Bspec 49255
4335 * Pipes do have some preferred DBuf slice affinity,
4336 * plus there are some hardcoded requirements on how
4337 * those should be distributed for multipipe scenarios.
4338 * For more DBuf slices algorithm can get even more messy
4339 * and less readable, so decided to use a table almost
4340 * as is from BSpec itself - that way it is at least easier
4341 * to compare, change and check.
4342 */
Jani Nikulaf8226d02020-02-19 17:45:42 +02004343static const struct dbuf_slice_conf_entry tgl_allowed_dbufs[] =
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004344/* Autogenerated with igt/tools/intel_dbuf_map tool: */
4345{
4346 {
4347 .active_pipes = BIT(PIPE_A),
4348 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004349 [PIPE_A] = BIT(DBUF_S1) | BIT(DBUF_S2),
4350 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004351 },
4352 {
4353 .active_pipes = BIT(PIPE_B),
4354 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004355 [PIPE_B] = BIT(DBUF_S1) | BIT(DBUF_S2),
4356 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004357 },
4358 {
4359 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4360 .dbuf_mask = {
4361 [PIPE_A] = BIT(DBUF_S2),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004362 [PIPE_B] = BIT(DBUF_S1),
4363 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004364 },
4365 {
4366 .active_pipes = BIT(PIPE_C),
4367 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004368 [PIPE_C] = BIT(DBUF_S2) | BIT(DBUF_S1),
4369 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004370 },
4371 {
4372 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4373 .dbuf_mask = {
4374 [PIPE_A] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004375 [PIPE_C] = BIT(DBUF_S2),
4376 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004377 },
4378 {
4379 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4380 .dbuf_mask = {
4381 [PIPE_B] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004382 [PIPE_C] = BIT(DBUF_S2),
4383 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004384 },
4385 {
4386 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4387 .dbuf_mask = {
4388 [PIPE_A] = BIT(DBUF_S1),
4389 [PIPE_B] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004390 [PIPE_C] = BIT(DBUF_S2),
4391 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004392 },
4393 {
4394 .active_pipes = BIT(PIPE_D),
4395 .dbuf_mask = {
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004396 [PIPE_D] = BIT(DBUF_S2) | BIT(DBUF_S1),
4397 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004398 },
4399 {
4400 .active_pipes = BIT(PIPE_A) | BIT(PIPE_D),
4401 .dbuf_mask = {
4402 [PIPE_A] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004403 [PIPE_D] = BIT(DBUF_S2),
4404 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004405 },
4406 {
4407 .active_pipes = BIT(PIPE_B) | BIT(PIPE_D),
4408 .dbuf_mask = {
4409 [PIPE_B] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004410 [PIPE_D] = BIT(DBUF_S2),
4411 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004412 },
4413 {
4414 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_D),
4415 .dbuf_mask = {
4416 [PIPE_A] = BIT(DBUF_S1),
4417 [PIPE_B] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004418 [PIPE_D] = BIT(DBUF_S2),
4419 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004420 },
4421 {
4422 .active_pipes = BIT(PIPE_C) | BIT(PIPE_D),
4423 .dbuf_mask = {
4424 [PIPE_C] = BIT(DBUF_S1),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004425 [PIPE_D] = BIT(DBUF_S2),
4426 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004427 },
4428 {
4429 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C) | BIT(PIPE_D),
4430 .dbuf_mask = {
4431 [PIPE_A] = BIT(DBUF_S1),
4432 [PIPE_C] = BIT(DBUF_S2),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004433 [PIPE_D] = BIT(DBUF_S2),
4434 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004435 },
4436 {
4437 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4438 .dbuf_mask = {
4439 [PIPE_B] = BIT(DBUF_S1),
4440 [PIPE_C] = BIT(DBUF_S2),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004441 [PIPE_D] = BIT(DBUF_S2),
4442 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004443 },
4444 {
4445 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4446 .dbuf_mask = {
4447 [PIPE_A] = BIT(DBUF_S1),
4448 [PIPE_B] = BIT(DBUF_S1),
4449 [PIPE_C] = BIT(DBUF_S2),
Ville Syrjälä06812bd2020-02-25 19:11:08 +02004450 [PIPE_D] = BIT(DBUF_S2),
4451 },
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004452 },
Ville Syrjälä05e81552020-02-25 19:11:09 +02004453 {}
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004454};
4455
Ville Syrjälä05e81552020-02-25 19:11:09 +02004456static u8 compute_dbuf_slices(enum pipe pipe, u8 active_pipes,
4457 const struct dbuf_slice_conf_entry *dbuf_slices)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004458{
4459 int i;
4460
Ville Syrjälä05e81552020-02-25 19:11:09 +02004461 for (i = 0; i < dbuf_slices[i].active_pipes; i++) {
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004462 if (dbuf_slices[i].active_pipes == active_pipes)
4463 return dbuf_slices[i].dbuf_mask[pipe];
4464 }
4465 return 0;
4466}
4467
4468/*
4469 * This function finds an entry with same enabled pipe configuration and
4470 * returns correspondent DBuf slice mask as stated in BSpec for particular
4471 * platform.
4472 */
Ville Syrjälä05e81552020-02-25 19:11:09 +02004473static u8 icl_compute_dbuf_slices(enum pipe pipe, u8 active_pipes)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004474{
4475 /*
4476 * FIXME: For ICL this is still a bit unclear as prev BSpec revision
4477 * required calculating "pipe ratio" in order to determine
4478 * if one or two slices can be used for single pipe configurations
4479 * as additional constraint to the existing table.
4480 * However based on recent info, it should be not "pipe ratio"
4481 * but rather ratio between pixel_rate and cdclk with additional
4482 * constants, so for now we are using only table until this is
4483 * clarified. Also this is the reason why crtc_state param is
4484 * still here - we will need it once those additional constraints
4485 * pop up.
4486 */
Ville Syrjälä05e81552020-02-25 19:11:09 +02004487 return compute_dbuf_slices(pipe, active_pipes, icl_allowed_dbufs);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004488}
4489
Ville Syrjälä05e81552020-02-25 19:11:09 +02004490static u8 tgl_compute_dbuf_slices(enum pipe pipe, u8 active_pipes)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004491{
Ville Syrjälä05e81552020-02-25 19:11:09 +02004492 return compute_dbuf_slices(pipe, active_pipes, tgl_allowed_dbufs);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004493}
4494
4495static u8 skl_compute_dbuf_slices(const struct intel_crtc_state *crtc_state,
Ville Syrjälä05e81552020-02-25 19:11:09 +02004496 u8 active_pipes)
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004497{
4498 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
4499 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4500 enum pipe pipe = crtc->pipe;
4501
4502 if (IS_GEN(dev_priv, 12))
Ville Syrjälä05e81552020-02-25 19:11:09 +02004503 return tgl_compute_dbuf_slices(pipe, active_pipes);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004504 else if (IS_GEN(dev_priv, 11))
Ville Syrjälä05e81552020-02-25 19:11:09 +02004505 return icl_compute_dbuf_slices(pipe, active_pipes);
Stanislav Lisovskiyff2cd862020-02-03 01:06:30 +02004506 /*
4507 * For anything else just return one slice yet.
4508 * Should be extended for other platforms.
4509 */
4510 return BIT(DBUF_S1);
4511}
4512
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004513static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004514skl_plane_relative_data_rate(const struct intel_crtc_state *crtc_state,
4515 const struct intel_plane_state *plane_state,
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004516 int color_plane)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004517{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004518 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01004519 const struct drm_framebuffer *fb = plane_state->hw.fb;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004520 u32 data_rate;
4521 u32 width = 0, height = 0;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304522 uint_fixed_16_16_t down_scale_amount;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004523 u64 rate;
Matt Ropera1de91e2016-05-12 07:05:57 -07004524
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004525 if (!plane_state->uapi.visible)
Matt Ropera1de91e2016-05-12 07:05:57 -07004526 return 0;
Ville Syrjälä83054942016-11-18 21:53:00 +02004527
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004528 if (plane->id == PLANE_CURSOR)
Matt Ropera1de91e2016-05-12 07:05:57 -07004529 return 0;
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004530
4531 if (color_plane == 1 &&
Imre Deak4941f352019-12-21 14:05:43 +02004532 !intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier))
Matt Ropera1de91e2016-05-12 07:05:57 -07004533 return 0;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004534
Ville Syrjäläfce5adf2017-03-31 21:00:55 +03004535 /*
4536 * Src coordinates are already rotated by 270 degrees for
4537 * the 90/270 degree plane rotation cases (to match the
4538 * GTT mapping), hence no need to account for rotation here.
4539 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01004540 width = drm_rect_width(&plane_state->uapi.src) >> 16;
4541 height = drm_rect_height(&plane_state->uapi.src) >> 16;
Kumar, Mahesha280f7d2016-04-06 08:26:39 -07004542
Mahesh Kumarb879d582018-04-09 09:11:01 +05304543 /* UV plane does 1/2 pixel sub-sampling */
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004544 if (color_plane == 1) {
Mahesh Kumarb879d582018-04-09 09:11:01 +05304545 width /= 2;
4546 height /= 2;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004547 }
4548
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004549 data_rate = width * height;
Mahesh Kumarb879d582018-04-09 09:11:01 +05304550
Maarten Lankhorstec193642019-06-28 10:55:17 +02004551 down_scale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
Kumar, Mahesh8d19d7d2016-05-19 15:03:01 -07004552
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004553 rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount);
4554
Ville Syrjäläd1d23d72019-09-13 22:31:54 +03004555 rate *= fb->format->cpp[color_plane];
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004556 return rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004557}
4558
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004559static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004560skl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004561 u64 *plane_data_rate,
4562 u64 *uv_plane_data_rate)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004563{
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004564 struct intel_plane *plane;
4565 const struct intel_plane_state *plane_state;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004566 u64 total_data_rate = 0;
Matt Ropera6d3460e2016-05-12 07:06:04 -07004567
Matt Ropera1de91e2016-05-12 07:05:57 -07004568 /* Calculate and cache data rate for each plane */
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004569 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
4570 enum plane_id plane_id = plane->id;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004571 u64 rate;
Matt Roper024c9042015-09-24 15:53:11 -07004572
Mahesh Kumarb879d582018-04-09 09:11:01 +05304573 /* packed/y */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004574 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004575 plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004576 total_data_rate += rate;
Matt Roper9c74d822016-05-12 07:05:58 -07004577
Mahesh Kumarb879d582018-04-09 09:11:01 +05304578 /* uv-plane */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004579 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1);
Mahesh Kumarb879d582018-04-09 09:11:01 +05304580 uv_plane_data_rate[plane_id] = rate;
Maarten Lankhorst1e6ee542016-10-26 15:41:32 +02004581 total_data_rate += rate;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004582 }
4583
4584 return total_data_rate;
4585}
4586
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004587static u64
Maarten Lankhorstec193642019-06-28 10:55:17 +02004588icl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004589 u64 *plane_data_rate)
4590{
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004591 struct intel_plane *plane;
4592 const struct intel_plane_state *plane_state;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004593 u64 total_data_rate = 0;
4594
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004595 /* Calculate and cache data rate for each plane */
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004596 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
4597 enum plane_id plane_id = plane->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004598 u64 rate;
4599
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004600 if (!plane_state->planar_linked_plane) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02004601 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004602 plane_data_rate[plane_id] = rate;
4603 total_data_rate += rate;
4604 } else {
4605 enum plane_id y_plane_id;
4606
4607 /*
4608 * The slave plane might not iterate in
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02004609 * intel_atomic_crtc_state_for_each_plane_state(),
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004610 * and needs the master plane state which may be
4611 * NULL if we try get_new_plane_state(), so we
4612 * always calculate from the master.
4613 */
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004614 if (plane_state->planar_slave)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004615 continue;
4616
4617 /* Y plane rate is calculated on the slave */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004618 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0);
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02004619 y_plane_id = plane_state->planar_linked_plane->id;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004620 plane_data_rate[y_plane_id] = rate;
4621 total_data_rate += rate;
4622
Maarten Lankhorstec193642019-06-28 10:55:17 +02004623 rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004624 plane_data_rate[plane_id] = rate;
4625 total_data_rate += rate;
4626 }
4627 }
4628
4629 return total_data_rate;
4630}
4631
Matt Roperc107acf2016-05-12 07:06:01 -07004632static int
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004633skl_allocate_pipe_ddb(struct intel_crtc_state *crtc_state)
Damien Lespiaub9cec072014-11-04 17:06:43 +00004634{
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004635 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
4636 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Maarten Lankhorstec193642019-06-28 10:55:17 +02004637 struct skl_ddb_entry *alloc = &crtc_state->wm.skl.ddb;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004638 u16 alloc_size, start = 0;
4639 u16 total[I915_MAX_PLANES] = {};
4640 u16 uv_total[I915_MAX_PLANES] = {};
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004641 u64 total_data_rate;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004642 enum plane_id plane_id;
Matt Roperc107acf2016-05-12 07:06:01 -07004643 int num_active;
Maarten Lankhorst24719e92018-10-22 12:20:00 +02004644 u64 plane_data_rate[I915_MAX_PLANES] = {};
4645 u64 uv_plane_data_rate[I915_MAX_PLANES] = {};
Ville Syrjälä0aded172019-02-05 17:50:53 +02004646 u32 blocks;
Matt Roperd8e87492018-12-11 09:31:07 -08004647 int level;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004648
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004649 /* Clear the partitioning for disabled planes. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004650 memset(crtc_state->wm.skl.plane_ddb_y, 0, sizeof(crtc_state->wm.skl.plane_ddb_y));
4651 memset(crtc_state->wm.skl.plane_ddb_uv, 0, sizeof(crtc_state->wm.skl.plane_ddb_uv));
Paulo Zanoni5a920b82016-10-04 14:37:32 -03004652
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004653 if (!crtc_state->hw.active) {
Lyudece0ba282016-09-15 10:46:35 -04004654 alloc->start = alloc->end = 0;
Matt Roperc107acf2016-05-12 07:06:01 -07004655 return 0;
4656 }
4657
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004658 if (INTEL_GEN(dev_priv) >= 11)
4659 total_data_rate =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004660 icl_get_total_relative_data_rate(crtc_state,
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004661 plane_data_rate);
4662 else
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004663 total_data_rate =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004664 skl_get_total_relative_data_rate(crtc_state,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004665 plane_data_rate,
4666 uv_plane_data_rate);
Lucas De Marchi323b0a82019-04-04 16:04:25 -07004667
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004668
Maarten Lankhorstec193642019-06-28 10:55:17 +02004669 skl_ddb_get_pipe_allocation_limits(dev_priv, crtc_state, total_data_rate,
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02004670 alloc, &num_active);
Damien Lespiau34bb56a2014-11-04 17:07:01 +00004671 alloc_size = skl_ddb_entry_size(alloc);
Kumar, Mahesh336031e2017-05-17 17:28:25 +05304672 if (alloc_size == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004673 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004674
Matt Roperd8e87492018-12-11 09:31:07 -08004675 /* Allocate fixed number of blocks for cursor. */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004676 total[PLANE_CURSOR] = skl_cursor_allocation(crtc_state, num_active);
Matt Roperd8e87492018-12-11 09:31:07 -08004677 alloc_size -= total[PLANE_CURSOR];
Maarten Lankhorstec193642019-06-28 10:55:17 +02004678 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].start =
Matt Roperd8e87492018-12-11 09:31:07 -08004679 alloc->end - total[PLANE_CURSOR];
Maarten Lankhorstec193642019-06-28 10:55:17 +02004680 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end;
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004681
Matt Ropera1de91e2016-05-12 07:05:57 -07004682 if (total_data_rate == 0)
Matt Roperc107acf2016-05-12 07:06:01 -07004683 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004684
Matt Roperd8e87492018-12-11 09:31:07 -08004685 /*
4686 * Find the highest watermark level for which we can satisfy the block
4687 * requirement of active planes.
4688 */
4689 for (level = ilk_wm_max_level(dev_priv); level >= 0; level--) {
Matt Roper25db2ea2018-12-12 11:17:20 -08004690 blocks = 0;
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004691 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004692 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004693 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjälä10a7e072019-03-12 22:58:40 +02004694
4695 if (plane_id == PLANE_CURSOR) {
Vandita Kulkarni4ba48702019-12-16 13:36:19 +05304696 if (wm->wm[level].min_ddb_alloc > total[PLANE_CURSOR]) {
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304697 drm_WARN_ON(&dev_priv->drm,
4698 wm->wm[level].min_ddb_alloc != U16_MAX);
Ville Syrjälä10a7e072019-03-12 22:58:40 +02004699 blocks = U32_MAX;
4700 break;
4701 }
4702 continue;
4703 }
4704
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004705 blocks += wm->wm[level].min_ddb_alloc;
4706 blocks += wm->uv_wm[level].min_ddb_alloc;
Matt Roperd8e87492018-12-11 09:31:07 -08004707 }
4708
Ville Syrjälä3cf963c2019-03-12 22:58:36 +02004709 if (blocks <= alloc_size) {
Matt Roperd8e87492018-12-11 09:31:07 -08004710 alloc_size -= blocks;
4711 break;
4712 }
4713 }
4714
4715 if (level < 0) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03004716 drm_dbg_kms(&dev_priv->drm,
4717 "Requested display configuration exceeds system DDB limitations");
4718 drm_dbg_kms(&dev_priv->drm, "minimum required %d/%d\n",
4719 blocks, alloc_size);
Matt Roperd8e87492018-12-11 09:31:07 -08004720 return -EINVAL;
4721 }
4722
4723 /*
4724 * Grant each plane the blocks it requires at the highest achievable
4725 * watermark level, plus an extra share of the leftover blocks
4726 * proportional to its relative data rate.
4727 */
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004728 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004729 const struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004730 &crtc_state->wm.skl.optimal.planes[plane_id];
Matt Roperd8e87492018-12-11 09:31:07 -08004731 u64 rate;
4732 u16 extra;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004733
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02004734 if (plane_id == PLANE_CURSOR)
Maarten Lankhorst49845a72016-10-26 15:41:34 +02004735 continue;
4736
Damien Lespiaub9cec072014-11-04 17:06:43 +00004737 /*
Matt Roperd8e87492018-12-11 09:31:07 -08004738 * We've accounted for all active planes; remaining planes are
4739 * all disabled.
Damien Lespiaub9cec072014-11-04 17:06:43 +00004740 */
Matt Roperd8e87492018-12-11 09:31:07 -08004741 if (total_data_rate == 0)
4742 break;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004743
Matt Roperd8e87492018-12-11 09:31:07 -08004744 rate = plane_data_rate[plane_id];
4745 extra = min_t(u16, alloc_size,
4746 DIV64_U64_ROUND_UP(alloc_size * rate,
4747 total_data_rate));
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004748 total[plane_id] = wm->wm[level].min_ddb_alloc + extra;
Matt Roperd8e87492018-12-11 09:31:07 -08004749 alloc_size -= extra;
4750 total_data_rate -= rate;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004751
Matt Roperd8e87492018-12-11 09:31:07 -08004752 if (total_data_rate == 0)
4753 break;
Chandra Konduru2cd601c2015-04-27 15:47:37 -07004754
Matt Roperd8e87492018-12-11 09:31:07 -08004755 rate = uv_plane_data_rate[plane_id];
4756 extra = min_t(u16, alloc_size,
4757 DIV64_U64_ROUND_UP(alloc_size * rate,
4758 total_data_rate));
Ville Syrjälä961d95e2018-12-21 19:14:32 +02004759 uv_total[plane_id] = wm->uv_wm[level].min_ddb_alloc + extra;
Matt Roperd8e87492018-12-11 09:31:07 -08004760 alloc_size -= extra;
4761 total_data_rate -= rate;
4762 }
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304763 drm_WARN_ON(&dev_priv->drm, alloc_size != 0 || total_data_rate != 0);
Matt Roperd8e87492018-12-11 09:31:07 -08004764
4765 /* Set the actual DDB start/end points for each plane */
4766 start = alloc->start;
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004767 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004768 struct skl_ddb_entry *plane_alloc =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004769 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004770 struct skl_ddb_entry *uv_plane_alloc =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004771 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Matt Roperd8e87492018-12-11 09:31:07 -08004772
4773 if (plane_id == PLANE_CURSOR)
4774 continue;
4775
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004776 /* Gen11+ uses a separate plane for UV watermarks */
Pankaj Bharadiya48a1b8d2020-01-15 09:14:53 +05304777 drm_WARN_ON(&dev_priv->drm,
4778 INTEL_GEN(dev_priv) >= 11 && uv_total[plane_id]);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02004779
Matt Roperd8e87492018-12-11 09:31:07 -08004780 /* Leave disabled planes at (0,0) */
4781 if (total[plane_id]) {
4782 plane_alloc->start = start;
4783 start += total[plane_id];
4784 plane_alloc->end = start;
Matt Roperc107acf2016-05-12 07:06:01 -07004785 }
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07004786
Matt Roperd8e87492018-12-11 09:31:07 -08004787 if (uv_total[plane_id]) {
4788 uv_plane_alloc->start = start;
4789 start += uv_total[plane_id];
4790 uv_plane_alloc->end = start;
4791 }
4792 }
4793
4794 /*
4795 * When we calculated watermark values we didn't know how high
4796 * of a level we'd actually be able to hit, so we just marked
4797 * all levels as "enabled." Go back now and disable the ones
4798 * that aren't actually possible.
4799 */
4800 for (level++; level <= ilk_wm_max_level(dev_priv); level++) {
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004801 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004802 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004803 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjäläa301cb02019-03-12 22:58:41 +02004804
4805 /*
4806 * We only disable the watermarks for each plane if
4807 * they exceed the ddb allocation of said plane. This
4808 * is done so that we don't end up touching cursor
4809 * watermarks needlessly when some other plane reduces
4810 * our max possible watermark level.
4811 *
4812 * Bspec has this to say about the PLANE_WM enable bit:
4813 * "All the watermarks at this level for all enabled
4814 * planes must be enabled before the level will be used."
4815 * So this is actually safe to do.
4816 */
4817 if (wm->wm[level].min_ddb_alloc > total[plane_id] ||
4818 wm->uv_wm[level].min_ddb_alloc > uv_total[plane_id])
4819 memset(&wm->wm[level], 0, sizeof(wm->wm[level]));
Ville Syrjälä290248c2019-02-13 18:54:24 +02004820
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004821 /*
Bob Paauwe39564ae2019-04-12 11:09:20 -07004822 * Wa_1408961008:icl, ehl
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004823 * Underruns with WM1+ disabled
4824 */
Bob Paauwe39564ae2019-04-12 11:09:20 -07004825 if (IS_GEN(dev_priv, 11) &&
Ville Syrjälä290248c2019-02-13 18:54:24 +02004826 level == 1 && wm->wm[0].plane_en) {
4827 wm->wm[level].plane_res_b = wm->wm[0].plane_res_b;
Ville Syrjäläc384afe2019-02-28 19:36:39 +02004828 wm->wm[level].plane_res_l = wm->wm[0].plane_res_l;
4829 wm->wm[level].ignore_lines = wm->wm[0].ignore_lines;
Ville Syrjälä290248c2019-02-13 18:54:24 +02004830 }
Matt Roperd8e87492018-12-11 09:31:07 -08004831 }
4832 }
4833
4834 /*
4835 * Go back and disable the transition watermark if it turns out we
4836 * don't have enough DDB blocks for it.
4837 */
Ville Syrjälä2a67054b2020-02-25 19:11:06 +02004838 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004839 struct skl_plane_wm *wm =
Maarten Lankhorstec193642019-06-28 10:55:17 +02004840 &crtc_state->wm.skl.optimal.planes[plane_id];
Ville Syrjälä5e6037c2019-03-12 22:58:42 +02004841
Ville Syrjäläb19c9bc2018-12-21 19:14:31 +02004842 if (wm->trans_wm.plane_res_b >= total[plane_id])
Matt Roperd8e87492018-12-11 09:31:07 -08004843 memset(&wm->trans_wm, 0, sizeof(wm->trans_wm));
Damien Lespiaub9cec072014-11-04 17:06:43 +00004844 }
4845
Matt Roperc107acf2016-05-12 07:06:01 -07004846 return 0;
Damien Lespiaub9cec072014-11-04 17:06:43 +00004847}
4848
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004849/*
4850 * 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 +02004851 * for the read latency) and cpp should always be <= 8, so that
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004852 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
4853 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
4854*/
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004855static uint_fixed_16_16_t
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004856skl_wm_method1(const struct drm_i915_private *dev_priv, u32 pixel_rate,
4857 u8 cpp, u32 latency, u32 dbuf_block_size)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004858{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004859 u32 wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304860 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004861
4862 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304863 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004864
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304865 wm_intermediate_val = latency * pixel_rate * cpp;
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004866 ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size);
Paulo Zanoni6c64dd32017-08-11 16:38:25 -07004867
4868 if (INTEL_GEN(dev_priv) >= 10)
4869 ret = add_fixed16_u32(ret, 1);
4870
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004871 return ret;
4872}
4873
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004874static uint_fixed_16_16_t
4875skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
4876 uint_fixed_16_16_t plane_blocks_per_line)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004877{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004878 u32 wm_intermediate_val;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304879 uint_fixed_16_16_t ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004880
4881 if (latency == 0)
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304882 return FP_16_16_MAX;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004883
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004884 wm_intermediate_val = latency * pixel_rate;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05304885 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
4886 pipe_htotal * 1000);
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304887 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00004888 return ret;
4889}
4890
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304891static uint_fixed_16_16_t
Maarten Lankhorstec193642019-06-28 10:55:17 +02004892intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304893{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004894 u32 pixel_rate;
4895 u32 crtc_htotal;
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304896 uint_fixed_16_16_t linetime_us;
4897
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004898 if (!crtc_state->hw.active)
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304899 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304900
Maarten Lankhorstec193642019-06-28 10:55:17 +02004901 pixel_rate = crtc_state->pixel_rate;
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304902
4903 if (WARN_ON(pixel_rate == 0))
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304904 return u32_to_fixed16(0);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304905
Maarten Lankhorst1326a922019-10-31 12:26:02 +01004906 crtc_htotal = crtc_state->hw.adjusted_mode.crtc_htotal;
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05304907 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
Kumar, Maheshd555cb52017-05-17 17:28:29 +05304908
4909 return linetime_us;
4910}
4911
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004912static u32
Maarten Lankhorstec193642019-06-28 10:55:17 +02004913skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *crtc_state,
4914 const struct intel_plane_state *plane_state)
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004915{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004916 u64 adjusted_pixel_rate;
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304917 uint_fixed_16_16_t downscale_amount;
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004918
4919 /* Shouldn't reach here on disabled planes... */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004920 if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)))
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004921 return 0;
4922
4923 /*
4924 * Adjusted plane pixel rate is just the pipe's adjusted pixel rate
4925 * with additional adjustments for plane-specific scaling.
4926 */
Maarten Lankhorstec193642019-06-28 10:55:17 +02004927 adjusted_pixel_rate = crtc_state->pixel_rate;
4928 downscale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004929
Kumar, Mahesh7084b502017-05-17 17:28:23 +05304930 return mul_round_up_u32_fixed16(adjusted_pixel_rate,
4931 downscale_amount);
Kumar, Mahesh9c2f7a92016-05-16 15:52:00 -07004932}
4933
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304934static int
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004935skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
4936 int width, const struct drm_format_info *format,
4937 u64 modifier, unsigned int rotation,
4938 u32 plane_pixel_rate, struct skl_wm_params *wp,
4939 int color_plane)
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304940{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01004941 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004942 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Jani Nikula5ce9a6492019-01-18 14:01:20 +02004943 u32 interm_pbpl;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304944
Juha-Pekka Heikkiladf7d4152019-03-04 17:26:31 +05304945 /* only planar format has two planes */
Imre Deak4941f352019-12-21 14:05:43 +02004946 if (color_plane == 1 &&
4947 !intel_format_info_is_yuv_semiplanar(format, modifier)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03004948 drm_dbg_kms(&dev_priv->drm,
4949 "Non planar format have single plane\n");
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304950 return -EINVAL;
4951 }
4952
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004953 wp->y_tiled = modifier == I915_FORMAT_MOD_Y_TILED ||
4954 modifier == I915_FORMAT_MOD_Yf_TILED ||
4955 modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4956 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
4957 wp->x_tiled = modifier == I915_FORMAT_MOD_X_TILED;
4958 wp->rc_surface = modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
4959 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
Imre Deak4941f352019-12-21 14:05:43 +02004960 wp->is_planar = intel_format_info_is_yuv_semiplanar(format, modifier);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304961
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004962 wp->width = width;
Ville Syrjälä45bee432018-11-14 23:07:28 +02004963 if (color_plane == 1 && wp->is_planar)
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05304964 wp->width /= 2;
4965
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004966 wp->cpp = format->cpp[color_plane];
4967 wp->plane_pixel_rate = plane_pixel_rate;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304968
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004969 if (INTEL_GEN(dev_priv) >= 11 &&
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004970 modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 1)
Mahesh Kumardf8ee192018-01-30 11:49:11 -02004971 wp->dbuf_block_size = 256;
4972 else
4973 wp->dbuf_block_size = 512;
4974
Ville Syrjäläc92558a2019-03-12 22:58:38 +02004975 if (drm_rotation_90_or_270(rotation)) {
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304976 switch (wp->cpp) {
4977 case 1:
4978 wp->y_min_scanlines = 16;
4979 break;
4980 case 2:
4981 wp->y_min_scanlines = 8;
4982 break;
4983 case 4:
4984 wp->y_min_scanlines = 4;
4985 break;
4986 default:
4987 MISSING_CASE(wp->cpp);
4988 return -EINVAL;
4989 }
4990 } else {
4991 wp->y_min_scanlines = 4;
4992 }
4993
Ville Syrjälä60e983f2018-12-21 19:14:33 +02004994 if (skl_needs_memory_bw_wa(dev_priv))
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05304995 wp->y_min_scanlines *= 2;
4996
4997 wp->plane_bytes_per_line = wp->width * wp->cpp;
4998 if (wp->y_tiled) {
4999 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005000 wp->y_min_scanlines,
5001 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305002
5003 if (INTEL_GEN(dev_priv) >= 10)
5004 interm_pbpl++;
5005
5006 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
5007 wp->y_min_scanlines);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005008 } else if (wp->x_tiled && IS_GEN(dev_priv, 9)) {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005009 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
5010 wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305011 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
5012 } else {
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005013 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
5014 wp->dbuf_block_size) + 1;
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305015 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
5016 }
5017
5018 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
5019 wp->plane_blocks_per_line);
Ville Syrjäläc92558a2019-03-12 22:58:38 +02005020
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305021 wp->linetime_us = fixed16_to_u32_round_up(
Ville Syrjäläc92558a2019-03-12 22:58:38 +02005022 intel_get_linetime_us(crtc_state));
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305023
5024 return 0;
5025}
5026
Ville Syrjäläc92558a2019-03-12 22:58:38 +02005027static int
5028skl_compute_plane_wm_params(const struct intel_crtc_state *crtc_state,
5029 const struct intel_plane_state *plane_state,
5030 struct skl_wm_params *wp, int color_plane)
5031{
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005032 const struct drm_framebuffer *fb = plane_state->hw.fb;
Ville Syrjäläc92558a2019-03-12 22:58:38 +02005033 int width;
5034
Maarten Lankhorst3a612762019-10-04 13:34:54 +02005035 /*
5036 * Src coordinates are already rotated by 270 degrees for
5037 * the 90/270 degree plane rotation cases (to match the
5038 * GTT mapping), hence no need to account for rotation here.
5039 */
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005040 width = drm_rect_width(&plane_state->uapi.src) >> 16;
Ville Syrjäläc92558a2019-03-12 22:58:38 +02005041
5042 return skl_compute_wm_params(crtc_state, width,
5043 fb->format, fb->modifier,
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005044 plane_state->hw.rotation,
Ville Syrjäläc92558a2019-03-12 22:58:38 +02005045 skl_adjusted_plane_pixel_rate(crtc_state, plane_state),
5046 wp, color_plane);
5047}
5048
Ville Syrjäläb52c2732018-12-21 19:14:28 +02005049static bool skl_wm_has_lines(struct drm_i915_private *dev_priv, int level)
5050{
5051 if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv))
5052 return true;
5053
5054 /* The number of lines are ignored for the level 0 watermark. */
5055 return level > 0;
5056}
5057
Maarten Lankhorstec193642019-06-28 10:55:17 +02005058static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
Matt Roperd8e87492018-12-11 09:31:07 -08005059 int level,
Stanislav Lisovskiy7b994752020-04-09 18:47:18 +03005060 unsigned int latency,
Matt Roperd8e87492018-12-11 09:31:07 -08005061 const struct skl_wm_params *wp,
5062 const struct skl_wm_level *result_prev,
5063 struct skl_wm_level *result /* out */)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005064{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005065 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Mahesh Kumarb95320b2016-12-01 21:19:37 +05305066 uint_fixed_16_16_t method1, method2;
Mahesh Kumarb95320b2016-12-01 21:19:37 +05305067 uint_fixed_16_16_t selected_result;
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005068 u32 res_blocks, res_lines, min_ddb_alloc = 0;
Ville Syrjäläce110ec2018-11-14 23:07:21 +02005069
Ville Syrjälä0aded172019-02-05 17:50:53 +02005070 if (latency == 0) {
5071 /* reject it */
5072 result->min_ddb_alloc = U16_MAX;
Ville Syrjälä692927f2018-12-21 19:14:29 +02005073 return;
Ville Syrjälä0aded172019-02-05 17:50:53 +02005074 }
Ville Syrjälä692927f2018-12-21 19:14:29 +02005075
Ville Syrjälä25312ef2019-05-03 20:38:05 +03005076 /*
5077 * WaIncreaseLatencyIPCEnabled: kbl,cfl
5078 * Display WA #1141: kbl,cfl
5079 */
Ville Syrjälä5a7d2022019-05-03 20:38:06 +03005080 if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) ||
Rodrigo Vivi82525c12017-06-08 08:50:00 -07005081 dev_priv->ipc_enabled)
Mahesh Kumar4b7b2332016-12-01 21:19:35 +05305082 latency += 4;
5083
Ville Syrjälä60e983f2018-12-21 19:14:33 +02005084 if (skl_needs_memory_bw_wa(dev_priv) && wp->x_tiled)
Paulo Zanoniee3d5322016-10-11 15:25:38 -03005085 latency += 15;
5086
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305087 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005088 wp->cpp, latency, wp->dbuf_block_size);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305089 method2 = skl_wm_method2(wp->plane_pixel_rate,
Maarten Lankhorst1326a922019-10-31 12:26:02 +01005090 crtc_state->hw.adjusted_mode.crtc_htotal,
Paulo Zanoni1186fa82016-09-22 18:00:31 -03005091 latency,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305092 wp->plane_blocks_per_line);
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005093
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305094 if (wp->y_tiled) {
5095 selected_result = max_fixed16(method2, wp->y_tile_minimum);
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005096 } else {
Maarten Lankhorst1326a922019-10-31 12:26:02 +01005097 if ((wp->cpp * crtc_state->hw.adjusted_mode.crtc_htotal /
Mahesh Kumardf8ee192018-01-30 11:49:11 -02005098 wp->dbuf_block_size < 1) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07005099 (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) {
Paulo Zanonif1db3ea2016-09-22 18:00:34 -03005100 selected_result = method2;
Paulo Zanoni077b5822018-10-04 16:15:57 -07005101 } else if (latency >= wp->linetime_us) {
Lucas De Marchicf819ef2018-12-12 10:10:43 -08005102 if (IS_GEN(dev_priv, 9) &&
Paulo Zanoni077b5822018-10-04 16:15:57 -07005103 !IS_GEMINILAKE(dev_priv))
5104 selected_result = min_fixed16(method1, method2);
5105 else
5106 selected_result = method2;
5107 } else {
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005108 selected_result = method1;
Paulo Zanoni077b5822018-10-04 16:15:57 -07005109 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005110 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005111
Kumar, Mahesheac2cb82017-07-05 20:01:46 +05305112 res_blocks = fixed16_to_u32_round_up(selected_result) + 1;
Kumar, Maheshd273ecc2017-05-17 17:28:22 +05305113 res_lines = div_round_up_fixed16(selected_result,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305114 wp->plane_blocks_per_line);
Damien Lespiaue6d66172014-11-04 17:06:55 +00005115
Paulo Zanonia5b79d32018-11-13 17:24:32 -08005116 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv)) {
5117 /* Display WA #1125: skl,bxt,kbl */
5118 if (level == 0 && wp->rc_surface)
5119 res_blocks +=
5120 fixed16_to_u32_round_up(wp->y_tile_minimum);
Ville Syrjälä2e2adb02017-08-01 09:58:13 -07005121
Paulo Zanonia5b79d32018-11-13 17:24:32 -08005122 /* Display WA #1126: skl,bxt,kbl */
5123 if (level >= 1 && level <= 7) {
5124 if (wp->y_tiled) {
5125 res_blocks +=
5126 fixed16_to_u32_round_up(wp->y_tile_minimum);
5127 res_lines += wp->y_min_scanlines;
5128 } else {
5129 res_blocks++;
5130 }
5131
5132 /*
5133 * Make sure result blocks for higher latency levels are
5134 * atleast as high as level below the current level.
5135 * Assumption in DDB algorithm optimization for special
5136 * cases. Also covers Display WA #1125 for RC.
5137 */
5138 if (result_prev->plane_res_b > res_blocks)
5139 res_blocks = result_prev->plane_res_b;
Paulo Zanoni75676ed2016-09-22 18:00:33 -03005140 }
Tvrtko Ursulin0fda6562015-02-27 15:12:35 +00005141 }
Tvrtko Ursulind4c2aa62015-02-27 11:15:22 +00005142
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005143 if (INTEL_GEN(dev_priv) >= 11) {
5144 if (wp->y_tiled) {
5145 int extra_lines;
5146
5147 if (res_lines % wp->y_min_scanlines == 0)
5148 extra_lines = wp->y_min_scanlines;
5149 else
5150 extra_lines = wp->y_min_scanlines * 2 -
5151 res_lines % wp->y_min_scanlines;
5152
5153 min_ddb_alloc = mul_round_up_u32_fixed16(res_lines + extra_lines,
5154 wp->plane_blocks_per_line);
5155 } else {
5156 min_ddb_alloc = res_blocks +
5157 DIV_ROUND_UP(res_blocks, 10);
5158 }
5159 }
5160
Ville Syrjäläb52c2732018-12-21 19:14:28 +02005161 if (!skl_wm_has_lines(dev_priv, level))
5162 res_lines = 0;
5163
Ville Syrjälä0aded172019-02-05 17:50:53 +02005164 if (res_lines > 31) {
5165 /* reject it */
5166 result->min_ddb_alloc = U16_MAX;
Matt Roperd8e87492018-12-11 09:31:07 -08005167 return;
Ville Syrjälä0aded172019-02-05 17:50:53 +02005168 }
Matt Roperd8e87492018-12-11 09:31:07 -08005169
5170 /*
5171 * If res_lines is valid, assume we can use this watermark level
5172 * for now. We'll come back and disable it after we calculate the
5173 * DDB allocation if it turns out we don't actually have enough
5174 * blocks to satisfy it.
5175 */
Mahesh Kumar62027b72018-04-09 09:11:05 +05305176 result->plane_res_b = res_blocks;
5177 result->plane_res_l = res_lines;
Ville Syrjälä961d95e2018-12-21 19:14:32 +02005178 /* Bspec says: value >= plane ddb allocation -> invalid, hence the +1 here */
5179 result->min_ddb_alloc = max(min_ddb_alloc, res_blocks) + 1;
Mahesh Kumar62027b72018-04-09 09:11:05 +05305180 result->plane_en = true;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005181}
5182
Matt Roperd8e87492018-12-11 09:31:07 -08005183static void
Maarten Lankhorstec193642019-06-28 10:55:17 +02005184skl_compute_wm_levels(const struct intel_crtc_state *crtc_state,
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305185 const struct skl_wm_params *wm_params,
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005186 struct skl_wm_level *levels)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005187{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005188 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305189 int level, max_level = ilk_wm_max_level(dev_priv);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005190 struct skl_wm_level *result_prev = &levels[0];
Lyudea62163e2016-10-04 14:28:20 -04005191
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305192 for (level = 0; level <= max_level; level++) {
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005193 struct skl_wm_level *result = &levels[level];
Stanislav Lisovskiy7b994752020-04-09 18:47:18 +03005194 unsigned int latency = dev_priv->wm.skl_latency[level];
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305195
Stanislav Lisovskiy7b994752020-04-09 18:47:18 +03005196 skl_compute_plane_wm(crtc_state, level, latency,
5197 wm_params, result_prev, result);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005198
5199 result_prev = result;
Kumar, Maheshd2f5e362017-05-17 17:28:28 +05305200 }
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005201}
5202
Maarten Lankhorstec193642019-06-28 10:55:17 +02005203static void skl_compute_transition_wm(const struct intel_crtc_state *crtc_state,
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02005204 const struct skl_wm_params *wp,
Matt Roperd8e87492018-12-11 09:31:07 -08005205 struct skl_plane_wm *wm)
Damien Lespiau407b50f2014-11-04 17:06:57 +00005206{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005207 struct drm_device *dev = crtc_state->uapi.crtc->dev;
Kumar, Maheshca476672017-08-17 19:15:24 +05305208 const struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläc834d032020-02-28 22:35:52 +02005209 u16 trans_min, trans_amount, trans_y_tile_min;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005210 u16 wm0_sel_res_b, trans_offset_b, res_blocks;
Damien Lespiau9414f562014-11-04 17:06:58 +00005211
Kumar, Maheshca476672017-08-17 19:15:24 +05305212 /* Transition WM don't make any sense if ipc is disabled */
5213 if (!dev_priv->ipc_enabled)
Ville Syrjälä14a43062018-11-14 23:07:22 +02005214 return;
Kumar, Maheshca476672017-08-17 19:15:24 +05305215
Ville Syrjäläa7f1e8e2020-02-28 22:35:51 +02005216 /*
5217 * WaDisableTWM:skl,kbl,cfl,bxt
5218 * Transition WM are not recommended by HW team for GEN9
5219 */
5220 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
5221 return;
5222
Paulo Zanoni91961a82018-10-04 16:15:56 -07005223 if (INTEL_GEN(dev_priv) >= 11)
Kumar, Maheshca476672017-08-17 19:15:24 +05305224 trans_min = 4;
Ville Syrjäläc834d032020-02-28 22:35:52 +02005225 else
5226 trans_min = 14;
5227
5228 /* Display WA #1140: glk,cnl */
5229 if (IS_CANNONLAKE(dev_priv) || IS_GEMINILAKE(dev_priv))
5230 trans_amount = 0;
5231 else
5232 trans_amount = 10; /* This is configurable amount */
Kumar, Maheshca476672017-08-17 19:15:24 +05305233
5234 trans_offset_b = trans_min + trans_amount;
5235
Paulo Zanonicbacc792018-10-04 16:15:58 -07005236 /*
5237 * The spec asks for Selected Result Blocks for wm0 (the real value),
5238 * not Result Blocks (the integer value). Pay attention to the capital
5239 * letters. The value wm_l0->plane_res_b is actually Result Blocks, but
5240 * since Result Blocks is the ceiling of Selected Result Blocks plus 1,
5241 * and since we later will have to get the ceiling of the sum in the
5242 * transition watermarks calculation, we can just pretend Selected
5243 * Result Blocks is Result Blocks minus 1 and it should work for the
5244 * current platforms.
5245 */
Ville Syrjälä6a3c910b2018-11-14 23:07:23 +02005246 wm0_sel_res_b = wm->wm[0].plane_res_b - 1;
Paulo Zanonicbacc792018-10-04 16:15:58 -07005247
Kumar, Maheshca476672017-08-17 19:15:24 +05305248 if (wp->y_tiled) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005249 trans_y_tile_min =
5250 (u16)mul_round_up_u32_fixed16(2, wp->y_tile_minimum);
Paulo Zanonicbacc792018-10-04 16:15:58 -07005251 res_blocks = max(wm0_sel_res_b, trans_y_tile_min) +
Kumar, Maheshca476672017-08-17 19:15:24 +05305252 trans_offset_b;
5253 } else {
Paulo Zanonicbacc792018-10-04 16:15:58 -07005254 res_blocks = wm0_sel_res_b + trans_offset_b;
Kumar, Maheshca476672017-08-17 19:15:24 +05305255
5256 /* WA BUG:1938466 add one block for non y-tile planes */
5257 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0))
5258 res_blocks += 1;
Kumar, Maheshca476672017-08-17 19:15:24 +05305259 }
5260
Matt Roperd8e87492018-12-11 09:31:07 -08005261 /*
5262 * Just assume we can enable the transition watermark. After
5263 * computing the DDB we'll come back and disable it if that
5264 * assumption turns out to be false.
5265 */
5266 wm->trans_wm.plane_res_b = res_blocks + 1;
5267 wm->trans_wm.plane_en = true;
Damien Lespiau407b50f2014-11-04 17:06:57 +00005268}
5269
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005270static int skl_build_plane_wm_single(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005271 const struct intel_plane_state *plane_state,
5272 enum plane_id plane_id, int color_plane)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005273{
Ville Syrjälä83158472018-11-27 18:57:26 +02005274 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005275 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005276 int ret;
5277
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005278 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005279 &wm_params, color_plane);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005280 if (ret)
5281 return ret;
5282
Ville Syrjälä67155a62019-03-12 22:58:37 +02005283 skl_compute_wm_levels(crtc_state, &wm_params, wm->wm);
Matt Roperd8e87492018-12-11 09:31:07 -08005284 skl_compute_transition_wm(crtc_state, &wm_params, wm);
Ville Syrjälä83158472018-11-27 18:57:26 +02005285
5286 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005287}
5288
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005289static int skl_build_plane_wm_uv(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005290 const struct intel_plane_state *plane_state,
5291 enum plane_id plane_id)
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005292{
Ville Syrjälä83158472018-11-27 18:57:26 +02005293 struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id];
5294 struct skl_wm_params wm_params;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005295 int ret;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005296
Ville Syrjälä83158472018-11-27 18:57:26 +02005297 wm->is_planar = true;
5298
5299 /* uv plane watermarks must also be validated for NV12/Planar */
Ville Syrjälä51de9c62018-11-14 23:07:25 +02005300 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005301 &wm_params, 1);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005302 if (ret)
5303 return ret;
5304
Ville Syrjälä67155a62019-03-12 22:58:37 +02005305 skl_compute_wm_levels(crtc_state, &wm_params, wm->uv_wm);
Ville Syrjälä83158472018-11-27 18:57:26 +02005306
5307 return 0;
5308}
5309
Ville Syrjälä96cb7cd2019-03-12 22:58:43 +02005310static int skl_build_plane_wm(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005311 const struct intel_plane_state *plane_state)
5312{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005313 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005314 const struct drm_framebuffer *fb = plane_state->hw.fb;
Ville Syrjälä83158472018-11-27 18:57:26 +02005315 enum plane_id plane_id = plane->id;
5316 int ret;
5317
5318 if (!intel_wm_plane_visible(crtc_state, plane_state))
5319 return 0;
5320
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005321 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005322 plane_id, 0);
5323 if (ret)
5324 return ret;
5325
5326 if (fb->format->is_yuv && fb->format->num_planes > 1) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005327 ret = skl_build_plane_wm_uv(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005328 plane_id);
5329 if (ret)
5330 return ret;
5331 }
5332
5333 return 0;
5334}
5335
Ville Syrjälä96cb7cd2019-03-12 22:58:43 +02005336static int icl_build_plane_wm(struct intel_crtc_state *crtc_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005337 const struct intel_plane_state *plane_state)
5338{
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01005339 enum plane_id plane_id = to_intel_plane(plane_state->uapi.plane)->id;
Ville Syrjälä83158472018-11-27 18:57:26 +02005340 int ret;
5341
5342 /* Watermarks calculated in master */
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005343 if (plane_state->planar_slave)
Ville Syrjälä83158472018-11-27 18:57:26 +02005344 return 0;
5345
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005346 if (plane_state->planar_linked_plane) {
Maarten Lankhorst7b3cb172019-10-31 12:26:07 +01005347 const struct drm_framebuffer *fb = plane_state->hw.fb;
Maarten Lankhorstc47b7dd2019-09-20 13:42:20 +02005348 enum plane_id y_plane_id = plane_state->planar_linked_plane->id;
Ville Syrjälä83158472018-11-27 18:57:26 +02005349
5350 WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state));
5351 WARN_ON(!fb->format->is_yuv ||
5352 fb->format->num_planes == 1);
5353
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005354 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005355 y_plane_id, 0);
5356 if (ret)
5357 return ret;
5358
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005359 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005360 plane_id, 1);
5361 if (ret)
5362 return ret;
5363 } else if (intel_wm_plane_visible(crtc_state, plane_state)) {
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005364 ret = skl_build_plane_wm_single(crtc_state, plane_state,
Ville Syrjälä83158472018-11-27 18:57:26 +02005365 plane_id, 0);
5366 if (ret)
5367 return ret;
5368 }
5369
5370 return 0;
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005371}
5372
Maarten Lankhorstec193642019-06-28 10:55:17 +02005373static int skl_build_pipe_wm(struct intel_crtc_state *crtc_state)
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005374{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005375 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
Maarten Lankhorstec193642019-06-28 10:55:17 +02005376 struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal;
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02005377 struct intel_plane *plane;
5378 const struct intel_plane_state *plane_state;
Matt Roper55994c22016-05-12 07:06:08 -07005379 int ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005380
Lyudea62163e2016-10-04 14:28:20 -04005381 /*
5382 * We'll only calculate watermarks for planes that are actually
5383 * enabled, so make sure all other planes are set as disabled.
5384 */
5385 memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes));
5386
Maarten Lankhorstaf9fbfa2019-10-04 13:34:53 +02005387 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state,
5388 crtc_state) {
Kumar, Mahesheb2fdcd2017-05-17 17:28:27 +05305389
Ville Syrjälä83158472018-11-27 18:57:26 +02005390 if (INTEL_GEN(dev_priv) >= 11)
Maarten Lankhorstec193642019-06-28 10:55:17 +02005391 ret = icl_build_plane_wm(crtc_state, plane_state);
Maarten Lankhorstb048a002018-10-18 13:51:30 +02005392 else
Maarten Lankhorstec193642019-06-28 10:55:17 +02005393 ret = skl_build_plane_wm(crtc_state, plane_state);
Kumar, Mahesh7e452fd2017-08-17 19:15:23 +05305394 if (ret)
5395 return ret;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005396 }
Mahesh Kumar942aa2d2018-04-09 09:11:04 +05305397
Matt Roper55994c22016-05-12 07:06:08 -07005398 return 0;
Pradeep Bhat2d41c0b2014-11-04 17:06:42 +00005399}
5400
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02005401static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
5402 i915_reg_t reg,
Damien Lespiau16160e32014-11-04 17:06:53 +00005403 const struct skl_ddb_entry *entry)
5404{
5405 if (entry->end)
Jani Nikula9b6320a2020-01-23 16:00:04 +02005406 intel_de_write_fw(dev_priv, reg,
5407 (entry->end - 1) << 16 | entry->start);
Damien Lespiau16160e32014-11-04 17:06:53 +00005408 else
Jani Nikula9b6320a2020-01-23 16:00:04 +02005409 intel_de_write_fw(dev_priv, reg, 0);
Damien Lespiau16160e32014-11-04 17:06:53 +00005410}
5411
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005412static void skl_write_wm_level(struct drm_i915_private *dev_priv,
5413 i915_reg_t reg,
5414 const struct skl_wm_level *level)
5415{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005416 u32 val = 0;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005417
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005418 if (level->plane_en)
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005419 val |= PLANE_WM_EN;
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005420 if (level->ignore_lines)
5421 val |= PLANE_WM_IGNORE_LINES;
5422 val |= level->plane_res_b;
5423 val |= level->plane_res_l << PLANE_WM_LINES_SHIFT;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005424
Jani Nikula9b6320a2020-01-23 16:00:04 +02005425 intel_de_write_fw(dev_priv, reg, val);
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005426}
5427
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005428void skl_write_plane_wm(struct intel_plane *plane,
5429 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005430{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005431 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005432 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005433 enum plane_id plane_id = plane->id;
5434 enum pipe pipe = plane->pipe;
5435 const struct skl_plane_wm *wm =
5436 &crtc_state->wm.skl.optimal.planes[plane_id];
5437 const struct skl_ddb_entry *ddb_y =
5438 &crtc_state->wm.skl.plane_ddb_y[plane_id];
5439 const struct skl_ddb_entry *ddb_uv =
5440 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005441
5442 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005443 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005444 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005445 }
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005446 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005447 &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005448
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005449 if (INTEL_GEN(dev_priv) >= 11) {
Mahesh Kumar234059d2018-01-30 11:49:13 -02005450 skl_ddb_entry_write(dev_priv,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005451 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5452 return;
Mahesh Kumarb879d582018-04-09 09:11:01 +05305453 }
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005454
5455 if (wm->is_planar)
5456 swap(ddb_y, ddb_uv);
5457
5458 skl_ddb_entry_write(dev_priv,
5459 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5460 skl_ddb_entry_write(dev_priv,
5461 PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv);
Lyude62e0fb82016-08-22 12:50:08 -04005462}
5463
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005464void skl_write_cursor_wm(struct intel_plane *plane,
5465 const struct intel_crtc_state *crtc_state)
Lyude62e0fb82016-08-22 12:50:08 -04005466{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005467 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005468 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005469 enum plane_id plane_id = plane->id;
5470 enum pipe pipe = plane->pipe;
5471 const struct skl_plane_wm *wm =
5472 &crtc_state->wm.skl.optimal.planes[plane_id];
5473 const struct skl_ddb_entry *ddb =
5474 &crtc_state->wm.skl.plane_ddb_y[plane_id];
Lyude62e0fb82016-08-22 12:50:08 -04005475
5476 for (level = 0; level <= max_level; level++) {
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005477 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
5478 &wm->wm[level]);
Lyude62e0fb82016-08-22 12:50:08 -04005479 }
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005480 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm);
Lyude27082492016-08-24 07:48:10 +02005481
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005482 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb);
Lyude62e0fb82016-08-22 12:50:08 -04005483}
5484
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005485bool skl_wm_level_equals(const struct skl_wm_level *l1,
5486 const struct skl_wm_level *l2)
5487{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005488 return l1->plane_en == l2->plane_en &&
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005489 l1->ignore_lines == l2->ignore_lines &&
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005490 l1->plane_res_l == l2->plane_res_l &&
5491 l1->plane_res_b == l2->plane_res_b;
5492}
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005493
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005494static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv,
5495 const struct skl_plane_wm *wm1,
5496 const struct skl_plane_wm *wm2)
5497{
5498 int level, max_level = ilk_wm_max_level(dev_priv);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005499
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005500 for (level = 0; level <= max_level; level++) {
Ville Syrjäläe7f54e62020-02-28 22:35:49 +02005501 /*
5502 * We don't check uv_wm as the hardware doesn't actually
5503 * use it. It only gets used for calculating the required
5504 * ddb allocation.
5505 */
5506 if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]))
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005507 return false;
5508 }
5509
5510 return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm);
cpaul@redhat.com45ece232016-10-14 17:31:56 -04005511}
5512
Jani Nikula81b55ef2020-04-20 17:04:38 +03005513static bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
5514 const struct skl_ddb_entry *b)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005515{
Lyude27082492016-08-24 07:48:10 +02005516 return a->start < b->end && b->start < a->end;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005517}
5518
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005519bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb,
Jani Nikula696173b2019-04-05 14:00:15 +03005520 const struct skl_ddb_entry *entries,
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005521 int num_entries, int ignore_idx)
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005522{
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005523 int i;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005524
Ville Syrjälä53cc68802018-11-01 17:05:59 +02005525 for (i = 0; i < num_entries; i++) {
5526 if (i != ignore_idx &&
5527 skl_ddb_entries_overlap(ddb, &entries[i]))
Lyude27082492016-08-24 07:48:10 +02005528 return true;
Mika Kahola2b685042017-10-10 13:17:03 +03005529 }
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005530
Lyude27082492016-08-24 07:48:10 +02005531 return false;
Damien Lespiau0e8fb7b2014-11-04 17:07:02 +00005532}
5533
Jani Nikulabb7791b2016-10-04 12:29:17 +03005534static int
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005535skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state,
5536 struct intel_crtc_state *new_crtc_state)
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005537{
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005538 struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state);
5539 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005540 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5541 struct intel_plane *plane;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005542
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005543 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5544 struct intel_plane_state *plane_state;
5545 enum plane_id plane_id = plane->id;
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005546
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005547 if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id],
5548 &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) &&
5549 skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id],
5550 &new_crtc_state->wm.skl.plane_ddb_uv[plane_id]))
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005551 continue;
5552
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005553 plane_state = intel_atomic_get_plane_state(state, plane);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005554 if (IS_ERR(plane_state))
5555 return PTR_ERR(plane_state);
Maarten Lankhorst1ab554b2018-10-22 15:51:52 +02005556
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005557 new_crtc_state->update_planes |= BIT(plane_id);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005558 }
5559
5560 return 0;
5561}
5562
5563static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005564skl_compute_ddb(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005565{
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005566 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005567 struct intel_crtc_state *old_crtc_state;
5568 struct intel_crtc_state *new_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305569 struct intel_crtc *crtc;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305570 int ret, i;
Matt Roper98d39492016-05-12 07:06:03 -07005571
Stanislav Lisovskiy0f0f9ae2020-02-03 01:06:29 +02005572 state->enabled_dbuf_slices_mask = dev_priv->enabled_dbuf_slices_mask;
Paulo Zanoni5a920b82016-10-04 14:37:32 -03005573
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005574 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005575 new_crtc_state, i) {
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02005576 ret = skl_allocate_pipe_ddb(new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005577 if (ret)
5578 return ret;
5579
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005580 ret = skl_ddb_add_affected_planes(old_crtc_state,
5581 new_crtc_state);
Rodrigo Vivi9a30a262017-06-13 10:52:30 -07005582 if (ret)
5583 return ret;
Matt Roper98d39492016-05-12 07:06:03 -07005584 }
5585
5586 return 0;
5587}
5588
Ville Syrjäläab98e942019-02-08 22:05:27 +02005589static char enast(bool enable)
5590{
5591 return enable ? '*' : ' ';
5592}
5593
Matt Roper2722efb2016-08-17 15:55:55 -04005594static void
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005595skl_print_wm_changes(struct intel_atomic_state *state)
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005596{
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005597 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5598 const struct intel_crtc_state *old_crtc_state;
5599 const struct intel_crtc_state *new_crtc_state;
5600 struct intel_plane *plane;
5601 struct intel_crtc *crtc;
Maarten Lankhorst75704982016-11-01 12:04:10 +01005602 int i;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005603
Jani Nikulabdbf43d2019-10-28 12:38:15 +02005604 if (!drm_debug_enabled(DRM_UT_KMS))
Ville Syrjäläab98e942019-02-08 22:05:27 +02005605 return;
5606
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005607 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5608 new_crtc_state, i) {
Ville Syrjäläab98e942019-02-08 22:05:27 +02005609 const struct skl_pipe_wm *old_pipe_wm, *new_pipe_wm;
5610
5611 old_pipe_wm = &old_crtc_state->wm.skl.optimal;
5612 new_pipe_wm = &new_crtc_state->wm.skl.optimal;
5613
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005614 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5615 enum plane_id plane_id = plane->id;
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005616 const struct skl_ddb_entry *old, *new;
5617
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005618 old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id];
5619 new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id];
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005620
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005621 if (skl_ddb_entry_equal(old, new))
5622 continue;
5623
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005624 drm_dbg_kms(&dev_priv->drm,
5625 "[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n",
5626 plane->base.base.id, plane->base.name,
5627 old->start, old->end, new->start, new->end,
5628 skl_ddb_entry_size(old), skl_ddb_entry_size(new));
Ville Syrjäläab98e942019-02-08 22:05:27 +02005629 }
5630
5631 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5632 enum plane_id plane_id = plane->id;
5633 const struct skl_plane_wm *old_wm, *new_wm;
5634
5635 old_wm = &old_pipe_wm->planes[plane_id];
5636 new_wm = &new_pipe_wm->planes[plane_id];
5637
5638 if (skl_plane_wm_equals(dev_priv, old_wm, new_wm))
5639 continue;
5640
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005641 drm_dbg_kms(&dev_priv->drm,
5642 "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm"
5643 " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm\n",
5644 plane->base.base.id, plane->base.name,
5645 enast(old_wm->wm[0].plane_en), enast(old_wm->wm[1].plane_en),
5646 enast(old_wm->wm[2].plane_en), enast(old_wm->wm[3].plane_en),
5647 enast(old_wm->wm[4].plane_en), enast(old_wm->wm[5].plane_en),
5648 enast(old_wm->wm[6].plane_en), enast(old_wm->wm[7].plane_en),
5649 enast(old_wm->trans_wm.plane_en),
5650 enast(new_wm->wm[0].plane_en), enast(new_wm->wm[1].plane_en),
5651 enast(new_wm->wm[2].plane_en), enast(new_wm->wm[3].plane_en),
5652 enast(new_wm->wm[4].plane_en), enast(new_wm->wm[5].plane_en),
5653 enast(new_wm->wm[6].plane_en), enast(new_wm->wm[7].plane_en),
5654 enast(new_wm->trans_wm.plane_en));
Ville Syrjäläab98e942019-02-08 22:05:27 +02005655
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005656 drm_dbg_kms(&dev_priv->drm,
5657 "[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 +02005658 " -> %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 +03005659 plane->base.base.id, plane->base.name,
5660 enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].plane_res_l,
5661 enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].plane_res_l,
5662 enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].plane_res_l,
5663 enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].plane_res_l,
5664 enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].plane_res_l,
5665 enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].plane_res_l,
5666 enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].plane_res_l,
5667 enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].plane_res_l,
5668 enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.plane_res_l,
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005669
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005670 enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].plane_res_l,
5671 enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].plane_res_l,
5672 enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].plane_res_l,
5673 enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].plane_res_l,
5674 enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].plane_res_l,
5675 enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].plane_res_l,
5676 enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].plane_res_l,
5677 enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].plane_res_l,
5678 enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.plane_res_l);
Ville Syrjäläab98e942019-02-08 22:05:27 +02005679
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005680 drm_dbg_kms(&dev_priv->drm,
5681 "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d"
5682 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n",
5683 plane->base.base.id, plane->base.name,
5684 old_wm->wm[0].plane_res_b, old_wm->wm[1].plane_res_b,
5685 old_wm->wm[2].plane_res_b, old_wm->wm[3].plane_res_b,
5686 old_wm->wm[4].plane_res_b, old_wm->wm[5].plane_res_b,
5687 old_wm->wm[6].plane_res_b, old_wm->wm[7].plane_res_b,
5688 old_wm->trans_wm.plane_res_b,
5689 new_wm->wm[0].plane_res_b, new_wm->wm[1].plane_res_b,
5690 new_wm->wm[2].plane_res_b, new_wm->wm[3].plane_res_b,
5691 new_wm->wm[4].plane_res_b, new_wm->wm[5].plane_res_b,
5692 new_wm->wm[6].plane_res_b, new_wm->wm[7].plane_res_b,
5693 new_wm->trans_wm.plane_res_b);
Ville Syrjäläab98e942019-02-08 22:05:27 +02005694
Wambui Karugaf8d18d52020-01-07 18:13:30 +03005695 drm_dbg_kms(&dev_priv->drm,
5696 "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d"
5697 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n",
5698 plane->base.base.id, plane->base.name,
5699 old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc,
5700 old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc,
5701 old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc,
5702 old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc,
5703 old_wm->trans_wm.min_ddb_alloc,
5704 new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc,
5705 new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc,
5706 new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc,
5707 new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc,
5708 new_wm->trans_wm.min_ddb_alloc);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005709 }
5710 }
5711}
5712
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005713static int intel_add_all_pipes(struct intel_atomic_state *state)
5714{
5715 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5716 struct intel_crtc *crtc;
5717
5718 for_each_intel_crtc(&dev_priv->drm, crtc) {
5719 struct intel_crtc_state *crtc_state;
5720
5721 crtc_state = intel_atomic_get_crtc_state(&state->base, crtc);
5722 if (IS_ERR(crtc_state))
5723 return PTR_ERR(crtc_state);
5724 }
5725
5726 return 0;
5727}
5728
Matt Roper98d39492016-05-12 07:06:03 -07005729static int
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005730skl_ddb_add_affected_pipes(struct intel_atomic_state *state)
Matt Roper98d39492016-05-12 07:06:03 -07005731{
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005732 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005733 int ret;
Matt Roper98d39492016-05-12 07:06:03 -07005734
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305735 /*
5736 * If this is our first atomic update following hardware readout,
5737 * we can't trust the DDB that the BIOS programmed for us. Let's
5738 * pretend that all pipes switched active status so that we'll
5739 * ensure a full DDB recompute.
5740 */
5741 if (dev_priv->wm.distrust_bios_wm) {
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005742 ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex,
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005743 state->base.acquire_ctx);
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305744 if (ret)
5745 return ret;
5746
Ville Syrjälä8d9875b2019-10-11 23:09:45 +03005747 state->active_pipe_changes = INTEL_INFO(dev_priv)->pipe_mask;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305748
5749 /*
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005750 * We usually only initialize state->active_pipes if we
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305751 * we're doing a modeset; make sure this field is always
5752 * initialized during the sanitization process that happens
5753 * on the first commit too.
5754 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005755 if (!state->modeset)
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03005756 state->active_pipes = dev_priv->active_pipes;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305757 }
5758
5759 /*
5760 * If the modeset changes which CRTC's are active, we need to
5761 * recompute the DDB allocation for *all* active pipes, even
5762 * those that weren't otherwise being modified in any way by this
5763 * atomic commit. Due to the shrinking of the per-pipe allocations
5764 * when new active CRTC's are added, it's possible for a pipe that
5765 * we were already using and aren't changing at all here to suddenly
5766 * become invalid if its DDB needs exceeds its new allocation.
5767 *
5768 * Note that if we wind up doing a full DDB recompute, we can't let
5769 * any other display updates race with this transaction, so we need
5770 * to grab the lock on *all* CRTC's.
5771 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005772 if (state->active_pipe_changes || state->modeset) {
Ville Syrjälä49e0ed32019-10-11 23:09:43 +03005773 ret = intel_add_all_pipes(state);
5774 if (ret)
5775 return ret;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305776 }
5777
5778 return 0;
5779}
5780
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005781/*
5782 * To make sure the cursor watermark registers are always consistent
5783 * with our computed state the following scenario needs special
5784 * treatment:
5785 *
5786 * 1. enable cursor
5787 * 2. move cursor entirely offscreen
5788 * 3. disable cursor
5789 *
5790 * Step 2. does call .disable_plane() but does not zero the watermarks
5791 * (since we consider an offscreen cursor still active for the purposes
5792 * of watermarks). Step 3. would not normally call .disable_plane()
5793 * because the actual plane visibility isn't changing, and we don't
5794 * deallocate the cursor ddb until the pipe gets disabled. So we must
5795 * force step 3. to call .disable_plane() to update the watermark
5796 * registers properly.
5797 *
5798 * Other planes do not suffer from this issues as their watermarks are
5799 * calculated based on the actual plane visibility. The only time this
5800 * can trigger for the other planes is during the initial readout as the
5801 * default value of the watermarks registers is not zero.
5802 */
5803static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
5804 struct intel_crtc *crtc)
5805{
5806 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5807 const struct intel_crtc_state *old_crtc_state =
5808 intel_atomic_get_old_crtc_state(state, crtc);
5809 struct intel_crtc_state *new_crtc_state =
5810 intel_atomic_get_new_crtc_state(state, crtc);
5811 struct intel_plane *plane;
5812
5813 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5814 struct intel_plane_state *plane_state;
5815 enum plane_id plane_id = plane->id;
5816
5817 /*
5818 * Force a full wm update for every plane on modeset.
5819 * Required because the reset value of the wm registers
5820 * is non-zero, whereas we want all disabled planes to
5821 * have zero watermarks. So if we turn off the relevant
5822 * power well the hardware state will go out of sync
5823 * with the software state.
5824 */
Maarten Lankhorst2225f3c2019-10-31 12:26:03 +01005825 if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi) &&
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005826 skl_plane_wm_equals(dev_priv,
5827 &old_crtc_state->wm.skl.optimal.planes[plane_id],
5828 &new_crtc_state->wm.skl.optimal.planes[plane_id]))
5829 continue;
5830
5831 plane_state = intel_atomic_get_plane_state(state, plane);
5832 if (IS_ERR(plane_state))
5833 return PTR_ERR(plane_state);
5834
5835 new_crtc_state->update_planes |= BIT(plane_id);
5836 }
5837
5838 return 0;
5839}
5840
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305841static int
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005842skl_compute_wm(struct intel_atomic_state *state)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305843{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005844 struct intel_crtc *crtc;
Ville Syrjälä8cac9fd2019-03-12 22:58:44 +02005845 struct intel_crtc_state *new_crtc_state;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005846 struct intel_crtc_state *old_crtc_state;
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305847 int ret, i;
5848
Ville Syrjäläd7a14582019-10-11 23:09:42 +03005849 ret = skl_ddb_add_affected_pipes(state);
5850 if (ret)
Mahesh Kumare1f96a62018-04-09 09:11:08 +05305851 return ret;
5852
Matt Roper734fa012016-05-12 15:11:40 -07005853 /*
5854 * Calculate WM's for all pipes that are part of this transaction.
Matt Roperd8e87492018-12-11 09:31:07 -08005855 * Note that skl_ddb_add_affected_pipes may have added more CRTC's that
Ville Syrjäläf119a5e2020-01-20 19:47:13 +02005856 * weren't otherwise being modified if pipe allocations had to change.
Matt Roper734fa012016-05-12 15:11:40 -07005857 */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005858 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
Ville Syrjälä8cac9fd2019-03-12 22:58:44 +02005859 new_crtc_state, i) {
5860 ret = skl_build_pipe_wm(new_crtc_state);
Ville Syrjäläff43bc32018-11-27 18:59:00 +02005861 if (ret)
5862 return ret;
Matt Roper734fa012016-05-12 15:11:40 -07005863 }
5864
Matt Roperd8e87492018-12-11 09:31:07 -08005865 ret = skl_compute_ddb(state);
5866 if (ret)
5867 return ret;
5868
Stanislav Lisovskiy97288892020-04-30 22:17:57 +03005869 if (state->modeset) {
5870 ret = intel_compute_sagv_mask(state);
5871 if (ret)
5872 return ret;
5873 }
5874
Ville Syrjälä23baedd2020-02-28 22:35:50 +02005875 /*
5876 * skl_compute_ddb() will have adjusted the final watermarks
5877 * based on how much ddb is available. Now we can actually
5878 * check if the final watermarks changed.
5879 */
5880 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5881 new_crtc_state, i) {
5882 ret = skl_wm_add_affected_planes(state, crtc);
5883 if (ret)
5884 return ret;
5885 }
5886
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005887 skl_print_wm_changes(state);
cpaul@redhat.com413fc532016-10-14 17:31:54 -04005888
Matt Roper98d39492016-05-12 07:06:03 -07005889 return 0;
5890}
5891
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005892static void ilk_compute_wm_config(struct drm_i915_private *dev_priv,
Ville Syrjäläd8905652016-01-14 14:53:35 +02005893 struct intel_wm_config *config)
5894{
5895 struct intel_crtc *crtc;
5896
5897 /* Compute the currently _active_ config */
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005898 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläd8905652016-01-14 14:53:35 +02005899 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
5900
5901 if (!wm->pipe_enabled)
5902 continue;
5903
5904 config->sprites_enabled |= wm->sprites_enabled;
5905 config->sprites_scaled |= wm->sprites_scaled;
5906 config->num_pipes_active++;
5907 }
5908}
5909
Matt Ropered4a6a72016-02-23 17:20:13 -08005910static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
Paulo Zanoni801bcff2013-05-31 10:08:35 -03005911{
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005912 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
Imre Deak820c1982013-12-17 14:46:36 +02005913 struct ilk_wm_maximums max;
Ville Syrjäläd8905652016-01-14 14:53:35 +02005914 struct intel_wm_config config = {};
Imre Deak820c1982013-12-17 14:46:36 +02005915 struct ilk_wm_values results = {};
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005916 enum intel_ddb_partitioning partitioning;
Matt Roper261a27d2015-10-08 15:28:25 -07005917
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005918 ilk_compute_wm_config(dev_priv, &config);
Ville Syrjäläd8905652016-01-14 14:53:35 +02005919
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005920 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max);
5921 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2);
Ville Syrjälä0362c782013-10-09 19:17:57 +03005922
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005923 /* 5/6 split only in single pipe config on IVB+ */
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00005924 if (INTEL_GEN(dev_priv) >= 7 &&
Ville Syrjäläd8905652016-01-14 14:53:35 +02005925 config.num_pipes_active == 1 && config.sprites_enabled) {
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005926 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max);
5927 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6);
Ville Syrjäläa485bfb2013-10-09 19:17:59 +03005928
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005929 best_lp_wm = ilk_find_best_result(dev_priv, &lp_wm_1_2, &lp_wm_5_6);
Paulo Zanoni861f3382013-05-31 10:19:21 -03005930 } else {
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005931 best_lp_wm = &lp_wm_1_2;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005932 }
5933
Ville Syrjälä198a1e92013-10-09 19:17:58 +03005934 partitioning = (best_lp_wm == &lp_wm_1_2) ?
Ville Syrjälä77c122b2013-08-06 22:24:04 +03005935 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
Paulo Zanoni861f3382013-05-31 10:19:21 -03005936
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005937 ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results);
Ville Syrjälä609cede2013-10-09 19:18:03 +03005938
Imre Deak820c1982013-12-17 14:46:36 +02005939 ilk_write_wm_values(dev_priv, &results);
Paulo Zanoni1011d8c2013-05-09 16:55:50 -03005940}
5941
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005942static void ilk_initial_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005943 struct intel_crtc *crtc)
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005944{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005945 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5946 const struct intel_crtc_state *crtc_state =
5947 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005948
Matt Ropered4a6a72016-02-23 17:20:13 -08005949 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005950 crtc->wm.active.ilk = crtc_state->wm.ilk.intermediate;
Matt Ropered4a6a72016-02-23 17:20:13 -08005951 ilk_program_watermarks(dev_priv);
5952 mutex_unlock(&dev_priv->wm.wm_mutex);
5953}
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005954
Maarten Lankhorstccf010f2016-11-08 13:55:32 +01005955static void ilk_optimize_watermarks(struct intel_atomic_state *state,
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005956 struct intel_crtc *crtc)
Matt Ropered4a6a72016-02-23 17:20:13 -08005957{
Ville Syrjälä7a8fdb1f2019-11-18 18:44:26 +02005958 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5959 const struct intel_crtc_state *crtc_state =
5960 intel_atomic_get_new_crtc_state(state, crtc);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005961
5962 if (!crtc_state->wm.need_postvbl_update)
5963 return;
Matt Ropered4a6a72016-02-23 17:20:13 -08005964
5965 mutex_lock(&dev_priv->wm.wm_mutex);
Ville Syrjälä88016a92019-07-01 19:05:45 +03005966 crtc->wm.active.ilk = crtc_state->wm.ilk.optimal;
5967 ilk_program_watermarks(dev_priv);
Matt Ropered4a6a72016-02-23 17:20:13 -08005968 mutex_unlock(&dev_priv->wm.wm_mutex);
Ville Syrjäläb9d5c832015-09-24 15:53:14 -07005969}
5970
Jani Nikula81b55ef2020-04-20 17:04:38 +03005971static void skl_wm_level_from_reg_val(u32 val, struct skl_wm_level *level)
Pradeep Bhat30789992014-11-04 17:06:45 +00005972{
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005973 level->plane_en = val & PLANE_WM_EN;
Ville Syrjälä2ed8e1f2019-02-13 18:54:23 +02005974 level->ignore_lines = val & PLANE_WM_IGNORE_LINES;
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005975 level->plane_res_b = val & PLANE_WM_BLOCKS_MASK;
5976 level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) &
5977 PLANE_WM_LINES_MASK;
Pradeep Bhat30789992014-11-04 17:06:45 +00005978}
5979
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005980void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04005981 struct skl_pipe_wm *out)
Pradeep Bhat30789992014-11-04 17:06:45 +00005982{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005983 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5984 enum pipe pipe = crtc->pipe;
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005985 int level, max_level;
5986 enum plane_id plane_id;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02005987 u32 val;
Pradeep Bhat30789992014-11-04 17:06:45 +00005988
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01005989 max_level = ilk_wm_max_level(dev_priv);
Pradeep Bhat30789992014-11-04 17:06:45 +00005990
Matt Ropercd1d3ee2018-12-10 13:54:14 -08005991 for_each_plane_id_on_crtc(crtc, plane_id) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005992 struct skl_plane_wm *wm = &out->planes[plane_id];
Pradeep Bhat30789992014-11-04 17:06:45 +00005993
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005994 for (level = 0; level <= max_level; level++) {
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02005995 if (plane_id != PLANE_CURSOR)
5996 val = I915_READ(PLANE_WM(pipe, plane_id, level));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02005997 else
5998 val = I915_READ(CUR_WM(pipe, level));
5999
6000 skl_wm_level_from_reg_val(val, &wm->wm[level]);
6001 }
6002
Ville Syrjäläd5cdfdf52016-11-22 18:01:58 +02006003 if (plane_id != PLANE_CURSOR)
6004 val = I915_READ(PLANE_WM_TRANS(pipe, plane_id));
cpaul@redhat.comd8c0faf2016-10-18 16:09:49 -02006005 else
6006 val = I915_READ(CUR_WM_TRANS(pipe));
6007
6008 skl_wm_level_from_reg_val(val, &wm->trans_wm);
6009 }
Pradeep Bhat30789992014-11-04 17:06:45 +00006010
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006011 if (!crtc->active)
Pradeep Bhat30789992014-11-04 17:06:45 +00006012 return;
Pradeep Bhat30789992014-11-04 17:06:45 +00006013}
6014
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006015void skl_wm_get_hw_state(struct drm_i915_private *dev_priv)
Pradeep Bhat30789992014-11-04 17:06:45 +00006016{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006017 struct intel_crtc *crtc;
Maarten Lankhorstec193642019-06-28 10:55:17 +02006018 struct intel_crtc_state *crtc_state;
Pradeep Bhat30789992014-11-04 17:06:45 +00006019
Stanislav Lisovskiy072fcc32020-02-03 01:06:25 +02006020 skl_ddb_get_hw_state(dev_priv);
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006021 for_each_intel_crtc(&dev_priv->drm, crtc) {
Maarten Lankhorstec193642019-06-28 10:55:17 +02006022 crtc_state = to_intel_crtc_state(crtc->base.state);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04006023
Maarten Lankhorstec193642019-06-28 10:55:17 +02006024 skl_pipe_wm_get_hw_state(crtc, &crtc_state->wm.skl.optimal);
cpaul@redhat.combf9d99a2016-10-14 17:31:55 -04006025 }
Matt Ropera1de91e2016-05-12 07:05:57 -07006026
Ville Syrjäläd06a79d2019-08-21 20:30:29 +03006027 if (dev_priv->active_pipes) {
Matt Roper279e99d2016-05-12 07:06:02 -07006028 /* Fully recompute DDB on first atomic commit */
6029 dev_priv->wm.distrust_bios_wm = true;
Matt Roper279e99d2016-05-12 07:06:02 -07006030 }
Pradeep Bhat30789992014-11-04 17:06:45 +00006031}
6032
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006033static void ilk_pipe_wm_get_hw_state(struct intel_crtc *crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006034{
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006035 struct drm_device *dev = crtc->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01006036 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak820c1982013-12-17 14:46:36 +02006037 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Maarten Lankhorstec193642019-06-28 10:55:17 +02006038 struct intel_crtc_state *crtc_state = to_intel_crtc_state(crtc->base.state);
6039 struct intel_pipe_wm *active = &crtc_state->wm.ilk.optimal;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006040 enum pipe pipe = crtc->pipe;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02006041 static const i915_reg_t wm0_pipe_reg[] = {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006042 [PIPE_A] = WM0_PIPEA_ILK,
6043 [PIPE_B] = WM0_PIPEB_ILK,
6044 [PIPE_C] = WM0_PIPEC_IVB,
6045 };
6046
6047 hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006048
Ville Syrjälä15606532016-05-13 17:55:17 +03006049 memset(active, 0, sizeof(*active));
6050
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006051 active->pipe_enabled = crtc->active;
Ville Syrjälä2a44b762014-03-07 18:32:09 +02006052
6053 if (active->pipe_enabled) {
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006054 u32 tmp = hw->wm_pipe[pipe];
6055
6056 /*
6057 * For active pipes LP0 watermark is marked as
6058 * enabled, and LP1+ watermaks as disabled since
6059 * we can't really reverse compute them in case
6060 * multiple pipes are active.
6061 */
6062 active->wm[0].enable = true;
6063 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
6064 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
6065 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006066 } else {
Tvrtko Ursulin5db94012016-10-13 11:03:10 +01006067 int level, max_level = ilk_wm_max_level(dev_priv);
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006068
6069 /*
6070 * For inactive pipes, all watermark levels
6071 * should be marked as enabled but zeroed,
6072 * which is what we'd compute them to.
6073 */
6074 for (level = 0; level <= max_level; level++)
6075 active->wm[level].enable = true;
6076 }
Matt Roper4e0963c2015-09-24 15:53:15 -07006077
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006078 crtc->wm.active.ilk = *active;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006079}
6080
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006081#define _FW_WM(value, plane) \
6082 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
6083#define _FW_WM_VLV(value, plane) \
6084 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
6085
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006086static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
6087 struct g4x_wm_values *wm)
6088{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006089 u32 tmp;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006090
6091 tmp = I915_READ(DSPFW1);
6092 wm->sr.plane = _FW_WM(tmp, SR);
6093 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
6094 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
6095 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
6096
6097 tmp = I915_READ(DSPFW2);
6098 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
6099 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
6100 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
6101 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
6102 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
6103 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
6104
6105 tmp = I915_READ(DSPFW3);
6106 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
6107 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6108 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
6109 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
6110}
6111
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006112static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
6113 struct vlv_wm_values *wm)
6114{
6115 enum pipe pipe;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006116 u32 tmp;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006117
6118 for_each_pipe(dev_priv, pipe) {
6119 tmp = I915_READ(VLV_DDL(pipe));
6120
Ville Syrjälä1b313892016-11-28 19:37:08 +02006121 wm->ddl[pipe].plane[PLANE_PRIMARY] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006122 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006123 wm->ddl[pipe].plane[PLANE_CURSOR] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006124 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006125 wm->ddl[pipe].plane[PLANE_SPRITE0] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006126 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006127 wm->ddl[pipe].plane[PLANE_SPRITE1] =
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006128 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6129 }
6130
6131 tmp = I915_READ(DSPFW1);
6132 wm->sr.plane = _FW_WM(tmp, SR);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006133 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
6134 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
6135 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006136
6137 tmp = I915_READ(DSPFW2);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006138 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
6139 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
6140 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006141
6142 tmp = I915_READ(DSPFW3);
6143 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6144
6145 if (IS_CHERRYVIEW(dev_priv)) {
6146 tmp = I915_READ(DSPFW7_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006147 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6148 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006149
6150 tmp = I915_READ(DSPFW8_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006151 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
6152 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006153
6154 tmp = I915_READ(DSPFW9_CHV);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006155 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
6156 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006157
6158 tmp = I915_READ(DSPHOWM);
6159 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02006160 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
6161 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
6162 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
6163 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6164 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6165 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6166 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6167 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6168 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006169 } else {
6170 tmp = I915_READ(DSPFW7);
Ville Syrjälä1b313892016-11-28 19:37:08 +02006171 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6172 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006173
6174 tmp = I915_READ(DSPHOWM);
6175 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
Ville Syrjälä1b313892016-11-28 19:37:08 +02006176 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6177 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6178 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6179 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6180 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6181 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006182 }
6183}
6184
6185#undef _FW_WM
6186#undef _FW_WM_VLV
6187
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006188void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006189{
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006190 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
6191 struct intel_crtc *crtc;
6192
6193 g4x_read_wm_values(dev_priv, wm);
6194
6195 wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN;
6196
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006197 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006198 struct intel_crtc_state *crtc_state =
6199 to_intel_crtc_state(crtc->base.state);
6200 struct g4x_wm_state *active = &crtc->wm.active.g4x;
6201 struct g4x_pipe_wm *raw;
6202 enum pipe pipe = crtc->pipe;
6203 enum plane_id plane_id;
6204 int level, max_level;
6205
6206 active->cxsr = wm->cxsr;
6207 active->hpll_en = wm->hpll_en;
6208 active->fbc_en = wm->fbc_en;
6209
6210 active->sr = wm->sr;
6211 active->hpll = wm->hpll;
6212
6213 for_each_plane_id_on_crtc(crtc, plane_id) {
6214 active->wm.plane[plane_id] =
6215 wm->pipe[pipe].plane[plane_id];
6216 }
6217
6218 if (wm->cxsr && wm->hpll_en)
6219 max_level = G4X_WM_LEVEL_HPLL;
6220 else if (wm->cxsr)
6221 max_level = G4X_WM_LEVEL_SR;
6222 else
6223 max_level = G4X_WM_LEVEL_NORMAL;
6224
6225 level = G4X_WM_LEVEL_NORMAL;
6226 raw = &crtc_state->wm.g4x.raw[level];
6227 for_each_plane_id_on_crtc(crtc, plane_id)
6228 raw->plane[plane_id] = active->wm.plane[plane_id];
6229
6230 if (++level > max_level)
6231 goto out;
6232
6233 raw = &crtc_state->wm.g4x.raw[level];
6234 raw->plane[PLANE_PRIMARY] = active->sr.plane;
6235 raw->plane[PLANE_CURSOR] = active->sr.cursor;
6236 raw->plane[PLANE_SPRITE0] = 0;
6237 raw->fbc = active->sr.fbc;
6238
6239 if (++level > max_level)
6240 goto out;
6241
6242 raw = &crtc_state->wm.g4x.raw[level];
6243 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
6244 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
6245 raw->plane[PLANE_SPRITE0] = 0;
6246 raw->fbc = active->hpll.fbc;
6247
6248 out:
6249 for_each_plane_id_on_crtc(crtc, plane_id)
6250 g4x_raw_plane_wm_set(crtc_state, level,
6251 plane_id, USHRT_MAX);
6252 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
6253
6254 crtc_state->wm.g4x.optimal = *active;
6255 crtc_state->wm.g4x.intermediate = *active;
6256
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006257 drm_dbg_kms(&dev_priv->drm,
6258 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
6259 pipe_name(pipe),
6260 wm->pipe[pipe].plane[PLANE_PRIMARY],
6261 wm->pipe[pipe].plane[PLANE_CURSOR],
6262 wm->pipe[pipe].plane[PLANE_SPRITE0]);
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006263 }
6264
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006265 drm_dbg_kms(&dev_priv->drm,
6266 "Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
6267 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
6268 drm_dbg_kms(&dev_priv->drm,
6269 "Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
6270 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
6271 drm_dbg_kms(&dev_priv->drm, "Initial SR=%s HPLL=%s FBC=%s\n",
6272 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006273}
6274
6275void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
6276{
6277 struct intel_plane *plane;
6278 struct intel_crtc *crtc;
6279
6280 mutex_lock(&dev_priv->wm.wm_mutex);
6281
6282 for_each_intel_plane(&dev_priv->drm, plane) {
6283 struct intel_crtc *crtc =
6284 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6285 struct intel_crtc_state *crtc_state =
6286 to_intel_crtc_state(crtc->base.state);
6287 struct intel_plane_state *plane_state =
6288 to_intel_plane_state(plane->base.state);
6289 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
6290 enum plane_id plane_id = plane->id;
6291 int level;
6292
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01006293 if (plane_state->uapi.visible)
Ville Syrjälä04548cb2017-04-21 21:14:29 +03006294 continue;
6295
6296 for (level = 0; level < 3; level++) {
6297 struct g4x_pipe_wm *raw =
6298 &crtc_state->wm.g4x.raw[level];
6299
6300 raw->plane[plane_id] = 0;
6301 wm_state->wm.plane[plane_id] = 0;
6302 }
6303
6304 if (plane_id == PLANE_PRIMARY) {
6305 for (level = 0; level < 3; level++) {
6306 struct g4x_pipe_wm *raw =
6307 &crtc_state->wm.g4x.raw[level];
6308 raw->fbc = 0;
6309 }
6310
6311 wm_state->sr.fbc = 0;
6312 wm_state->hpll.fbc = 0;
6313 wm_state->fbc_en = false;
6314 }
6315 }
6316
6317 for_each_intel_crtc(&dev_priv->drm, crtc) {
6318 struct intel_crtc_state *crtc_state =
6319 to_intel_crtc_state(crtc->base.state);
6320
6321 crtc_state->wm.g4x.intermediate =
6322 crtc_state->wm.g4x.optimal;
6323 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
6324 }
6325
6326 g4x_program_watermarks(dev_priv);
6327
6328 mutex_unlock(&dev_priv->wm.wm_mutex);
6329}
6330
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006331void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006332{
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006333 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
Ville Syrjäläf07d43d2017-03-02 19:14:52 +02006334 struct intel_crtc *crtc;
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006335 u32 val;
6336
6337 vlv_read_wm_values(dev_priv, wm);
6338
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006339 wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
6340 wm->level = VLV_WM_LEVEL_PM2;
6341
6342 if (IS_CHERRYVIEW(dev_priv)) {
Chris Wilson337fa6e2019-04-26 09:17:20 +01006343 vlv_punit_get(dev_priv);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006344
Ville Syrjäläc11b8132018-11-29 19:55:03 +02006345 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006346 if (val & DSP_MAXFIFO_PM5_ENABLE)
6347 wm->level = VLV_WM_LEVEL_PM5;
6348
Ville Syrjälä58590c12015-09-08 21:05:12 +03006349 /*
6350 * If DDR DVFS is disabled in the BIOS, Punit
6351 * will never ack the request. So if that happens
6352 * assume we don't have to enable/disable DDR DVFS
6353 * dynamically. To test that just set the REQ_ACK
6354 * bit to poke the Punit, but don't change the
6355 * HIGH/LOW bits so that we don't actually change
6356 * the current state.
6357 */
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006358 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
Ville Syrjälä58590c12015-09-08 21:05:12 +03006359 val |= FORCE_DDR_FREQ_REQ_ACK;
6360 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
6361
6362 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
6363 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006364 drm_dbg_kms(&dev_priv->drm,
6365 "Punit not acking DDR DVFS request, "
6366 "assuming DDR DVFS is disabled\n");
Ville Syrjälä58590c12015-09-08 21:05:12 +03006367 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
6368 } else {
6369 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
6370 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
6371 wm->level = VLV_WM_LEVEL_DDR_DVFS;
6372 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006373
Chris Wilson337fa6e2019-04-26 09:17:20 +01006374 vlv_punit_put(dev_priv);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006375 }
6376
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006377 for_each_intel_crtc(&dev_priv->drm, crtc) {
Ville Syrjäläff32c542017-03-02 19:14:57 +02006378 struct intel_crtc_state *crtc_state =
6379 to_intel_crtc_state(crtc->base.state);
6380 struct vlv_wm_state *active = &crtc->wm.active.vlv;
6381 const struct vlv_fifo_state *fifo_state =
6382 &crtc_state->wm.vlv.fifo_state;
6383 enum pipe pipe = crtc->pipe;
6384 enum plane_id plane_id;
6385 int level;
6386
6387 vlv_get_fifo_size(crtc_state);
6388
6389 active->num_levels = wm->level + 1;
6390 active->cxsr = wm->cxsr;
6391
Ville Syrjäläff32c542017-03-02 19:14:57 +02006392 for (level = 0; level < active->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006393 struct g4x_pipe_wm *raw =
Ville Syrjäläff32c542017-03-02 19:14:57 +02006394 &crtc_state->wm.vlv.raw[level];
6395
6396 active->sr[level].plane = wm->sr.plane;
6397 active->sr[level].cursor = wm->sr.cursor;
6398
6399 for_each_plane_id_on_crtc(crtc, plane_id) {
6400 active->wm[level].plane[plane_id] =
6401 wm->pipe[pipe].plane[plane_id];
6402
6403 raw->plane[plane_id] =
6404 vlv_invert_wm_value(active->wm[level].plane[plane_id],
6405 fifo_state->plane[plane_id]);
6406 }
6407 }
6408
6409 for_each_plane_id_on_crtc(crtc, plane_id)
6410 vlv_raw_plane_wm_set(crtc_state, level,
6411 plane_id, USHRT_MAX);
6412 vlv_invalidate_wms(crtc, active, level);
6413
6414 crtc_state->wm.vlv.optimal = *active;
Ville Syrjälä4841da52017-03-02 19:14:59 +02006415 crtc_state->wm.vlv.intermediate = *active;
Ville Syrjäläff32c542017-03-02 19:14:57 +02006416
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006417 drm_dbg_kms(&dev_priv->drm,
6418 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
6419 pipe_name(pipe),
6420 wm->pipe[pipe].plane[PLANE_PRIMARY],
6421 wm->pipe[pipe].plane[PLANE_CURSOR],
6422 wm->pipe[pipe].plane[PLANE_SPRITE0],
6423 wm->pipe[pipe].plane[PLANE_SPRITE1]);
Ville Syrjäläff32c542017-03-02 19:14:57 +02006424 }
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006425
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006426 drm_dbg_kms(&dev_priv->drm,
6427 "Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
6428 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
Ville Syrjälä6eb1a682015-06-24 22:00:03 +03006429}
6430
Ville Syrjälä602ae832017-03-02 19:15:02 +02006431void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
6432{
6433 struct intel_plane *plane;
6434 struct intel_crtc *crtc;
6435
6436 mutex_lock(&dev_priv->wm.wm_mutex);
6437
6438 for_each_intel_plane(&dev_priv->drm, plane) {
6439 struct intel_crtc *crtc =
6440 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6441 struct intel_crtc_state *crtc_state =
6442 to_intel_crtc_state(crtc->base.state);
6443 struct intel_plane_state *plane_state =
6444 to_intel_plane_state(plane->base.state);
6445 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
6446 const struct vlv_fifo_state *fifo_state =
6447 &crtc_state->wm.vlv.fifo_state;
6448 enum plane_id plane_id = plane->id;
6449 int level;
6450
Maarten Lankhorstf90a85e2019-10-31 12:26:08 +01006451 if (plane_state->uapi.visible)
Ville Syrjälä602ae832017-03-02 19:15:02 +02006452 continue;
6453
6454 for (level = 0; level < wm_state->num_levels; level++) {
Ville Syrjälä114d7dc2017-04-21 21:14:21 +03006455 struct g4x_pipe_wm *raw =
Ville Syrjälä602ae832017-03-02 19:15:02 +02006456 &crtc_state->wm.vlv.raw[level];
6457
6458 raw->plane[plane_id] = 0;
6459
6460 wm_state->wm[level].plane[plane_id] =
6461 vlv_invert_wm_value(raw->plane[plane_id],
6462 fifo_state->plane[plane_id]);
6463 }
6464 }
6465
6466 for_each_intel_crtc(&dev_priv->drm, crtc) {
6467 struct intel_crtc_state *crtc_state =
6468 to_intel_crtc_state(crtc->base.state);
6469
6470 crtc_state->wm.vlv.intermediate =
6471 crtc_state->wm.vlv.optimal;
6472 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
6473 }
6474
6475 vlv_program_watermarks(dev_priv);
6476
6477 mutex_unlock(&dev_priv->wm.wm_mutex);
6478}
6479
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006480/*
6481 * FIXME should probably kill this and improve
6482 * the real watermark readout/sanitation instead
6483 */
6484static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
6485{
6486 I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN);
6487 I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN);
6488 I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN);
6489
6490 /*
6491 * Don't touch WM1S_LP_EN here.
6492 * Doing so could cause underruns.
6493 */
6494}
6495
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006496void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006497{
Imre Deak820c1982013-12-17 14:46:36 +02006498 struct ilk_wm_values *hw = &dev_priv->wm.hw;
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006499 struct intel_crtc *crtc;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006500
Ville Syrjäläf72b84c2017-11-08 15:35:55 +02006501 ilk_init_lp_watermarks(dev_priv);
6502
Matt Ropercd1d3ee2018-12-10 13:54:14 -08006503 for_each_intel_crtc(&dev_priv->drm, crtc)
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006504 ilk_pipe_wm_get_hw_state(crtc);
6505
6506 hw->wm_lp[0] = I915_READ(WM1_LP_ILK);
6507 hw->wm_lp[1] = I915_READ(WM2_LP_ILK);
6508 hw->wm_lp[2] = I915_READ(WM3_LP_ILK);
6509
6510 hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK);
Tvrtko Ursulin175fded2016-11-16 08:55:42 +00006511 if (INTEL_GEN(dev_priv) >= 7) {
Ville Syrjäläcfa76982014-03-07 18:32:08 +02006512 hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB);
6513 hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB);
6514 }
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006515
Tvrtko Ursulin86527442016-10-13 11:03:00 +01006516 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006517 hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
6518 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Tvrtko Ursulinfd6b8f42016-10-14 10:13:06 +01006519 else if (IS_IVYBRIDGE(dev_priv))
Ville Syrjäläac9545f2013-12-05 15:51:28 +02006520 hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
6521 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
Ville Syrjälä243e6a42013-10-14 14:55:24 +03006522
6523 hw->enable_fbc_wm =
6524 !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS);
6525}
6526
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006527/**
6528 * intel_update_watermarks - update FIFO watermark values based on current modes
Chris Wilson31383412018-02-14 14:03:03 +00006529 * @crtc: the #intel_crtc on which to compute the WM
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006530 *
6531 * Calculate watermark values for the various WM regs based on current mode
6532 * and plane configuration.
6533 *
6534 * There are several cases to deal with here:
6535 * - normal (i.e. non-self-refresh)
6536 * - self-refresh (SR) mode
6537 * - lines are large relative to FIFO size (buffer can hold up to 2)
6538 * - lines are small relative to FIFO size (buffer can hold more than 2
6539 * lines), so need to account for TLB latency
6540 *
6541 * The normal calculation is:
6542 * watermark = dotclock * bytes per pixel * latency
6543 * where latency is platform & configuration dependent (we assume pessimal
6544 * values here).
6545 *
6546 * The SR calculation is:
6547 * watermark = (trunc(latency/line time)+1) * surface width *
6548 * bytes per pixel
6549 * where
6550 * line time = htotal / dotclock
6551 * surface width = hdisplay for normal plane and 64 for cursor
6552 * and latency is assumed to be high, as above.
6553 *
6554 * The final value programmed to the register should always be rounded up,
6555 * and include an extra 2 entries to account for clock crossings.
6556 *
6557 * We don't use the sprite, so we can ignore that. And on Crestline we have
6558 * to set the non-SR watermarks to 8.
6559 */
Ville Syrjälä432081b2016-10-31 22:37:03 +02006560void intel_update_watermarks(struct intel_crtc *crtc)
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006561{
Ville Syrjälä432081b2016-10-31 22:37:03 +02006562 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006563
6564 if (dev_priv->display.update_wm)
Ville Syrjälä46ba6142013-09-10 11:40:40 +03006565 dev_priv->display.update_wm(crtc);
Eugeni Dodonovb445e3b2012-04-16 22:20:35 -03006566}
6567
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306568void intel_enable_ipc(struct drm_i915_private *dev_priv)
6569{
6570 u32 val;
6571
José Roberto de Souzafd847b82018-09-18 13:47:11 -07006572 if (!HAS_IPC(dev_priv))
6573 return;
6574
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306575 val = I915_READ(DISP_ARB_CTL2);
6576
6577 if (dev_priv->ipc_enabled)
6578 val |= DISP_IPC_ENABLE;
6579 else
6580 val &= ~DISP_IPC_ENABLE;
6581
6582 I915_WRITE(DISP_ARB_CTL2, val);
6583}
6584
Ville Syrjäläc91a45f2019-05-03 20:38:07 +03006585static bool intel_can_enable_ipc(struct drm_i915_private *dev_priv)
6586{
6587 /* Display WA #0477 WaDisableIPC: skl */
6588 if (IS_SKYLAKE(dev_priv))
6589 return false;
6590
6591 /* Display WA #1141: SKL:all KBL:all CFL */
6592 if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv))
6593 return dev_priv->dram_info.symmetric_memory;
6594
6595 return true;
6596}
6597
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306598void intel_init_ipc(struct drm_i915_private *dev_priv)
6599{
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306600 if (!HAS_IPC(dev_priv))
6601 return;
6602
Ville Syrjäläc91a45f2019-05-03 20:38:07 +03006603 dev_priv->ipc_enabled = intel_can_enable_ipc(dev_priv);
José Roberto de Souzac9b818d2018-09-18 13:47:13 -07006604
Kumar, Mahesh2503a0f2017-08-17 19:15:28 +05306605 intel_enable_ipc(dev_priv);
6606}
6607
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006608static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006609{
Daniel Vetter3107bd42012-10-31 22:52:31 +01006610 /*
6611 * On Ibex Peak and Cougar Point, we need to disable clock
6612 * gating for the panel power sequencer or it will fail to
6613 * start up when no ports are active.
6614 */
6615 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6616}
6617
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006618static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006619{
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006620 enum pipe pipe;
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006621
Damien Lespiau055e3932014-08-18 13:49:10 +01006622 for_each_pipe(dev_priv, pipe) {
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006623 I915_WRITE(DSPCNTR(pipe),
6624 I915_READ(DSPCNTR(pipe)) |
6625 DISPPLANE_TRICKLE_FEED_DISABLE);
Ville Syrjäläb12ce1d2015-05-26 20:27:23 +03006626
6627 I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe)));
6628 POSTING_READ(DSPSURF(pipe));
Ville Syrjälä0e088b82013-06-07 10:47:04 +03006629 }
6630}
6631
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006632static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006633{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006634 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006635
Damien Lespiauf1e8fa52013-06-07 17:41:09 +01006636 /*
6637 * Required for FBC
6638 * WaFbcDisableDpfcClockGating:ilk
6639 */
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006640 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6641 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6642 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006643
6644 I915_WRITE(PCH_3DCGDIS0,
6645 MARIUNIT_CLOCK_GATE_DISABLE |
6646 SVSMUNIT_CLOCK_GATE_DISABLE);
6647 I915_WRITE(PCH_3DCGDIS1,
6648 VFMUNIT_CLOCK_GATE_DISABLE);
6649
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006650 /*
6651 * According to the spec the following bits should be set in
6652 * order to enable memory self-refresh
6653 * The bit 22/21 of 0x42004
6654 * The bit 5 of 0x42020
6655 * The bit 15 of 0x45000
6656 */
6657 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6658 (I915_READ(ILK_DISPLAY_CHICKEN2) |
6659 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006660 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006661 I915_WRITE(DISP_ARB_CTL,
6662 (I915_READ(DISP_ARB_CTL) |
6663 DISP_FBC_WM_DIS));
Ville Syrjälä017636c2013-12-05 15:51:37 +02006664
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006665 /*
6666 * Based on the document from hardware guys the following bits
6667 * should be set unconditionally in order to enable FBC.
6668 * The bit 22 of 0x42000
6669 * The bit 22 of 0x42004
6670 * The bit 7,8,9 of 0x42020.
6671 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01006672 if (IS_IRONLAKE_M(dev_priv)) {
Damien Lespiau4bb35332013-06-14 15:23:24 +01006673 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006674 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6675 I915_READ(ILK_DISPLAY_CHICKEN1) |
6676 ILK_FBCQ_DIS);
6677 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6678 I915_READ(ILK_DISPLAY_CHICKEN2) |
6679 ILK_DPARB_GATE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006680 }
6681
Damien Lespiau4d47e4f2012-10-19 17:55:42 +01006682 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
6683
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006684 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6685 I915_READ(ILK_DISPLAY_CHICKEN2) |
6686 ILK_ELPIN_409_SELECT);
6687 I915_WRITE(_3D_CHICKEN2,
6688 _3D_CHICKEN2_WM_READ_PIPELINED << 16 |
6689 _3D_CHICKEN2_WM_READ_PIPELINED);
Daniel Vetter4358a372012-10-18 11:49:51 +02006690
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006691 /* WaDisableRenderCachePipelinedFlush:ilk */
Daniel Vetter4358a372012-10-18 11:49:51 +02006692 I915_WRITE(CACHE_MODE_0,
6693 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Daniel Vetter3107bd42012-10-31 22:52:31 +01006694
Akash Goel4e046322014-04-04 17:14:38 +05306695 /* WaDisable_RenderCache_OperationalFlush:ilk */
6696 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6697
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006698 g4x_disable_trickle_feed(dev_priv);
Ville Syrjäläbdad2b22013-06-07 10:47:03 +03006699
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006700 ibx_init_clock_gating(dev_priv);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006701}
6702
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006703static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetter3107bd42012-10-31 22:52:31 +01006704{
Ville Syrjäläd048a262019-08-21 20:30:31 +03006705 enum pipe pipe;
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006706 u32 val;
Daniel Vetter3107bd42012-10-31 22:52:31 +01006707
6708 /*
6709 * On Ibex Peak and Cougar Point, we need to disable clock
6710 * gating for the panel power sequencer or it will fail to
6711 * start up when no ports are active.
6712 */
Jesse Barnescd664072013-10-02 10:34:19 -07006713 I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6714 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6715 PCH_CPUNIT_CLOCK_GATE_DISABLE);
Daniel Vetter3107bd42012-10-31 22:52:31 +01006716 I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) |
6717 DPLS_EDP_PPS_FIX_DIS);
Takashi Iwai335c07b2012-12-11 11:46:29 +01006718 /* The below fixes the weird display corruption, a few pixels shifted
6719 * downward, on (only) LVDS of some HP laptops with IVY.
6720 */
Damien Lespiau055e3932014-08-18 13:49:10 +01006721 for_each_pipe(dev_priv, pipe) {
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006722 val = I915_READ(TRANS_CHICKEN2(pipe));
6723 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6724 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Rodrigo Vivi41aa3442013-05-09 20:03:18 -03006725 if (dev_priv->vbt.fdi_rx_polarity_inverted)
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006726 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
Paulo Zanonidc4bd2d2013-04-08 15:48:08 -03006727 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6728 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
Paulo Zanoni3f704fa2013-04-08 15:48:07 -03006729 I915_WRITE(TRANS_CHICKEN2(pipe), val);
6730 }
Daniel Vetter3107bd42012-10-31 22:52:31 +01006731 /* WADP0ClockGatingDisable */
Damien Lespiau055e3932014-08-18 13:49:10 +01006732 for_each_pipe(dev_priv, pipe) {
Daniel Vetter3107bd42012-10-31 22:52:31 +01006733 I915_WRITE(TRANS_CHICKEN1(pipe),
6734 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6735 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006736}
6737
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006738static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006739{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006740 u32 tmp;
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006741
6742 tmp = I915_READ(MCH_SSKPD);
Daniel Vetterdf662a22014-08-04 11:17:25 +02006743 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
Wambui Karugaf8d18d52020-01-07 18:13:30 +03006744 drm_dbg_kms(&dev_priv->drm,
6745 "Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
6746 tmp);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006747}
6748
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006749static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006750{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006751 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006752
Damien Lespiau231e54f2012-10-19 17:55:41 +01006753 I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006754
6755 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6756 I915_READ(ILK_DISPLAY_CHICKEN2) |
6757 ILK_ELPIN_409_SELECT);
6758
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01006759 /* WaDisableHiZPlanesWhenMSAAEnabled:snb */
Daniel Vetter42839082012-12-14 23:38:28 +01006760 I915_WRITE(_3D_CHICKEN,
6761 _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB));
6762
Akash Goel4e046322014-04-04 17:14:38 +05306763 /* WaDisable_RenderCache_OperationalFlush:snb */
6764 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
6765
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006766 /*
6767 * BSpec recoomends 8x4 when MSAA is used,
6768 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02006769 *
6770 * Note that PS/WM thread counts depend on the WIZ hashing
6771 * disable bit, which we don't touch here, but it's good
6772 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006773 */
6774 I915_WRITE(GEN6_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00006775 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjälä8d85d272014-02-04 21:59:15 +02006776
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006777 I915_WRITE(CACHE_MODE_0,
Daniel Vetter50743292012-04-26 22:02:54 +02006778 _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006779
6780 I915_WRITE(GEN6_UCGCTL1,
6781 I915_READ(GEN6_UCGCTL1) |
6782 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
6783 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
6784
6785 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
6786 * gating disable must be set. Failure to set it results in
6787 * flickering pixels due to Z write ordering failures after
6788 * some amount of runtime in the Mesa "fire" demo, and Unigine
6789 * Sanctuary and Tropics, and apparently anything else with
6790 * alpha test or pixel discard.
6791 *
6792 * According to the spec, bit 11 (RCCUNIT) must also be set,
6793 * but we didn't debug actual testcases to find it out.
Jesse Barnes0f846f82012-06-14 11:04:47 -07006794 *
Ville Syrjäläef593182014-01-22 21:32:47 +02006795 * WaDisableRCCUnitClockGating:snb
6796 * WaDisableRCPBUnitClockGating:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006797 */
6798 I915_WRITE(GEN6_UCGCTL2,
6799 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
6800 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
6801
Ville Syrjälä5eb146d2014-02-04 21:59:16 +02006802 /* WaStripsFansDisableFastClipPerformanceFix:snb */
Ville Syrjälä743b57d2014-02-04 21:59:17 +02006803 I915_WRITE(_3D_CHICKEN3,
6804 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006805
6806 /*
Ville Syrjäläe927ecd2014-02-04 21:59:18 +02006807 * Bspec says:
6808 * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and
6809 * 3DSTATE_SF number of SF output attributes is more than 16."
6810 */
6811 I915_WRITE(_3D_CHICKEN3,
6812 _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH));
6813
6814 /*
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006815 * According to the spec the following bits should be
6816 * set in order to enable memory self-refresh and fbc:
6817 * The bit21 and bit22 of 0x42000
6818 * The bit21 and bit22 of 0x42004
6819 * The bit5 and bit7 of 0x42020
6820 * The bit14 of 0x70180
6821 * The bit14 of 0x71180
Damien Lespiau4bb35332013-06-14 15:23:24 +01006822 *
6823 * WaFbcAsynchFlipDisableFbcQueue:snb
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006824 */
6825 I915_WRITE(ILK_DISPLAY_CHICKEN1,
6826 I915_READ(ILK_DISPLAY_CHICKEN1) |
6827 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
6828 I915_WRITE(ILK_DISPLAY_CHICKEN2,
6829 I915_READ(ILK_DISPLAY_CHICKEN2) |
6830 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
Damien Lespiau231e54f2012-10-19 17:55:41 +01006831 I915_WRITE(ILK_DSPCLK_GATE_D,
6832 I915_READ(ILK_DSPCLK_GATE_D) |
6833 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
6834 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006835
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006836 g4x_disable_trickle_feed(dev_priv);
Ben Widawskyf8f2ac92012-10-03 19:34:24 -07006837
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006838 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01006839
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006840 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006841}
6842
6843static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv)
6844{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006845 u32 reg = I915_READ(GEN7_FF_THREAD_MODE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006846
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006847 /*
Ville Syrjälä46680e02014-01-22 21:33:01 +02006848 * WaVSThreadDispatchOverride:ivb,vlv
Ville Syrjälä3aad9052014-01-22 21:32:59 +02006849 *
6850 * This actually overrides the dispatch
6851 * mode for all thread types.
6852 */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03006853 reg &= ~GEN7_FF_SCHED_MASK;
6854 reg |= GEN7_FF_TS_SCHED_HW;
6855 reg |= GEN7_FF_VS_SCHED_HW;
6856 reg |= GEN7_FF_DS_SCHED_HW;
6857
6858 I915_WRITE(GEN7_FF_THREAD_MODE, reg);
6859}
6860
Ville Syrjälä46f16e62016-10-31 22:37:22 +02006861static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006862{
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006863 /*
6864 * TODO: this bit should only be enabled when really needed, then
6865 * disabled when not needed anymore in order to save power.
6866 */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006867 if (HAS_PCH_LPT_LP(dev_priv))
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006868 I915_WRITE(SOUTH_DSPCLK_GATE_D,
6869 I915_READ(SOUTH_DSPCLK_GATE_D) |
6870 PCH_LP_PARTITION_LEVEL_DISABLE);
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006871
6872 /* WADPOClockGatingDisable:hsw */
Ville Syrjälä36c0d0c2015-09-18 20:03:31 +03006873 I915_WRITE(TRANS_CHICKEN1(PIPE_A),
6874 I915_READ(TRANS_CHICKEN1(PIPE_A)) |
Paulo Zanoni0a790cd2013-04-17 18:15:49 -03006875 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
Paulo Zanoni17a303e2012-11-20 15:12:07 -02006876}
6877
Ville Syrjälä712bf362016-10-31 22:37:23 +02006878static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03006879{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01006880 if (HAS_PCH_LPT_LP(dev_priv)) {
Jani Nikula5ce9a6492019-01-18 14:01:20 +02006881 u32 val = I915_READ(SOUTH_DSPCLK_GATE_D);
Imre Deak7d708ee2013-04-17 14:04:50 +03006882
6883 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
6884 I915_WRITE(SOUTH_DSPCLK_GATE_D, val);
6885 }
6886}
6887
Imre Deak450174f2016-05-03 15:54:21 +03006888static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
6889 int general_prio_credits,
6890 int high_prio_credits)
6891{
6892 u32 misccpctl;
Oscar Mateo930a7842017-10-17 13:25:45 -07006893 u32 val;
Imre Deak450174f2016-05-03 15:54:21 +03006894
6895 /* WaTempDisableDOPClkGating:bdw */
6896 misccpctl = I915_READ(GEN7_MISCCPCTL);
6897 I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
6898
Oscar Mateo930a7842017-10-17 13:25:45 -07006899 val = I915_READ(GEN8_L3SQCREG1);
6900 val &= ~L3_PRIO_CREDITS_MASK;
6901 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
6902 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
6903 I915_WRITE(GEN8_L3SQCREG1, val);
Imre Deak450174f2016-05-03 15:54:21 +03006904
6905 /*
6906 * Wait at least 100 clocks before re-enabling clock gating.
6907 * See the definition of L3SQCREG1 in BSpec.
6908 */
6909 POSTING_READ(GEN8_L3SQCREG1);
6910 udelay(1);
6911 I915_WRITE(GEN7_MISCCPCTL, misccpctl);
6912}
6913
Oscar Mateod65dc3e2018-05-08 14:29:24 -07006914static void icl_init_clock_gating(struct drm_i915_private *dev_priv)
6915{
6916 /* This is not an Wa. Enable to reduce Sampler power */
6917 I915_WRITE(GEN10_DFR_RATIO_EN_AND_CHICKEN,
6918 I915_READ(GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE);
Radhakrishna Sripada622b3f62018-10-30 01:45:01 -07006919
Matt Atwood6f4194c2020-01-13 23:11:28 -05006920 /*Wa_14010594013:icl, ehl */
6921 intel_uncore_rmw(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1,
6922 0, CNL_DELAY_PMRSP);
Oscar Mateod65dc3e2018-05-08 14:29:24 -07006923}
6924
Michel Thierry5d869232019-08-23 01:20:34 -07006925static void tgl_init_clock_gating(struct drm_i915_private *dev_priv)
6926{
6927 u32 vd_pg_enable = 0;
6928 unsigned int i;
6929
6930 /* This is not a WA. Enable VD HCP & MFX_ENC powergate */
6931 for (i = 0; i < I915_MAX_VCS; i++) {
6932 if (HAS_ENGINE(dev_priv, _VCS(i)))
6933 vd_pg_enable |= VDN_HCP_POWERGATE_ENABLE(i) |
6934 VDN_MFX_POWERGATE_ENABLE(i);
6935 }
6936
6937 I915_WRITE(POWERGATE_ENABLE,
6938 I915_READ(POWERGATE_ENABLE) | vd_pg_enable);
Radhakrishna Sripadaf78d5da2020-01-09 14:37:27 -08006939
6940 /* Wa_1409825376:tgl (pre-prod)*/
6941 if (IS_TGL_REVID(dev_priv, TGL_REVID_A0, TGL_REVID_A0))
6942 I915_WRITE(GEN9_CLKGATE_DIS_3, I915_READ(GEN9_CLKGATE_DIS_3) |
6943 TGL_VRH_GATING_DIS);
Matt Atwoodf9d77422020-04-15 15:35:35 -04006944
6945 /* Wa_14011059788:tgl */
6946 intel_uncore_rmw(&dev_priv->uncore, GEN10_DFR_RATIO_EN_AND_CHICKEN,
6947 0, DFR_DISABLE);
Michel Thierry5d869232019-08-23 01:20:34 -07006948}
6949
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006950static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
6951{
6952 if (!HAS_PCH_CNP(dev_priv))
6953 return;
6954
Rodrigo Vivi470e7c62018-03-05 17:28:12 -08006955 /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */
Rodrigo Vivi4cc6feb2017-09-08 16:45:33 -07006956 I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) |
6957 CNP_PWM_CGE_GATING_DISABLE);
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006958}
6959
Rodrigo Vivi91200c02017-08-28 22:20:26 -07006960static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006961{
Rodrigo Vivi8f067832017-09-05 12:30:13 -07006962 u32 val;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006963 cnp_init_clock_gating(dev_priv);
6964
Rodrigo Vivi1a25db62017-08-15 16:16:51 -07006965 /* This is not an Wa. Enable for better image quality */
6966 I915_WRITE(_3D_CHICKEN3,
6967 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
6968
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006969 /* WaEnableChickenDCPR:cnl */
6970 I915_WRITE(GEN8_CHICKEN_DCPR_1,
6971 I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
6972
6973 /* WaFbcWakeMemOn:cnl */
6974 I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) |
6975 DISP_FBC_MEMORY_WAKE);
6976
Chris Wilson34991bd2017-11-11 10:03:36 +00006977 val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE);
6978 /* ReadHitWriteOnlyDisable:cnl */
6979 val |= RCCUNIT_CLKGATE_DIS;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006980 /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */
6981 if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0))
Chris Wilson34991bd2017-11-11 10:03:36 +00006982 val |= SARBUNIT_CLKGATE_DIS;
6983 I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val);
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006984
Rodrigo Vivia4713c52018-03-07 14:09:12 -08006985 /* Wa_2201832410:cnl */
6986 val = I915_READ(SUBSLICE_UNIT_LEVEL_CLKGATE);
6987 val |= GWUNIT_CLKGATE_DIS;
6988 I915_WRITE(SUBSLICE_UNIT_LEVEL_CLKGATE, val);
6989
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006990 /* WaDisableVFclkgate:cnl */
Rodrigo Vivi14941b62018-03-05 17:20:00 -08006991 /* WaVFUnitClockGatingDisable:cnl */
Rafael Antognolli01ab0f92017-12-15 16:11:16 -08006992 val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE);
6993 val |= VFUNIT_CLKGATE_DIS;
6994 I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val);
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07006995}
6996
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07006997static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
6998{
6999 cnp_init_clock_gating(dev_priv);
7000 gen9_init_clock_gating(dev_priv);
7001
7002 /* WaFbcNukeOnHostModify:cfl */
7003 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7004 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
7005}
7006
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007007static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007008{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007009 gen9_init_clock_gating(dev_priv);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007010
7011 /* WaDisableSDEUnitClockGating:kbl */
7012 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7013 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7014 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala8aeb7f62016-06-07 17:19:05 +03007015
7016 /* WaDisableGamClockGating:kbl */
7017 if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0))
7018 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7019 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007020
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007021 /* WaFbcNukeOnHostModify:kbl */
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007022 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7023 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Mika Kuoppala9498dba2016-06-07 17:19:01 +03007024}
7025
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007026static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007027{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007028 gen9_init_clock_gating(dev_priv);
Mika Kuoppala44fff992016-06-07 17:19:09 +03007029
7030 /* WAC6entrylatency:skl */
7031 I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) |
7032 FBC_LLC_FULLY_OPEN);
Mika Kuoppala031cd8c2016-06-07 17:19:18 +03007033
7034 /* WaFbcNukeOnHostModify:skl */
7035 I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) |
7036 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
Daniel Vetterdc00b6a2016-05-19 09:14:20 +02007037}
7038
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007039static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007040{
Damien Lespiau07d27e22014-03-03 17:31:46 +00007041 enum pipe pipe;
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007042
Ben Widawskyab57fff2013-12-12 15:28:04 -08007043 /* WaSwitchSolVfFArbitrationPriority:bdw */
Ben Widawsky50ed5fb2013-11-02 21:07:40 -07007044 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007045
Ben Widawskyab57fff2013-12-12 15:28:04 -08007046 /* WaPsrDPAMaskVBlankInSRD:bdw */
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007047 I915_WRITE(CHICKEN_PAR1_1,
7048 I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7049
Ben Widawskyab57fff2013-12-12 15:28:04 -08007050 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
Damien Lespiau055e3932014-08-18 13:49:10 +01007051 for_each_pipe(dev_priv, pipe) {
Damien Lespiau07d27e22014-03-03 17:31:46 +00007052 I915_WRITE(CHICKEN_PIPESL_1(pipe),
Ville Syrjäläc7c65622014-03-05 13:05:45 +02007053 I915_READ(CHICKEN_PIPESL_1(pipe)) |
Ville Syrjälä8f670bb2014-03-05 13:05:47 +02007054 BDW_DPRS_MASK_VBLANK_SRD);
Ben Widawskyfe4ab3c2013-11-02 21:07:54 -07007055 }
Ben Widawsky63801f22013-12-12 17:26:03 -08007056
Ben Widawskyab57fff2013-12-12 15:28:04 -08007057 /* WaVSRefCountFullforceMissDisable:bdw */
7058 /* WaDSRefCountFullforceMissDisable:bdw */
7059 I915_WRITE(GEN7_FF_THREAD_MODE,
7060 I915_READ(GEN7_FF_THREAD_MODE) &
7061 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjälä36075a42014-02-04 21:59:21 +02007062
Ville Syrjälä295e8bb2014-02-27 21:59:01 +02007063 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7064 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä4f1ca9e2014-02-27 21:59:02 +02007065
7066 /* WaDisableSDEUnitClockGating:bdw */
7067 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7068 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Damien Lespiau5d708682014-03-26 18:41:51 +00007069
Imre Deak450174f2016-05-03 15:54:21 +03007070 /* WaProgramL3SqcReg1Default:bdw */
7071 gen8_set_l3sqc_credits(dev_priv, 30, 2);
Ville Syrjälä4d487cf2015-05-19 20:32:56 +03007072
Mika Kuoppala17e0adf2016-06-07 17:19:02 +03007073 /* WaKVMNotificationOnConfigChange:bdw */
7074 I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1)
7075 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7076
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007077 lpt_init_clock_gating(dev_priv);
Robert Bragg9cc19732017-02-12 13:32:52 +00007078
7079 /* WaDisableDopClockGating:bdw
7080 *
7081 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7082 * clock gating.
7083 */
7084 I915_WRITE(GEN6_UCGCTL1,
7085 I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
Ben Widawsky1020a5c2013-11-02 21:07:06 -07007086}
7087
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007088static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007089{
Francisco Jerezf3fc4882013-10-02 15:53:16 -07007090 /* L3 caching of data atomics doesn't work -- disable it. */
7091 I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE);
7092 I915_WRITE(HSW_ROW_CHICKEN3,
7093 _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE));
7094
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007095 /* This is required by WaCatErrorRejectionIssue:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007096 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7097 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7098 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7099
Ville Syrjäläe36ea7f2014-01-22 21:33:00 +02007100 /* WaVSRefCountFullforceMissDisable:hsw */
7101 I915_WRITE(GEN7_FF_THREAD_MODE,
7102 I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007103
Akash Goel4e046322014-04-04 17:14:38 +05307104 /* WaDisable_RenderCache_OperationalFlush:hsw */
7105 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7106
Chia-I Wufe27c602014-01-28 13:29:33 +08007107 /* enable HiZ Raw Stall Optimization */
7108 I915_WRITE(CACHE_MODE_0_GEN7,
7109 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7110
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007111 /* WaDisable4x2SubspanOptimization:hsw */
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007112 I915_WRITE(CACHE_MODE_1,
7113 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Eugeni Dodonov1544d9d2012-07-02 11:51:10 -03007114
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007115 /*
7116 * BSpec recommends 8x4 when MSAA is used,
7117 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007118 *
7119 * Note that PS/WM thread counts depend on the WIZ hashing
7120 * disable bit, which we don't touch here, but it's good
7121 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007122 */
7123 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007124 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa12c4962014-02-04 21:59:20 +02007125
Kenneth Graunke94411592014-12-31 16:23:00 -08007126 /* WaSampleCChickenBitEnable:hsw */
7127 I915_WRITE(HALF_SLICE_CHICKEN3,
7128 _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE));
7129
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007130 /* WaSwitchSolVfFArbitrationPriority:hsw */
Ben Widawskye3dff582013-03-20 14:49:14 -07007131 I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7132
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007133 lpt_init_clock_gating(dev_priv);
Eugeni Dodonovcad2a2d2012-07-02 11:51:09 -03007134}
7135
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007136static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007137{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02007138 u32 snpcr;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007139
Damien Lespiau231e54f2012-10-19 17:55:41 +01007140 I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007141
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007142 /* WaDisableEarlyCull:ivb */
Jesse Barnes87f80202012-10-02 17:43:41 -05007143 I915_WRITE(_3D_CHICKEN3,
7144 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7145
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007146 /* WaDisableBackToBackFlipFix:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007147 I915_WRITE(IVB_CHICKEN3,
7148 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7149 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7150
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007151 /* WaDisablePSDDualDispatchEnable:ivb */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007152 if (IS_IVB_GT1(dev_priv))
Jesse Barnes12f33822012-10-25 12:15:45 -07007153 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
7154 _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007155
Akash Goel4e046322014-04-04 17:14:38 +05307156 /* WaDisable_RenderCache_OperationalFlush:ivb */
7157 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7158
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007159 /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007160 I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1,
7161 GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC);
7162
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007163 /* WaApplyL3ControlAndL3ChickenMode:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007164 I915_WRITE(GEN7_L3CNTLREG1,
7165 GEN7_WA_FOR_GEN7_L3_CONTROL);
7166 I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER,
Jesse Barnes8ab43972012-10-25 12:15:42 -07007167 GEN7_WA_L3_CHICKEN_MODE);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007168 if (IS_IVB_GT1(dev_priv))
Jesse Barnes8ab43972012-10-25 12:15:42 -07007169 I915_WRITE(GEN7_ROW_CHICKEN2,
7170 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007171 else {
7172 /* must write both registers */
7173 I915_WRITE(GEN7_ROW_CHICKEN2,
7174 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Jesse Barnes8ab43972012-10-25 12:15:42 -07007175 I915_WRITE(GEN7_ROW_CHICKEN2_GT2,
7176 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
Ville Syrjälä412236c2014-01-22 21:32:44 +02007177 }
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007178
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007179 /* WaForceL3Serialization:ivb */
Jesse Barnes61939d92012-10-02 17:43:38 -05007180 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7181 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7182
Ville Syrjälä1b80a19a2014-01-22 21:32:53 +02007183 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007184 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007185 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007186 */
7187 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä28acf3b2014-01-22 21:32:48 +02007188 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007189
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007190 /* This is required by WaCatErrorRejectionIssue:ivb */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007191 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7192 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7193 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7194
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007195 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007196
7197 gen7_setup_fixed_func_scheduler(dev_priv);
Daniel Vetter97e19302012-04-24 16:00:21 +02007198
Chris Wilson22721342014-03-04 09:41:43 +00007199 if (0) { /* causes HiZ corruption on ivb:gt1 */
7200 /* enable HiZ Raw Stall Optimization */
7201 I915_WRITE(CACHE_MODE_0_GEN7,
7202 _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE));
7203 }
Chia-I Wu116f2b62014-01-28 13:29:34 +08007204
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007205 /* WaDisable4x2SubspanOptimization:ivb */
Daniel Vetter97e19302012-04-24 16:00:21 +02007206 I915_WRITE(CACHE_MODE_1,
7207 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Ben Widawsky20848222012-05-04 18:58:59 -07007208
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007209 /*
7210 * BSpec recommends 8x4 when MSAA is used,
7211 * however in practice 16x4 seems fastest.
Ville Syrjäläc5c98a52014-02-05 12:43:47 +02007212 *
7213 * Note that PS/WM thread counts depend on the WIZ hashing
7214 * disable bit, which we don't touch here, but it's good
7215 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007216 */
7217 I915_WRITE(GEN7_GT_MODE,
Damien Lespiau98533252014-12-08 17:33:51 +00007218 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
Ville Syrjäläa607c1a2014-02-04 21:59:19 +02007219
Ben Widawsky20848222012-05-04 18:58:59 -07007220 snpcr = I915_READ(GEN6_MBCUNIT_SNPCR);
7221 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7222 snpcr |= GEN6_MBC_SNPCR_MED;
7223 I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr);
Daniel Vetter3107bd42012-10-31 22:52:31 +01007224
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007225 if (!HAS_PCH_NOP(dev_priv))
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007226 cpt_init_clock_gating(dev_priv);
Daniel Vetter1d7aaa02013-02-09 21:03:42 +01007227
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007228 gen6_check_mch_setup(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007229}
7230
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007231static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007232{
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007233 /* WaDisableEarlyCull:vlv */
Jesse Barnes87f80202012-10-02 17:43:41 -05007234 I915_WRITE(_3D_CHICKEN3,
7235 _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL));
7236
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007237 /* WaDisableBackToBackFlipFix:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007238 I915_WRITE(IVB_CHICKEN3,
7239 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7240 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7241
Ville Syrjäläfad7d362014-01-22 21:32:39 +02007242 /* WaPsdDispatchEnable:vlv */
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007243 /* WaDisablePSDDualDispatchEnable:vlv */
Jesse Barnes12f33822012-10-25 12:15:45 -07007244 I915_WRITE(GEN7_HALF_SLICE_CHICKEN1,
Jesse Barnesd3bc0302013-03-08 10:45:51 -08007245 _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP |
7246 GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE));
Jesse Barnes12f33822012-10-25 12:15:45 -07007247
Akash Goel4e046322014-04-04 17:14:38 +05307248 /* WaDisable_RenderCache_OperationalFlush:vlv */
7249 I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7250
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007251 /* WaForceL3Serialization:vlv */
Jesse Barnes61939d92012-10-02 17:43:38 -05007252 I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) &
7253 ~L3SQ_URB_READ_CAM_MATCH_DISABLE);
7254
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007255 /* WaDisableDopClockGating:vlv */
Jesse Barnes8ab43972012-10-25 12:15:42 -07007256 I915_WRITE(GEN7_ROW_CHICKEN2,
7257 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7258
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007259 /* This is required by WaCatErrorRejectionIssue:vlv */
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007260 I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7261 I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7262 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7263
Ville Syrjälä46680e02014-01-22 21:33:01 +02007264 gen7_setup_fixed_func_scheduler(dev_priv);
7265
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007266 /*
Jesse Barnes0f846f82012-06-14 11:04:47 -07007267 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007268 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
Jesse Barnes0f846f82012-06-14 11:04:47 -07007269 */
7270 I915_WRITE(GEN6_UCGCTL2,
Ville Syrjälä3c0edae2014-01-22 21:32:56 +02007271 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
Jesse Barnes0f846f82012-06-14 11:04:47 -07007272
Akash Goelc98f5062014-03-24 23:00:07 +05307273 /* WaDisableL3Bank2xClockGate:vlv
7274 * Disabling L3 clock gating- MMIO 940c[25] = 1
7275 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7276 I915_WRITE(GEN7_UCGCTL4,
7277 I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
Jesse Barnese3f33d42012-06-14 11:04:50 -07007278
Ville Syrjäläafd58e72014-01-22 21:33:03 +02007279 /*
7280 * BSpec says this must be set, even though
7281 * WaDisable4x2SubspanOptimization isn't listed for VLV.
7282 */
Daniel Vetter6b26c862012-04-24 14:04:12 +02007283 I915_WRITE(CACHE_MODE_1,
7284 _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE));
Jesse Barnes79831172012-06-20 10:53:12 -07007285
7286 /*
Ville Syrjäläda2518f2015-01-21 19:38:01 +02007287 * BSpec recommends 8x4 when MSAA is used,
7288 * however in practice 16x4 seems fastest.
7289 *
7290 * Note that PS/WM thread counts depend on the WIZ hashing
7291 * disable bit, which we don't touch here, but it's good
7292 * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM).
7293 */
7294 I915_WRITE(GEN7_GT_MODE,
7295 _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4));
7296
7297 /*
Ville Syrjälä031994e2014-01-22 21:32:46 +02007298 * WaIncreaseL3CreditsForVLVB0:vlv
7299 * This is the hardware default actually.
7300 */
7301 I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE);
7302
7303 /*
Damien Lespiauecdb4eb72013-05-03 18:48:10 +01007304 * WaDisableVLVClockGating_VBIIssue:vlv
Jesse Barnes2d809572012-10-25 12:15:44 -07007305 * Disable clock gating on th GCFG unit to prevent a delay
7306 * in the reporting of vblank events.
7307 */
Ville Syrjälä7a0d1ee2014-01-22 21:33:04 +02007308 I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007309}
7310
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007311static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007312{
Ville Syrjälä232ce332014-04-09 13:28:35 +03007313 /* WaVSRefCountFullforceMissDisable:chv */
7314 /* WaDSRefCountFullforceMissDisable:chv */
7315 I915_WRITE(GEN7_FF_THREAD_MODE,
7316 I915_READ(GEN7_FF_THREAD_MODE) &
7317 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
Ville Syrjäläacea6f92014-04-09 13:28:36 +03007318
7319 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7320 I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL,
7321 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
Ville Syrjälä08466972014-04-09 13:28:37 +03007322
7323 /* WaDisableCSUnitClockGating:chv */
7324 I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) |
7325 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
Ville Syrjäläc6317802014-04-09 13:28:38 +03007326
7327 /* WaDisableSDEUnitClockGating:chv */
7328 I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) |
7329 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
Ville Syrjälä6d50b062015-05-19 20:32:57 +03007330
7331 /*
Imre Deak450174f2016-05-03 15:54:21 +03007332 * WaProgramL3SqcReg1Default:chv
7333 * See gfxspecs/Related Documents/Performance Guide/
7334 * LSQC Setting Recommendations.
7335 */
7336 gen8_set_l3sqc_credits(dev_priv, 38, 2);
Ville Syrjäläa4565da2014-04-09 13:28:10 +03007337}
7338
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007339static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007340{
Jani Nikula5ce9a6492019-01-18 14:01:20 +02007341 u32 dspclk_gate;
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007342
7343 I915_WRITE(RENCLK_GATE_D1, 0);
7344 I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7345 GS_UNIT_CLOCK_GATE_DISABLE |
7346 CL_UNIT_CLOCK_GATE_DISABLE);
7347 I915_WRITE(RAMCLK_GATE_D, 0);
7348 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7349 OVRUNIT_CLOCK_GATE_DISABLE |
7350 OVCUNIT_CLOCK_GATE_DISABLE;
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01007351 if (IS_GM45(dev_priv))
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007352 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7353 I915_WRITE(DSPCLK_GATE_D, dspclk_gate);
Daniel Vetter4358a372012-10-18 11:49:51 +02007354
7355 /* WaDisableRenderCachePipelinedFlush */
7356 I915_WRITE(CACHE_MODE_0,
7357 _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE));
Ville Syrjäläde1aa622013-06-07 10:47:01 +03007358
Akash Goel4e046322014-04-04 17:14:38 +05307359 /* WaDisable_RenderCache_OperationalFlush:g4x */
7360 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
7361
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007362 g4x_disable_trickle_feed(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007363}
7364
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007365static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007366{
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +01007367 struct intel_uncore *uncore = &dev_priv->uncore;
7368
7369 intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7370 intel_uncore_write(uncore, RENCLK_GATE_D2, 0);
7371 intel_uncore_write(uncore, DSPCLK_GATE_D, 0);
7372 intel_uncore_write(uncore, RAMCLK_GATE_D, 0);
7373 intel_uncore_write16(uncore, DEUC, 0);
7374 intel_uncore_write(uncore,
7375 MI_ARB_STATE,
7376 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307377
7378 /* WaDisable_RenderCache_OperationalFlush:gen4 */
Tvrtko Ursulin4f5fd912019-06-11 11:45:48 +01007379 intel_uncore_write(uncore,
7380 CACHE_MODE_0,
7381 _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007382}
7383
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007384static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007385{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007386 I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7387 I965_RCC_CLOCK_GATE_DISABLE |
7388 I965_RCPB_CLOCK_GATE_DISABLE |
7389 I965_ISC_CLOCK_GATE_DISABLE |
7390 I965_FBC_CLOCK_GATE_DISABLE);
7391 I915_WRITE(RENCLK_GATE_D2, 0);
Ville Syrjälä20f94962013-06-07 10:47:02 +03007392 I915_WRITE(MI_ARB_STATE,
7393 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Akash Goel4e046322014-04-04 17:14:38 +05307394
7395 /* WaDisable_RenderCache_OperationalFlush:gen4 */
7396 I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007397}
7398
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007399static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007400{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007401 u32 dstate = I915_READ(D_STATE);
7402
7403 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7404 DSTATE_DOT_CLOCK_GATING;
7405 I915_WRITE(D_STATE, dstate);
Chris Wilson13a86b82012-04-24 14:51:43 +01007406
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007407 if (IS_PINEVIEW(dev_priv))
Chris Wilson13a86b82012-04-24 14:51:43 +01007408 I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
Daniel Vetter974a3b02012-09-09 11:54:16 +02007409
7410 /* IIR "flip pending" means done if this bit is set */
7411 I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
Ville Syrjälä12fabbcb92014-02-25 15:13:38 +02007412
7413 /* interrupts should cause a wake up from C3 */
Ville Syrjälä32992542014-02-25 15:13:39 +02007414 I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
Ville Syrjälädbb42742014-02-25 15:13:41 +02007415
7416 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7417 I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007418
7419 I915_WRITE(MI_ARB_STATE,
7420 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007421}
7422
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007423static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007424{
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007425 I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
Ville Syrjälä54e472a2014-02-25 15:13:40 +02007426
7427 /* interrupts should cause a wake up from C3 */
7428 I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7429 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
Ville Syrjälä10383922014-08-15 01:21:54 +03007430
7431 I915_WRITE(MEM_MODE,
7432 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007433}
7434
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007435static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007436{
Ville Syrjälä10383922014-08-15 01:21:54 +03007437 I915_WRITE(MEM_MODE,
7438 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7439 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007440}
7441
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007442void intel_init_clock_gating(struct drm_i915_private *dev_priv)
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007443{
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007444 dev_priv->display.init_clock_gating(dev_priv);
Eugeni Dodonov6f1d69b2012-04-18 15:29:25 -03007445}
7446
Ville Syrjälä712bf362016-10-31 22:37:23 +02007447void intel_suspend_hw(struct drm_i915_private *dev_priv)
Imre Deak7d708ee2013-04-17 14:04:50 +03007448{
Ville Syrjälä712bf362016-10-31 22:37:23 +02007449 if (HAS_PCH_LPT(dev_priv))
7450 lpt_suspend_hw(dev_priv);
Imre Deak7d708ee2013-04-17 14:04:50 +03007451}
7452
Ville Syrjälä46f16e62016-10-31 22:37:22 +02007453static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
Imre Deakbb400da2016-03-16 13:38:54 +02007454{
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007455 drm_dbg_kms(&dev_priv->drm,
7456 "No clock gating settings or workarounds applied.\n");
Imre Deakbb400da2016-03-16 13:38:54 +02007457}
7458
7459/**
7460 * intel_init_clock_gating_hooks - setup the clock gating hooks
7461 * @dev_priv: device private
7462 *
7463 * Setup the hooks that configure which clocks of a given platform can be
7464 * gated and also apply various GT and display specific workarounds for these
7465 * platforms. Note that some GT specific workarounds are applied separately
7466 * when GPU contexts or batchbuffers start their execution.
7467 */
7468void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7469{
Lucas De Marchi13e53c52019-08-17 02:38:42 -07007470 if (IS_GEN(dev_priv, 12))
Michel Thierry5d869232019-08-23 01:20:34 -07007471 dev_priv->display.init_clock_gating = tgl_init_clock_gating;
Lucas De Marchi13e53c52019-08-17 02:38:42 -07007472 else if (IS_GEN(dev_priv, 11))
Oscar Mateod65dc3e2018-05-08 14:29:24 -07007473 dev_priv->display.init_clock_gating = icl_init_clock_gating;
Oscar Mateocc38cae2018-05-08 14:29:23 -07007474 else if (IS_CANNONLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007475 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007476 else if (IS_COFFEELAKE(dev_priv))
7477 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
Rodrigo Vivi90007bc2017-08-15 16:16:48 -07007478 else if (IS_SKYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007479 dev_priv->display.init_clock_gating = skl_init_clock_gating;
Rodrigo Vivi0a46ddd2017-08-30 21:52:23 -07007480 else if (IS_KABYLAKE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007481 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007482 else if (IS_BROXTON(dev_priv))
Imre Deakbb400da2016-03-16 13:38:54 +02007483 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
Ander Conselvan de Oliveira9fb50262017-01-26 11:16:58 +02007484 else if (IS_GEMINILAKE(dev_priv))
7485 dev_priv->display.init_clock_gating = glk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007486 else if (IS_BROADWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007487 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007488 else if (IS_CHERRYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007489 dev_priv->display.init_clock_gating = chv_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007490 else if (IS_HASWELL(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007491 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007492 else if (IS_IVYBRIDGE(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007493 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007494 else if (IS_VALLEYVIEW(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007495 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007496 else if (IS_GEN(dev_priv, 6))
Imre Deakbb400da2016-03-16 13:38:54 +02007497 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007498 else if (IS_GEN(dev_priv, 5))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007499 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
Imre Deakbb400da2016-03-16 13:38:54 +02007500 else if (IS_G4X(dev_priv))
7501 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007502 else if (IS_I965GM(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007503 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
Jani Nikulac0f86832016-12-07 12:13:04 +02007504 else if (IS_I965G(dev_priv))
Rodrigo Vivi91200c02017-08-28 22:20:26 -07007505 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007506 else if (IS_GEN(dev_priv, 3))
Imre Deakbb400da2016-03-16 13:38:54 +02007507 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7508 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7509 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007510 else if (IS_GEN(dev_priv, 2))
Imre Deakbb400da2016-03-16 13:38:54 +02007511 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7512 else {
7513 MISSING_CASE(INTEL_DEVID(dev_priv));
7514 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7515 }
7516}
7517
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007518/* Set up chip specific power management-related functions */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007519void intel_init_pm(struct drm_i915_private *dev_priv)
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007520{
Daniel Vetterc921aba2012-04-26 23:28:17 +02007521 /* For cxsr */
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007522 if (IS_PINEVIEW(dev_priv))
Lucas De Marchi1d218222019-12-24 00:40:04 -08007523 pnv_get_mem_freq(dev_priv);
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007524 else if (IS_GEN(dev_priv, 5))
Lucas De Marchi9eae5e22019-12-24 00:40:09 -08007525 ilk_get_mem_freq(dev_priv);
Daniel Vetterc921aba2012-04-26 23:28:17 +02007526
James Ausmusb068a862019-10-09 10:23:14 -07007527 if (intel_has_sagv(dev_priv))
7528 skl_setup_sagv_block_time(dev_priv);
7529
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007530 /* For FIFO watermark updates */
Ville Syrjälä62d75df2016-10-31 22:37:25 +02007531 if (INTEL_GEN(dev_priv) >= 9) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007532 skl_setup_wm_latency(dev_priv);
Matt Roper98d39492016-05-12 07:06:03 -07007533 dev_priv->display.compute_global_watermarks = skl_compute_wm;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01007534 } else if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007535 ilk_setup_wm_latency(dev_priv);
Ville Syrjälä53615a52013-08-01 16:18:50 +03007536
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007537 if ((IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[1] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007538 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007539 (!IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[0] &&
Ville Syrjäläbd602542014-01-07 16:14:10 +02007540 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
Matt Roper86c8bbb2015-09-24 15:53:16 -07007541 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
Matt Ropered4a6a72016-02-23 17:20:13 -08007542 dev_priv->display.compute_intermediate_wm =
7543 ilk_compute_intermediate_wm;
7544 dev_priv->display.initial_watermarks =
7545 ilk_initial_watermarks;
7546 dev_priv->display.optimize_watermarks =
7547 ilk_optimize_watermarks;
Ville Syrjäläbd602542014-01-07 16:14:10 +02007548 } else {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007549 drm_dbg_kms(&dev_priv->drm,
7550 "Failed to read display plane latency. "
7551 "Disable CxSR\n");
Ville Syrjäläbd602542014-01-07 16:14:10 +02007552 }
Ville Syrjälä6b6b3ee2016-11-28 19:37:07 +02007553 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Ville Syrjäläbb726512016-10-31 22:37:24 +02007554 vlv_setup_wm_latency(dev_priv);
Ville Syrjäläff32c542017-03-02 19:14:57 +02007555 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007556 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007557 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
Ville Syrjälä4841da52017-03-02 19:14:59 +02007558 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
Ville Syrjäläff32c542017-03-02 19:14:57 +02007559 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
Ville Syrjälä04548cb2017-04-21 21:14:29 +03007560 } else if (IS_G4X(dev_priv)) {
7561 g4x_setup_wm_latency(dev_priv);
7562 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
7563 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
7564 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
7565 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
Ville Syrjälä9b1e14f2016-10-31 22:37:15 +02007566 } else if (IS_PINEVIEW(dev_priv)) {
Tvrtko Ursulin86d35d42019-03-26 07:40:54 +00007567 if (!intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007568 dev_priv->is_ddr3,
7569 dev_priv->fsb_freq,
7570 dev_priv->mem_freq)) {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007571 drm_info(&dev_priv->drm,
7572 "failed to find known CxSR latency "
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007573 "(found ddr%s fsb freq %d, mem freq %d), "
7574 "disabling CxSR\n",
7575 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7576 dev_priv->fsb_freq, dev_priv->mem_freq);
7577 /* Disable CxSR and never update its watermark again */
Imre Deak5209b1f2014-07-01 12:36:17 +03007578 intel_set_memory_cxsr(dev_priv, false);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007579 dev_priv->display.update_wm = NULL;
7580 } else
Lucas De Marchi1d218222019-12-24 00:40:04 -08007581 dev_priv->display.update_wm = pnv_update_wm;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007582 } else if (IS_GEN(dev_priv, 4)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007583 dev_priv->display.update_wm = i965_update_wm;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007584 } else if (IS_GEN(dev_priv, 3)) {
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007585 dev_priv->display.update_wm = i9xx_update_wm;
7586 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
Lucas De Marchicf819ef2018-12-12 10:10:43 -08007587 } else if (IS_GEN(dev_priv, 2)) {
Jani Nikula24977872019-09-11 12:26:08 +03007588 if (INTEL_NUM_PIPES(dev_priv) == 1) {
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007589 dev_priv->display.update_wm = i845_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007590 dev_priv->display.get_fifo_size = i845_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007591 } else {
7592 dev_priv->display.update_wm = i9xx_update_wm;
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007593 dev_priv->display.get_fifo_size = i830_get_fifo_size;
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007594 }
Daniel Vetterfeb56b92013-12-14 20:38:30 -02007595 } else {
Wambui Karugaf8d18d52020-01-07 18:13:30 +03007596 drm_err(&dev_priv->drm,
7597 "unexpected fall-through in %s\n", __func__);
Eugeni Dodonov1fa61102012-04-18 15:29:26 -03007598 }
7599}
7600
Tvrtko Ursulin192aa182016-12-01 14:16:45 +00007601void intel_pm_setup(struct drm_i915_private *dev_priv)
Chris Wilson907b28c2013-07-19 20:36:52 +01007602{
Sagar Arun Kamblead1443f2017-10-10 22:30:04 +01007603 dev_priv->runtime_pm.suspended = false;
7604 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
Chris Wilson907b28c2013-07-19 20:36:52 +01007605}