2 * Copyright © 2012 Intel Corporation
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:
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
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
24 * Eugeni Dodonov <eugeni.dodonov@intel.com>
28 #include <linux/module.h>
29 #include <linux/pm_runtime.h>
31 #include <drm/drm_atomic_helper.h>
32 #include <drm/drm_fourcc.h>
33 #include <drm/drm_plane_helper.h>
35 #include "display/intel_atomic.h"
36 #include "display/intel_atomic_plane.h"
37 #include "display/intel_bw.h"
38 #include "display/intel_display_types.h"
39 #include "display/intel_fbc.h"
40 #include "display/intel_sprite.h"
41 #include "display/skl_universal_plane.h"
43 #include "gt/intel_llc.h"
46 #include "i915_fixed.h"
48 #include "i915_trace.h"
50 #include "intel_sideband.h"
51 #include "../../../platform/x86/intel_ips.h"
53 /* Stores plane specific WM parameters */
54 struct skl_wm_params {
55 bool x_tiled, y_tiled;
62 u32 plane_bytes_per_line;
63 uint_fixed_16_16_t plane_blocks_per_line;
64 uint_fixed_16_16_t y_tile_minimum;
69 /* used in computing the new watermarks state */
70 struct intel_wm_config {
71 unsigned int num_pipes_active;
76 static void gen9_init_clock_gating(struct drm_i915_private *dev_priv)
78 if (HAS_LLC(dev_priv)) {
80 * WaCompressedResourceDisplayNewHashMode:skl,kbl
81 * Display WA #0390: skl,kbl
83 * Must match Sampler, Pixel Back End, and Media. See
84 * WaCompressedResourceSamplerPbeMediaNewHashMode.
86 intel_uncore_write(&dev_priv->uncore, CHICKEN_PAR1_1,
87 intel_uncore_read(&dev_priv->uncore, CHICKEN_PAR1_1) |
88 SKL_DE_COMPRESSED_HASH_MODE);
91 /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */
92 intel_uncore_write(&dev_priv->uncore, CHICKEN_PAR1_1,
93 intel_uncore_read(&dev_priv->uncore, CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP);
95 /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */
96 intel_uncore_write(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1,
97 intel_uncore_read(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
100 * WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl
101 * Display WA #0859: skl,bxt,kbl,glk,cfl
103 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
104 DISP_FBC_MEMORY_WAKE);
107 static void bxt_init_clock_gating(struct drm_i915_private *dev_priv)
109 gen9_init_clock_gating(dev_priv);
111 /* WaDisableSDEUnitClockGating:bxt */
112 intel_uncore_write(&dev_priv->uncore, GEN8_UCGCTL6, intel_uncore_read(&dev_priv->uncore, GEN8_UCGCTL6) |
113 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
117 * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only.
119 intel_uncore_write(&dev_priv->uncore, GEN8_UCGCTL6, intel_uncore_read(&dev_priv->uncore, GEN8_UCGCTL6) |
120 GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ);
123 * Wa: Backlight PWM may stop in the asserted state, causing backlight
126 intel_uncore_write(&dev_priv->uncore, GEN9_CLKGATE_DIS_0, intel_uncore_read(&dev_priv->uncore, GEN9_CLKGATE_DIS_0) |
127 PWM1_GATING_DIS | PWM2_GATING_DIS);
130 * Lower the display internal timeout.
131 * This is needed to avoid any hard hangs when DSI port PLL
132 * is off and a MMIO access is attempted by any privilege
133 * application, using batch buffers or any other means.
135 intel_uncore_write(&dev_priv->uncore, RM_TIMEOUT, MMIO_TIMEOUT_US(950));
138 * WaFbcTurnOffFbcWatermark:bxt
139 * Display WA #0562: bxt
141 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
145 * WaFbcHighMemBwCorruptionAvoidance:bxt
146 * Display WA #0883: bxt
148 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN, intel_uncore_read(&dev_priv->uncore, ILK_DPFC_CHICKEN) |
149 ILK_DPFC_DISABLE_DUMMY0);
152 static void glk_init_clock_gating(struct drm_i915_private *dev_priv)
154 gen9_init_clock_gating(dev_priv);
157 * WaDisablePWMClockGating:glk
158 * Backlight PWM may stop in the asserted state, causing backlight
161 intel_uncore_write(&dev_priv->uncore, GEN9_CLKGATE_DIS_0, intel_uncore_read(&dev_priv->uncore, GEN9_CLKGATE_DIS_0) |
162 PWM1_GATING_DIS | PWM2_GATING_DIS);
165 static void pnv_get_mem_freq(struct drm_i915_private *dev_priv)
169 tmp = intel_uncore_read(&dev_priv->uncore, CLKCFG);
171 switch (tmp & CLKCFG_FSB_MASK) {
173 dev_priv->fsb_freq = 533; /* 133*4 */
176 dev_priv->fsb_freq = 800; /* 200*4 */
179 dev_priv->fsb_freq = 667; /* 167*4 */
182 dev_priv->fsb_freq = 400; /* 100*4 */
186 switch (tmp & CLKCFG_MEM_MASK) {
188 dev_priv->mem_freq = 533;
191 dev_priv->mem_freq = 667;
194 dev_priv->mem_freq = 800;
198 /* detect pineview DDR3 setting */
199 tmp = intel_uncore_read(&dev_priv->uncore, CSHRDDR3CTL);
200 dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0;
203 static void ilk_get_mem_freq(struct drm_i915_private *dev_priv)
207 ddrpll = intel_uncore_read16(&dev_priv->uncore, DDRMPLL1);
208 csipll = intel_uncore_read16(&dev_priv->uncore, CSIPLL0);
210 switch (ddrpll & 0xff) {
212 dev_priv->mem_freq = 800;
215 dev_priv->mem_freq = 1066;
218 dev_priv->mem_freq = 1333;
221 dev_priv->mem_freq = 1600;
224 drm_dbg(&dev_priv->drm, "unknown memory frequency 0x%02x\n",
226 dev_priv->mem_freq = 0;
230 switch (csipll & 0x3ff) {
232 dev_priv->fsb_freq = 3200;
235 dev_priv->fsb_freq = 3733;
238 dev_priv->fsb_freq = 4266;
241 dev_priv->fsb_freq = 4800;
244 dev_priv->fsb_freq = 5333;
247 dev_priv->fsb_freq = 5866;
250 dev_priv->fsb_freq = 6400;
253 drm_dbg(&dev_priv->drm, "unknown fsb frequency 0x%04x\n",
255 dev_priv->fsb_freq = 0;
260 static const struct cxsr_latency cxsr_latency_table[] = {
261 {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */
262 {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */
263 {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */
264 {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */
265 {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */
267 {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */
268 {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */
269 {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */
270 {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */
271 {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */
273 {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */
274 {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */
275 {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */
276 {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */
277 {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */
279 {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */
280 {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */
281 {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */
282 {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */
283 {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */
285 {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */
286 {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */
287 {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */
288 {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */
289 {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */
291 {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */
292 {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */
293 {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */
294 {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */
295 {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */
298 static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop,
303 const struct cxsr_latency *latency;
306 if (fsb == 0 || mem == 0)
309 for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) {
310 latency = &cxsr_latency_table[i];
311 if (is_desktop == latency->is_desktop &&
312 is_ddr3 == latency->is_ddr3 &&
313 fsb == latency->fsb_freq && mem == latency->mem_freq)
317 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n");
322 static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable)
326 vlv_punit_get(dev_priv);
328 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
330 val &= ~FORCE_DDR_HIGH_FREQ;
332 val |= FORCE_DDR_HIGH_FREQ;
333 val &= ~FORCE_DDR_LOW_FREQ;
334 val |= FORCE_DDR_FREQ_REQ_ACK;
335 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
337 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
338 FORCE_DDR_FREQ_REQ_ACK) == 0, 3))
339 drm_err(&dev_priv->drm,
340 "timed out waiting for Punit DDR DVFS request\n");
342 vlv_punit_put(dev_priv);
345 static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable)
349 vlv_punit_get(dev_priv);
351 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
353 val |= DSP_MAXFIFO_PM5_ENABLE;
355 val &= ~DSP_MAXFIFO_PM5_ENABLE;
356 vlv_punit_write(dev_priv, PUNIT_REG_DSPSSPM, val);
358 vlv_punit_put(dev_priv);
361 #define FW_WM(value, plane) \
362 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK)
364 static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
369 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
370 was_enabled = intel_uncore_read(&dev_priv->uncore, FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
371 intel_uncore_write(&dev_priv->uncore, FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0);
372 intel_uncore_posting_read(&dev_priv->uncore, FW_BLC_SELF_VLV);
373 } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) {
374 was_enabled = intel_uncore_read(&dev_priv->uncore, FW_BLC_SELF) & FW_BLC_SELF_EN;
375 intel_uncore_write(&dev_priv->uncore, FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0);
376 intel_uncore_posting_read(&dev_priv->uncore, FW_BLC_SELF);
377 } else if (IS_PINEVIEW(dev_priv)) {
378 val = intel_uncore_read(&dev_priv->uncore, DSPFW3);
379 was_enabled = val & PINEVIEW_SELF_REFRESH_EN;
381 val |= PINEVIEW_SELF_REFRESH_EN;
383 val &= ~PINEVIEW_SELF_REFRESH_EN;
384 intel_uncore_write(&dev_priv->uncore, DSPFW3, val);
385 intel_uncore_posting_read(&dev_priv->uncore, DSPFW3);
386 } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) {
387 was_enabled = intel_uncore_read(&dev_priv->uncore, FW_BLC_SELF) & FW_BLC_SELF_EN;
388 val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) :
389 _MASKED_BIT_DISABLE(FW_BLC_SELF_EN);
390 intel_uncore_write(&dev_priv->uncore, FW_BLC_SELF, val);
391 intel_uncore_posting_read(&dev_priv->uncore, FW_BLC_SELF);
392 } else if (IS_I915GM(dev_priv)) {
394 * FIXME can't find a bit like this for 915G, and
395 * and yet it does have the related watermark in
396 * FW_BLC_SELF. What's going on?
398 was_enabled = intel_uncore_read(&dev_priv->uncore, INSTPM) & INSTPM_SELF_EN;
399 val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) :
400 _MASKED_BIT_DISABLE(INSTPM_SELF_EN);
401 intel_uncore_write(&dev_priv->uncore, INSTPM, val);
402 intel_uncore_posting_read(&dev_priv->uncore, INSTPM);
407 trace_intel_memory_cxsr(dev_priv, was_enabled, enable);
409 drm_dbg_kms(&dev_priv->drm, "memory self-refresh is %s (was %s)\n",
410 enableddisabled(enable),
411 enableddisabled(was_enabled));
417 * intel_set_memory_cxsr - Configure CxSR state
418 * @dev_priv: i915 device
419 * @enable: Allow vs. disallow CxSR
421 * Allow or disallow the system to enter a special CxSR
422 * (C-state self refresh) state. What typically happens in CxSR mode
423 * is that several display FIFOs may get combined into a single larger
424 * FIFO for a particular plane (so called max FIFO mode) to allow the
425 * system to defer memory fetches longer, and the memory will enter
428 * Note that enabling CxSR does not guarantee that the system enter
429 * this special mode, nor does it guarantee that the system stays
430 * in that mode once entered. So this just allows/disallows the system
431 * to autonomously utilize the CxSR mode. Other factors such as core
432 * C-states will affect when/if the system actually enters/exits the
435 * Note that on VLV/CHV this actually only controls the max FIFO mode,
436 * and the system is free to enter/exit memory self refresh at any time
437 * even when the use of CxSR has been disallowed.
439 * While the system is actually in the CxSR/max FIFO mode, some plane
440 * control registers will not get latched on vblank. Thus in order to
441 * guarantee the system will respond to changes in the plane registers
442 * we must always disallow CxSR prior to making changes to those registers.
443 * Unfortunately the system will re-evaluate the CxSR conditions at
444 * frame start which happens after vblank start (which is when the plane
445 * registers would get latched), so we can't proceed with the plane update
446 * during the same frame where we disallowed CxSR.
448 * Certain platforms also have a deeper HPLL SR mode. Fortunately the
449 * HPLL SR mode depends on CxSR itself, so we don't have to hand hold
450 * the hardware w.r.t. HPLL SR when writing to plane registers.
451 * Disallowing just CxSR is sufficient.
453 bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable)
457 mutex_lock(&dev_priv->wm.wm_mutex);
458 ret = _intel_set_memory_cxsr(dev_priv, enable);
459 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
460 dev_priv->wm.vlv.cxsr = enable;
461 else if (IS_G4X(dev_priv))
462 dev_priv->wm.g4x.cxsr = enable;
463 mutex_unlock(&dev_priv->wm.wm_mutex);
469 * Latency for FIFO fetches is dependent on several factors:
470 * - memory configuration (speed, channels)
472 * - current MCH state
473 * It can be fairly high in some situations, so here we assume a fairly
474 * pessimal value. It's a tradeoff between extra memory fetches (if we
475 * set this value too high, the FIFO will fetch frequently to stay full)
476 * and power consumption (set it too low to save power and we might see
477 * FIFO underruns and display "flicker").
479 * A value of 5us seems to be a good balance; safe for very low end
480 * platforms but not overly aggressive on lower latency configs.
482 static const int pessimal_latency_ns = 5000;
484 #define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \
485 ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8))
487 static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state)
489 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
490 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
491 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
492 enum pipe pipe = crtc->pipe;
493 int sprite0_start, sprite1_start;
494 u32 dsparb, dsparb2, dsparb3;
498 dsparb = intel_uncore_read(&dev_priv->uncore, DSPARB);
499 dsparb2 = intel_uncore_read(&dev_priv->uncore, DSPARB2);
500 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0);
501 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4);
504 dsparb = intel_uncore_read(&dev_priv->uncore, DSPARB);
505 dsparb2 = intel_uncore_read(&dev_priv->uncore, DSPARB2);
506 sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8);
507 sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12);
510 dsparb2 = intel_uncore_read(&dev_priv->uncore, DSPARB2);
511 dsparb3 = intel_uncore_read(&dev_priv->uncore, DSPARB3);
512 sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16);
513 sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20);
520 fifo_state->plane[PLANE_PRIMARY] = sprite0_start;
521 fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start;
522 fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start;
523 fifo_state->plane[PLANE_CURSOR] = 63;
526 static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv,
527 enum i9xx_plane_id i9xx_plane)
529 u32 dsparb = intel_uncore_read(&dev_priv->uncore, DSPARB);
532 size = dsparb & 0x7f;
533 if (i9xx_plane == PLANE_B)
534 size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size;
536 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
537 dsparb, plane_name(i9xx_plane), size);
542 static int i830_get_fifo_size(struct drm_i915_private *dev_priv,
543 enum i9xx_plane_id i9xx_plane)
545 u32 dsparb = intel_uncore_read(&dev_priv->uncore, DSPARB);
548 size = dsparb & 0x1ff;
549 if (i9xx_plane == PLANE_B)
550 size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size;
551 size >>= 1; /* Convert to cachelines */
553 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
554 dsparb, plane_name(i9xx_plane), size);
559 static int i845_get_fifo_size(struct drm_i915_private *dev_priv,
560 enum i9xx_plane_id i9xx_plane)
562 u32 dsparb = intel_uncore_read(&dev_priv->uncore, DSPARB);
565 size = dsparb & 0x7f;
566 size >>= 2; /* Convert to cachelines */
568 drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n",
569 dsparb, plane_name(i9xx_plane), size);
574 /* Pineview has different values for various configs */
575 static const struct intel_watermark_params pnv_display_wm = {
576 .fifo_size = PINEVIEW_DISPLAY_FIFO,
577 .max_wm = PINEVIEW_MAX_WM,
578 .default_wm = PINEVIEW_DFT_WM,
579 .guard_size = PINEVIEW_GUARD_WM,
580 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
583 static const struct intel_watermark_params pnv_display_hplloff_wm = {
584 .fifo_size = PINEVIEW_DISPLAY_FIFO,
585 .max_wm = PINEVIEW_MAX_WM,
586 .default_wm = PINEVIEW_DFT_HPLLOFF_WM,
587 .guard_size = PINEVIEW_GUARD_WM,
588 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
591 static const struct intel_watermark_params pnv_cursor_wm = {
592 .fifo_size = PINEVIEW_CURSOR_FIFO,
593 .max_wm = PINEVIEW_CURSOR_MAX_WM,
594 .default_wm = PINEVIEW_CURSOR_DFT_WM,
595 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
596 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
599 static const struct intel_watermark_params pnv_cursor_hplloff_wm = {
600 .fifo_size = PINEVIEW_CURSOR_FIFO,
601 .max_wm = PINEVIEW_CURSOR_MAX_WM,
602 .default_wm = PINEVIEW_CURSOR_DFT_WM,
603 .guard_size = PINEVIEW_CURSOR_GUARD_WM,
604 .cacheline_size = PINEVIEW_FIFO_LINE_SIZE,
607 static const struct intel_watermark_params i965_cursor_wm_info = {
608 .fifo_size = I965_CURSOR_FIFO,
609 .max_wm = I965_CURSOR_MAX_WM,
610 .default_wm = I965_CURSOR_DFT_WM,
612 .cacheline_size = I915_FIFO_LINE_SIZE,
615 static const struct intel_watermark_params i945_wm_info = {
616 .fifo_size = I945_FIFO_SIZE,
617 .max_wm = I915_MAX_WM,
620 .cacheline_size = I915_FIFO_LINE_SIZE,
623 static const struct intel_watermark_params i915_wm_info = {
624 .fifo_size = I915_FIFO_SIZE,
625 .max_wm = I915_MAX_WM,
628 .cacheline_size = I915_FIFO_LINE_SIZE,
631 static const struct intel_watermark_params i830_a_wm_info = {
632 .fifo_size = I855GM_FIFO_SIZE,
633 .max_wm = I915_MAX_WM,
636 .cacheline_size = I830_FIFO_LINE_SIZE,
639 static const struct intel_watermark_params i830_bc_wm_info = {
640 .fifo_size = I855GM_FIFO_SIZE,
641 .max_wm = I915_MAX_WM/2,
644 .cacheline_size = I830_FIFO_LINE_SIZE,
647 static const struct intel_watermark_params i845_wm_info = {
648 .fifo_size = I830_FIFO_SIZE,
649 .max_wm = I915_MAX_WM,
652 .cacheline_size = I830_FIFO_LINE_SIZE,
656 * intel_wm_method1 - Method 1 / "small buffer" watermark formula
657 * @pixel_rate: Pipe pixel rate in kHz
658 * @cpp: Plane bytes per pixel
659 * @latency: Memory wakeup latency in 0.1us units
661 * Compute the watermark using the method 1 or "small buffer"
662 * formula. The caller may additonally add extra cachelines
663 * to account for TLB misses and clock crossings.
665 * This method is concerned with the short term drain rate
666 * of the FIFO, ie. it does not account for blanking periods
667 * which would effectively reduce the average drain rate across
668 * a longer period. The name "small" refers to the fact the
669 * FIFO is relatively small compared to the amount of data
672 * The FIFO level vs. time graph might look something like:
676 * __---__---__ (- plane active, _ blanking)
679 * or perhaps like this:
682 * __----__----__ (- plane active, _ blanking)
686 * The watermark in bytes
688 static unsigned int intel_wm_method1(unsigned int pixel_rate,
690 unsigned int latency)
694 ret = mul_u32_u32(pixel_rate, cpp * latency);
695 ret = DIV_ROUND_UP_ULL(ret, 10000);
701 * intel_wm_method2 - Method 2 / "large buffer" watermark formula
702 * @pixel_rate: Pipe pixel rate in kHz
703 * @htotal: Pipe horizontal total
704 * @width: Plane width in pixels
705 * @cpp: Plane bytes per pixel
706 * @latency: Memory wakeup latency in 0.1us units
708 * Compute the watermark using the method 2 or "large buffer"
709 * formula. The caller may additonally add extra cachelines
710 * to account for TLB misses and clock crossings.
712 * This method is concerned with the long term drain rate
713 * of the FIFO, ie. it does account for blanking periods
714 * which effectively reduce the average drain rate across
715 * a longer period. The name "large" refers to the fact the
716 * FIFO is relatively large compared to the amount of data
719 * The FIFO level vs. time graph might look something like:
724 * __ --__--__--__--__--__--__ (- plane active, _ blanking)
728 * The watermark in bytes
730 static unsigned int intel_wm_method2(unsigned int pixel_rate,
734 unsigned int latency)
739 * FIXME remove once all users are computing
740 * watermarks in the correct place.
742 if (WARN_ON_ONCE(htotal == 0))
745 ret = (latency * pixel_rate) / (htotal * 10000);
746 ret = (ret + 1) * width * cpp;
752 * intel_calculate_wm - calculate watermark level
753 * @pixel_rate: pixel clock
754 * @wm: chip FIFO params
755 * @fifo_size: size of the FIFO buffer
756 * @cpp: bytes per pixel
757 * @latency_ns: memory latency for the platform
759 * Calculate the watermark level (the level at which the display plane will
760 * start fetching from memory again). Each chip has a different display
761 * FIFO size and allocation, so the caller needs to figure that out and pass
762 * in the correct intel_watermark_params structure.
764 * As the pixel clock runs, the FIFO will be drained at a rate that depends
765 * on the pixel size. When it reaches the watermark level, it'll start
766 * fetching FIFO line sized based chunks from memory until the FIFO fills
767 * past the watermark point. If the FIFO drains completely, a FIFO underrun
768 * will occur, and a display engine hang could result.
770 static unsigned int intel_calculate_wm(int pixel_rate,
771 const struct intel_watermark_params *wm,
772 int fifo_size, int cpp,
773 unsigned int latency_ns)
775 int entries, wm_size;
778 * Note: we need to make sure we don't overflow for various clock &
780 * clocks go from a few thousand to several hundred thousand.
781 * latency is usually a few thousand
783 entries = intel_wm_method1(pixel_rate, cpp,
785 entries = DIV_ROUND_UP(entries, wm->cacheline_size) +
787 DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries);
789 wm_size = fifo_size - entries;
790 DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size);
792 /* Don't promote wm_size to unsigned... */
793 if (wm_size > wm->max_wm)
794 wm_size = wm->max_wm;
796 wm_size = wm->default_wm;
799 * Bspec seems to indicate that the value shouldn't be lower than
800 * 'burst size + 1'. Certainly 830 is quite unhappy with low values.
801 * Lets go for 8 which is the burst size since certain platforms
802 * already use a hardcoded 8 (which is what the spec says should be
811 static bool is_disabling(int old, int new, int threshold)
813 return old >= threshold && new < threshold;
816 static bool is_enabling(int old, int new, int threshold)
818 return old < threshold && new >= threshold;
821 static int intel_wm_num_levels(struct drm_i915_private *dev_priv)
823 return dev_priv->wm.max_level + 1;
826 static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state,
827 const struct intel_plane_state *plane_state)
829 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
831 /* FIXME check the 'enable' instead */
832 if (!crtc_state->hw.active)
836 * Treat cursor with fb as always visible since cursor updates
837 * can happen faster than the vrefresh rate, and the current
838 * watermark code doesn't handle that correctly. Cursor updates
839 * which set/clear the fb or change the cursor size are going
840 * to get throttled by intel_legacy_cursor_update() to work
841 * around this problem with the watermark code.
843 if (plane->id == PLANE_CURSOR)
844 return plane_state->hw.fb != NULL;
846 return plane_state->uapi.visible;
849 static bool intel_crtc_active(struct intel_crtc *crtc)
851 /* Be paranoid as we can arrive here with only partial
852 * state retrieved from the hardware during setup.
854 * We can ditch the adjusted_mode.crtc_clock check as soon
855 * as Haswell has gained clock readout/fastboot support.
857 * We can ditch the crtc->primary->state->fb check as soon as we can
858 * properly reconstruct framebuffers.
860 * FIXME: The intel_crtc->active here should be switched to
861 * crtc->state->active once we have proper CRTC states wired up
864 return crtc->active && crtc->base.primary->state->fb &&
865 crtc->config->hw.adjusted_mode.crtc_clock;
868 static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv)
870 struct intel_crtc *crtc, *enabled = NULL;
872 for_each_intel_crtc(&dev_priv->drm, crtc) {
873 if (intel_crtc_active(crtc)) {
883 static void pnv_update_wm(struct intel_crtc *unused_crtc)
885 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
886 struct intel_crtc *crtc;
887 const struct cxsr_latency *latency;
891 latency = intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
896 drm_dbg_kms(&dev_priv->drm,
897 "Unknown FSB/MEM found, disable CxSR\n");
898 intel_set_memory_cxsr(dev_priv, false);
902 crtc = single_enabled_crtc(dev_priv);
904 const struct drm_display_mode *pipe_mode =
905 &crtc->config->hw.pipe_mode;
906 const struct drm_framebuffer *fb =
907 crtc->base.primary->state->fb;
908 int cpp = fb->format->cpp[0];
909 int clock = pipe_mode->crtc_clock;
912 wm = intel_calculate_wm(clock, &pnv_display_wm,
913 pnv_display_wm.fifo_size,
914 cpp, latency->display_sr);
915 reg = intel_uncore_read(&dev_priv->uncore, DSPFW1);
916 reg &= ~DSPFW_SR_MASK;
917 reg |= FW_WM(wm, SR);
918 intel_uncore_write(&dev_priv->uncore, DSPFW1, reg);
919 drm_dbg_kms(&dev_priv->drm, "DSPFW1 register is %x\n", reg);
922 wm = intel_calculate_wm(clock, &pnv_cursor_wm,
923 pnv_display_wm.fifo_size,
924 4, latency->cursor_sr);
925 reg = intel_uncore_read(&dev_priv->uncore, DSPFW3);
926 reg &= ~DSPFW_CURSOR_SR_MASK;
927 reg |= FW_WM(wm, CURSOR_SR);
928 intel_uncore_write(&dev_priv->uncore, DSPFW3, reg);
930 /* Display HPLL off SR */
931 wm = intel_calculate_wm(clock, &pnv_display_hplloff_wm,
932 pnv_display_hplloff_wm.fifo_size,
933 cpp, latency->display_hpll_disable);
934 reg = intel_uncore_read(&dev_priv->uncore, DSPFW3);
935 reg &= ~DSPFW_HPLL_SR_MASK;
936 reg |= FW_WM(wm, HPLL_SR);
937 intel_uncore_write(&dev_priv->uncore, DSPFW3, reg);
939 /* cursor HPLL off SR */
940 wm = intel_calculate_wm(clock, &pnv_cursor_hplloff_wm,
941 pnv_display_hplloff_wm.fifo_size,
942 4, latency->cursor_hpll_disable);
943 reg = intel_uncore_read(&dev_priv->uncore, DSPFW3);
944 reg &= ~DSPFW_HPLL_CURSOR_MASK;
945 reg |= FW_WM(wm, HPLL_CURSOR);
946 intel_uncore_write(&dev_priv->uncore, DSPFW3, reg);
947 drm_dbg_kms(&dev_priv->drm, "DSPFW3 register is %x\n", reg);
949 intel_set_memory_cxsr(dev_priv, true);
951 intel_set_memory_cxsr(dev_priv, false);
956 * Documentation says:
957 * "If the line size is small, the TLB fetches can get in the way of the
958 * data fetches, causing some lag in the pixel data return which is not
959 * accounted for in the above formulas. The following adjustment only
960 * needs to be applied if eight whole lines fit in the buffer at once.
961 * The WM is adjusted upwards by the difference between the FIFO size
962 * and the size of 8 whole lines. This adjustment is always performed
963 * in the actual pixel depth regardless of whether FBC is enabled or not."
965 static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp)
967 int tlb_miss = fifo_size * 64 - width * cpp * 8;
969 return max(0, tlb_miss);
972 static void g4x_write_wm_values(struct drm_i915_private *dev_priv,
973 const struct g4x_wm_values *wm)
977 for_each_pipe(dev_priv, pipe)
978 trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
980 intel_uncore_write(&dev_priv->uncore, DSPFW1,
981 FW_WM(wm->sr.plane, SR) |
982 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
983 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
984 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
985 intel_uncore_write(&dev_priv->uncore, DSPFW2,
986 (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) |
987 FW_WM(wm->sr.fbc, FBC_SR) |
988 FW_WM(wm->hpll.fbc, FBC_HPLL_SR) |
989 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) |
990 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
991 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
992 intel_uncore_write(&dev_priv->uncore, DSPFW3,
993 (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) |
994 FW_WM(wm->sr.cursor, CURSOR_SR) |
995 FW_WM(wm->hpll.cursor, HPLL_CURSOR) |
996 FW_WM(wm->hpll.plane, HPLL_SR));
998 intel_uncore_posting_read(&dev_priv->uncore, DSPFW1);
1001 #define FW_WM_VLV(value, plane) \
1002 (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV)
1004 static void vlv_write_wm_values(struct drm_i915_private *dev_priv,
1005 const struct vlv_wm_values *wm)
1009 for_each_pipe(dev_priv, pipe) {
1010 trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm);
1012 intel_uncore_write(&dev_priv->uncore, VLV_DDL(pipe),
1013 (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) |
1014 (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) |
1015 (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) |
1016 (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT));
1020 * Zero the (unused) WM1 watermarks, and also clear all the
1021 * high order bits so that there are no out of bounds values
1022 * present in the registers during the reprogramming.
1024 intel_uncore_write(&dev_priv->uncore, DSPHOWM, 0);
1025 intel_uncore_write(&dev_priv->uncore, DSPHOWM1, 0);
1026 intel_uncore_write(&dev_priv->uncore, DSPFW4, 0);
1027 intel_uncore_write(&dev_priv->uncore, DSPFW5, 0);
1028 intel_uncore_write(&dev_priv->uncore, DSPFW6, 0);
1030 intel_uncore_write(&dev_priv->uncore, DSPFW1,
1031 FW_WM(wm->sr.plane, SR) |
1032 FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) |
1033 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) |
1034 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA));
1035 intel_uncore_write(&dev_priv->uncore, DSPFW2,
1036 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) |
1037 FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) |
1038 FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA));
1039 intel_uncore_write(&dev_priv->uncore, DSPFW3,
1040 FW_WM(wm->sr.cursor, CURSOR_SR));
1042 if (IS_CHERRYVIEW(dev_priv)) {
1043 intel_uncore_write(&dev_priv->uncore, DSPFW7_CHV,
1044 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1045 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
1046 intel_uncore_write(&dev_priv->uncore, DSPFW8_CHV,
1047 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) |
1048 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE));
1049 intel_uncore_write(&dev_priv->uncore, DSPFW9_CHV,
1050 FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) |
1051 FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC));
1052 intel_uncore_write(&dev_priv->uncore, DSPHOWM,
1053 FW_WM(wm->sr.plane >> 9, SR_HI) |
1054 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) |
1055 FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) |
1056 FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) |
1057 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1058 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1059 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1060 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1061 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1062 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
1064 intel_uncore_write(&dev_priv->uncore, DSPFW7,
1065 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) |
1066 FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC));
1067 intel_uncore_write(&dev_priv->uncore, DSPHOWM,
1068 FW_WM(wm->sr.plane >> 9, SR_HI) |
1069 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) |
1070 FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) |
1071 FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) |
1072 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) |
1073 FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) |
1074 FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI));
1077 intel_uncore_posting_read(&dev_priv->uncore, DSPFW1);
1082 static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv)
1084 /* all latencies in usec */
1085 dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5;
1086 dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12;
1087 dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35;
1089 dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL;
1092 static int g4x_plane_fifo_size(enum plane_id plane_id, int level)
1095 * DSPCNTR[13] supposedly controls whether the
1096 * primary plane can use the FIFO space otherwise
1097 * reserved for the sprite plane. It's not 100% clear
1098 * what the actual FIFO size is, but it looks like we
1099 * can happily set both primary and sprite watermarks
1100 * up to 127 cachelines. So that would seem to mean
1101 * that either DSPCNTR[13] doesn't do anything, or that
1102 * the total FIFO is >= 256 cachelines in size. Either
1103 * way, we don't seem to have to worry about this
1104 * repartitioning as the maximum watermark value the
1105 * register can hold for each plane is lower than the
1106 * minimum FIFO size.
1112 return level == G4X_WM_LEVEL_NORMAL ? 127 : 511;
1114 return level == G4X_WM_LEVEL_NORMAL ? 127 : 0;
1116 MISSING_CASE(plane_id);
1121 static int g4x_fbc_fifo_size(int level)
1124 case G4X_WM_LEVEL_SR:
1126 case G4X_WM_LEVEL_HPLL:
1129 MISSING_CASE(level);
1134 static u16 g4x_compute_wm(const struct intel_crtc_state *crtc_state,
1135 const struct intel_plane_state *plane_state,
1138 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
1139 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1140 const struct drm_display_mode *pipe_mode =
1141 &crtc_state->hw.pipe_mode;
1142 unsigned int latency = dev_priv->wm.pri_latency[level] * 10;
1143 unsigned int clock, htotal, cpp, width, wm;
1148 if (!intel_wm_plane_visible(crtc_state, plane_state))
1151 cpp = plane_state->hw.fb->format->cpp[0];
1154 * Not 100% sure which way ELK should go here as the
1155 * spec only says CL/CTG should assume 32bpp and BW
1156 * doesn't need to. But as these things followed the
1157 * mobile vs. desktop lines on gen3 as well, let's
1158 * assume ELK doesn't need this.
1160 * The spec also fails to list such a restriction for
1161 * the HPLL watermark, which seems a little strange.
1162 * Let's use 32bpp for the HPLL watermark as well.
1164 if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY &&
1165 level != G4X_WM_LEVEL_NORMAL)
1168 clock = pipe_mode->crtc_clock;
1169 htotal = pipe_mode->crtc_htotal;
1171 width = drm_rect_width(&plane_state->uapi.dst);
1173 if (plane->id == PLANE_CURSOR) {
1174 wm = intel_wm_method2(clock, htotal, width, cpp, latency);
1175 } else if (plane->id == PLANE_PRIMARY &&
1176 level == G4X_WM_LEVEL_NORMAL) {
1177 wm = intel_wm_method1(clock, cpp, latency);
1179 unsigned int small, large;
1181 small = intel_wm_method1(clock, cpp, latency);
1182 large = intel_wm_method2(clock, htotal, width, cpp, latency);
1184 wm = min(small, large);
1187 wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level),
1190 wm = DIV_ROUND_UP(wm, 64) + 2;
1192 return min_t(unsigned int, wm, USHRT_MAX);
1195 static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1196 int level, enum plane_id plane_id, u16 value)
1198 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
1201 for (; level < intel_wm_num_levels(dev_priv); level++) {
1202 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1204 dirty |= raw->plane[plane_id] != value;
1205 raw->plane[plane_id] = value;
1211 static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state,
1212 int level, u16 value)
1214 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
1217 /* NORMAL level doesn't have an FBC watermark */
1218 level = max(level, G4X_WM_LEVEL_SR);
1220 for (; level < intel_wm_num_levels(dev_priv); level++) {
1221 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1223 dirty |= raw->fbc != value;
1230 static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
1231 const struct intel_plane_state *plane_state,
1234 static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1235 const struct intel_plane_state *plane_state)
1237 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
1238 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
1239 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1240 enum plane_id plane_id = plane->id;
1244 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1245 dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1246 if (plane_id == PLANE_PRIMARY)
1247 dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0);
1251 for (level = 0; level < num_levels; level++) {
1252 struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1255 wm = g4x_compute_wm(crtc_state, plane_state, level);
1256 max_wm = g4x_plane_fifo_size(plane_id, level);
1261 dirty |= raw->plane[plane_id] != wm;
1262 raw->plane[plane_id] = wm;
1264 if (plane_id != PLANE_PRIMARY ||
1265 level == G4X_WM_LEVEL_NORMAL)
1268 wm = ilk_compute_fbc_wm(crtc_state, plane_state,
1269 raw->plane[plane_id]);
1270 max_wm = g4x_fbc_fifo_size(level);
1273 * FBC wm is not mandatory as we
1274 * can always just disable its use.
1279 dirty |= raw->fbc != wm;
1283 /* mark watermarks as invalid */
1284 dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1286 if (plane_id == PLANE_PRIMARY)
1287 dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
1291 drm_dbg_kms(&dev_priv->drm,
1292 "%s watermarks: normal=%d, SR=%d, HPLL=%d\n",
1294 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id],
1295 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id],
1296 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]);
1298 if (plane_id == PLANE_PRIMARY)
1299 drm_dbg_kms(&dev_priv->drm,
1300 "FBC watermarks: SR=%d, HPLL=%d\n",
1301 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc,
1302 crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc);
1308 static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1309 enum plane_id plane_id, int level)
1311 const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level];
1313 return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level);
1316 static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state,
1319 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
1321 if (level > dev_priv->wm.max_level)
1324 return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1325 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1326 g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1329 /* mark all levels starting from 'level' as invalid */
1330 static void g4x_invalidate_wms(struct intel_crtc *crtc,
1331 struct g4x_wm_state *wm_state, int level)
1333 if (level <= G4X_WM_LEVEL_NORMAL) {
1334 enum plane_id plane_id;
1336 for_each_plane_id_on_crtc(crtc, plane_id)
1337 wm_state->wm.plane[plane_id] = USHRT_MAX;
1340 if (level <= G4X_WM_LEVEL_SR) {
1341 wm_state->cxsr = false;
1342 wm_state->sr.cursor = USHRT_MAX;
1343 wm_state->sr.plane = USHRT_MAX;
1344 wm_state->sr.fbc = USHRT_MAX;
1347 if (level <= G4X_WM_LEVEL_HPLL) {
1348 wm_state->hpll_en = false;
1349 wm_state->hpll.cursor = USHRT_MAX;
1350 wm_state->hpll.plane = USHRT_MAX;
1351 wm_state->hpll.fbc = USHRT_MAX;
1355 static bool g4x_compute_fbc_en(const struct g4x_wm_state *wm_state,
1358 if (level < G4X_WM_LEVEL_SR)
1361 if (level >= G4X_WM_LEVEL_SR &&
1362 wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR))
1365 if (level >= G4X_WM_LEVEL_HPLL &&
1366 wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL))
1372 static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1374 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
1375 struct intel_atomic_state *state =
1376 to_intel_atomic_state(crtc_state->uapi.state);
1377 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
1378 int num_active_planes = hweight8(crtc_state->active_planes &
1379 ~BIT(PLANE_CURSOR));
1380 const struct g4x_pipe_wm *raw;
1381 const struct intel_plane_state *old_plane_state;
1382 const struct intel_plane_state *new_plane_state;
1383 struct intel_plane *plane;
1384 enum plane_id plane_id;
1386 unsigned int dirty = 0;
1388 for_each_oldnew_intel_plane_in_state(state, plane,
1390 new_plane_state, i) {
1391 if (new_plane_state->hw.crtc != &crtc->base &&
1392 old_plane_state->hw.crtc != &crtc->base)
1395 if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state))
1396 dirty |= BIT(plane->id);
1402 level = G4X_WM_LEVEL_NORMAL;
1403 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1406 raw = &crtc_state->wm.g4x.raw[level];
1407 for_each_plane_id_on_crtc(crtc, plane_id)
1408 wm_state->wm.plane[plane_id] = raw->plane[plane_id];
1410 level = G4X_WM_LEVEL_SR;
1411 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1414 raw = &crtc_state->wm.g4x.raw[level];
1415 wm_state->sr.plane = raw->plane[PLANE_PRIMARY];
1416 wm_state->sr.cursor = raw->plane[PLANE_CURSOR];
1417 wm_state->sr.fbc = raw->fbc;
1419 wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY);
1421 level = G4X_WM_LEVEL_HPLL;
1422 if (!g4x_raw_crtc_wm_is_valid(crtc_state, level))
1425 raw = &crtc_state->wm.g4x.raw[level];
1426 wm_state->hpll.plane = raw->plane[PLANE_PRIMARY];
1427 wm_state->hpll.cursor = raw->plane[PLANE_CURSOR];
1428 wm_state->hpll.fbc = raw->fbc;
1430 wm_state->hpll_en = wm_state->cxsr;
1435 if (level == G4X_WM_LEVEL_NORMAL)
1438 /* invalidate the higher levels */
1439 g4x_invalidate_wms(crtc, wm_state, level);
1442 * Determine if the FBC watermark(s) can be used. IF
1443 * this isn't the case we prefer to disable the FBC
1444 * watermark(s) rather than disable the SR/HPLL
1445 * level(s) entirely. 'level-1' is the highest valid
1448 wm_state->fbc_en = g4x_compute_fbc_en(wm_state, level - 1);
1453 static int g4x_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
1455 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
1456 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1457 struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate;
1458 const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal;
1459 struct intel_atomic_state *intel_state =
1460 to_intel_atomic_state(new_crtc_state->uapi.state);
1461 const struct intel_crtc_state *old_crtc_state =
1462 intel_atomic_get_old_crtc_state(intel_state, crtc);
1463 const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal;
1464 enum plane_id plane_id;
1466 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
1467 *intermediate = *optimal;
1469 intermediate->cxsr = false;
1470 intermediate->hpll_en = false;
1474 intermediate->cxsr = optimal->cxsr && active->cxsr &&
1475 !new_crtc_state->disable_cxsr;
1476 intermediate->hpll_en = optimal->hpll_en && active->hpll_en &&
1477 !new_crtc_state->disable_cxsr;
1478 intermediate->fbc_en = optimal->fbc_en && active->fbc_en;
1480 for_each_plane_id_on_crtc(crtc, plane_id) {
1481 intermediate->wm.plane[plane_id] =
1482 max(optimal->wm.plane[plane_id],
1483 active->wm.plane[plane_id]);
1485 drm_WARN_ON(&dev_priv->drm, intermediate->wm.plane[plane_id] >
1486 g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL));
1489 intermediate->sr.plane = max(optimal->sr.plane,
1491 intermediate->sr.cursor = max(optimal->sr.cursor,
1493 intermediate->sr.fbc = max(optimal->sr.fbc,
1496 intermediate->hpll.plane = max(optimal->hpll.plane,
1497 active->hpll.plane);
1498 intermediate->hpll.cursor = max(optimal->hpll.cursor,
1499 active->hpll.cursor);
1500 intermediate->hpll.fbc = max(optimal->hpll.fbc,
1503 drm_WARN_ON(&dev_priv->drm,
1504 (intermediate->sr.plane >
1505 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) ||
1506 intermediate->sr.cursor >
1507 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) &&
1508 intermediate->cxsr);
1509 drm_WARN_ON(&dev_priv->drm,
1510 (intermediate->sr.plane >
1511 g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) ||
1512 intermediate->sr.cursor >
1513 g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) &&
1514 intermediate->hpll_en);
1516 drm_WARN_ON(&dev_priv->drm,
1517 intermediate->sr.fbc > g4x_fbc_fifo_size(1) &&
1518 intermediate->fbc_en && intermediate->cxsr);
1519 drm_WARN_ON(&dev_priv->drm,
1520 intermediate->hpll.fbc > g4x_fbc_fifo_size(2) &&
1521 intermediate->fbc_en && intermediate->hpll_en);
1525 * If our intermediate WM are identical to the final WM, then we can
1526 * omit the post-vblank programming; only update if it's different.
1528 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
1529 new_crtc_state->wm.need_postvbl_update = true;
1534 static void g4x_merge_wm(struct drm_i915_private *dev_priv,
1535 struct g4x_wm_values *wm)
1537 struct intel_crtc *crtc;
1538 int num_active_pipes = 0;
1544 for_each_intel_crtc(&dev_priv->drm, crtc) {
1545 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1550 if (!wm_state->cxsr)
1552 if (!wm_state->hpll_en)
1553 wm->hpll_en = false;
1554 if (!wm_state->fbc_en)
1560 if (num_active_pipes != 1) {
1562 wm->hpll_en = false;
1566 for_each_intel_crtc(&dev_priv->drm, crtc) {
1567 const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x;
1568 enum pipe pipe = crtc->pipe;
1570 wm->pipe[pipe] = wm_state->wm;
1571 if (crtc->active && wm->cxsr)
1572 wm->sr = wm_state->sr;
1573 if (crtc->active && wm->hpll_en)
1574 wm->hpll = wm_state->hpll;
1578 static void g4x_program_watermarks(struct drm_i915_private *dev_priv)
1580 struct g4x_wm_values *old_wm = &dev_priv->wm.g4x;
1581 struct g4x_wm_values new_wm = {};
1583 g4x_merge_wm(dev_priv, &new_wm);
1585 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
1588 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
1589 _intel_set_memory_cxsr(dev_priv, false);
1591 g4x_write_wm_values(dev_priv, &new_wm);
1593 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
1594 _intel_set_memory_cxsr(dev_priv, true);
1599 static void g4x_initial_watermarks(struct intel_atomic_state *state,
1600 struct intel_crtc *crtc)
1602 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1603 const struct intel_crtc_state *crtc_state =
1604 intel_atomic_get_new_crtc_state(state, crtc);
1606 mutex_lock(&dev_priv->wm.wm_mutex);
1607 crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate;
1608 g4x_program_watermarks(dev_priv);
1609 mutex_unlock(&dev_priv->wm.wm_mutex);
1612 static void g4x_optimize_watermarks(struct intel_atomic_state *state,
1613 struct intel_crtc *crtc)
1615 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1616 const struct intel_crtc_state *crtc_state =
1617 intel_atomic_get_new_crtc_state(state, crtc);
1619 if (!crtc_state->wm.need_postvbl_update)
1622 mutex_lock(&dev_priv->wm.wm_mutex);
1623 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
1624 g4x_program_watermarks(dev_priv);
1625 mutex_unlock(&dev_priv->wm.wm_mutex);
1628 /* latency must be in 0.1us units. */
1629 static unsigned int vlv_wm_method2(unsigned int pixel_rate,
1630 unsigned int htotal,
1633 unsigned int latency)
1637 ret = intel_wm_method2(pixel_rate, htotal,
1638 width, cpp, latency);
1639 ret = DIV_ROUND_UP(ret, 64);
1644 static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv)
1646 /* all latencies in usec */
1647 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3;
1649 dev_priv->wm.max_level = VLV_WM_LEVEL_PM2;
1651 if (IS_CHERRYVIEW(dev_priv)) {
1652 dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12;
1653 dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33;
1655 dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS;
1659 static u16 vlv_compute_wm_level(const struct intel_crtc_state *crtc_state,
1660 const struct intel_plane_state *plane_state,
1663 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
1664 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
1665 const struct drm_display_mode *pipe_mode =
1666 &crtc_state->hw.pipe_mode;
1667 unsigned int clock, htotal, cpp, width, wm;
1669 if (dev_priv->wm.pri_latency[level] == 0)
1672 if (!intel_wm_plane_visible(crtc_state, plane_state))
1675 cpp = plane_state->hw.fb->format->cpp[0];
1676 clock = pipe_mode->crtc_clock;
1677 htotal = pipe_mode->crtc_htotal;
1678 width = crtc_state->pipe_src_w;
1680 if (plane->id == PLANE_CURSOR) {
1682 * FIXME the formula gives values that are
1683 * too big for the cursor FIFO, and hence we
1684 * would never be able to use cursors. For
1685 * now just hardcode the watermark.
1689 wm = vlv_wm_method2(clock, htotal, width, cpp,
1690 dev_priv->wm.pri_latency[level] * 10);
1693 return min_t(unsigned int, wm, USHRT_MAX);
1696 static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes)
1698 return (active_planes & (BIT(PLANE_SPRITE0) |
1699 BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1);
1702 static int vlv_compute_fifo(struct intel_crtc_state *crtc_state)
1704 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
1705 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1706 const struct g4x_pipe_wm *raw =
1707 &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2];
1708 struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state;
1709 unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR);
1710 int num_active_planes = hweight8(active_planes);
1711 const int fifo_size = 511;
1712 int fifo_extra, fifo_left = fifo_size;
1713 int sprite0_fifo_extra = 0;
1714 unsigned int total_rate;
1715 enum plane_id plane_id;
1718 * When enabling sprite0 after sprite1 has already been enabled
1719 * we tend to get an underrun unless sprite0 already has some
1720 * FIFO space allcoated. Hence we always allocate at least one
1721 * cacheline for sprite0 whenever sprite1 is enabled.
1723 * All other plane enable sequences appear immune to this problem.
1725 if (vlv_need_sprite0_fifo_workaround(active_planes))
1726 sprite0_fifo_extra = 1;
1728 total_rate = raw->plane[PLANE_PRIMARY] +
1729 raw->plane[PLANE_SPRITE0] +
1730 raw->plane[PLANE_SPRITE1] +
1733 if (total_rate > fifo_size)
1736 if (total_rate == 0)
1739 for_each_plane_id_on_crtc(crtc, plane_id) {
1742 if ((active_planes & BIT(plane_id)) == 0) {
1743 fifo_state->plane[plane_id] = 0;
1747 rate = raw->plane[plane_id];
1748 fifo_state->plane[plane_id] = fifo_size * rate / total_rate;
1749 fifo_left -= fifo_state->plane[plane_id];
1752 fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra;
1753 fifo_left -= sprite0_fifo_extra;
1755 fifo_state->plane[PLANE_CURSOR] = 63;
1757 fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1);
1759 /* spread the remainder evenly */
1760 for_each_plane_id_on_crtc(crtc, plane_id) {
1766 if ((active_planes & BIT(plane_id)) == 0)
1769 plane_extra = min(fifo_extra, fifo_left);
1770 fifo_state->plane[plane_id] += plane_extra;
1771 fifo_left -= plane_extra;
1774 drm_WARN_ON(&dev_priv->drm, active_planes != 0 && fifo_left != 0);
1776 /* give it all to the first plane if none are active */
1777 if (active_planes == 0) {
1778 drm_WARN_ON(&dev_priv->drm, fifo_left != fifo_size);
1779 fifo_state->plane[PLANE_PRIMARY] = fifo_left;
1785 /* mark all levels starting from 'level' as invalid */
1786 static void vlv_invalidate_wms(struct intel_crtc *crtc,
1787 struct vlv_wm_state *wm_state, int level)
1789 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1791 for (; level < intel_wm_num_levels(dev_priv); level++) {
1792 enum plane_id plane_id;
1794 for_each_plane_id_on_crtc(crtc, plane_id)
1795 wm_state->wm[level].plane[plane_id] = USHRT_MAX;
1797 wm_state->sr[level].cursor = USHRT_MAX;
1798 wm_state->sr[level].plane = USHRT_MAX;
1802 static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size)
1807 return fifo_size - wm;
1811 * Starting from 'level' set all higher
1812 * levels to 'value' in the "raw" watermarks.
1814 static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state,
1815 int level, enum plane_id plane_id, u16 value)
1817 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
1818 int num_levels = intel_wm_num_levels(dev_priv);
1821 for (; level < num_levels; level++) {
1822 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1824 dirty |= raw->plane[plane_id] != value;
1825 raw->plane[plane_id] = value;
1831 static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state,
1832 const struct intel_plane_state *plane_state)
1834 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
1835 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
1836 enum plane_id plane_id = plane->id;
1837 int num_levels = intel_wm_num_levels(to_i915(plane->base.dev));
1841 if (!intel_wm_plane_visible(crtc_state, plane_state)) {
1842 dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0);
1846 for (level = 0; level < num_levels; level++) {
1847 struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1848 int wm = vlv_compute_wm_level(crtc_state, plane_state, level);
1849 int max_wm = plane_id == PLANE_CURSOR ? 63 : 511;
1854 dirty |= raw->plane[plane_id] != wm;
1855 raw->plane[plane_id] = wm;
1858 /* mark all higher levels as invalid */
1859 dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX);
1863 drm_dbg_kms(&dev_priv->drm,
1864 "%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n",
1866 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id],
1867 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id],
1868 crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]);
1873 static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state,
1874 enum plane_id plane_id, int level)
1876 const struct g4x_pipe_wm *raw =
1877 &crtc_state->wm.vlv.raw[level];
1878 const struct vlv_fifo_state *fifo_state =
1879 &crtc_state->wm.vlv.fifo_state;
1881 return raw->plane[plane_id] <= fifo_state->plane[plane_id];
1884 static bool vlv_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, int level)
1886 return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) &&
1887 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) &&
1888 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) &&
1889 vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level);
1892 static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state)
1894 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
1895 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
1896 struct intel_atomic_state *state =
1897 to_intel_atomic_state(crtc_state->uapi.state);
1898 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
1899 const struct vlv_fifo_state *fifo_state =
1900 &crtc_state->wm.vlv.fifo_state;
1901 int num_active_planes = hweight8(crtc_state->active_planes &
1902 ~BIT(PLANE_CURSOR));
1903 bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->uapi);
1904 const struct intel_plane_state *old_plane_state;
1905 const struct intel_plane_state *new_plane_state;
1906 struct intel_plane *plane;
1907 enum plane_id plane_id;
1909 unsigned int dirty = 0;
1911 for_each_oldnew_intel_plane_in_state(state, plane,
1913 new_plane_state, i) {
1914 if (new_plane_state->hw.crtc != &crtc->base &&
1915 old_plane_state->hw.crtc != &crtc->base)
1918 if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state))
1919 dirty |= BIT(plane->id);
1923 * DSPARB registers may have been reset due to the
1924 * power well being turned off. Make sure we restore
1925 * them to a consistent state even if no primary/sprite
1926 * planes are initially active.
1929 crtc_state->fifo_changed = true;
1934 /* cursor changes don't warrant a FIFO recompute */
1935 if (dirty & ~BIT(PLANE_CURSOR)) {
1936 const struct intel_crtc_state *old_crtc_state =
1937 intel_atomic_get_old_crtc_state(state, crtc);
1938 const struct vlv_fifo_state *old_fifo_state =
1939 &old_crtc_state->wm.vlv.fifo_state;
1941 ret = vlv_compute_fifo(crtc_state);
1945 if (needs_modeset ||
1946 memcmp(old_fifo_state, fifo_state,
1947 sizeof(*fifo_state)) != 0)
1948 crtc_state->fifo_changed = true;
1951 /* initially allow all levels */
1952 wm_state->num_levels = intel_wm_num_levels(dev_priv);
1954 * Note that enabling cxsr with no primary/sprite planes
1955 * enabled can wedge the pipe. Hence we only allow cxsr
1956 * with exactly one enabled primary/sprite plane.
1958 wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1;
1960 for (level = 0; level < wm_state->num_levels; level++) {
1961 const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level];
1962 const int sr_fifo_size = INTEL_NUM_PIPES(dev_priv) * 512 - 1;
1964 if (!vlv_raw_crtc_wm_is_valid(crtc_state, level))
1967 for_each_plane_id_on_crtc(crtc, plane_id) {
1968 wm_state->wm[level].plane[plane_id] =
1969 vlv_invert_wm_value(raw->plane[plane_id],
1970 fifo_state->plane[plane_id]);
1973 wm_state->sr[level].plane =
1974 vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY],
1975 raw->plane[PLANE_SPRITE0],
1976 raw->plane[PLANE_SPRITE1]),
1979 wm_state->sr[level].cursor =
1980 vlv_invert_wm_value(raw->plane[PLANE_CURSOR],
1987 /* limit to only levels we can actually handle */
1988 wm_state->num_levels = level;
1990 /* invalidate the higher levels */
1991 vlv_invalidate_wms(crtc, wm_state, level);
1996 #define VLV_FIFO(plane, value) \
1997 (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV)
1999 static void vlv_atomic_update_fifo(struct intel_atomic_state *state,
2000 struct intel_crtc *crtc)
2002 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2003 struct intel_uncore *uncore = &dev_priv->uncore;
2004 const struct intel_crtc_state *crtc_state =
2005 intel_atomic_get_new_crtc_state(state, crtc);
2006 const struct vlv_fifo_state *fifo_state =
2007 &crtc_state->wm.vlv.fifo_state;
2008 int sprite0_start, sprite1_start, fifo_size;
2009 u32 dsparb, dsparb2, dsparb3;
2011 if (!crtc_state->fifo_changed)
2014 sprite0_start = fifo_state->plane[PLANE_PRIMARY];
2015 sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start;
2016 fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start;
2018 drm_WARN_ON(&dev_priv->drm, fifo_state->plane[PLANE_CURSOR] != 63);
2019 drm_WARN_ON(&dev_priv->drm, fifo_size != 511);
2021 trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size);
2024 * uncore.lock serves a double purpose here. It allows us to
2025 * use the less expensive I915_{READ,WRITE}_FW() functions, and
2026 * it protects the DSPARB registers from getting clobbered by
2027 * parallel updates from multiple pipes.
2029 * intel_pipe_update_start() has already disabled interrupts
2030 * for us, so a plain spin_lock() is sufficient here.
2032 spin_lock(&uncore->lock);
2034 switch (crtc->pipe) {
2036 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2037 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
2039 dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) |
2040 VLV_FIFO(SPRITEB, 0xff));
2041 dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) |
2042 VLV_FIFO(SPRITEB, sprite1_start));
2044 dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) |
2045 VLV_FIFO(SPRITEB_HI, 0x1));
2046 dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) |
2047 VLV_FIFO(SPRITEB_HI, sprite1_start >> 8));
2049 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2050 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
2053 dsparb = intel_uncore_read_fw(uncore, DSPARB);
2054 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
2056 dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) |
2057 VLV_FIFO(SPRITED, 0xff));
2058 dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) |
2059 VLV_FIFO(SPRITED, sprite1_start));
2061 dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) |
2062 VLV_FIFO(SPRITED_HI, 0xff));
2063 dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) |
2064 VLV_FIFO(SPRITED_HI, sprite1_start >> 8));
2066 intel_uncore_write_fw(uncore, DSPARB, dsparb);
2067 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
2070 dsparb3 = intel_uncore_read_fw(uncore, DSPARB3);
2071 dsparb2 = intel_uncore_read_fw(uncore, DSPARB2);
2073 dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) |
2074 VLV_FIFO(SPRITEF, 0xff));
2075 dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) |
2076 VLV_FIFO(SPRITEF, sprite1_start));
2078 dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) |
2079 VLV_FIFO(SPRITEF_HI, 0xff));
2080 dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) |
2081 VLV_FIFO(SPRITEF_HI, sprite1_start >> 8));
2083 intel_uncore_write_fw(uncore, DSPARB3, dsparb3);
2084 intel_uncore_write_fw(uncore, DSPARB2, dsparb2);
2090 intel_uncore_posting_read_fw(uncore, DSPARB);
2092 spin_unlock(&uncore->lock);
2097 static int vlv_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state)
2099 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
2100 struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate;
2101 const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal;
2102 struct intel_atomic_state *intel_state =
2103 to_intel_atomic_state(new_crtc_state->uapi.state);
2104 const struct intel_crtc_state *old_crtc_state =
2105 intel_atomic_get_old_crtc_state(intel_state, crtc);
2106 const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal;
2109 if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) {
2110 *intermediate = *optimal;
2112 intermediate->cxsr = false;
2116 intermediate->num_levels = min(optimal->num_levels, active->num_levels);
2117 intermediate->cxsr = optimal->cxsr && active->cxsr &&
2118 !new_crtc_state->disable_cxsr;
2120 for (level = 0; level < intermediate->num_levels; level++) {
2121 enum plane_id plane_id;
2123 for_each_plane_id_on_crtc(crtc, plane_id) {
2124 intermediate->wm[level].plane[plane_id] =
2125 min(optimal->wm[level].plane[plane_id],
2126 active->wm[level].plane[plane_id]);
2129 intermediate->sr[level].plane = min(optimal->sr[level].plane,
2130 active->sr[level].plane);
2131 intermediate->sr[level].cursor = min(optimal->sr[level].cursor,
2132 active->sr[level].cursor);
2135 vlv_invalidate_wms(crtc, intermediate, level);
2139 * If our intermediate WM are identical to the final WM, then we can
2140 * omit the post-vblank programming; only update if it's different.
2142 if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0)
2143 new_crtc_state->wm.need_postvbl_update = true;
2148 static void vlv_merge_wm(struct drm_i915_private *dev_priv,
2149 struct vlv_wm_values *wm)
2151 struct intel_crtc *crtc;
2152 int num_active_pipes = 0;
2154 wm->level = dev_priv->wm.max_level;
2157 for_each_intel_crtc(&dev_priv->drm, crtc) {
2158 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
2163 if (!wm_state->cxsr)
2167 wm->level = min_t(int, wm->level, wm_state->num_levels - 1);
2170 if (num_active_pipes != 1)
2173 if (num_active_pipes > 1)
2174 wm->level = VLV_WM_LEVEL_PM2;
2176 for_each_intel_crtc(&dev_priv->drm, crtc) {
2177 const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv;
2178 enum pipe pipe = crtc->pipe;
2180 wm->pipe[pipe] = wm_state->wm[wm->level];
2181 if (crtc->active && wm->cxsr)
2182 wm->sr = wm_state->sr[wm->level];
2184 wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2;
2185 wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2;
2186 wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2;
2187 wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2;
2191 static void vlv_program_watermarks(struct drm_i915_private *dev_priv)
2193 struct vlv_wm_values *old_wm = &dev_priv->wm.vlv;
2194 struct vlv_wm_values new_wm = {};
2196 vlv_merge_wm(dev_priv, &new_wm);
2198 if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0)
2201 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
2202 chv_set_memory_dvfs(dev_priv, false);
2204 if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
2205 chv_set_memory_pm5(dev_priv, false);
2207 if (is_disabling(old_wm->cxsr, new_wm.cxsr, true))
2208 _intel_set_memory_cxsr(dev_priv, false);
2210 vlv_write_wm_values(dev_priv, &new_wm);
2212 if (is_enabling(old_wm->cxsr, new_wm.cxsr, true))
2213 _intel_set_memory_cxsr(dev_priv, true);
2215 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5))
2216 chv_set_memory_pm5(dev_priv, true);
2218 if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS))
2219 chv_set_memory_dvfs(dev_priv, true);
2224 static void vlv_initial_watermarks(struct intel_atomic_state *state,
2225 struct intel_crtc *crtc)
2227 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2228 const struct intel_crtc_state *crtc_state =
2229 intel_atomic_get_new_crtc_state(state, crtc);
2231 mutex_lock(&dev_priv->wm.wm_mutex);
2232 crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate;
2233 vlv_program_watermarks(dev_priv);
2234 mutex_unlock(&dev_priv->wm.wm_mutex);
2237 static void vlv_optimize_watermarks(struct intel_atomic_state *state,
2238 struct intel_crtc *crtc)
2240 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
2241 const struct intel_crtc_state *crtc_state =
2242 intel_atomic_get_new_crtc_state(state, crtc);
2244 if (!crtc_state->wm.need_postvbl_update)
2247 mutex_lock(&dev_priv->wm.wm_mutex);
2248 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
2249 vlv_program_watermarks(dev_priv);
2250 mutex_unlock(&dev_priv->wm.wm_mutex);
2253 static void i965_update_wm(struct intel_crtc *unused_crtc)
2255 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
2256 struct intel_crtc *crtc;
2261 /* Calc sr entries for one plane configs */
2262 crtc = single_enabled_crtc(dev_priv);
2264 /* self-refresh has much higher latency */
2265 static const int sr_latency_ns = 12000;
2266 const struct drm_display_mode *pipe_mode =
2267 &crtc->config->hw.pipe_mode;
2268 const struct drm_framebuffer *fb =
2269 crtc->base.primary->state->fb;
2270 int clock = pipe_mode->crtc_clock;
2271 int htotal = pipe_mode->crtc_htotal;
2272 int hdisplay = crtc->config->pipe_src_w;
2273 int cpp = fb->format->cpp[0];
2276 entries = intel_wm_method2(clock, htotal,
2277 hdisplay, cpp, sr_latency_ns / 100);
2278 entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE);
2279 srwm = I965_FIFO_SIZE - entries;
2283 drm_dbg_kms(&dev_priv->drm,
2284 "self-refresh entries: %d, wm: %d\n",
2287 entries = intel_wm_method2(clock, htotal,
2288 crtc->base.cursor->state->crtc_w, 4,
2289 sr_latency_ns / 100);
2290 entries = DIV_ROUND_UP(entries,
2291 i965_cursor_wm_info.cacheline_size) +
2292 i965_cursor_wm_info.guard_size;
2294 cursor_sr = i965_cursor_wm_info.fifo_size - entries;
2295 if (cursor_sr > i965_cursor_wm_info.max_wm)
2296 cursor_sr = i965_cursor_wm_info.max_wm;
2298 drm_dbg_kms(&dev_priv->drm,
2299 "self-refresh watermark: display plane %d "
2300 "cursor %d\n", srwm, cursor_sr);
2302 cxsr_enabled = true;
2304 cxsr_enabled = false;
2305 /* Turn off self refresh if both pipes are enabled */
2306 intel_set_memory_cxsr(dev_priv, false);
2309 drm_dbg_kms(&dev_priv->drm,
2310 "Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n",
2313 /* 965 has limitations... */
2314 intel_uncore_write(&dev_priv->uncore, DSPFW1, FW_WM(srwm, SR) |
2318 intel_uncore_write(&dev_priv->uncore, DSPFW2, FW_WM(8, CURSORA) |
2319 FW_WM(8, PLANEC_OLD));
2320 /* update cursor SR watermark */
2321 intel_uncore_write(&dev_priv->uncore, DSPFW3, FW_WM(cursor_sr, CURSOR_SR));
2324 intel_set_memory_cxsr(dev_priv, true);
2329 static void i9xx_update_wm(struct intel_crtc *unused_crtc)
2331 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
2332 const struct intel_watermark_params *wm_info;
2337 int planea_wm, planeb_wm;
2338 struct intel_crtc *crtc, *enabled = NULL;
2340 if (IS_I945GM(dev_priv))
2341 wm_info = &i945_wm_info;
2342 else if (!IS_DISPLAY_VER(dev_priv, 2))
2343 wm_info = &i915_wm_info;
2345 wm_info = &i830_a_wm_info;
2347 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A);
2348 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A);
2349 if (intel_crtc_active(crtc)) {
2350 const struct drm_display_mode *pipe_mode =
2351 &crtc->config->hw.pipe_mode;
2352 const struct drm_framebuffer *fb =
2353 crtc->base.primary->state->fb;
2356 if (IS_DISPLAY_VER(dev_priv, 2))
2359 cpp = fb->format->cpp[0];
2361 planea_wm = intel_calculate_wm(pipe_mode->crtc_clock,
2362 wm_info, fifo_size, cpp,
2363 pessimal_latency_ns);
2366 planea_wm = fifo_size - wm_info->guard_size;
2367 if (planea_wm > (long)wm_info->max_wm)
2368 planea_wm = wm_info->max_wm;
2371 if (IS_DISPLAY_VER(dev_priv, 2))
2372 wm_info = &i830_bc_wm_info;
2374 fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B);
2375 crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B);
2376 if (intel_crtc_active(crtc)) {
2377 const struct drm_display_mode *pipe_mode =
2378 &crtc->config->hw.pipe_mode;
2379 const struct drm_framebuffer *fb =
2380 crtc->base.primary->state->fb;
2383 if (IS_DISPLAY_VER(dev_priv, 2))
2386 cpp = fb->format->cpp[0];
2388 planeb_wm = intel_calculate_wm(pipe_mode->crtc_clock,
2389 wm_info, fifo_size, cpp,
2390 pessimal_latency_ns);
2391 if (enabled == NULL)
2396 planeb_wm = fifo_size - wm_info->guard_size;
2397 if (planeb_wm > (long)wm_info->max_wm)
2398 planeb_wm = wm_info->max_wm;
2401 drm_dbg_kms(&dev_priv->drm,
2402 "FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm);
2404 if (IS_I915GM(dev_priv) && enabled) {
2405 struct drm_i915_gem_object *obj;
2407 obj = intel_fb_obj(enabled->base.primary->state->fb);
2409 /* self-refresh seems busted with untiled */
2410 if (!i915_gem_object_is_tiled(obj))
2415 * Overlay gets an aggressive default since video jitter is bad.
2419 /* Play safe and disable self-refresh before adjusting watermarks. */
2420 intel_set_memory_cxsr(dev_priv, false);
2422 /* Calc sr entries for one plane configs */
2423 if (HAS_FW_BLC(dev_priv) && enabled) {
2424 /* self-refresh has much higher latency */
2425 static const int sr_latency_ns = 6000;
2426 const struct drm_display_mode *pipe_mode =
2427 &enabled->config->hw.pipe_mode;
2428 const struct drm_framebuffer *fb =
2429 enabled->base.primary->state->fb;
2430 int clock = pipe_mode->crtc_clock;
2431 int htotal = pipe_mode->crtc_htotal;
2432 int hdisplay = enabled->config->pipe_src_w;
2436 if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv))
2439 cpp = fb->format->cpp[0];
2441 entries = intel_wm_method2(clock, htotal, hdisplay, cpp,
2442 sr_latency_ns / 100);
2443 entries = DIV_ROUND_UP(entries, wm_info->cacheline_size);
2444 drm_dbg_kms(&dev_priv->drm,
2445 "self-refresh entries: %d\n", entries);
2446 srwm = wm_info->fifo_size - entries;
2450 if (IS_I945G(dev_priv) || IS_I945GM(dev_priv))
2451 intel_uncore_write(&dev_priv->uncore, FW_BLC_SELF,
2452 FW_BLC_SELF_FIFO_MASK | (srwm & 0xff));
2454 intel_uncore_write(&dev_priv->uncore, FW_BLC_SELF, srwm & 0x3f);
2457 drm_dbg_kms(&dev_priv->drm,
2458 "Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n",
2459 planea_wm, planeb_wm, cwm, srwm);
2461 fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f);
2462 fwater_hi = (cwm & 0x1f);
2464 /* Set request length to 8 cachelines per fetch */
2465 fwater_lo = fwater_lo | (1 << 24) | (1 << 8);
2466 fwater_hi = fwater_hi | (1 << 8);
2468 intel_uncore_write(&dev_priv->uncore, FW_BLC, fwater_lo);
2469 intel_uncore_write(&dev_priv->uncore, FW_BLC2, fwater_hi);
2472 intel_set_memory_cxsr(dev_priv, true);
2475 static void i845_update_wm(struct intel_crtc *unused_crtc)
2477 struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev);
2478 struct intel_crtc *crtc;
2479 const struct drm_display_mode *pipe_mode;
2483 crtc = single_enabled_crtc(dev_priv);
2487 pipe_mode = &crtc->config->hw.pipe_mode;
2488 planea_wm = intel_calculate_wm(pipe_mode->crtc_clock,
2490 dev_priv->display.get_fifo_size(dev_priv, PLANE_A),
2491 4, pessimal_latency_ns);
2492 fwater_lo = intel_uncore_read(&dev_priv->uncore, FW_BLC) & ~0xfff;
2493 fwater_lo |= (3<<8) | planea_wm;
2495 drm_dbg_kms(&dev_priv->drm,
2496 "Setting FIFO watermarks - A: %d\n", planea_wm);
2498 intel_uncore_write(&dev_priv->uncore, FW_BLC, fwater_lo);
2501 /* latency must be in 0.1us units. */
2502 static unsigned int ilk_wm_method1(unsigned int pixel_rate,
2504 unsigned int latency)
2508 ret = intel_wm_method1(pixel_rate, cpp, latency);
2509 ret = DIV_ROUND_UP(ret, 64) + 2;
2514 /* latency must be in 0.1us units. */
2515 static unsigned int ilk_wm_method2(unsigned int pixel_rate,
2516 unsigned int htotal,
2519 unsigned int latency)
2523 ret = intel_wm_method2(pixel_rate, htotal,
2524 width, cpp, latency);
2525 ret = DIV_ROUND_UP(ret, 64) + 2;
2530 static u32 ilk_wm_fbc(u32 pri_val, u32 horiz_pixels, u8 cpp)
2533 * Neither of these should be possible since this function shouldn't be
2534 * called if the CRTC is off or the plane is invisible. But let's be
2535 * extra paranoid to avoid a potential divide-by-zero if we screw up
2536 * elsewhere in the driver.
2540 if (WARN_ON(!horiz_pixels))
2543 return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2;
2546 struct ilk_wm_maximums {
2554 * For both WM_PIPE and WM_LP.
2555 * mem_value must be in 0.1us units.
2557 static u32 ilk_compute_pri_wm(const struct intel_crtc_state *crtc_state,
2558 const struct intel_plane_state *plane_state,
2559 u32 mem_value, bool is_lp)
2561 u32 method1, method2;
2567 if (!intel_wm_plane_visible(crtc_state, plane_state))
2570 cpp = plane_state->hw.fb->format->cpp[0];
2572 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
2577 method2 = ilk_wm_method2(crtc_state->pixel_rate,
2578 crtc_state->hw.pipe_mode.crtc_htotal,
2579 drm_rect_width(&plane_state->uapi.dst),
2582 return min(method1, method2);
2586 * For both WM_PIPE and WM_LP.
2587 * mem_value must be in 0.1us units.
2589 static u32 ilk_compute_spr_wm(const struct intel_crtc_state *crtc_state,
2590 const struct intel_plane_state *plane_state,
2593 u32 method1, method2;
2599 if (!intel_wm_plane_visible(crtc_state, plane_state))
2602 cpp = plane_state->hw.fb->format->cpp[0];
2604 method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value);
2605 method2 = ilk_wm_method2(crtc_state->pixel_rate,
2606 crtc_state->hw.pipe_mode.crtc_htotal,
2607 drm_rect_width(&plane_state->uapi.dst),
2609 return min(method1, method2);
2613 * For both WM_PIPE and WM_LP.
2614 * mem_value must be in 0.1us units.
2616 static u32 ilk_compute_cur_wm(const struct intel_crtc_state *crtc_state,
2617 const struct intel_plane_state *plane_state,
2625 if (!intel_wm_plane_visible(crtc_state, plane_state))
2628 cpp = plane_state->hw.fb->format->cpp[0];
2630 return ilk_wm_method2(crtc_state->pixel_rate,
2631 crtc_state->hw.pipe_mode.crtc_htotal,
2632 drm_rect_width(&plane_state->uapi.dst),
2636 /* Only for WM_LP. */
2637 static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state,
2638 const struct intel_plane_state *plane_state,
2643 if (!intel_wm_plane_visible(crtc_state, plane_state))
2646 cpp = plane_state->hw.fb->format->cpp[0];
2648 return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst),
2653 ilk_display_fifo_size(const struct drm_i915_private *dev_priv)
2655 if (DISPLAY_VER(dev_priv) >= 8)
2657 else if (DISPLAY_VER(dev_priv) >= 7)
2664 ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv,
2665 int level, bool is_sprite)
2667 if (DISPLAY_VER(dev_priv) >= 8)
2668 /* BDW primary/sprite plane watermarks */
2669 return level == 0 ? 255 : 2047;
2670 else if (DISPLAY_VER(dev_priv) >= 7)
2671 /* IVB/HSW primary/sprite plane watermarks */
2672 return level == 0 ? 127 : 1023;
2673 else if (!is_sprite)
2674 /* ILK/SNB primary plane watermarks */
2675 return level == 0 ? 127 : 511;
2677 /* ILK/SNB sprite plane watermarks */
2678 return level == 0 ? 63 : 255;
2682 ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level)
2684 if (DISPLAY_VER(dev_priv) >= 7)
2685 return level == 0 ? 63 : 255;
2687 return level == 0 ? 31 : 63;
2690 static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv)
2692 if (DISPLAY_VER(dev_priv) >= 8)
2698 /* Calculate the maximum primary/sprite plane watermark */
2699 static unsigned int ilk_plane_wm_max(const struct drm_i915_private *dev_priv,
2701 const struct intel_wm_config *config,
2702 enum intel_ddb_partitioning ddb_partitioning,
2705 unsigned int fifo_size = ilk_display_fifo_size(dev_priv);
2707 /* if sprites aren't enabled, sprites get nothing */
2708 if (is_sprite && !config->sprites_enabled)
2711 /* HSW allows LP1+ watermarks even with multiple pipes */
2712 if (level == 0 || config->num_pipes_active > 1) {
2713 fifo_size /= INTEL_NUM_PIPES(dev_priv);
2716 * For some reason the non self refresh
2717 * FIFO size is only half of the self
2718 * refresh FIFO size on ILK/SNB.
2720 if (DISPLAY_VER(dev_priv) <= 6)
2724 if (config->sprites_enabled) {
2725 /* level 0 is always calculated with 1:1 split */
2726 if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) {
2735 /* clamp to max that the registers can hold */
2736 return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite));
2739 /* Calculate the maximum cursor plane watermark */
2740 static unsigned int ilk_cursor_wm_max(const struct drm_i915_private *dev_priv,
2742 const struct intel_wm_config *config)
2744 /* HSW LP1+ watermarks w/ multiple pipes */
2745 if (level > 0 && config->num_pipes_active > 1)
2748 /* otherwise just report max that registers can hold */
2749 return ilk_cursor_wm_reg_max(dev_priv, level);
2752 static void ilk_compute_wm_maximums(const struct drm_i915_private *dev_priv,
2754 const struct intel_wm_config *config,
2755 enum intel_ddb_partitioning ddb_partitioning,
2756 struct ilk_wm_maximums *max)
2758 max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false);
2759 max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true);
2760 max->cur = ilk_cursor_wm_max(dev_priv, level, config);
2761 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
2764 static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv,
2766 struct ilk_wm_maximums *max)
2768 max->pri = ilk_plane_wm_reg_max(dev_priv, level, false);
2769 max->spr = ilk_plane_wm_reg_max(dev_priv, level, true);
2770 max->cur = ilk_cursor_wm_reg_max(dev_priv, level);
2771 max->fbc = ilk_fbc_wm_reg_max(dev_priv);
2774 static bool ilk_validate_wm_level(int level,
2775 const struct ilk_wm_maximums *max,
2776 struct intel_wm_level *result)
2780 /* already determined to be invalid? */
2781 if (!result->enable)
2784 result->enable = result->pri_val <= max->pri &&
2785 result->spr_val <= max->spr &&
2786 result->cur_val <= max->cur;
2788 ret = result->enable;
2791 * HACK until we can pre-compute everything,
2792 * and thus fail gracefully if LP0 watermarks
2795 if (level == 0 && !result->enable) {
2796 if (result->pri_val > max->pri)
2797 DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n",
2798 level, result->pri_val, max->pri);
2799 if (result->spr_val > max->spr)
2800 DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n",
2801 level, result->spr_val, max->spr);
2802 if (result->cur_val > max->cur)
2803 DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n",
2804 level, result->cur_val, max->cur);
2806 result->pri_val = min_t(u32, result->pri_val, max->pri);
2807 result->spr_val = min_t(u32, result->spr_val, max->spr);
2808 result->cur_val = min_t(u32, result->cur_val, max->cur);
2809 result->enable = true;
2815 static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv,
2816 const struct intel_crtc *crtc,
2818 struct intel_crtc_state *crtc_state,
2819 const struct intel_plane_state *pristate,
2820 const struct intel_plane_state *sprstate,
2821 const struct intel_plane_state *curstate,
2822 struct intel_wm_level *result)
2824 u16 pri_latency = dev_priv->wm.pri_latency[level];
2825 u16 spr_latency = dev_priv->wm.spr_latency[level];
2826 u16 cur_latency = dev_priv->wm.cur_latency[level];
2828 /* WM1+ latency values stored in 0.5us units */
2836 result->pri_val = ilk_compute_pri_wm(crtc_state, pristate,
2837 pri_latency, level);
2838 result->fbc_val = ilk_compute_fbc_wm(crtc_state, pristate, result->pri_val);
2842 result->spr_val = ilk_compute_spr_wm(crtc_state, sprstate, spr_latency);
2845 result->cur_val = ilk_compute_cur_wm(crtc_state, curstate, cur_latency);
2847 result->enable = true;
2850 static void intel_read_wm_latency(struct drm_i915_private *dev_priv,
2853 struct intel_uncore *uncore = &dev_priv->uncore;
2855 if (DISPLAY_VER(dev_priv) >= 9) {
2858 int level, max_level = ilk_wm_max_level(dev_priv);
2860 /* read the first set of memory latencies[0:3] */
2861 val = 0; /* data0 to be programmed to 0 for first set */
2862 ret = sandybridge_pcode_read(dev_priv,
2863 GEN9_PCODE_READ_MEM_LATENCY,
2867 drm_err(&dev_priv->drm,
2868 "SKL Mailbox read error = %d\n", ret);
2872 wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2873 wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2874 GEN9_MEM_LATENCY_LEVEL_MASK;
2875 wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2876 GEN9_MEM_LATENCY_LEVEL_MASK;
2877 wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2878 GEN9_MEM_LATENCY_LEVEL_MASK;
2880 /* read the second set of memory latencies[4:7] */
2881 val = 1; /* data0 to be programmed to 1 for second set */
2882 ret = sandybridge_pcode_read(dev_priv,
2883 GEN9_PCODE_READ_MEM_LATENCY,
2886 drm_err(&dev_priv->drm,
2887 "SKL Mailbox read error = %d\n", ret);
2891 wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK;
2892 wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) &
2893 GEN9_MEM_LATENCY_LEVEL_MASK;
2894 wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) &
2895 GEN9_MEM_LATENCY_LEVEL_MASK;
2896 wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) &
2897 GEN9_MEM_LATENCY_LEVEL_MASK;
2900 * If a level n (n > 1) has a 0us latency, all levels m (m >= n)
2901 * need to be disabled. We make sure to sanitize the values out
2902 * of the punit to satisfy this requirement.
2904 for (level = 1; level <= max_level; level++) {
2905 if (wm[level] == 0) {
2906 for (i = level + 1; i <= max_level; i++)
2913 * WaWmMemoryReadLatency:skl+,glk
2915 * punit doesn't take into account the read latency so we need
2916 * to add 2us to the various latency levels we retrieve from the
2917 * punit when level 0 response data us 0us.
2921 for (level = 1; level <= max_level; level++) {
2929 * WA Level-0 adjustment for 16GB DIMMs: SKL+
2930 * If we could not get dimm info enable this WA to prevent from
2931 * any underrun. If not able to get Dimm info assume 16GB dimm
2932 * to avoid any underrun.
2934 if (dev_priv->dram_info.wm_lv_0_adjust_needed)
2937 } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
2938 u64 sskpd = intel_uncore_read64(uncore, MCH_SSKPD);
2940 wm[0] = (sskpd >> 56) & 0xFF;
2942 wm[0] = sskpd & 0xF;
2943 wm[1] = (sskpd >> 4) & 0xFF;
2944 wm[2] = (sskpd >> 12) & 0xFF;
2945 wm[3] = (sskpd >> 20) & 0x1FF;
2946 wm[4] = (sskpd >> 32) & 0x1FF;
2947 } else if (DISPLAY_VER(dev_priv) >= 6) {
2948 u32 sskpd = intel_uncore_read(uncore, MCH_SSKPD);
2950 wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK;
2951 wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK;
2952 wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK;
2953 wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK;
2954 } else if (DISPLAY_VER(dev_priv) >= 5) {
2955 u32 mltr = intel_uncore_read(uncore, MLTR_ILK);
2957 /* ILK primary LP0 latency is 700 ns */
2959 wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK;
2960 wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK;
2962 MISSING_CASE(INTEL_DEVID(dev_priv));
2966 static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv,
2969 /* ILK sprite LP0 latency is 1300 ns */
2970 if (IS_DISPLAY_VER(dev_priv, 5))
2974 static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv,
2977 /* ILK cursor LP0 latency is 1300 ns */
2978 if (IS_DISPLAY_VER(dev_priv, 5))
2982 int ilk_wm_max_level(const struct drm_i915_private *dev_priv)
2984 /* how many WM levels are we expecting */
2985 if (DISPLAY_VER(dev_priv) >= 9)
2987 else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
2989 else if (DISPLAY_VER(dev_priv) >= 6)
2995 static void intel_print_wm_latency(struct drm_i915_private *dev_priv,
2999 int level, max_level = ilk_wm_max_level(dev_priv);
3001 for (level = 0; level <= max_level; level++) {
3002 unsigned int latency = wm[level];
3005 drm_dbg_kms(&dev_priv->drm,
3006 "%s WM%d latency not provided\n",
3012 * - latencies are in us on gen9.
3013 * - before then, WM1+ latency values are in 0.5us units
3015 if (DISPLAY_VER(dev_priv) >= 9)
3020 drm_dbg_kms(&dev_priv->drm,
3021 "%s WM%d latency %u (%u.%u usec)\n", name, level,
3022 wm[level], latency / 10, latency % 10);
3026 static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv,
3029 int level, max_level = ilk_wm_max_level(dev_priv);
3034 wm[0] = max(wm[0], min);
3035 for (level = 1; level <= max_level; level++)
3036 wm[level] = max_t(u16, wm[level], DIV_ROUND_UP(min, 5));
3041 static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv)
3046 * The BIOS provided WM memory latency values are often
3047 * inadequate for high resolution displays. Adjust them.
3049 changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) |
3050 ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) |
3051 ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12);
3056 drm_dbg_kms(&dev_priv->drm,
3057 "WM latency values increased to avoid potential underruns\n");
3058 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3059 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3060 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
3063 static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv)
3066 * On some SNB machines (Thinkpad X220 Tablet at least)
3067 * LP3 usage can cause vblank interrupts to be lost.
3068 * The DEIIR bit will go high but it looks like the CPU
3069 * never gets interrupted.
3071 * It's not clear whether other interrupt source could
3072 * be affected or if this is somehow limited to vblank
3073 * interrupts only. To play it safe we disable LP3
3074 * watermarks entirely.
3076 if (dev_priv->wm.pri_latency[3] == 0 &&
3077 dev_priv->wm.spr_latency[3] == 0 &&
3078 dev_priv->wm.cur_latency[3] == 0)
3081 dev_priv->wm.pri_latency[3] = 0;
3082 dev_priv->wm.spr_latency[3] = 0;
3083 dev_priv->wm.cur_latency[3] = 0;
3085 drm_dbg_kms(&dev_priv->drm,
3086 "LP3 watermarks disabled due to potential for lost interrupts\n");
3087 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3088 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3089 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
3092 static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv)
3094 intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency);
3096 memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency,
3097 sizeof(dev_priv->wm.pri_latency));
3098 memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency,
3099 sizeof(dev_priv->wm.pri_latency));
3101 intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency);
3102 intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency);
3104 intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency);
3105 intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency);
3106 intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency);
3108 if (IS_DISPLAY_VER(dev_priv, 6)) {
3109 snb_wm_latency_quirk(dev_priv);
3110 snb_wm_lp3_irq_quirk(dev_priv);
3114 static void skl_setup_wm_latency(struct drm_i915_private *dev_priv)
3116 intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency);
3117 intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency);
3120 static bool ilk_validate_pipe_wm(const struct drm_i915_private *dev_priv,
3121 struct intel_pipe_wm *pipe_wm)
3123 /* LP0 watermark maximums depend on this pipe alone */
3124 const struct intel_wm_config config = {
3125 .num_pipes_active = 1,
3126 .sprites_enabled = pipe_wm->sprites_enabled,
3127 .sprites_scaled = pipe_wm->sprites_scaled,
3129 struct ilk_wm_maximums max;
3131 /* LP0 watermarks always use 1/2 DDB partitioning */
3132 ilk_compute_wm_maximums(dev_priv, 0, &config, INTEL_DDB_PART_1_2, &max);
3134 /* At least LP0 must be valid */
3135 if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) {
3136 drm_dbg_kms(&dev_priv->drm, "LP0 watermark invalid\n");
3143 /* Compute new watermarks for the pipe */
3144 static int ilk_compute_pipe_wm(struct intel_crtc_state *crtc_state)
3146 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
3147 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
3148 struct intel_pipe_wm *pipe_wm;
3149 struct intel_plane *plane;
3150 const struct intel_plane_state *plane_state;
3151 const struct intel_plane_state *pristate = NULL;
3152 const struct intel_plane_state *sprstate = NULL;
3153 const struct intel_plane_state *curstate = NULL;
3154 int level, max_level = ilk_wm_max_level(dev_priv), usable_level;
3155 struct ilk_wm_maximums max;
3157 pipe_wm = &crtc_state->wm.ilk.optimal;
3159 intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) {
3160 if (plane->base.type == DRM_PLANE_TYPE_PRIMARY)
3161 pristate = plane_state;
3162 else if (plane->base.type == DRM_PLANE_TYPE_OVERLAY)
3163 sprstate = plane_state;
3164 else if (plane->base.type == DRM_PLANE_TYPE_CURSOR)
3165 curstate = plane_state;
3168 pipe_wm->pipe_enabled = crtc_state->hw.active;
3170 pipe_wm->sprites_enabled = sprstate->uapi.visible;
3171 pipe_wm->sprites_scaled = sprstate->uapi.visible &&
3172 (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 ||
3173 drm_rect_height(&sprstate->uapi.dst) != drm_rect_height(&sprstate->uapi.src) >> 16);
3176 usable_level = max_level;
3178 /* ILK/SNB: LP2+ watermarks only w/o sprites */
3179 if (DISPLAY_VER(dev_priv) <= 6 && pipe_wm->sprites_enabled)
3182 /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */
3183 if (pipe_wm->sprites_scaled)
3186 memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm));
3187 ilk_compute_wm_level(dev_priv, crtc, 0, crtc_state,
3188 pristate, sprstate, curstate, &pipe_wm->wm[0]);
3190 if (!ilk_validate_pipe_wm(dev_priv, pipe_wm))
3193 ilk_compute_wm_reg_maximums(dev_priv, 1, &max);
3195 for (level = 1; level <= usable_level; level++) {
3196 struct intel_wm_level *wm = &pipe_wm->wm[level];
3198 ilk_compute_wm_level(dev_priv, crtc, level, crtc_state,
3199 pristate, sprstate, curstate, wm);
3202 * Disable any watermark level that exceeds the
3203 * register maximums since such watermarks are
3206 if (!ilk_validate_wm_level(level, &max, wm)) {
3207 memset(wm, 0, sizeof(*wm));
3216 * Build a set of 'intermediate' watermark values that satisfy both the old
3217 * state and the new state. These can be programmed to the hardware
3220 static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate)
3222 struct intel_crtc *intel_crtc = to_intel_crtc(newstate->uapi.crtc);
3223 struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev);
3224 struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate;
3225 struct intel_atomic_state *intel_state =
3226 to_intel_atomic_state(newstate->uapi.state);
3227 const struct intel_crtc_state *oldstate =
3228 intel_atomic_get_old_crtc_state(intel_state, intel_crtc);
3229 const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal;
3230 int level, max_level = ilk_wm_max_level(dev_priv);
3233 * Start with the final, target watermarks, then combine with the
3234 * currently active watermarks to get values that are safe both before
3235 * and after the vblank.
3237 *a = newstate->wm.ilk.optimal;
3238 if (!newstate->hw.active || drm_atomic_crtc_needs_modeset(&newstate->uapi) ||
3239 intel_state->skip_intermediate_wm)
3242 a->pipe_enabled |= b->pipe_enabled;
3243 a->sprites_enabled |= b->sprites_enabled;
3244 a->sprites_scaled |= b->sprites_scaled;
3246 for (level = 0; level <= max_level; level++) {
3247 struct intel_wm_level *a_wm = &a->wm[level];
3248 const struct intel_wm_level *b_wm = &b->wm[level];
3250 a_wm->enable &= b_wm->enable;
3251 a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val);
3252 a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val);
3253 a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val);
3254 a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val);
3258 * We need to make sure that these merged watermark values are
3259 * actually a valid configuration themselves. If they're not,
3260 * there's no safe way to transition from the old state to
3261 * the new state, so we need to fail the atomic transaction.
3263 if (!ilk_validate_pipe_wm(dev_priv, a))
3267 * If our intermediate WM are identical to the final WM, then we can
3268 * omit the post-vblank programming; only update if it's different.
3270 if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0)
3271 newstate->wm.need_postvbl_update = true;
3277 * Merge the watermarks from all active pipes for a specific level.
3279 static void ilk_merge_wm_level(struct drm_i915_private *dev_priv,
3281 struct intel_wm_level *ret_wm)
3283 const struct intel_crtc *intel_crtc;
3285 ret_wm->enable = true;
3287 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
3288 const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk;
3289 const struct intel_wm_level *wm = &active->wm[level];
3291 if (!active->pipe_enabled)
3295 * The watermark values may have been used in the past,
3296 * so we must maintain them in the registers for some
3297 * time even if the level is now disabled.
3300 ret_wm->enable = false;
3302 ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val);
3303 ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val);
3304 ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val);
3305 ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val);
3310 * Merge all low power watermarks for all active pipes.
3312 static void ilk_wm_merge(struct drm_i915_private *dev_priv,
3313 const struct intel_wm_config *config,
3314 const struct ilk_wm_maximums *max,
3315 struct intel_pipe_wm *merged)
3317 int level, max_level = ilk_wm_max_level(dev_priv);
3318 int last_enabled_level = max_level;
3320 /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */
3321 if ((DISPLAY_VER(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) &&
3322 config->num_pipes_active > 1)
3323 last_enabled_level = 0;
3325 /* ILK: FBC WM must be disabled always */
3326 merged->fbc_wm_enabled = DISPLAY_VER(dev_priv) >= 6;
3328 /* merge each WM1+ level */
3329 for (level = 1; level <= max_level; level++) {
3330 struct intel_wm_level *wm = &merged->wm[level];
3332 ilk_merge_wm_level(dev_priv, level, wm);
3334 if (level > last_enabled_level)
3336 else if (!ilk_validate_wm_level(level, max, wm))
3337 /* make sure all following levels get disabled */
3338 last_enabled_level = level - 1;
3341 * The spec says it is preferred to disable
3342 * FBC WMs instead of disabling a WM level.
3344 if (wm->fbc_val > max->fbc) {
3346 merged->fbc_wm_enabled = false;
3351 /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */
3353 * FIXME this is racy. FBC might get enabled later.
3354 * What we should check here is whether FBC can be
3355 * enabled sometime later.
3357 if (IS_DISPLAY_VER(dev_priv, 5) && !merged->fbc_wm_enabled &&
3358 intel_fbc_is_active(dev_priv)) {
3359 for (level = 2; level <= max_level; level++) {
3360 struct intel_wm_level *wm = &merged->wm[level];
3367 static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm)
3369 /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */
3370 return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable);
3373 /* The value we need to program into the WM_LPx latency field */
3374 static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv,
3377 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
3380 return dev_priv->wm.pri_latency[level];
3383 static void ilk_compute_wm_results(struct drm_i915_private *dev_priv,
3384 const struct intel_pipe_wm *merged,
3385 enum intel_ddb_partitioning partitioning,
3386 struct ilk_wm_values *results)
3388 struct intel_crtc *intel_crtc;
3391 results->enable_fbc_wm = merged->fbc_wm_enabled;
3392 results->partitioning = partitioning;
3394 /* LP1+ register values */
3395 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3396 const struct intel_wm_level *r;
3398 level = ilk_wm_lp_to_level(wm_lp, merged);
3400 r = &merged->wm[level];
3403 * Maintain the watermark values even if the level is
3404 * disabled. Doing otherwise could cause underruns.
3406 results->wm_lp[wm_lp - 1] =
3407 (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) |
3408 (r->pri_val << WM1_LP_SR_SHIFT) |
3412 results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN;
3414 if (DISPLAY_VER(dev_priv) >= 8)
3415 results->wm_lp[wm_lp - 1] |=
3416 r->fbc_val << WM1_LP_FBC_SHIFT_BDW;
3418 results->wm_lp[wm_lp - 1] |=
3419 r->fbc_val << WM1_LP_FBC_SHIFT;
3422 * Always set WM1S_LP_EN when spr_val != 0, even if the
3423 * level is disabled. Doing otherwise could cause underruns.
3425 if (DISPLAY_VER(dev_priv) <= 6 && r->spr_val) {
3426 drm_WARN_ON(&dev_priv->drm, wm_lp != 1);
3427 results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val;
3429 results->wm_lp_spr[wm_lp - 1] = r->spr_val;
3432 /* LP0 register values */
3433 for_each_intel_crtc(&dev_priv->drm, intel_crtc) {
3434 enum pipe pipe = intel_crtc->pipe;
3435 const struct intel_pipe_wm *pipe_wm = &intel_crtc->wm.active.ilk;
3436 const struct intel_wm_level *r = &pipe_wm->wm[0];
3438 if (drm_WARN_ON(&dev_priv->drm, !r->enable))
3441 results->wm_pipe[pipe] =
3442 (r->pri_val << WM0_PIPE_PLANE_SHIFT) |
3443 (r->spr_val << WM0_PIPE_SPRITE_SHIFT) |
3448 /* Find the result with the highest level enabled. Check for enable_fbc_wm in
3449 * case both are at the same level. Prefer r1 in case they're the same. */
3450 static struct intel_pipe_wm *
3451 ilk_find_best_result(struct drm_i915_private *dev_priv,
3452 struct intel_pipe_wm *r1,
3453 struct intel_pipe_wm *r2)
3455 int level, max_level = ilk_wm_max_level(dev_priv);
3456 int level1 = 0, level2 = 0;
3458 for (level = 1; level <= max_level; level++) {
3459 if (r1->wm[level].enable)
3461 if (r2->wm[level].enable)
3465 if (level1 == level2) {
3466 if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled)
3470 } else if (level1 > level2) {
3477 /* dirty bits used to track which watermarks need changes */
3478 #define WM_DIRTY_PIPE(pipe) (1 << (pipe))
3479 #define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp)))
3480 #define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3))
3481 #define WM_DIRTY_FBC (1 << 24)
3482 #define WM_DIRTY_DDB (1 << 25)
3484 static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv,
3485 const struct ilk_wm_values *old,
3486 const struct ilk_wm_values *new)
3488 unsigned int dirty = 0;
3492 for_each_pipe(dev_priv, pipe) {
3493 if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) {
3494 dirty |= WM_DIRTY_PIPE(pipe);
3495 /* Must disable LP1+ watermarks too */
3496 dirty |= WM_DIRTY_LP_ALL;
3500 if (old->enable_fbc_wm != new->enable_fbc_wm) {
3501 dirty |= WM_DIRTY_FBC;
3502 /* Must disable LP1+ watermarks too */
3503 dirty |= WM_DIRTY_LP_ALL;
3506 if (old->partitioning != new->partitioning) {
3507 dirty |= WM_DIRTY_DDB;
3508 /* Must disable LP1+ watermarks too */
3509 dirty |= WM_DIRTY_LP_ALL;
3512 /* LP1+ watermarks already deemed dirty, no need to continue */
3513 if (dirty & WM_DIRTY_LP_ALL)
3516 /* Find the lowest numbered LP1+ watermark in need of an update... */
3517 for (wm_lp = 1; wm_lp <= 3; wm_lp++) {
3518 if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] ||
3519 old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1])
3523 /* ...and mark it and all higher numbered LP1+ watermarks as dirty */
3524 for (; wm_lp <= 3; wm_lp++)
3525 dirty |= WM_DIRTY_LP(wm_lp);
3530 static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv,
3533 struct ilk_wm_values *previous = &dev_priv->wm.hw;
3534 bool changed = false;
3536 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) {
3537 previous->wm_lp[2] &= ~WM1_LP_SR_EN;
3538 intel_uncore_write(&dev_priv->uncore, WM3_LP_ILK, previous->wm_lp[2]);
3541 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) {
3542 previous->wm_lp[1] &= ~WM1_LP_SR_EN;
3543 intel_uncore_write(&dev_priv->uncore, WM2_LP_ILK, previous->wm_lp[1]);
3546 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) {
3547 previous->wm_lp[0] &= ~WM1_LP_SR_EN;
3548 intel_uncore_write(&dev_priv->uncore, WM1_LP_ILK, previous->wm_lp[0]);
3553 * Don't touch WM1S_LP_EN here.
3554 * Doing so could cause underruns.
3561 * The spec says we shouldn't write when we don't need, because every write
3562 * causes WMs to be re-evaluated, expending some power.
3564 static void ilk_write_wm_values(struct drm_i915_private *dev_priv,
3565 struct ilk_wm_values *results)
3567 struct ilk_wm_values *previous = &dev_priv->wm.hw;
3571 dirty = ilk_compute_wm_dirty(dev_priv, previous, results);
3575 _ilk_disable_lp_wm(dev_priv, dirty);
3577 if (dirty & WM_DIRTY_PIPE(PIPE_A))
3578 intel_uncore_write(&dev_priv->uncore, WM0_PIPE_ILK(PIPE_A), results->wm_pipe[0]);
3579 if (dirty & WM_DIRTY_PIPE(PIPE_B))
3580 intel_uncore_write(&dev_priv->uncore, WM0_PIPE_ILK(PIPE_B), results->wm_pipe[1]);
3581 if (dirty & WM_DIRTY_PIPE(PIPE_C))
3582 intel_uncore_write(&dev_priv->uncore, WM0_PIPE_ILK(PIPE_C), results->wm_pipe[2]);
3584 if (dirty & WM_DIRTY_DDB) {
3585 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) {
3586 val = intel_uncore_read(&dev_priv->uncore, WM_MISC);
3587 if (results->partitioning == INTEL_DDB_PART_1_2)
3588 val &= ~WM_MISC_DATA_PARTITION_5_6;
3590 val |= WM_MISC_DATA_PARTITION_5_6;
3591 intel_uncore_write(&dev_priv->uncore, WM_MISC, val);
3593 val = intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL2);
3594 if (results->partitioning == INTEL_DDB_PART_1_2)
3595 val &= ~DISP_DATA_PARTITION_5_6;
3597 val |= DISP_DATA_PARTITION_5_6;
3598 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL2, val);
3602 if (dirty & WM_DIRTY_FBC) {
3603 val = intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL);
3604 if (results->enable_fbc_wm)
3605 val &= ~DISP_FBC_WM_DIS;
3607 val |= DISP_FBC_WM_DIS;
3608 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, val);
3611 if (dirty & WM_DIRTY_LP(1) &&
3612 previous->wm_lp_spr[0] != results->wm_lp_spr[0])
3613 intel_uncore_write(&dev_priv->uncore, WM1S_LP_ILK, results->wm_lp_spr[0]);
3615 if (DISPLAY_VER(dev_priv) >= 7) {
3616 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1])
3617 intel_uncore_write(&dev_priv->uncore, WM2S_LP_IVB, results->wm_lp_spr[1]);
3618 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2])
3619 intel_uncore_write(&dev_priv->uncore, WM3S_LP_IVB, results->wm_lp_spr[2]);
3622 if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0])
3623 intel_uncore_write(&dev_priv->uncore, WM1_LP_ILK, results->wm_lp[0]);
3624 if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1])
3625 intel_uncore_write(&dev_priv->uncore, WM2_LP_ILK, results->wm_lp[1]);
3626 if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2])
3627 intel_uncore_write(&dev_priv->uncore, WM3_LP_ILK, results->wm_lp[2]);
3629 dev_priv->wm.hw = *results;
3632 bool ilk_disable_lp_wm(struct drm_i915_private *dev_priv)
3634 return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL);
3637 u8 intel_enabled_dbuf_slices_mask(struct drm_i915_private *dev_priv)
3640 int max_slices = INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
3641 u8 enabled_slices_mask = 0;
3643 for (i = 0; i < max_slices; i++) {
3644 if (intel_uncore_read(&dev_priv->uncore, DBUF_CTL_S(i)) & DBUF_POWER_STATE)
3645 enabled_slices_mask |= BIT(i);
3648 return enabled_slices_mask;
3652 * FIXME: We still don't have the proper code detect if we need to apply the WA,
3653 * so assume we'll always need it in order to avoid underruns.
3655 static bool skl_needs_memory_bw_wa(struct drm_i915_private *dev_priv)
3657 return IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv);
3661 intel_has_sagv(struct drm_i915_private *dev_priv)
3663 return (IS_GEN9_BC(dev_priv) || DISPLAY_VER(dev_priv) >= 11 || IS_CANNONLAKE(dev_priv)) &&
3664 dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED;
3668 skl_setup_sagv_block_time(struct drm_i915_private *dev_priv)
3670 if (DISPLAY_VER(dev_priv) >= 12) {
3674 ret = sandybridge_pcode_read(dev_priv,
3675 GEN12_PCODE_READ_SAGV_BLOCK_TIME_US,
3678 dev_priv->sagv_block_time_us = val;
3682 drm_dbg(&dev_priv->drm, "Couldn't read SAGV block time!\n");
3683 } else if (IS_DISPLAY_VER(dev_priv, 11)) {
3684 dev_priv->sagv_block_time_us = 10;
3686 } else if (IS_DISPLAY_VER(dev_priv, 10)) {
3687 dev_priv->sagv_block_time_us = 20;
3689 } else if (IS_DISPLAY_VER(dev_priv, 9)) {
3690 dev_priv->sagv_block_time_us = 30;
3693 MISSING_CASE(DISPLAY_VER(dev_priv));
3696 /* Default to an unusable block time */
3697 dev_priv->sagv_block_time_us = -1;
3701 * SAGV dynamically adjusts the system agent voltage and clock frequencies
3702 * depending on power and performance requirements. The display engine access
3703 * to system memory is blocked during the adjustment time. Because of the
3704 * blocking time, having this enabled can cause full system hangs and/or pipe
3705 * underruns if we don't meet all of the following requirements:
3707 * - <= 1 pipe enabled
3708 * - All planes can enable watermarks for latencies >= SAGV engine block time
3709 * - We're not using an interlaced display configuration
3712 intel_enable_sagv(struct drm_i915_private *dev_priv)
3716 if (!intel_has_sagv(dev_priv))
3719 if (dev_priv->sagv_status == I915_SAGV_ENABLED)
3722 drm_dbg_kms(&dev_priv->drm, "Enabling SAGV\n");
3723 ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3726 /* We don't need to wait for SAGV when enabling */
3729 * Some skl systems, pre-release machines in particular,
3730 * don't actually have SAGV.
3732 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
3733 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
3734 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
3736 } else if (ret < 0) {
3737 drm_err(&dev_priv->drm, "Failed to enable SAGV\n");
3741 dev_priv->sagv_status = I915_SAGV_ENABLED;
3746 intel_disable_sagv(struct drm_i915_private *dev_priv)
3750 if (!intel_has_sagv(dev_priv))
3753 if (dev_priv->sagv_status == I915_SAGV_DISABLED)
3756 drm_dbg_kms(&dev_priv->drm, "Disabling SAGV\n");
3757 /* bspec says to keep retrying for at least 1 ms */
3758 ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL,
3760 GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED,
3763 * Some skl systems, pre-release machines in particular,
3764 * don't actually have SAGV.
3766 if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) {
3767 drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n");
3768 dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED;
3770 } else if (ret < 0) {
3771 drm_err(&dev_priv->drm, "Failed to disable SAGV (%d)\n", ret);
3775 dev_priv->sagv_status = I915_SAGV_DISABLED;
3779 void intel_sagv_pre_plane_update(struct intel_atomic_state *state)
3781 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3782 const struct intel_bw_state *new_bw_state;
3783 const struct intel_bw_state *old_bw_state;
3787 * Just return if we can't control SAGV or don't have it.
3788 * This is different from situation when we have SAGV but just can't
3789 * afford it due to DBuf limitation - in case if SAGV is completely
3790 * disabled in a BIOS, we are not even allowed to send a PCode request,
3791 * as it will throw an error. So have to check it here.
3793 if (!intel_has_sagv(dev_priv))
3796 new_bw_state = intel_atomic_get_new_bw_state(state);
3800 if (DISPLAY_VER(dev_priv) < 11 && !intel_can_enable_sagv(dev_priv, new_bw_state)) {
3801 intel_disable_sagv(dev_priv);
3805 old_bw_state = intel_atomic_get_old_bw_state(state);
3809 if (new_bw_state->qgv_points_mask == old_bw_state->qgv_points_mask)
3812 new_mask = old_bw_state->qgv_points_mask | new_bw_state->qgv_points_mask;
3815 * If new mask is zero - means there is nothing to mask,
3816 * we can only unmask, which should be done in unmask.
3822 * Restrict required qgv points before updating the configuration.
3823 * According to BSpec we can't mask and unmask qgv points at the same
3824 * time. Also masking should be done before updating the configuration
3825 * and unmasking afterwards.
3827 icl_pcode_restrict_qgv_points(dev_priv, new_mask);
3830 void intel_sagv_post_plane_update(struct intel_atomic_state *state)
3832 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3833 const struct intel_bw_state *new_bw_state;
3834 const struct intel_bw_state *old_bw_state;
3838 * Just return if we can't control SAGV or don't have it.
3839 * This is different from situation when we have SAGV but just can't
3840 * afford it due to DBuf limitation - in case if SAGV is completely
3841 * disabled in a BIOS, we are not even allowed to send a PCode request,
3842 * as it will throw an error. So have to check it here.
3844 if (!intel_has_sagv(dev_priv))
3847 new_bw_state = intel_atomic_get_new_bw_state(state);
3851 if (DISPLAY_VER(dev_priv) < 11 && intel_can_enable_sagv(dev_priv, new_bw_state)) {
3852 intel_enable_sagv(dev_priv);
3856 old_bw_state = intel_atomic_get_old_bw_state(state);
3860 if (new_bw_state->qgv_points_mask == old_bw_state->qgv_points_mask)
3863 new_mask = new_bw_state->qgv_points_mask;
3866 * Allow required qgv points after updating the configuration.
3867 * According to BSpec we can't mask and unmask qgv points at the same
3868 * time. Also masking should be done before updating the configuration
3869 * and unmasking afterwards.
3871 icl_pcode_restrict_qgv_points(dev_priv, new_mask);
3874 static bool skl_crtc_can_enable_sagv(const struct intel_crtc_state *crtc_state)
3876 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
3877 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
3878 enum plane_id plane_id;
3879 int max_level = INT_MAX;
3881 if (!intel_has_sagv(dev_priv))
3884 if (!crtc_state->hw.active)
3887 if (crtc_state->hw.pipe_mode.flags & DRM_MODE_FLAG_INTERLACE)
3890 for_each_plane_id_on_crtc(crtc, plane_id) {
3891 const struct skl_plane_wm *wm =
3892 &crtc_state->wm.skl.optimal.planes[plane_id];
3895 /* Skip this plane if it's not enabled */
3896 if (!wm->wm[0].enable)
3899 /* Find the highest enabled wm level for this plane */
3900 for (level = ilk_wm_max_level(dev_priv);
3901 !wm->wm[level].enable; --level)
3904 /* Highest common enabled wm level for all planes */
3905 max_level = min(level, max_level);
3908 /* No enabled planes? */
3909 if (max_level == INT_MAX)
3912 for_each_plane_id_on_crtc(crtc, plane_id) {
3913 const struct skl_plane_wm *wm =
3914 &crtc_state->wm.skl.optimal.planes[plane_id];
3917 * All enabled planes must have enabled a common wm level that
3918 * can tolerate memory latencies higher than sagv_block_time_us
3920 if (wm->wm[0].enable && !wm->wm[max_level].can_sagv)
3927 static bool tgl_crtc_can_enable_sagv(const struct intel_crtc_state *crtc_state)
3929 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
3930 enum plane_id plane_id;
3932 if (!crtc_state->hw.active)
3935 for_each_plane_id_on_crtc(crtc, plane_id) {
3936 const struct skl_plane_wm *wm =
3937 &crtc_state->wm.skl.optimal.planes[plane_id];
3939 if (wm->wm[0].enable && !wm->sagv.wm0.enable)
3946 static bool intel_crtc_can_enable_sagv(const struct intel_crtc_state *crtc_state)
3948 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
3949 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
3951 if (DISPLAY_VER(dev_priv) >= 12)
3952 return tgl_crtc_can_enable_sagv(crtc_state);
3954 return skl_crtc_can_enable_sagv(crtc_state);
3957 bool intel_can_enable_sagv(struct drm_i915_private *dev_priv,
3958 const struct intel_bw_state *bw_state)
3960 if (DISPLAY_VER(dev_priv) < 11 &&
3961 bw_state->active_pipes && !is_power_of_2(bw_state->active_pipes))
3964 return bw_state->pipe_sagv_reject == 0;
3967 static int intel_compute_sagv_mask(struct intel_atomic_state *state)
3969 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
3971 struct intel_crtc *crtc;
3972 struct intel_crtc_state *new_crtc_state;
3973 struct intel_bw_state *new_bw_state = NULL;
3974 const struct intel_bw_state *old_bw_state = NULL;
3977 for_each_new_intel_crtc_in_state(state, crtc,
3978 new_crtc_state, i) {
3979 new_bw_state = intel_atomic_get_bw_state(state);
3980 if (IS_ERR(new_bw_state))
3981 return PTR_ERR(new_bw_state);
3983 old_bw_state = intel_atomic_get_old_bw_state(state);
3985 if (intel_crtc_can_enable_sagv(new_crtc_state))
3986 new_bw_state->pipe_sagv_reject &= ~BIT(crtc->pipe);
3988 new_bw_state->pipe_sagv_reject |= BIT(crtc->pipe);
3994 new_bw_state->active_pipes =
3995 intel_calc_active_pipes(state, old_bw_state->active_pipes);
3997 if (new_bw_state->active_pipes != old_bw_state->active_pipes) {
3998 ret = intel_atomic_lock_global_state(&new_bw_state->base);
4003 for_each_new_intel_crtc_in_state(state, crtc,
4004 new_crtc_state, i) {
4005 struct skl_pipe_wm *pipe_wm = &new_crtc_state->wm.skl.optimal;
4008 * We store use_sagv_wm in the crtc state rather than relying on
4009 * that bw state since we have no convenient way to get at the
4010 * latter from the plane commit hooks (especially in the legacy
4013 pipe_wm->use_sagv_wm = DISPLAY_VER(dev_priv) >= 12 &&
4014 intel_can_enable_sagv(dev_priv, new_bw_state);
4017 if (intel_can_enable_sagv(dev_priv, new_bw_state) !=
4018 intel_can_enable_sagv(dev_priv, old_bw_state)) {
4019 ret = intel_atomic_serialize_global_state(&new_bw_state->base);
4022 } else if (new_bw_state->pipe_sagv_reject != old_bw_state->pipe_sagv_reject) {
4023 ret = intel_atomic_lock_global_state(&new_bw_state->base);
4031 static int intel_dbuf_size(struct drm_i915_private *dev_priv)
4033 int ddb_size = INTEL_INFO(dev_priv)->ddb_size;
4035 drm_WARN_ON(&dev_priv->drm, ddb_size == 0);
4037 if (DISPLAY_VER(dev_priv) < 11)
4038 return ddb_size - 4; /* 4 blocks for bypass path allocation */
4043 static int intel_dbuf_slice_size(struct drm_i915_private *dev_priv)
4045 return intel_dbuf_size(dev_priv) /
4046 INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
4050 skl_ddb_entry_for_slices(struct drm_i915_private *dev_priv, u8 slice_mask,
4051 struct skl_ddb_entry *ddb)
4053 int slice_size = intel_dbuf_slice_size(dev_priv);
4061 ddb->start = (ffs(slice_mask) - 1) * slice_size;
4062 ddb->end = fls(slice_mask) * slice_size;
4064 WARN_ON(ddb->start >= ddb->end);
4065 WARN_ON(ddb->end > intel_dbuf_size(dev_priv));
4068 u32 skl_ddb_dbuf_slice_mask(struct drm_i915_private *dev_priv,
4069 const struct skl_ddb_entry *entry)
4072 u16 ddb_size = intel_dbuf_size(dev_priv);
4073 u16 num_supported_slices = INTEL_INFO(dev_priv)->num_supported_dbuf_slices;
4074 u16 slice_size = ddb_size / num_supported_slices;
4078 if (!skl_ddb_entry_size(entry))
4081 start_slice = entry->start / slice_size;
4082 end_slice = (entry->end - 1) / slice_size;
4085 * Per plane DDB entry can in a really worst case be on multiple slices
4086 * but single entry is anyway contigious.
4088 while (start_slice <= end_slice) {
4089 slice_mask |= BIT(start_slice);
4096 static unsigned int intel_crtc_ddb_weight(const struct intel_crtc_state *crtc_state)
4098 const struct drm_display_mode *pipe_mode = &crtc_state->hw.pipe_mode;
4099 int hdisplay, vdisplay;
4101 if (!crtc_state->hw.active)
4105 * Watermark/ddb requirement highly depends upon width of the
4106 * framebuffer, So instead of allocating DDB equally among pipes
4107 * distribute DDB based on resolution/width of the display.
4109 drm_mode_get_hv_timing(pipe_mode, &hdisplay, &vdisplay);
4114 static void intel_crtc_dbuf_weights(const struct intel_dbuf_state *dbuf_state,
4116 unsigned int *weight_start,
4117 unsigned int *weight_end,
4118 unsigned int *weight_total)
4120 struct drm_i915_private *dev_priv =
4121 to_i915(dbuf_state->base.state->base.dev);
4128 for_each_pipe(dev_priv, pipe) {
4129 int weight = dbuf_state->weight[pipe];
4132 * Do not account pipes using other slice sets
4133 * luckily as of current BSpec slice sets do not partially
4134 * intersect(pipes share either same one slice or same slice set
4135 * i.e no partial intersection), so it is enough to check for
4138 if (dbuf_state->slices[pipe] != dbuf_state->slices[for_pipe])
4141 *weight_total += weight;
4142 if (pipe < for_pipe) {
4143 *weight_start += weight;
4144 *weight_end += weight;
4145 } else if (pipe == for_pipe) {
4146 *weight_end += weight;
4152 skl_crtc_allocate_ddb(struct intel_atomic_state *state, struct intel_crtc *crtc)
4154 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4155 unsigned int weight_total, weight_start, weight_end;
4156 const struct intel_dbuf_state *old_dbuf_state =
4157 intel_atomic_get_old_dbuf_state(state);
4158 struct intel_dbuf_state *new_dbuf_state =
4159 intel_atomic_get_new_dbuf_state(state);
4160 struct intel_crtc_state *crtc_state;
4161 struct skl_ddb_entry ddb_slices;
4162 enum pipe pipe = crtc->pipe;
4164 u32 dbuf_slice_mask;
4168 if (new_dbuf_state->weight[pipe] == 0) {
4169 new_dbuf_state->ddb[pipe].start = 0;
4170 new_dbuf_state->ddb[pipe].end = 0;
4174 dbuf_slice_mask = new_dbuf_state->slices[pipe];
4176 skl_ddb_entry_for_slices(dev_priv, dbuf_slice_mask, &ddb_slices);
4177 ddb_range_size = skl_ddb_entry_size(&ddb_slices);
4179 intel_crtc_dbuf_weights(new_dbuf_state, pipe,
4180 &weight_start, &weight_end, &weight_total);
4182 start = ddb_range_size * weight_start / weight_total;
4183 end = ddb_range_size * weight_end / weight_total;
4185 new_dbuf_state->ddb[pipe].start = ddb_slices.start + start;
4186 new_dbuf_state->ddb[pipe].end = ddb_slices.start + end;
4189 if (skl_ddb_entry_equal(&old_dbuf_state->ddb[pipe],
4190 &new_dbuf_state->ddb[pipe]))
4193 ret = intel_atomic_lock_global_state(&new_dbuf_state->base);
4197 crtc_state = intel_atomic_get_crtc_state(&state->base, crtc);
4198 if (IS_ERR(crtc_state))
4199 return PTR_ERR(crtc_state);
4201 crtc_state->wm.skl.ddb = new_dbuf_state->ddb[pipe];
4203 drm_dbg_kms(&dev_priv->drm,
4204 "[CRTC:%d:%s] dbuf slices 0x%x -> 0x%x, ddb (%d - %d) -> (%d - %d), active pipes 0x%x -> 0x%x\n",
4205 crtc->base.base.id, crtc->base.name,
4206 old_dbuf_state->slices[pipe], new_dbuf_state->slices[pipe],
4207 old_dbuf_state->ddb[pipe].start, old_dbuf_state->ddb[pipe].end,
4208 new_dbuf_state->ddb[pipe].start, new_dbuf_state->ddb[pipe].end,
4209 old_dbuf_state->active_pipes, new_dbuf_state->active_pipes);
4214 static int skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
4215 int width, const struct drm_format_info *format,
4216 u64 modifier, unsigned int rotation,
4217 u32 plane_pixel_rate, struct skl_wm_params *wp,
4219 static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
4221 unsigned int latency,
4222 const struct skl_wm_params *wp,
4223 const struct skl_wm_level *result_prev,
4224 struct skl_wm_level *result /* out */);
4227 skl_cursor_allocation(const struct intel_crtc_state *crtc_state,
4230 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
4231 int level, max_level = ilk_wm_max_level(dev_priv);
4232 struct skl_wm_level wm = {};
4233 int ret, min_ddb_alloc = 0;
4234 struct skl_wm_params wp;
4236 ret = skl_compute_wm_params(crtc_state, 256,
4237 drm_format_info(DRM_FORMAT_ARGB8888),
4238 DRM_FORMAT_MOD_LINEAR,
4240 crtc_state->pixel_rate, &wp, 0);
4241 drm_WARN_ON(&dev_priv->drm, ret);
4243 for (level = 0; level <= max_level; level++) {
4244 unsigned int latency = dev_priv->wm.skl_latency[level];
4246 skl_compute_plane_wm(crtc_state, level, latency, &wp, &wm, &wm);
4247 if (wm.min_ddb_alloc == U16_MAX)
4250 min_ddb_alloc = wm.min_ddb_alloc;
4253 return max(num_active == 1 ? 32 : 8, min_ddb_alloc);
4256 static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv,
4257 struct skl_ddb_entry *entry, u32 reg)
4260 entry->start = reg & DDB_ENTRY_MASK;
4261 entry->end = (reg >> DDB_ENTRY_END_SHIFT) & DDB_ENTRY_MASK;
4268 skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv,
4269 const enum pipe pipe,
4270 const enum plane_id plane_id,
4271 struct skl_ddb_entry *ddb_y,
4272 struct skl_ddb_entry *ddb_uv)
4277 /* Cursor doesn't support NV12/planar, so no extra calculation needed */
4278 if (plane_id == PLANE_CURSOR) {
4279 val = intel_uncore_read(&dev_priv->uncore, CUR_BUF_CFG(pipe));
4280 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4284 val = intel_uncore_read(&dev_priv->uncore, PLANE_CTL(pipe, plane_id));
4286 /* No DDB allocated for disabled planes */
4287 if (val & PLANE_CTL_ENABLE)
4288 fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK,
4289 val & PLANE_CTL_ORDER_RGBX,
4290 val & PLANE_CTL_ALPHA_MASK);
4292 if (DISPLAY_VER(dev_priv) >= 11) {
4293 val = intel_uncore_read(&dev_priv->uncore, PLANE_BUF_CFG(pipe, plane_id));
4294 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4296 val = intel_uncore_read(&dev_priv->uncore, PLANE_BUF_CFG(pipe, plane_id));
4297 val2 = intel_uncore_read(&dev_priv->uncore, PLANE_NV12_BUF_CFG(pipe, plane_id));
4300 drm_format_info_is_yuv_semiplanar(drm_format_info(fourcc)))
4303 skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val);
4304 skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2);
4308 void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc,
4309 struct skl_ddb_entry *ddb_y,
4310 struct skl_ddb_entry *ddb_uv)
4312 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4313 enum intel_display_power_domain power_domain;
4314 enum pipe pipe = crtc->pipe;
4315 intel_wakeref_t wakeref;
4316 enum plane_id plane_id;
4318 power_domain = POWER_DOMAIN_PIPE(pipe);
4319 wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain);
4323 for_each_plane_id_on_crtc(crtc, plane_id)
4324 skl_ddb_get_hw_plane_state(dev_priv, pipe,
4329 intel_display_power_put(dev_priv, power_domain, wakeref);
4333 * Determines the downscale amount of a plane for the purposes of watermark calculations.
4334 * The bspec defines downscale amount as:
4337 * Horizontal down scale amount = maximum[1, Horizontal source size /
4338 * Horizontal destination size]
4339 * Vertical down scale amount = maximum[1, Vertical source size /
4340 * Vertical destination size]
4341 * Total down scale amount = Horizontal down scale amount *
4342 * Vertical down scale amount
4345 * Return value is provided in 16.16 fixed point form to retain fractional part.
4346 * Caller should take care of dividing & rounding off the value.
4348 static uint_fixed_16_16_t
4349 skl_plane_downscale_amount(const struct intel_crtc_state *crtc_state,
4350 const struct intel_plane_state *plane_state)
4352 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
4353 u32 src_w, src_h, dst_w, dst_h;
4354 uint_fixed_16_16_t fp_w_ratio, fp_h_ratio;
4355 uint_fixed_16_16_t downscale_h, downscale_w;
4357 if (drm_WARN_ON(&dev_priv->drm,
4358 !intel_wm_plane_visible(crtc_state, plane_state)))
4359 return u32_to_fixed16(0);
4362 * Src coordinates are already rotated by 270 degrees for
4363 * the 90/270 degree plane rotation cases (to match the
4364 * GTT mapping), hence no need to account for rotation here.
4366 * n.b., src is 16.16 fixed point, dst is whole integer.
4368 src_w = drm_rect_width(&plane_state->uapi.src) >> 16;
4369 src_h = drm_rect_height(&plane_state->uapi.src) >> 16;
4370 dst_w = drm_rect_width(&plane_state->uapi.dst);
4371 dst_h = drm_rect_height(&plane_state->uapi.dst);
4373 fp_w_ratio = div_fixed16(src_w, dst_w);
4374 fp_h_ratio = div_fixed16(src_h, dst_h);
4375 downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1));
4376 downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1));
4378 return mul_fixed16(downscale_w, downscale_h);
4381 struct dbuf_slice_conf_entry {
4383 u8 dbuf_mask[I915_MAX_PIPES];
4387 * Table taken from Bspec 12716
4388 * Pipes do have some preferred DBuf slice affinity,
4389 * plus there are some hardcoded requirements on how
4390 * those should be distributed for multipipe scenarios.
4391 * For more DBuf slices algorithm can get even more messy
4392 * and less readable, so decided to use a table almost
4393 * as is from BSpec itself - that way it is at least easier
4394 * to compare, change and check.
4396 static const struct dbuf_slice_conf_entry icl_allowed_dbufs[] =
4397 /* Autogenerated with igt/tools/intel_dbuf_map tool: */
4400 .active_pipes = BIT(PIPE_A),
4402 [PIPE_A] = BIT(DBUF_S1),
4406 .active_pipes = BIT(PIPE_B),
4408 [PIPE_B] = BIT(DBUF_S1),
4412 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4414 [PIPE_A] = BIT(DBUF_S1),
4415 [PIPE_B] = BIT(DBUF_S2),
4419 .active_pipes = BIT(PIPE_C),
4421 [PIPE_C] = BIT(DBUF_S2),
4425 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4427 [PIPE_A] = BIT(DBUF_S1),
4428 [PIPE_C] = BIT(DBUF_S2),
4432 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4434 [PIPE_B] = BIT(DBUF_S1),
4435 [PIPE_C] = BIT(DBUF_S2),
4439 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4441 [PIPE_A] = BIT(DBUF_S1),
4442 [PIPE_B] = BIT(DBUF_S1),
4443 [PIPE_C] = BIT(DBUF_S2),
4450 * Table taken from Bspec 49255
4451 * Pipes do have some preferred DBuf slice affinity,
4452 * plus there are some hardcoded requirements on how
4453 * those should be distributed for multipipe scenarios.
4454 * For more DBuf slices algorithm can get even more messy
4455 * and less readable, so decided to use a table almost
4456 * as is from BSpec itself - that way it is at least easier
4457 * to compare, change and check.
4459 static const struct dbuf_slice_conf_entry tgl_allowed_dbufs[] =
4460 /* Autogenerated with igt/tools/intel_dbuf_map tool: */
4463 .active_pipes = BIT(PIPE_A),
4465 [PIPE_A] = BIT(DBUF_S1) | BIT(DBUF_S2),
4469 .active_pipes = BIT(PIPE_B),
4471 [PIPE_B] = BIT(DBUF_S1) | BIT(DBUF_S2),
4475 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B),
4477 [PIPE_A] = BIT(DBUF_S2),
4478 [PIPE_B] = BIT(DBUF_S1),
4482 .active_pipes = BIT(PIPE_C),
4484 [PIPE_C] = BIT(DBUF_S2) | BIT(DBUF_S1),
4488 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C),
4490 [PIPE_A] = BIT(DBUF_S1),
4491 [PIPE_C] = BIT(DBUF_S2),
4495 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C),
4497 [PIPE_B] = BIT(DBUF_S1),
4498 [PIPE_C] = BIT(DBUF_S2),
4502 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C),
4504 [PIPE_A] = BIT(DBUF_S1),
4505 [PIPE_B] = BIT(DBUF_S1),
4506 [PIPE_C] = BIT(DBUF_S2),
4510 .active_pipes = BIT(PIPE_D),
4512 [PIPE_D] = BIT(DBUF_S2) | BIT(DBUF_S1),
4516 .active_pipes = BIT(PIPE_A) | BIT(PIPE_D),
4518 [PIPE_A] = BIT(DBUF_S1),
4519 [PIPE_D] = BIT(DBUF_S2),
4523 .active_pipes = BIT(PIPE_B) | BIT(PIPE_D),
4525 [PIPE_B] = BIT(DBUF_S1),
4526 [PIPE_D] = BIT(DBUF_S2),
4530 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_D),
4532 [PIPE_A] = BIT(DBUF_S1),
4533 [PIPE_B] = BIT(DBUF_S1),
4534 [PIPE_D] = BIT(DBUF_S2),
4538 .active_pipes = BIT(PIPE_C) | BIT(PIPE_D),
4540 [PIPE_C] = BIT(DBUF_S1),
4541 [PIPE_D] = BIT(DBUF_S2),
4545 .active_pipes = BIT(PIPE_A) | BIT(PIPE_C) | BIT(PIPE_D),
4547 [PIPE_A] = BIT(DBUF_S1),
4548 [PIPE_C] = BIT(DBUF_S2),
4549 [PIPE_D] = BIT(DBUF_S2),
4553 .active_pipes = BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4555 [PIPE_B] = BIT(DBUF_S1),
4556 [PIPE_C] = BIT(DBUF_S2),
4557 [PIPE_D] = BIT(DBUF_S2),
4561 .active_pipes = BIT(PIPE_A) | BIT(PIPE_B) | BIT(PIPE_C) | BIT(PIPE_D),
4563 [PIPE_A] = BIT(DBUF_S1),
4564 [PIPE_B] = BIT(DBUF_S1),
4565 [PIPE_C] = BIT(DBUF_S2),
4566 [PIPE_D] = BIT(DBUF_S2),
4572 static u8 compute_dbuf_slices(enum pipe pipe, u8 active_pipes,
4573 const struct dbuf_slice_conf_entry *dbuf_slices)
4577 for (i = 0; i < dbuf_slices[i].active_pipes; i++) {
4578 if (dbuf_slices[i].active_pipes == active_pipes)
4579 return dbuf_slices[i].dbuf_mask[pipe];
4585 * This function finds an entry with same enabled pipe configuration and
4586 * returns correspondent DBuf slice mask as stated in BSpec for particular
4589 static u8 icl_compute_dbuf_slices(enum pipe pipe, u8 active_pipes)
4592 * FIXME: For ICL this is still a bit unclear as prev BSpec revision
4593 * required calculating "pipe ratio" in order to determine
4594 * if one or two slices can be used for single pipe configurations
4595 * as additional constraint to the existing table.
4596 * However based on recent info, it should be not "pipe ratio"
4597 * but rather ratio between pixel_rate and cdclk with additional
4598 * constants, so for now we are using only table until this is
4599 * clarified. Also this is the reason why crtc_state param is
4600 * still here - we will need it once those additional constraints
4603 return compute_dbuf_slices(pipe, active_pipes, icl_allowed_dbufs);
4606 static u8 tgl_compute_dbuf_slices(enum pipe pipe, u8 active_pipes)
4608 return compute_dbuf_slices(pipe, active_pipes, tgl_allowed_dbufs);
4611 static u8 skl_compute_dbuf_slices(struct intel_crtc *crtc, u8 active_pipes)
4613 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4614 enum pipe pipe = crtc->pipe;
4616 if (IS_DISPLAY_VER(dev_priv, 12))
4617 return tgl_compute_dbuf_slices(pipe, active_pipes);
4618 else if (IS_DISPLAY_VER(dev_priv, 11))
4619 return icl_compute_dbuf_slices(pipe, active_pipes);
4621 * For anything else just return one slice yet.
4622 * Should be extended for other platforms.
4624 return active_pipes & BIT(pipe) ? BIT(DBUF_S1) : 0;
4628 skl_plane_relative_data_rate(const struct intel_crtc_state *crtc_state,
4629 const struct intel_plane_state *plane_state,
4632 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
4633 const struct drm_framebuffer *fb = plane_state->hw.fb;
4635 u32 width = 0, height = 0;
4636 uint_fixed_16_16_t down_scale_amount;
4639 if (!plane_state->uapi.visible)
4642 if (plane->id == PLANE_CURSOR)
4645 if (color_plane == 1 &&
4646 !intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier))
4650 * Src coordinates are already rotated by 270 degrees for
4651 * the 90/270 degree plane rotation cases (to match the
4652 * GTT mapping), hence no need to account for rotation here.
4654 width = drm_rect_width(&plane_state->uapi.src) >> 16;
4655 height = drm_rect_height(&plane_state->uapi.src) >> 16;
4657 /* UV plane does 1/2 pixel sub-sampling */
4658 if (color_plane == 1) {
4663 data_rate = width * height;
4665 down_scale_amount = skl_plane_downscale_amount(crtc_state, plane_state);
4667 rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount);
4669 rate *= fb->format->cpp[color_plane];
4674 skl_get_total_relative_data_rate(struct intel_atomic_state *state,
4675 struct intel_crtc *crtc)
4677 struct intel_crtc_state *crtc_state =
4678 intel_atomic_get_new_crtc_state(state, crtc);
4679 const struct intel_plane_state *plane_state;
4680 struct intel_plane *plane;
4681 u64 total_data_rate = 0;
4682 enum plane_id plane_id;
4685 /* Calculate and cache data rate for each plane */
4686 for_each_new_intel_plane_in_state(state, plane, plane_state, i) {
4687 if (plane->pipe != crtc->pipe)
4690 plane_id = plane->id;
4693 crtc_state->plane_data_rate[plane_id] =
4694 skl_plane_relative_data_rate(crtc_state, plane_state, 0);
4697 crtc_state->uv_plane_data_rate[plane_id] =
4698 skl_plane_relative_data_rate(crtc_state, plane_state, 1);
4701 for_each_plane_id_on_crtc(crtc, plane_id) {
4702 total_data_rate += crtc_state->plane_data_rate[plane_id];
4703 total_data_rate += crtc_state->uv_plane_data_rate[plane_id];
4706 return total_data_rate;
4710 icl_get_total_relative_data_rate(struct intel_atomic_state *state,
4711 struct intel_crtc *crtc)
4713 struct intel_crtc_state *crtc_state =
4714 intel_atomic_get_new_crtc_state(state, crtc);
4715 const struct intel_plane_state *plane_state;
4716 struct intel_plane *plane;
4717 u64 total_data_rate = 0;
4718 enum plane_id plane_id;
4721 /* Calculate and cache data rate for each plane */
4722 for_each_new_intel_plane_in_state(state, plane, plane_state, i) {
4723 if (plane->pipe != crtc->pipe)
4726 plane_id = plane->id;
4728 if (!plane_state->planar_linked_plane) {
4729 crtc_state->plane_data_rate[plane_id] =
4730 skl_plane_relative_data_rate(crtc_state, plane_state, 0);
4732 enum plane_id y_plane_id;
4735 * The slave plane might not iterate in
4736 * intel_atomic_crtc_state_for_each_plane_state(),
4737 * and needs the master plane state which may be
4738 * NULL if we try get_new_plane_state(), so we
4739 * always calculate from the master.
4741 if (plane_state->planar_slave)
4744 /* Y plane rate is calculated on the slave */
4745 y_plane_id = plane_state->planar_linked_plane->id;
4746 crtc_state->plane_data_rate[y_plane_id] =
4747 skl_plane_relative_data_rate(crtc_state, plane_state, 0);
4749 crtc_state->plane_data_rate[plane_id] =
4750 skl_plane_relative_data_rate(crtc_state, plane_state, 1);
4754 for_each_plane_id_on_crtc(crtc, plane_id)
4755 total_data_rate += crtc_state->plane_data_rate[plane_id];
4757 return total_data_rate;
4760 const struct skl_wm_level *
4761 skl_plane_wm_level(const struct skl_pipe_wm *pipe_wm,
4762 enum plane_id plane_id,
4765 const struct skl_plane_wm *wm = &pipe_wm->planes[plane_id];
4767 if (level == 0 && pipe_wm->use_sagv_wm)
4768 return &wm->sagv.wm0;
4770 return &wm->wm[level];
4773 const struct skl_wm_level *
4774 skl_plane_trans_wm(const struct skl_pipe_wm *pipe_wm,
4775 enum plane_id plane_id)
4777 const struct skl_plane_wm *wm = &pipe_wm->planes[plane_id];
4779 if (pipe_wm->use_sagv_wm)
4780 return &wm->sagv.trans_wm;
4782 return &wm->trans_wm;
4786 * We only disable the watermarks for each plane if
4787 * they exceed the ddb allocation of said plane. This
4788 * is done so that we don't end up touching cursor
4789 * watermarks needlessly when some other plane reduces
4790 * our max possible watermark level.
4792 * Bspec has this to say about the PLANE_WM enable bit:
4793 * "All the watermarks at this level for all enabled
4794 * planes must be enabled before the level will be used."
4795 * So this is actually safe to do.
4798 skl_check_wm_level(struct skl_wm_level *wm, u64 total)
4800 if (wm->min_ddb_alloc > total)
4801 memset(wm, 0, sizeof(*wm));
4805 skl_check_nv12_wm_level(struct skl_wm_level *wm, struct skl_wm_level *uv_wm,
4806 u64 total, u64 uv_total)
4808 if (wm->min_ddb_alloc > total ||
4809 uv_wm->min_ddb_alloc > uv_total) {
4810 memset(wm, 0, sizeof(*wm));
4811 memset(uv_wm, 0, sizeof(*uv_wm));
4816 skl_allocate_plane_ddb(struct intel_atomic_state *state,
4817 struct intel_crtc *crtc)
4819 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
4820 struct intel_crtc_state *crtc_state =
4821 intel_atomic_get_new_crtc_state(state, crtc);
4822 const struct intel_dbuf_state *dbuf_state =
4823 intel_atomic_get_new_dbuf_state(state);
4824 const struct skl_ddb_entry *alloc = &dbuf_state->ddb[crtc->pipe];
4825 int num_active = hweight8(dbuf_state->active_pipes);
4826 u16 alloc_size, start = 0;
4827 u16 total[I915_MAX_PLANES] = {};
4828 u16 uv_total[I915_MAX_PLANES] = {};
4829 u64 total_data_rate;
4830 enum plane_id plane_id;
4834 /* Clear the partitioning for disabled planes. */
4835 memset(crtc_state->wm.skl.plane_ddb_y, 0, sizeof(crtc_state->wm.skl.plane_ddb_y));
4836 memset(crtc_state->wm.skl.plane_ddb_uv, 0, sizeof(crtc_state->wm.skl.plane_ddb_uv));
4838 if (!crtc_state->hw.active)
4841 if (DISPLAY_VER(dev_priv) >= 11)
4843 icl_get_total_relative_data_rate(state, crtc);
4846 skl_get_total_relative_data_rate(state, crtc);
4848 alloc_size = skl_ddb_entry_size(alloc);
4849 if (alloc_size == 0)
4852 /* Allocate fixed number of blocks for cursor. */
4853 total[PLANE_CURSOR] = skl_cursor_allocation(crtc_state, num_active);
4854 alloc_size -= total[PLANE_CURSOR];
4855 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].start =
4856 alloc->end - total[PLANE_CURSOR];
4857 crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end;
4859 if (total_data_rate == 0)
4863 * Find the highest watermark level for which we can satisfy the block
4864 * requirement of active planes.
4866 for (level = ilk_wm_max_level(dev_priv); level >= 0; level--) {
4868 for_each_plane_id_on_crtc(crtc, plane_id) {
4869 const struct skl_plane_wm *wm =
4870 &crtc_state->wm.skl.optimal.planes[plane_id];
4872 if (plane_id == PLANE_CURSOR) {
4873 if (wm->wm[level].min_ddb_alloc > total[PLANE_CURSOR]) {
4874 drm_WARN_ON(&dev_priv->drm,
4875 wm->wm[level].min_ddb_alloc != U16_MAX);
4882 blocks += wm->wm[level].min_ddb_alloc;
4883 blocks += wm->uv_wm[level].min_ddb_alloc;
4886 if (blocks <= alloc_size) {
4887 alloc_size -= blocks;
4893 drm_dbg_kms(&dev_priv->drm,
4894 "Requested display configuration exceeds system DDB limitations");
4895 drm_dbg_kms(&dev_priv->drm, "minimum required %d/%d\n",
4896 blocks, alloc_size);
4901 * Grant each plane the blocks it requires at the highest achievable
4902 * watermark level, plus an extra share of the leftover blocks
4903 * proportional to its relative data rate.
4905 for_each_plane_id_on_crtc(crtc, plane_id) {
4906 const struct skl_plane_wm *wm =
4907 &crtc_state->wm.skl.optimal.planes[plane_id];
4911 if (plane_id == PLANE_CURSOR)
4915 * We've accounted for all active planes; remaining planes are
4918 if (total_data_rate == 0)
4921 rate = crtc_state->plane_data_rate[plane_id];
4922 extra = min_t(u16, alloc_size,
4923 DIV64_U64_ROUND_UP(alloc_size * rate,
4925 total[plane_id] = wm->wm[level].min_ddb_alloc + extra;
4926 alloc_size -= extra;
4927 total_data_rate -= rate;
4929 if (total_data_rate == 0)
4932 rate = crtc_state->uv_plane_data_rate[plane_id];
4933 extra = min_t(u16, alloc_size,
4934 DIV64_U64_ROUND_UP(alloc_size * rate,
4936 uv_total[plane_id] = wm->uv_wm[level].min_ddb_alloc + extra;
4937 alloc_size -= extra;
4938 total_data_rate -= rate;
4940 drm_WARN_ON(&dev_priv->drm, alloc_size != 0 || total_data_rate != 0);
4942 /* Set the actual DDB start/end points for each plane */
4943 start = alloc->start;
4944 for_each_plane_id_on_crtc(crtc, plane_id) {
4945 struct skl_ddb_entry *plane_alloc =
4946 &crtc_state->wm.skl.plane_ddb_y[plane_id];
4947 struct skl_ddb_entry *uv_plane_alloc =
4948 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
4950 if (plane_id == PLANE_CURSOR)
4953 /* Gen11+ uses a separate plane for UV watermarks */
4954 drm_WARN_ON(&dev_priv->drm,
4955 DISPLAY_VER(dev_priv) >= 11 && uv_total[plane_id]);
4957 /* Leave disabled planes at (0,0) */
4958 if (total[plane_id]) {
4959 plane_alloc->start = start;
4960 start += total[plane_id];
4961 plane_alloc->end = start;
4964 if (uv_total[plane_id]) {
4965 uv_plane_alloc->start = start;
4966 start += uv_total[plane_id];
4967 uv_plane_alloc->end = start;
4972 * When we calculated watermark values we didn't know how high
4973 * of a level we'd actually be able to hit, so we just marked
4974 * all levels as "enabled." Go back now and disable the ones
4975 * that aren't actually possible.
4977 for (level++; level <= ilk_wm_max_level(dev_priv); level++) {
4978 for_each_plane_id_on_crtc(crtc, plane_id) {
4979 struct skl_plane_wm *wm =
4980 &crtc_state->wm.skl.optimal.planes[plane_id];
4982 skl_check_nv12_wm_level(&wm->wm[level], &wm->uv_wm[level],
4983 total[plane_id], uv_total[plane_id]);
4986 * Wa_1408961008:icl, ehl
4987 * Underruns with WM1+ disabled
4989 if (IS_DISPLAY_VER(dev_priv, 11) &&
4990 level == 1 && wm->wm[0].enable) {
4991 wm->wm[level].blocks = wm->wm[0].blocks;
4992 wm->wm[level].lines = wm->wm[0].lines;
4993 wm->wm[level].ignore_lines = wm->wm[0].ignore_lines;
4999 * Go back and disable the transition and SAGV watermarks
5000 * if it turns out we don't have enough DDB blocks for them.
5002 for_each_plane_id_on_crtc(crtc, plane_id) {
5003 struct skl_plane_wm *wm =
5004 &crtc_state->wm.skl.optimal.planes[plane_id];
5006 skl_check_wm_level(&wm->trans_wm, total[plane_id]);
5007 skl_check_wm_level(&wm->sagv.wm0, total[plane_id]);
5008 skl_check_wm_level(&wm->sagv.trans_wm, total[plane_id]);
5015 * The max latency should be 257 (max the punit can code is 255 and we add 2us
5016 * for the read latency) and cpp should always be <= 8, so that
5017 * should allow pixel_rate up to ~2 GHz which seems sufficient since max
5018 * 2xcdclk is 1350 MHz and the pixel rate should never exceed that.
5020 static uint_fixed_16_16_t
5021 skl_wm_method1(const struct drm_i915_private *dev_priv, u32 pixel_rate,
5022 u8 cpp, u32 latency, u32 dbuf_block_size)
5024 u32 wm_intermediate_val;
5025 uint_fixed_16_16_t ret;
5028 return FP_16_16_MAX;
5030 wm_intermediate_val = latency * pixel_rate * cpp;
5031 ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size);
5033 if (DISPLAY_VER(dev_priv) >= 10)
5034 ret = add_fixed16_u32(ret, 1);
5039 static uint_fixed_16_16_t
5040 skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency,
5041 uint_fixed_16_16_t plane_blocks_per_line)
5043 u32 wm_intermediate_val;
5044 uint_fixed_16_16_t ret;
5047 return FP_16_16_MAX;
5049 wm_intermediate_val = latency * pixel_rate;
5050 wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val,
5051 pipe_htotal * 1000);
5052 ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line);
5056 static uint_fixed_16_16_t
5057 intel_get_linetime_us(const struct intel_crtc_state *crtc_state)
5059 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
5062 uint_fixed_16_16_t linetime_us;
5064 if (!crtc_state->hw.active)
5065 return u32_to_fixed16(0);
5067 pixel_rate = crtc_state->pixel_rate;
5069 if (drm_WARN_ON(&dev_priv->drm, pixel_rate == 0))
5070 return u32_to_fixed16(0);
5072 crtc_htotal = crtc_state->hw.pipe_mode.crtc_htotal;
5073 linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate);
5079 skl_compute_wm_params(const struct intel_crtc_state *crtc_state,
5080 int width, const struct drm_format_info *format,
5081 u64 modifier, unsigned int rotation,
5082 u32 plane_pixel_rate, struct skl_wm_params *wp,
5085 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
5086 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5089 /* only planar format has two planes */
5090 if (color_plane == 1 &&
5091 !intel_format_info_is_yuv_semiplanar(format, modifier)) {
5092 drm_dbg_kms(&dev_priv->drm,
5093 "Non planar format have single plane\n");
5097 wp->y_tiled = modifier == I915_FORMAT_MOD_Y_TILED ||
5098 modifier == I915_FORMAT_MOD_Yf_TILED ||
5099 modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
5100 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
5101 wp->x_tiled = modifier == I915_FORMAT_MOD_X_TILED;
5102 wp->rc_surface = modifier == I915_FORMAT_MOD_Y_TILED_CCS ||
5103 modifier == I915_FORMAT_MOD_Yf_TILED_CCS;
5104 wp->is_planar = intel_format_info_is_yuv_semiplanar(format, modifier);
5107 if (color_plane == 1 && wp->is_planar)
5110 wp->cpp = format->cpp[color_plane];
5111 wp->plane_pixel_rate = plane_pixel_rate;
5113 if (DISPLAY_VER(dev_priv) >= 11 &&
5114 modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 1)
5115 wp->dbuf_block_size = 256;
5117 wp->dbuf_block_size = 512;
5119 if (drm_rotation_90_or_270(rotation)) {
5122 wp->y_min_scanlines = 16;
5125 wp->y_min_scanlines = 8;
5128 wp->y_min_scanlines = 4;
5131 MISSING_CASE(wp->cpp);
5135 wp->y_min_scanlines = 4;
5138 if (skl_needs_memory_bw_wa(dev_priv))
5139 wp->y_min_scanlines *= 2;
5141 wp->plane_bytes_per_line = wp->width * wp->cpp;
5143 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line *
5144 wp->y_min_scanlines,
5145 wp->dbuf_block_size);
5147 if (DISPLAY_VER(dev_priv) >= 10)
5150 wp->plane_blocks_per_line = div_fixed16(interm_pbpl,
5151 wp->y_min_scanlines);
5153 interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line,
5154 wp->dbuf_block_size);
5156 if (!wp->x_tiled || DISPLAY_VER(dev_priv) >= 10)
5159 wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl);
5162 wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines,
5163 wp->plane_blocks_per_line);
5165 wp->linetime_us = fixed16_to_u32_round_up(
5166 intel_get_linetime_us(crtc_state));
5172 skl_compute_plane_wm_params(const struct intel_crtc_state *crtc_state,
5173 const struct intel_plane_state *plane_state,
5174 struct skl_wm_params *wp, int color_plane)
5176 const struct drm_framebuffer *fb = plane_state->hw.fb;
5180 * Src coordinates are already rotated by 270 degrees for
5181 * the 90/270 degree plane rotation cases (to match the
5182 * GTT mapping), hence no need to account for rotation here.
5184 width = drm_rect_width(&plane_state->uapi.src) >> 16;
5186 return skl_compute_wm_params(crtc_state, width,
5187 fb->format, fb->modifier,
5188 plane_state->hw.rotation,
5189 intel_plane_pixel_rate(crtc_state, plane_state),
5193 static bool skl_wm_has_lines(struct drm_i915_private *dev_priv, int level)
5195 if (DISPLAY_VER(dev_priv) >= 10)
5198 /* The number of lines are ignored for the level 0 watermark. */
5202 static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state,
5204 unsigned int latency,
5205 const struct skl_wm_params *wp,
5206 const struct skl_wm_level *result_prev,
5207 struct skl_wm_level *result /* out */)
5209 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
5210 uint_fixed_16_16_t method1, method2;
5211 uint_fixed_16_16_t selected_result;
5212 u32 blocks, lines, min_ddb_alloc = 0;
5216 result->min_ddb_alloc = U16_MAX;
5221 * WaIncreaseLatencyIPCEnabled: kbl,cfl
5222 * Display WA #1141: kbl,cfl
5224 if ((IS_KABYLAKE(dev_priv) ||
5225 IS_COFFEELAKE(dev_priv) ||
5226 IS_COMETLAKE(dev_priv)) &&
5227 dev_priv->ipc_enabled)
5230 if (skl_needs_memory_bw_wa(dev_priv) && wp->x_tiled)
5233 method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate,
5234 wp->cpp, latency, wp->dbuf_block_size);
5235 method2 = skl_wm_method2(wp->plane_pixel_rate,
5236 crtc_state->hw.pipe_mode.crtc_htotal,
5238 wp->plane_blocks_per_line);
5241 selected_result = max_fixed16(method2, wp->y_tile_minimum);
5243 if ((wp->cpp * crtc_state->hw.pipe_mode.crtc_htotal /
5244 wp->dbuf_block_size < 1) &&
5245 (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) {
5246 selected_result = method2;
5247 } else if (latency >= wp->linetime_us) {
5248 if (IS_DISPLAY_VER(dev_priv, 9))
5249 selected_result = min_fixed16(method1, method2);
5251 selected_result = method2;
5253 selected_result = method1;
5257 blocks = fixed16_to_u32_round_up(selected_result) + 1;
5258 lines = div_round_up_fixed16(selected_result,
5259 wp->plane_blocks_per_line);
5261 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv)) {
5262 /* Display WA #1125: skl,bxt,kbl */
5263 if (level == 0 && wp->rc_surface)
5264 blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
5266 /* Display WA #1126: skl,bxt,kbl */
5267 if (level >= 1 && level <= 7) {
5269 blocks += fixed16_to_u32_round_up(wp->y_tile_minimum);
5270 lines += wp->y_min_scanlines;
5276 * Make sure result blocks for higher latency levels are
5277 * atleast as high as level below the current level.
5278 * Assumption in DDB algorithm optimization for special
5279 * cases. Also covers Display WA #1125 for RC.
5281 if (result_prev->blocks > blocks)
5282 blocks = result_prev->blocks;
5286 if (DISPLAY_VER(dev_priv) >= 11) {
5290 if (lines % wp->y_min_scanlines == 0)
5291 extra_lines = wp->y_min_scanlines;
5293 extra_lines = wp->y_min_scanlines * 2 -
5294 lines % wp->y_min_scanlines;
5296 min_ddb_alloc = mul_round_up_u32_fixed16(lines + extra_lines,
5297 wp->plane_blocks_per_line);
5299 min_ddb_alloc = blocks + DIV_ROUND_UP(blocks, 10);
5303 if (!skl_wm_has_lines(dev_priv, level))
5308 result->min_ddb_alloc = U16_MAX;
5313 * If lines is valid, assume we can use this watermark level
5314 * for now. We'll come back and disable it after we calculate the
5315 * DDB allocation if it turns out we don't actually have enough
5316 * blocks to satisfy it.
5318 result->blocks = blocks;
5319 result->lines = lines;
5320 /* Bspec says: value >= plane ddb allocation -> invalid, hence the +1 here */
5321 result->min_ddb_alloc = max(min_ddb_alloc, blocks) + 1;
5322 result->enable = true;
5324 if (DISPLAY_VER(dev_priv) < 12)
5325 result->can_sagv = latency >= dev_priv->sagv_block_time_us;
5329 skl_compute_wm_levels(const struct intel_crtc_state *crtc_state,
5330 const struct skl_wm_params *wm_params,
5331 struct skl_wm_level *levels)
5333 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
5334 int level, max_level = ilk_wm_max_level(dev_priv);
5335 struct skl_wm_level *result_prev = &levels[0];
5337 for (level = 0; level <= max_level; level++) {
5338 struct skl_wm_level *result = &levels[level];
5339 unsigned int latency = dev_priv->wm.skl_latency[level];
5341 skl_compute_plane_wm(crtc_state, level, latency,
5342 wm_params, result_prev, result);
5344 result_prev = result;
5348 static void tgl_compute_sagv_wm(const struct intel_crtc_state *crtc_state,
5349 const struct skl_wm_params *wm_params,
5350 struct skl_plane_wm *plane_wm)
5352 struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev);
5353 struct skl_wm_level *sagv_wm = &plane_wm->sagv.wm0;
5354 struct skl_wm_level *levels = plane_wm->wm;
5355 unsigned int latency = dev_priv->wm.skl_latency[0] + dev_priv->sagv_block_time_us;
5357 skl_compute_plane_wm(crtc_state, 0, latency,
5358 wm_params, &levels[0],
5362 static void skl_compute_transition_wm(struct drm_i915_private *dev_priv,
5363 struct skl_wm_level *trans_wm,
5364 const struct skl_wm_level *wm0,
5365 const struct skl_wm_params *wp)
5367 u16 trans_min, trans_amount, trans_y_tile_min;
5368 u16 wm0_blocks, trans_offset, blocks;
5370 /* Transition WM don't make any sense if ipc is disabled */
5371 if (!dev_priv->ipc_enabled)
5375 * WaDisableTWM:skl,kbl,cfl,bxt
5376 * Transition WM are not recommended by HW team for GEN9
5378 if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv))
5381 if (DISPLAY_VER(dev_priv) >= 11)
5386 /* Display WA #1140: glk,cnl */
5387 if (IS_DISPLAY_VER(dev_priv, 10))
5390 trans_amount = 10; /* This is configurable amount */
5392 trans_offset = trans_min + trans_amount;
5395 * The spec asks for Selected Result Blocks for wm0 (the real value),
5396 * not Result Blocks (the integer value). Pay attention to the capital
5397 * letters. The value wm_l0->blocks is actually Result Blocks, but
5398 * since Result Blocks is the ceiling of Selected Result Blocks plus 1,
5399 * and since we later will have to get the ceiling of the sum in the
5400 * transition watermarks calculation, we can just pretend Selected
5401 * Result Blocks is Result Blocks minus 1 and it should work for the
5402 * current platforms.
5404 wm0_blocks = wm0->blocks - 1;
5408 (u16)mul_round_up_u32_fixed16(2, wp->y_tile_minimum);
5409 blocks = max(wm0_blocks, trans_y_tile_min) + trans_offset;
5411 blocks = wm0_blocks + trans_offset;
5416 * Just assume we can enable the transition watermark. After
5417 * computing the DDB we'll come back and disable it if that
5418 * assumption turns out to be false.
5420 trans_wm->blocks = blocks;
5421 trans_wm->min_ddb_alloc = max_t(u16, wm0->min_ddb_alloc, blocks + 1);
5422 trans_wm->enable = true;
5425 static int skl_build_plane_wm_single(struct intel_crtc_state *crtc_state,
5426 const struct intel_plane_state *plane_state,
5427 enum plane_id plane_id, int color_plane)
5429 struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc);
5430 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5431 struct skl_plane_wm *wm = &crtc_state->wm.skl.raw.planes[plane_id];
5432 struct skl_wm_params wm_params;
5435 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
5436 &wm_params, color_plane);
5440 skl_compute_wm_levels(crtc_state, &wm_params, wm->wm);
5442 skl_compute_transition_wm(dev_priv, &wm->trans_wm,
5443 &wm->wm[0], &wm_params);
5445 if (DISPLAY_VER(dev_priv) >= 12) {
5446 tgl_compute_sagv_wm(crtc_state, &wm_params, wm);
5448 skl_compute_transition_wm(dev_priv, &wm->sagv.trans_wm,
5449 &wm->sagv.wm0, &wm_params);
5455 static int skl_build_plane_wm_uv(struct intel_crtc_state *crtc_state,
5456 const struct intel_plane_state *plane_state,
5457 enum plane_id plane_id)
5459 struct skl_plane_wm *wm = &crtc_state->wm.skl.raw.planes[plane_id];
5460 struct skl_wm_params wm_params;
5463 wm->is_planar = true;
5465 /* uv plane watermarks must also be validated for NV12/Planar */
5466 ret = skl_compute_plane_wm_params(crtc_state, plane_state,
5471 skl_compute_wm_levels(crtc_state, &wm_params, wm->uv_wm);
5476 static int skl_build_plane_wm(struct intel_crtc_state *crtc_state,
5477 const struct intel_plane_state *plane_state)
5479 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
5480 enum plane_id plane_id = plane->id;
5481 struct skl_plane_wm *wm = &crtc_state->wm.skl.raw.planes[plane_id];
5482 const struct drm_framebuffer *fb = plane_state->hw.fb;
5485 memset(wm, 0, sizeof(*wm));
5487 if (!intel_wm_plane_visible(crtc_state, plane_state))
5490 ret = skl_build_plane_wm_single(crtc_state, plane_state,
5495 if (fb->format->is_yuv && fb->format->num_planes > 1) {
5496 ret = skl_build_plane_wm_uv(crtc_state, plane_state,
5505 static int icl_build_plane_wm(struct intel_crtc_state *crtc_state,
5506 const struct intel_plane_state *plane_state)
5508 struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane);
5509 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
5510 enum plane_id plane_id = plane->id;
5511 struct skl_plane_wm *wm = &crtc_state->wm.skl.raw.planes[plane_id];
5514 /* Watermarks calculated in master */
5515 if (plane_state->planar_slave)
5518 memset(wm, 0, sizeof(*wm));
5520 if (plane_state->planar_linked_plane) {
5521 const struct drm_framebuffer *fb = plane_state->hw.fb;
5522 enum plane_id y_plane_id = plane_state->planar_linked_plane->id;
5524 drm_WARN_ON(&dev_priv->drm,
5525 !intel_wm_plane_visible(crtc_state, plane_state));
5526 drm_WARN_ON(&dev_priv->drm, !fb->format->is_yuv ||
5527 fb->format->num_planes == 1);
5529 ret = skl_build_plane_wm_single(crtc_state, plane_state,
5534 ret = skl_build_plane_wm_single(crtc_state, plane_state,
5538 } else if (intel_wm_plane_visible(crtc_state, plane_state)) {
5539 ret = skl_build_plane_wm_single(crtc_state, plane_state,
5548 static int skl_build_pipe_wm(struct intel_atomic_state *state,
5549 struct intel_crtc *crtc)
5551 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5552 struct intel_crtc_state *crtc_state =
5553 intel_atomic_get_new_crtc_state(state, crtc);
5554 const struct intel_plane_state *plane_state;
5555 struct intel_plane *plane;
5558 for_each_new_intel_plane_in_state(state, plane, plane_state, i) {
5560 * FIXME should perhaps check {old,new}_plane_crtc->hw.crtc
5561 * instead but we don't populate that correctly for NV12 Y
5562 * planes so for now hack this.
5564 if (plane->pipe != crtc->pipe)
5567 if (DISPLAY_VER(dev_priv) >= 11)
5568 ret = icl_build_plane_wm(crtc_state, plane_state);
5570 ret = skl_build_plane_wm(crtc_state, plane_state);
5575 crtc_state->wm.skl.optimal = crtc_state->wm.skl.raw;
5580 static void skl_ddb_entry_write(struct drm_i915_private *dev_priv,
5582 const struct skl_ddb_entry *entry)
5585 intel_de_write_fw(dev_priv, reg,
5586 (entry->end - 1) << 16 | entry->start);
5588 intel_de_write_fw(dev_priv, reg, 0);
5591 static void skl_write_wm_level(struct drm_i915_private *dev_priv,
5593 const struct skl_wm_level *level)
5599 if (level->ignore_lines)
5600 val |= PLANE_WM_IGNORE_LINES;
5601 val |= level->blocks;
5602 val |= level->lines << PLANE_WM_LINES_SHIFT;
5604 intel_de_write_fw(dev_priv, reg, val);
5607 void skl_write_plane_wm(struct intel_plane *plane,
5608 const struct intel_crtc_state *crtc_state)
5610 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
5611 int level, max_level = ilk_wm_max_level(dev_priv);
5612 enum plane_id plane_id = plane->id;
5613 enum pipe pipe = plane->pipe;
5614 const struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal;
5615 const struct skl_plane_wm *wm = &pipe_wm->planes[plane_id];
5616 const struct skl_ddb_entry *ddb_y =
5617 &crtc_state->wm.skl.plane_ddb_y[plane_id];
5618 const struct skl_ddb_entry *ddb_uv =
5619 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
5621 for (level = 0; level <= max_level; level++)
5622 skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level),
5623 skl_plane_wm_level(pipe_wm, plane_id, level));
5625 skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id),
5626 skl_plane_trans_wm(pipe_wm, plane_id));
5628 if (DISPLAY_VER(dev_priv) >= 11) {
5629 skl_ddb_entry_write(dev_priv,
5630 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5635 swap(ddb_y, ddb_uv);
5637 skl_ddb_entry_write(dev_priv,
5638 PLANE_BUF_CFG(pipe, plane_id), ddb_y);
5639 skl_ddb_entry_write(dev_priv,
5640 PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv);
5643 void skl_write_cursor_wm(struct intel_plane *plane,
5644 const struct intel_crtc_state *crtc_state)
5646 struct drm_i915_private *dev_priv = to_i915(plane->base.dev);
5647 int level, max_level = ilk_wm_max_level(dev_priv);
5648 enum plane_id plane_id = plane->id;
5649 enum pipe pipe = plane->pipe;
5650 const struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal;
5651 const struct skl_ddb_entry *ddb =
5652 &crtc_state->wm.skl.plane_ddb_y[plane_id];
5654 for (level = 0; level <= max_level; level++)
5655 skl_write_wm_level(dev_priv, CUR_WM(pipe, level),
5656 skl_plane_wm_level(pipe_wm, plane_id, level));
5658 skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe),
5659 skl_plane_trans_wm(pipe_wm, plane_id));
5661 skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb);
5664 bool skl_wm_level_equals(const struct skl_wm_level *l1,
5665 const struct skl_wm_level *l2)
5667 return l1->enable == l2->enable &&
5668 l1->ignore_lines == l2->ignore_lines &&
5669 l1->lines == l2->lines &&
5670 l1->blocks == l2->blocks;
5673 static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv,
5674 const struct skl_plane_wm *wm1,
5675 const struct skl_plane_wm *wm2)
5677 int level, max_level = ilk_wm_max_level(dev_priv);
5679 for (level = 0; level <= max_level; level++) {
5681 * We don't check uv_wm as the hardware doesn't actually
5682 * use it. It only gets used for calculating the required
5685 if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]))
5689 return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm) &&
5690 skl_wm_level_equals(&wm1->sagv.wm0, &wm2->sagv.wm0) &&
5691 skl_wm_level_equals(&wm1->sagv.trans_wm, &wm2->sagv.trans_wm);
5694 static bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a,
5695 const struct skl_ddb_entry *b)
5697 return a->start < b->end && b->start < a->end;
5700 static void skl_ddb_entry_union(struct skl_ddb_entry *a,
5701 const struct skl_ddb_entry *b)
5703 if (a->end && b->end) {
5704 a->start = min(a->start, b->start);
5705 a->end = max(a->end, b->end);
5706 } else if (b->end) {
5707 a->start = b->start;
5712 bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb,
5713 const struct skl_ddb_entry *entries,
5714 int num_entries, int ignore_idx)
5718 for (i = 0; i < num_entries; i++) {
5719 if (i != ignore_idx &&
5720 skl_ddb_entries_overlap(ddb, &entries[i]))
5728 skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state,
5729 struct intel_crtc_state *new_crtc_state)
5731 struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state);
5732 struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc);
5733 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
5734 struct intel_plane *plane;
5736 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5737 struct intel_plane_state *plane_state;
5738 enum plane_id plane_id = plane->id;
5740 if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id],
5741 &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) &&
5742 skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id],
5743 &new_crtc_state->wm.skl.plane_ddb_uv[plane_id]))
5746 plane_state = intel_atomic_get_plane_state(state, plane);
5747 if (IS_ERR(plane_state))
5748 return PTR_ERR(plane_state);
5750 new_crtc_state->update_planes |= BIT(plane_id);
5756 static u8 intel_dbuf_enabled_slices(const struct intel_dbuf_state *dbuf_state)
5758 struct drm_i915_private *dev_priv = to_i915(dbuf_state->base.state->base.dev);
5763 * FIXME: For now we always enable slice S1 as per
5764 * the Bspec display initialization sequence.
5766 enabled_slices = BIT(DBUF_S1);
5768 for_each_pipe(dev_priv, pipe)
5769 enabled_slices |= dbuf_state->slices[pipe];
5771 return enabled_slices;
5775 skl_compute_ddb(struct intel_atomic_state *state)
5777 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5778 const struct intel_dbuf_state *old_dbuf_state;
5779 struct intel_dbuf_state *new_dbuf_state = NULL;
5780 const struct intel_crtc_state *old_crtc_state;
5781 struct intel_crtc_state *new_crtc_state;
5782 struct intel_crtc *crtc;
5785 for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
5786 new_dbuf_state = intel_atomic_get_dbuf_state(state);
5787 if (IS_ERR(new_dbuf_state))
5788 return PTR_ERR(new_dbuf_state);
5790 old_dbuf_state = intel_atomic_get_old_dbuf_state(state);
5794 if (!new_dbuf_state)
5797 new_dbuf_state->active_pipes =
5798 intel_calc_active_pipes(state, old_dbuf_state->active_pipes);
5800 if (old_dbuf_state->active_pipes != new_dbuf_state->active_pipes) {
5801 ret = intel_atomic_lock_global_state(&new_dbuf_state->base);
5806 for_each_intel_crtc(&dev_priv->drm, crtc) {
5807 enum pipe pipe = crtc->pipe;
5809 new_dbuf_state->slices[pipe] =
5810 skl_compute_dbuf_slices(crtc, new_dbuf_state->active_pipes);
5812 if (old_dbuf_state->slices[pipe] == new_dbuf_state->slices[pipe])
5815 ret = intel_atomic_lock_global_state(&new_dbuf_state->base);
5820 new_dbuf_state->enabled_slices = intel_dbuf_enabled_slices(new_dbuf_state);
5822 if (old_dbuf_state->enabled_slices != new_dbuf_state->enabled_slices) {
5823 ret = intel_atomic_serialize_global_state(&new_dbuf_state->base);
5827 drm_dbg_kms(&dev_priv->drm,
5828 "Enabled dbuf slices 0x%x -> 0x%x (out of %d dbuf slices)\n",
5829 old_dbuf_state->enabled_slices,
5830 new_dbuf_state->enabled_slices,
5831 INTEL_INFO(dev_priv)->num_supported_dbuf_slices);
5834 for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
5835 enum pipe pipe = crtc->pipe;
5837 new_dbuf_state->weight[pipe] = intel_crtc_ddb_weight(new_crtc_state);
5839 if (old_dbuf_state->weight[pipe] == new_dbuf_state->weight[pipe])
5842 ret = intel_atomic_lock_global_state(&new_dbuf_state->base);
5847 for_each_intel_crtc(&dev_priv->drm, crtc) {
5848 ret = skl_crtc_allocate_ddb(state, crtc);
5853 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5854 new_crtc_state, i) {
5855 ret = skl_allocate_plane_ddb(state, crtc);
5859 ret = skl_ddb_add_affected_planes(old_crtc_state,
5868 static char enast(bool enable)
5870 return enable ? '*' : ' ';
5874 skl_print_wm_changes(struct intel_atomic_state *state)
5876 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
5877 const struct intel_crtc_state *old_crtc_state;
5878 const struct intel_crtc_state *new_crtc_state;
5879 struct intel_plane *plane;
5880 struct intel_crtc *crtc;
5883 if (!drm_debug_enabled(DRM_UT_KMS))
5886 for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state,
5887 new_crtc_state, i) {
5888 const struct skl_pipe_wm *old_pipe_wm, *new_pipe_wm;
5890 old_pipe_wm = &old_crtc_state->wm.skl.optimal;
5891 new_pipe_wm = &new_crtc_state->wm.skl.optimal;
5893 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5894 enum plane_id plane_id = plane->id;
5895 const struct skl_ddb_entry *old, *new;
5897 old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id];
5898 new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id];
5900 if (skl_ddb_entry_equal(old, new))
5903 drm_dbg_kms(&dev_priv->drm,
5904 "[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n",
5905 plane->base.base.id, plane->base.name,
5906 old->start, old->end, new->start, new->end,
5907 skl_ddb_entry_size(old), skl_ddb_entry_size(new));
5910 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
5911 enum plane_id plane_id = plane->id;
5912 const struct skl_plane_wm *old_wm, *new_wm;
5914 old_wm = &old_pipe_wm->planes[plane_id];
5915 new_wm = &new_pipe_wm->planes[plane_id];
5917 if (skl_plane_wm_equals(dev_priv, old_wm, new_wm))
5920 drm_dbg_kms(&dev_priv->drm,
5921 "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm"
5922 " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm,%cswm,%cstwm\n",
5923 plane->base.base.id, plane->base.name,
5924 enast(old_wm->wm[0].enable), enast(old_wm->wm[1].enable),
5925 enast(old_wm->wm[2].enable), enast(old_wm->wm[3].enable),
5926 enast(old_wm->wm[4].enable), enast(old_wm->wm[5].enable),
5927 enast(old_wm->wm[6].enable), enast(old_wm->wm[7].enable),
5928 enast(old_wm->trans_wm.enable),
5929 enast(old_wm->sagv.wm0.enable),
5930 enast(old_wm->sagv.trans_wm.enable),
5931 enast(new_wm->wm[0].enable), enast(new_wm->wm[1].enable),
5932 enast(new_wm->wm[2].enable), enast(new_wm->wm[3].enable),
5933 enast(new_wm->wm[4].enable), enast(new_wm->wm[5].enable),
5934 enast(new_wm->wm[6].enable), enast(new_wm->wm[7].enable),
5935 enast(new_wm->trans_wm.enable),
5936 enast(new_wm->sagv.wm0.enable),
5937 enast(new_wm->sagv.trans_wm.enable));
5939 drm_dbg_kms(&dev_priv->drm,
5940 "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d"
5941 " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%4d\n",
5942 plane->base.base.id, plane->base.name,
5943 enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].lines,
5944 enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].lines,
5945 enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].lines,
5946 enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].lines,
5947 enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].lines,
5948 enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].lines,
5949 enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].lines,
5950 enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].lines,
5951 enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.lines,
5952 enast(old_wm->sagv.wm0.ignore_lines), old_wm->sagv.wm0.lines,
5953 enast(old_wm->sagv.trans_wm.ignore_lines), old_wm->sagv.trans_wm.lines,
5954 enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].lines,
5955 enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].lines,
5956 enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].lines,
5957 enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].lines,
5958 enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].lines,
5959 enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].lines,
5960 enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].lines,
5961 enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].lines,
5962 enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.lines,
5963 enast(new_wm->sagv.wm0.ignore_lines), new_wm->sagv.wm0.lines,
5964 enast(new_wm->sagv.trans_wm.ignore_lines), new_wm->sagv.trans_wm.lines);
5966 drm_dbg_kms(&dev_priv->drm,
5967 "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d"
5968 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n",
5969 plane->base.base.id, plane->base.name,
5970 old_wm->wm[0].blocks, old_wm->wm[1].blocks,
5971 old_wm->wm[2].blocks, old_wm->wm[3].blocks,
5972 old_wm->wm[4].blocks, old_wm->wm[5].blocks,
5973 old_wm->wm[6].blocks, old_wm->wm[7].blocks,
5974 old_wm->trans_wm.blocks,
5975 old_wm->sagv.wm0.blocks,
5976 old_wm->sagv.trans_wm.blocks,
5977 new_wm->wm[0].blocks, new_wm->wm[1].blocks,
5978 new_wm->wm[2].blocks, new_wm->wm[3].blocks,
5979 new_wm->wm[4].blocks, new_wm->wm[5].blocks,
5980 new_wm->wm[6].blocks, new_wm->wm[7].blocks,
5981 new_wm->trans_wm.blocks,
5982 new_wm->sagv.wm0.blocks,
5983 new_wm->sagv.trans_wm.blocks);
5985 drm_dbg_kms(&dev_priv->drm,
5986 "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d"
5987 " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%5d\n",
5988 plane->base.base.id, plane->base.name,
5989 old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc,
5990 old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc,
5991 old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc,
5992 old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc,
5993 old_wm->trans_wm.min_ddb_alloc,
5994 old_wm->sagv.wm0.min_ddb_alloc,
5995 old_wm->sagv.trans_wm.min_ddb_alloc,
5996 new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc,
5997 new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc,
5998 new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc,
5999 new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc,
6000 new_wm->trans_wm.min_ddb_alloc,
6001 new_wm->sagv.wm0.min_ddb_alloc,
6002 new_wm->sagv.trans_wm.min_ddb_alloc);
6007 static bool skl_plane_selected_wm_equals(struct intel_plane *plane,
6008 const struct skl_pipe_wm *old_pipe_wm,
6009 const struct skl_pipe_wm *new_pipe_wm)
6011 struct drm_i915_private *i915 = to_i915(plane->base.dev);
6012 int level, max_level = ilk_wm_max_level(i915);
6014 for (level = 0; level <= max_level; level++) {
6016 * We don't check uv_wm as the hardware doesn't actually
6017 * use it. It only gets used for calculating the required
6020 if (!skl_wm_level_equals(skl_plane_wm_level(old_pipe_wm, plane->id, level),
6021 skl_plane_wm_level(new_pipe_wm, plane->id, level)))
6025 return skl_wm_level_equals(skl_plane_trans_wm(old_pipe_wm, plane->id),
6026 skl_plane_trans_wm(new_pipe_wm, plane->id));
6030 * To make sure the cursor watermark registers are always consistent
6031 * with our computed state the following scenario needs special
6035 * 2. move cursor entirely offscreen
6038 * Step 2. does call .disable_plane() but does not zero the watermarks
6039 * (since we consider an offscreen cursor still active for the purposes
6040 * of watermarks). Step 3. would not normally call .disable_plane()
6041 * because the actual plane visibility isn't changing, and we don't
6042 * deallocate the cursor ddb until the pipe gets disabled. So we must
6043 * force step 3. to call .disable_plane() to update the watermark
6044 * registers properly.
6046 * Other planes do not suffer from this issues as their watermarks are
6047 * calculated based on the actual plane visibility. The only time this
6048 * can trigger for the other planes is during the initial readout as the
6049 * default value of the watermarks registers is not zero.
6051 static int skl_wm_add_affected_planes(struct intel_atomic_state *state,
6052 struct intel_crtc *crtc)
6054 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6055 const struct intel_crtc_state *old_crtc_state =
6056 intel_atomic_get_old_crtc_state(state, crtc);
6057 struct intel_crtc_state *new_crtc_state =
6058 intel_atomic_get_new_crtc_state(state, crtc);
6059 struct intel_plane *plane;
6061 for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) {
6062 struct intel_plane_state *plane_state;
6063 enum plane_id plane_id = plane->id;
6066 * Force a full wm update for every plane on modeset.
6067 * Required because the reset value of the wm registers
6068 * is non-zero, whereas we want all disabled planes to
6069 * have zero watermarks. So if we turn off the relevant
6070 * power well the hardware state will go out of sync
6071 * with the software state.
6073 if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi) &&
6074 skl_plane_selected_wm_equals(plane,
6075 &old_crtc_state->wm.skl.optimal,
6076 &new_crtc_state->wm.skl.optimal))
6079 plane_state = intel_atomic_get_plane_state(state, plane);
6080 if (IS_ERR(plane_state))
6081 return PTR_ERR(plane_state);
6083 new_crtc_state->update_planes |= BIT(plane_id);
6090 skl_compute_wm(struct intel_atomic_state *state)
6092 struct intel_crtc *crtc;
6093 struct intel_crtc_state *new_crtc_state;
6096 for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
6097 ret = skl_build_pipe_wm(state, crtc);
6102 ret = skl_compute_ddb(state);
6106 ret = intel_compute_sagv_mask(state);
6111 * skl_compute_ddb() will have adjusted the final watermarks
6112 * based on how much ddb is available. Now we can actually
6113 * check if the final watermarks changed.
6115 for_each_new_intel_crtc_in_state(state, crtc, new_crtc_state, i) {
6116 ret = skl_wm_add_affected_planes(state, crtc);
6121 skl_print_wm_changes(state);
6126 static void ilk_compute_wm_config(struct drm_i915_private *dev_priv,
6127 struct intel_wm_config *config)
6129 struct intel_crtc *crtc;
6131 /* Compute the currently _active_ config */
6132 for_each_intel_crtc(&dev_priv->drm, crtc) {
6133 const struct intel_pipe_wm *wm = &crtc->wm.active.ilk;
6135 if (!wm->pipe_enabled)
6138 config->sprites_enabled |= wm->sprites_enabled;
6139 config->sprites_scaled |= wm->sprites_scaled;
6140 config->num_pipes_active++;
6144 static void ilk_program_watermarks(struct drm_i915_private *dev_priv)
6146 struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm;
6147 struct ilk_wm_maximums max;
6148 struct intel_wm_config config = {};
6149 struct ilk_wm_values results = {};
6150 enum intel_ddb_partitioning partitioning;
6152 ilk_compute_wm_config(dev_priv, &config);
6154 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max);
6155 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2);
6157 /* 5/6 split only in single pipe config on IVB+ */
6158 if (DISPLAY_VER(dev_priv) >= 7 &&
6159 config.num_pipes_active == 1 && config.sprites_enabled) {
6160 ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max);
6161 ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6);
6163 best_lp_wm = ilk_find_best_result(dev_priv, &lp_wm_1_2, &lp_wm_5_6);
6165 best_lp_wm = &lp_wm_1_2;
6168 partitioning = (best_lp_wm == &lp_wm_1_2) ?
6169 INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6;
6171 ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results);
6173 ilk_write_wm_values(dev_priv, &results);
6176 static void ilk_initial_watermarks(struct intel_atomic_state *state,
6177 struct intel_crtc *crtc)
6179 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6180 const struct intel_crtc_state *crtc_state =
6181 intel_atomic_get_new_crtc_state(state, crtc);
6183 mutex_lock(&dev_priv->wm.wm_mutex);
6184 crtc->wm.active.ilk = crtc_state->wm.ilk.intermediate;
6185 ilk_program_watermarks(dev_priv);
6186 mutex_unlock(&dev_priv->wm.wm_mutex);
6189 static void ilk_optimize_watermarks(struct intel_atomic_state *state,
6190 struct intel_crtc *crtc)
6192 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6193 const struct intel_crtc_state *crtc_state =
6194 intel_atomic_get_new_crtc_state(state, crtc);
6196 if (!crtc_state->wm.need_postvbl_update)
6199 mutex_lock(&dev_priv->wm.wm_mutex);
6200 crtc->wm.active.ilk = crtc_state->wm.ilk.optimal;
6201 ilk_program_watermarks(dev_priv);
6202 mutex_unlock(&dev_priv->wm.wm_mutex);
6205 static void skl_wm_level_from_reg_val(u32 val, struct skl_wm_level *level)
6207 level->enable = val & PLANE_WM_EN;
6208 level->ignore_lines = val & PLANE_WM_IGNORE_LINES;
6209 level->blocks = val & PLANE_WM_BLOCKS_MASK;
6210 level->lines = (val >> PLANE_WM_LINES_SHIFT) &
6211 PLANE_WM_LINES_MASK;
6214 void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc,
6215 struct skl_pipe_wm *out)
6217 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6218 enum pipe pipe = crtc->pipe;
6219 int level, max_level;
6220 enum plane_id plane_id;
6223 max_level = ilk_wm_max_level(dev_priv);
6225 for_each_plane_id_on_crtc(crtc, plane_id) {
6226 struct skl_plane_wm *wm = &out->planes[plane_id];
6228 for (level = 0; level <= max_level; level++) {
6229 if (plane_id != PLANE_CURSOR)
6230 val = intel_uncore_read(&dev_priv->uncore, PLANE_WM(pipe, plane_id, level));
6232 val = intel_uncore_read(&dev_priv->uncore, CUR_WM(pipe, level));
6234 skl_wm_level_from_reg_val(val, &wm->wm[level]);
6237 if (plane_id != PLANE_CURSOR)
6238 val = intel_uncore_read(&dev_priv->uncore, PLANE_WM_TRANS(pipe, plane_id));
6240 val = intel_uncore_read(&dev_priv->uncore, CUR_WM_TRANS(pipe));
6242 skl_wm_level_from_reg_val(val, &wm->trans_wm);
6244 if (DISPLAY_VER(dev_priv) >= 12) {
6245 wm->sagv.wm0 = wm->wm[0];
6246 wm->sagv.trans_wm = wm->trans_wm;
6251 void skl_wm_get_hw_state(struct drm_i915_private *dev_priv)
6253 struct intel_dbuf_state *dbuf_state =
6254 to_intel_dbuf_state(dev_priv->dbuf.obj.state);
6255 struct intel_crtc *crtc;
6257 for_each_intel_crtc(&dev_priv->drm, crtc) {
6258 struct intel_crtc_state *crtc_state =
6259 to_intel_crtc_state(crtc->base.state);
6260 enum pipe pipe = crtc->pipe;
6261 enum plane_id plane_id;
6263 skl_pipe_wm_get_hw_state(crtc, &crtc_state->wm.skl.optimal);
6264 crtc_state->wm.skl.raw = crtc_state->wm.skl.optimal;
6266 memset(&dbuf_state->ddb[pipe], 0, sizeof(dbuf_state->ddb[pipe]));
6268 for_each_plane_id_on_crtc(crtc, plane_id) {
6269 struct skl_ddb_entry *ddb_y =
6270 &crtc_state->wm.skl.plane_ddb_y[plane_id];
6271 struct skl_ddb_entry *ddb_uv =
6272 &crtc_state->wm.skl.plane_ddb_uv[plane_id];
6274 skl_ddb_get_hw_plane_state(dev_priv, crtc->pipe,
6275 plane_id, ddb_y, ddb_uv);
6277 skl_ddb_entry_union(&dbuf_state->ddb[pipe], ddb_y);
6278 skl_ddb_entry_union(&dbuf_state->ddb[pipe], ddb_uv);
6281 dbuf_state->slices[pipe] =
6282 skl_compute_dbuf_slices(crtc, dbuf_state->active_pipes);
6284 dbuf_state->weight[pipe] = intel_crtc_ddb_weight(crtc_state);
6286 crtc_state->wm.skl.ddb = dbuf_state->ddb[pipe];
6288 drm_dbg_kms(&dev_priv->drm,
6289 "[CRTC:%d:%s] dbuf slices 0x%x, ddb (%d - %d), active pipes 0x%x\n",
6290 crtc->base.base.id, crtc->base.name,
6291 dbuf_state->slices[pipe], dbuf_state->ddb[pipe].start,
6292 dbuf_state->ddb[pipe].end, dbuf_state->active_pipes);
6295 dbuf_state->enabled_slices = dev_priv->dbuf.enabled_slices;
6298 static void ilk_pipe_wm_get_hw_state(struct intel_crtc *crtc)
6300 struct drm_device *dev = crtc->base.dev;
6301 struct drm_i915_private *dev_priv = to_i915(dev);
6302 struct ilk_wm_values *hw = &dev_priv->wm.hw;
6303 struct intel_crtc_state *crtc_state = to_intel_crtc_state(crtc->base.state);
6304 struct intel_pipe_wm *active = &crtc_state->wm.ilk.optimal;
6305 enum pipe pipe = crtc->pipe;
6307 hw->wm_pipe[pipe] = intel_uncore_read(&dev_priv->uncore, WM0_PIPE_ILK(pipe));
6309 memset(active, 0, sizeof(*active));
6311 active->pipe_enabled = crtc->active;
6313 if (active->pipe_enabled) {
6314 u32 tmp = hw->wm_pipe[pipe];
6317 * For active pipes LP0 watermark is marked as
6318 * enabled, and LP1+ watermaks as disabled since
6319 * we can't really reverse compute them in case
6320 * multiple pipes are active.
6322 active->wm[0].enable = true;
6323 active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT;
6324 active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT;
6325 active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK;
6327 int level, max_level = ilk_wm_max_level(dev_priv);
6330 * For inactive pipes, all watermark levels
6331 * should be marked as enabled but zeroed,
6332 * which is what we'd compute them to.
6334 for (level = 0; level <= max_level; level++)
6335 active->wm[level].enable = true;
6338 crtc->wm.active.ilk = *active;
6341 #define _FW_WM(value, plane) \
6342 (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT)
6343 #define _FW_WM_VLV(value, plane) \
6344 (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT)
6346 static void g4x_read_wm_values(struct drm_i915_private *dev_priv,
6347 struct g4x_wm_values *wm)
6351 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW1);
6352 wm->sr.plane = _FW_WM(tmp, SR);
6353 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
6354 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB);
6355 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA);
6357 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW2);
6358 wm->fbc_en = tmp & DSPFW_FBC_SR_EN;
6359 wm->sr.fbc = _FW_WM(tmp, FBC_SR);
6360 wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR);
6361 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB);
6362 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
6363 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA);
6365 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW3);
6366 wm->hpll_en = tmp & DSPFW_HPLL_SR_EN;
6367 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6368 wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR);
6369 wm->hpll.plane = _FW_WM(tmp, HPLL_SR);
6372 static void vlv_read_wm_values(struct drm_i915_private *dev_priv,
6373 struct vlv_wm_values *wm)
6378 for_each_pipe(dev_priv, pipe) {
6379 tmp = intel_uncore_read(&dev_priv->uncore, VLV_DDL(pipe));
6381 wm->ddl[pipe].plane[PLANE_PRIMARY] =
6382 (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6383 wm->ddl[pipe].plane[PLANE_CURSOR] =
6384 (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6385 wm->ddl[pipe].plane[PLANE_SPRITE0] =
6386 (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6387 wm->ddl[pipe].plane[PLANE_SPRITE1] =
6388 (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK);
6391 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW1);
6392 wm->sr.plane = _FW_WM(tmp, SR);
6393 wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB);
6394 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB);
6395 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA);
6397 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW2);
6398 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB);
6399 wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA);
6400 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA);
6402 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW3);
6403 wm->sr.cursor = _FW_WM(tmp, CURSOR_SR);
6405 if (IS_CHERRYVIEW(dev_priv)) {
6406 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW7_CHV);
6407 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6408 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
6410 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW8_CHV);
6411 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF);
6412 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE);
6414 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW9_CHV);
6415 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC);
6416 wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC);
6418 tmp = intel_uncore_read(&dev_priv->uncore, DSPHOWM);
6419 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
6420 wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8;
6421 wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8;
6422 wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8;
6423 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6424 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6425 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6426 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6427 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6428 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
6430 tmp = intel_uncore_read(&dev_priv->uncore, DSPFW7);
6431 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED);
6432 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC);
6434 tmp = intel_uncore_read(&dev_priv->uncore, DSPHOWM);
6435 wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9;
6436 wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8;
6437 wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8;
6438 wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8;
6439 wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8;
6440 wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8;
6441 wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8;
6448 void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv)
6450 struct g4x_wm_values *wm = &dev_priv->wm.g4x;
6451 struct intel_crtc *crtc;
6453 g4x_read_wm_values(dev_priv, wm);
6455 wm->cxsr = intel_uncore_read(&dev_priv->uncore, FW_BLC_SELF) & FW_BLC_SELF_EN;
6457 for_each_intel_crtc(&dev_priv->drm, crtc) {
6458 struct intel_crtc_state *crtc_state =
6459 to_intel_crtc_state(crtc->base.state);
6460 struct g4x_wm_state *active = &crtc->wm.active.g4x;
6461 struct g4x_pipe_wm *raw;
6462 enum pipe pipe = crtc->pipe;
6463 enum plane_id plane_id;
6464 int level, max_level;
6466 active->cxsr = wm->cxsr;
6467 active->hpll_en = wm->hpll_en;
6468 active->fbc_en = wm->fbc_en;
6470 active->sr = wm->sr;
6471 active->hpll = wm->hpll;
6473 for_each_plane_id_on_crtc(crtc, plane_id) {
6474 active->wm.plane[plane_id] =
6475 wm->pipe[pipe].plane[plane_id];
6478 if (wm->cxsr && wm->hpll_en)
6479 max_level = G4X_WM_LEVEL_HPLL;
6481 max_level = G4X_WM_LEVEL_SR;
6483 max_level = G4X_WM_LEVEL_NORMAL;
6485 level = G4X_WM_LEVEL_NORMAL;
6486 raw = &crtc_state->wm.g4x.raw[level];
6487 for_each_plane_id_on_crtc(crtc, plane_id)
6488 raw->plane[plane_id] = active->wm.plane[plane_id];
6490 if (++level > max_level)
6493 raw = &crtc_state->wm.g4x.raw[level];
6494 raw->plane[PLANE_PRIMARY] = active->sr.plane;
6495 raw->plane[PLANE_CURSOR] = active->sr.cursor;
6496 raw->plane[PLANE_SPRITE0] = 0;
6497 raw->fbc = active->sr.fbc;
6499 if (++level > max_level)
6502 raw = &crtc_state->wm.g4x.raw[level];
6503 raw->plane[PLANE_PRIMARY] = active->hpll.plane;
6504 raw->plane[PLANE_CURSOR] = active->hpll.cursor;
6505 raw->plane[PLANE_SPRITE0] = 0;
6506 raw->fbc = active->hpll.fbc;
6509 for_each_plane_id_on_crtc(crtc, plane_id)
6510 g4x_raw_plane_wm_set(crtc_state, level,
6511 plane_id, USHRT_MAX);
6512 g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX);
6514 crtc_state->wm.g4x.optimal = *active;
6515 crtc_state->wm.g4x.intermediate = *active;
6517 drm_dbg_kms(&dev_priv->drm,
6518 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n",
6520 wm->pipe[pipe].plane[PLANE_PRIMARY],
6521 wm->pipe[pipe].plane[PLANE_CURSOR],
6522 wm->pipe[pipe].plane[PLANE_SPRITE0]);
6525 drm_dbg_kms(&dev_priv->drm,
6526 "Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n",
6527 wm->sr.plane, wm->sr.cursor, wm->sr.fbc);
6528 drm_dbg_kms(&dev_priv->drm,
6529 "Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n",
6530 wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc);
6531 drm_dbg_kms(&dev_priv->drm, "Initial SR=%s HPLL=%s FBC=%s\n",
6532 yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en));
6535 void g4x_wm_sanitize(struct drm_i915_private *dev_priv)
6537 struct intel_plane *plane;
6538 struct intel_crtc *crtc;
6540 mutex_lock(&dev_priv->wm.wm_mutex);
6542 for_each_intel_plane(&dev_priv->drm, plane) {
6543 struct intel_crtc *crtc =
6544 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6545 struct intel_crtc_state *crtc_state =
6546 to_intel_crtc_state(crtc->base.state);
6547 struct intel_plane_state *plane_state =
6548 to_intel_plane_state(plane->base.state);
6549 struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal;
6550 enum plane_id plane_id = plane->id;
6553 if (plane_state->uapi.visible)
6556 for (level = 0; level < 3; level++) {
6557 struct g4x_pipe_wm *raw =
6558 &crtc_state->wm.g4x.raw[level];
6560 raw->plane[plane_id] = 0;
6561 wm_state->wm.plane[plane_id] = 0;
6564 if (plane_id == PLANE_PRIMARY) {
6565 for (level = 0; level < 3; level++) {
6566 struct g4x_pipe_wm *raw =
6567 &crtc_state->wm.g4x.raw[level];
6571 wm_state->sr.fbc = 0;
6572 wm_state->hpll.fbc = 0;
6573 wm_state->fbc_en = false;
6577 for_each_intel_crtc(&dev_priv->drm, crtc) {
6578 struct intel_crtc_state *crtc_state =
6579 to_intel_crtc_state(crtc->base.state);
6581 crtc_state->wm.g4x.intermediate =
6582 crtc_state->wm.g4x.optimal;
6583 crtc->wm.active.g4x = crtc_state->wm.g4x.optimal;
6586 g4x_program_watermarks(dev_priv);
6588 mutex_unlock(&dev_priv->wm.wm_mutex);
6591 void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv)
6593 struct vlv_wm_values *wm = &dev_priv->wm.vlv;
6594 struct intel_crtc *crtc;
6597 vlv_read_wm_values(dev_priv, wm);
6599 wm->cxsr = intel_uncore_read(&dev_priv->uncore, FW_BLC_SELF_VLV) & FW_CSPWRDWNEN;
6600 wm->level = VLV_WM_LEVEL_PM2;
6602 if (IS_CHERRYVIEW(dev_priv)) {
6603 vlv_punit_get(dev_priv);
6605 val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM);
6606 if (val & DSP_MAXFIFO_PM5_ENABLE)
6607 wm->level = VLV_WM_LEVEL_PM5;
6610 * If DDR DVFS is disabled in the BIOS, Punit
6611 * will never ack the request. So if that happens
6612 * assume we don't have to enable/disable DDR DVFS
6613 * dynamically. To test that just set the REQ_ACK
6614 * bit to poke the Punit, but don't change the
6615 * HIGH/LOW bits so that we don't actually change
6616 * the current state.
6618 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
6619 val |= FORCE_DDR_FREQ_REQ_ACK;
6620 vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val);
6622 if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) &
6623 FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) {
6624 drm_dbg_kms(&dev_priv->drm,
6625 "Punit not acking DDR DVFS request, "
6626 "assuming DDR DVFS is disabled\n");
6627 dev_priv->wm.max_level = VLV_WM_LEVEL_PM5;
6629 val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2);
6630 if ((val & FORCE_DDR_HIGH_FREQ) == 0)
6631 wm->level = VLV_WM_LEVEL_DDR_DVFS;
6634 vlv_punit_put(dev_priv);
6637 for_each_intel_crtc(&dev_priv->drm, crtc) {
6638 struct intel_crtc_state *crtc_state =
6639 to_intel_crtc_state(crtc->base.state);
6640 struct vlv_wm_state *active = &crtc->wm.active.vlv;
6641 const struct vlv_fifo_state *fifo_state =
6642 &crtc_state->wm.vlv.fifo_state;
6643 enum pipe pipe = crtc->pipe;
6644 enum plane_id plane_id;
6647 vlv_get_fifo_size(crtc_state);
6649 active->num_levels = wm->level + 1;
6650 active->cxsr = wm->cxsr;
6652 for (level = 0; level < active->num_levels; level++) {
6653 struct g4x_pipe_wm *raw =
6654 &crtc_state->wm.vlv.raw[level];
6656 active->sr[level].plane = wm->sr.plane;
6657 active->sr[level].cursor = wm->sr.cursor;
6659 for_each_plane_id_on_crtc(crtc, plane_id) {
6660 active->wm[level].plane[plane_id] =
6661 wm->pipe[pipe].plane[plane_id];
6663 raw->plane[plane_id] =
6664 vlv_invert_wm_value(active->wm[level].plane[plane_id],
6665 fifo_state->plane[plane_id]);
6669 for_each_plane_id_on_crtc(crtc, plane_id)
6670 vlv_raw_plane_wm_set(crtc_state, level,
6671 plane_id, USHRT_MAX);
6672 vlv_invalidate_wms(crtc, active, level);
6674 crtc_state->wm.vlv.optimal = *active;
6675 crtc_state->wm.vlv.intermediate = *active;
6677 drm_dbg_kms(&dev_priv->drm,
6678 "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n",
6680 wm->pipe[pipe].plane[PLANE_PRIMARY],
6681 wm->pipe[pipe].plane[PLANE_CURSOR],
6682 wm->pipe[pipe].plane[PLANE_SPRITE0],
6683 wm->pipe[pipe].plane[PLANE_SPRITE1]);
6686 drm_dbg_kms(&dev_priv->drm,
6687 "Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n",
6688 wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr);
6691 void vlv_wm_sanitize(struct drm_i915_private *dev_priv)
6693 struct intel_plane *plane;
6694 struct intel_crtc *crtc;
6696 mutex_lock(&dev_priv->wm.wm_mutex);
6698 for_each_intel_plane(&dev_priv->drm, plane) {
6699 struct intel_crtc *crtc =
6700 intel_get_crtc_for_pipe(dev_priv, plane->pipe);
6701 struct intel_crtc_state *crtc_state =
6702 to_intel_crtc_state(crtc->base.state);
6703 struct intel_plane_state *plane_state =
6704 to_intel_plane_state(plane->base.state);
6705 struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal;
6706 const struct vlv_fifo_state *fifo_state =
6707 &crtc_state->wm.vlv.fifo_state;
6708 enum plane_id plane_id = plane->id;
6711 if (plane_state->uapi.visible)
6714 for (level = 0; level < wm_state->num_levels; level++) {
6715 struct g4x_pipe_wm *raw =
6716 &crtc_state->wm.vlv.raw[level];
6718 raw->plane[plane_id] = 0;
6720 wm_state->wm[level].plane[plane_id] =
6721 vlv_invert_wm_value(raw->plane[plane_id],
6722 fifo_state->plane[plane_id]);
6726 for_each_intel_crtc(&dev_priv->drm, crtc) {
6727 struct intel_crtc_state *crtc_state =
6728 to_intel_crtc_state(crtc->base.state);
6730 crtc_state->wm.vlv.intermediate =
6731 crtc_state->wm.vlv.optimal;
6732 crtc->wm.active.vlv = crtc_state->wm.vlv.optimal;
6735 vlv_program_watermarks(dev_priv);
6737 mutex_unlock(&dev_priv->wm.wm_mutex);
6741 * FIXME should probably kill this and improve
6742 * the real watermark readout/sanitation instead
6744 static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv)
6746 intel_uncore_write(&dev_priv->uncore, WM3_LP_ILK, intel_uncore_read(&dev_priv->uncore, WM3_LP_ILK) & ~WM1_LP_SR_EN);
6747 intel_uncore_write(&dev_priv->uncore, WM2_LP_ILK, intel_uncore_read(&dev_priv->uncore, WM2_LP_ILK) & ~WM1_LP_SR_EN);
6748 intel_uncore_write(&dev_priv->uncore, WM1_LP_ILK, intel_uncore_read(&dev_priv->uncore, WM1_LP_ILK) & ~WM1_LP_SR_EN);
6751 * Don't touch WM1S_LP_EN here.
6752 * Doing so could cause underruns.
6756 void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv)
6758 struct ilk_wm_values *hw = &dev_priv->wm.hw;
6759 struct intel_crtc *crtc;
6761 ilk_init_lp_watermarks(dev_priv);
6763 for_each_intel_crtc(&dev_priv->drm, crtc)
6764 ilk_pipe_wm_get_hw_state(crtc);
6766 hw->wm_lp[0] = intel_uncore_read(&dev_priv->uncore, WM1_LP_ILK);
6767 hw->wm_lp[1] = intel_uncore_read(&dev_priv->uncore, WM2_LP_ILK);
6768 hw->wm_lp[2] = intel_uncore_read(&dev_priv->uncore, WM3_LP_ILK);
6770 hw->wm_lp_spr[0] = intel_uncore_read(&dev_priv->uncore, WM1S_LP_ILK);
6771 if (DISPLAY_VER(dev_priv) >= 7) {
6772 hw->wm_lp_spr[1] = intel_uncore_read(&dev_priv->uncore, WM2S_LP_IVB);
6773 hw->wm_lp_spr[2] = intel_uncore_read(&dev_priv->uncore, WM3S_LP_IVB);
6776 if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv))
6777 hw->partitioning = (intel_uncore_read(&dev_priv->uncore, WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ?
6778 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
6779 else if (IS_IVYBRIDGE(dev_priv))
6780 hw->partitioning = (intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ?
6781 INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2;
6784 !(intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) & DISP_FBC_WM_DIS);
6788 * intel_update_watermarks - update FIFO watermark values based on current modes
6789 * @crtc: the #intel_crtc on which to compute the WM
6791 * Calculate watermark values for the various WM regs based on current mode
6792 * and plane configuration.
6794 * There are several cases to deal with here:
6795 * - normal (i.e. non-self-refresh)
6796 * - self-refresh (SR) mode
6797 * - lines are large relative to FIFO size (buffer can hold up to 2)
6798 * - lines are small relative to FIFO size (buffer can hold more than 2
6799 * lines), so need to account for TLB latency
6801 * The normal calculation is:
6802 * watermark = dotclock * bytes per pixel * latency
6803 * where latency is platform & configuration dependent (we assume pessimal
6806 * The SR calculation is:
6807 * watermark = (trunc(latency/line time)+1) * surface width *
6810 * line time = htotal / dotclock
6811 * surface width = hdisplay for normal plane and 64 for cursor
6812 * and latency is assumed to be high, as above.
6814 * The final value programmed to the register should always be rounded up,
6815 * and include an extra 2 entries to account for clock crossings.
6817 * We don't use the sprite, so we can ignore that. And on Crestline we have
6818 * to set the non-SR watermarks to 8.
6820 void intel_update_watermarks(struct intel_crtc *crtc)
6822 struct drm_i915_private *dev_priv = to_i915(crtc->base.dev);
6824 if (dev_priv->display.update_wm)
6825 dev_priv->display.update_wm(crtc);
6828 void intel_enable_ipc(struct drm_i915_private *dev_priv)
6832 if (!HAS_IPC(dev_priv))
6835 val = intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL2);
6837 if (dev_priv->ipc_enabled)
6838 val |= DISP_IPC_ENABLE;
6840 val &= ~DISP_IPC_ENABLE;
6842 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL2, val);
6845 static bool intel_can_enable_ipc(struct drm_i915_private *dev_priv)
6847 /* Display WA #0477 WaDisableIPC: skl */
6848 if (IS_SKYLAKE(dev_priv))
6851 /* Display WA #1141: SKL:all KBL:all CFL */
6852 if (IS_KABYLAKE(dev_priv) ||
6853 IS_COFFEELAKE(dev_priv) ||
6854 IS_COMETLAKE(dev_priv))
6855 return dev_priv->dram_info.symmetric_memory;
6860 void intel_init_ipc(struct drm_i915_private *dev_priv)
6862 if (!HAS_IPC(dev_priv))
6865 dev_priv->ipc_enabled = intel_can_enable_ipc(dev_priv);
6867 intel_enable_ipc(dev_priv);
6870 static void ibx_init_clock_gating(struct drm_i915_private *dev_priv)
6873 * On Ibex Peak and Cougar Point, we need to disable clock
6874 * gating for the panel power sequencer or it will fail to
6875 * start up when no ports are active.
6877 intel_uncore_write(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE);
6880 static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv)
6884 for_each_pipe(dev_priv, pipe) {
6885 intel_uncore_write(&dev_priv->uncore, DSPCNTR(pipe),
6886 intel_uncore_read(&dev_priv->uncore, DSPCNTR(pipe)) |
6887 DISPPLANE_TRICKLE_FEED_DISABLE);
6889 intel_uncore_write(&dev_priv->uncore, DSPSURF(pipe), intel_uncore_read(&dev_priv->uncore, DSPSURF(pipe)));
6890 intel_uncore_posting_read(&dev_priv->uncore, DSPSURF(pipe));
6894 static void ilk_init_clock_gating(struct drm_i915_private *dev_priv)
6896 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
6900 * WaFbcDisableDpfcClockGating:ilk
6902 dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE |
6903 ILK_DPFCUNIT_CLOCK_GATE_DISABLE |
6904 ILK_DPFDUNIT_CLOCK_GATE_ENABLE;
6906 intel_uncore_write(&dev_priv->uncore, PCH_3DCGDIS0,
6907 MARIUNIT_CLOCK_GATE_DISABLE |
6908 SVSMUNIT_CLOCK_GATE_DISABLE);
6909 intel_uncore_write(&dev_priv->uncore, PCH_3DCGDIS1,
6910 VFMUNIT_CLOCK_GATE_DISABLE);
6913 * According to the spec the following bits should be set in
6914 * order to enable memory self-refresh
6915 * The bit 22/21 of 0x42004
6916 * The bit 5 of 0x42020
6917 * The bit 15 of 0x45000
6919 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2,
6920 (intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2) |
6921 ILK_DPARB_GATE | ILK_VSDPFD_FULL));
6922 dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE;
6923 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL,
6924 (intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
6928 * Based on the document from hardware guys the following bits
6929 * should be set unconditionally in order to enable FBC.
6930 * The bit 22 of 0x42000
6931 * The bit 22 of 0x42004
6932 * The bit 7,8,9 of 0x42020.
6934 if (IS_IRONLAKE_M(dev_priv)) {
6935 /* WaFbcAsynchFlipDisableFbcQueue:ilk */
6936 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN1,
6937 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN1) |
6939 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2,
6940 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2) |
6944 intel_uncore_write(&dev_priv->uncore, ILK_DSPCLK_GATE_D, dspclk_gate);
6946 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2,
6947 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2) |
6948 ILK_ELPIN_409_SELECT);
6950 g4x_disable_trickle_feed(dev_priv);
6952 ibx_init_clock_gating(dev_priv);
6955 static void cpt_init_clock_gating(struct drm_i915_private *dev_priv)
6961 * On Ibex Peak and Cougar Point, we need to disable clock
6962 * gating for the panel power sequencer or it will fail to
6963 * start up when no ports are active.
6965 intel_uncore_write(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE |
6966 PCH_DPLUNIT_CLOCK_GATE_DISABLE |
6967 PCH_CPUNIT_CLOCK_GATE_DISABLE);
6968 intel_uncore_write(&dev_priv->uncore, SOUTH_CHICKEN2, intel_uncore_read(&dev_priv->uncore, SOUTH_CHICKEN2) |
6969 DPLS_EDP_PPS_FIX_DIS);
6970 /* The below fixes the weird display corruption, a few pixels shifted
6971 * downward, on (only) LVDS of some HP laptops with IVY.
6973 for_each_pipe(dev_priv, pipe) {
6974 val = intel_uncore_read(&dev_priv->uncore, TRANS_CHICKEN2(pipe));
6975 val |= TRANS_CHICKEN2_TIMING_OVERRIDE;
6976 val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
6977 if (dev_priv->vbt.fdi_rx_polarity_inverted)
6978 val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED;
6979 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER;
6980 val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH;
6981 intel_uncore_write(&dev_priv->uncore, TRANS_CHICKEN2(pipe), val);
6983 /* WADP0ClockGatingDisable */
6984 for_each_pipe(dev_priv, pipe) {
6985 intel_uncore_write(&dev_priv->uncore, TRANS_CHICKEN1(pipe),
6986 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
6990 static void gen6_check_mch_setup(struct drm_i915_private *dev_priv)
6994 tmp = intel_uncore_read(&dev_priv->uncore, MCH_SSKPD);
6995 if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL)
6996 drm_dbg_kms(&dev_priv->drm,
6997 "Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n",
7001 static void gen6_init_clock_gating(struct drm_i915_private *dev_priv)
7003 u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE;
7005 intel_uncore_write(&dev_priv->uncore, ILK_DSPCLK_GATE_D, dspclk_gate);
7007 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2,
7008 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2) |
7009 ILK_ELPIN_409_SELECT);
7011 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL1,
7012 intel_uncore_read(&dev_priv->uncore, GEN6_UCGCTL1) |
7013 GEN6_BLBUNIT_CLOCK_GATE_DISABLE |
7014 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7016 /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock
7017 * gating disable must be set. Failure to set it results in
7018 * flickering pixels due to Z write ordering failures after
7019 * some amount of runtime in the Mesa "fire" demo, and Unigine
7020 * Sanctuary and Tropics, and apparently anything else with
7021 * alpha test or pixel discard.
7023 * According to the spec, bit 11 (RCCUNIT) must also be set,
7024 * but we didn't debug actual testcases to find it out.
7026 * WaDisableRCCUnitClockGating:snb
7027 * WaDisableRCPBUnitClockGating:snb
7029 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL2,
7030 GEN6_RCPBUNIT_CLOCK_GATE_DISABLE |
7031 GEN6_RCCUNIT_CLOCK_GATE_DISABLE);
7034 * According to the spec the following bits should be
7035 * set in order to enable memory self-refresh and fbc:
7036 * The bit21 and bit22 of 0x42000
7037 * The bit21 and bit22 of 0x42004
7038 * The bit5 and bit7 of 0x42020
7039 * The bit14 of 0x70180
7040 * The bit14 of 0x71180
7042 * WaFbcAsynchFlipDisableFbcQueue:snb
7044 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN1,
7045 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN1) |
7046 ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS);
7047 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2,
7048 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN2) |
7049 ILK_DPARB_GATE | ILK_VSDPFD_FULL);
7050 intel_uncore_write(&dev_priv->uncore, ILK_DSPCLK_GATE_D,
7051 intel_uncore_read(&dev_priv->uncore, ILK_DSPCLK_GATE_D) |
7052 ILK_DPARBUNIT_CLOCK_GATE_ENABLE |
7053 ILK_DPFDUNIT_CLOCK_GATE_ENABLE);
7055 g4x_disable_trickle_feed(dev_priv);
7057 cpt_init_clock_gating(dev_priv);
7059 gen6_check_mch_setup(dev_priv);
7062 static void lpt_init_clock_gating(struct drm_i915_private *dev_priv)
7065 * TODO: this bit should only be enabled when really needed, then
7066 * disabled when not needed anymore in order to save power.
7068 if (HAS_PCH_LPT_LP(dev_priv))
7069 intel_uncore_write(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D,
7070 intel_uncore_read(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D) |
7071 PCH_LP_PARTITION_LEVEL_DISABLE);
7073 /* WADPOClockGatingDisable:hsw */
7074 intel_uncore_write(&dev_priv->uncore, TRANS_CHICKEN1(PIPE_A),
7075 intel_uncore_read(&dev_priv->uncore, TRANS_CHICKEN1(PIPE_A)) |
7076 TRANS_CHICKEN1_DP0UNIT_GC_DISABLE);
7079 static void lpt_suspend_hw(struct drm_i915_private *dev_priv)
7081 if (HAS_PCH_LPT_LP(dev_priv)) {
7082 u32 val = intel_uncore_read(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D);
7084 val &= ~PCH_LP_PARTITION_LEVEL_DISABLE;
7085 intel_uncore_write(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D, val);
7089 static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv,
7090 int general_prio_credits,
7091 int high_prio_credits)
7096 /* WaTempDisableDOPClkGating:bdw */
7097 misccpctl = intel_uncore_read(&dev_priv->uncore, GEN7_MISCCPCTL);
7098 intel_uncore_write(&dev_priv->uncore, GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE);
7100 val = intel_uncore_read(&dev_priv->uncore, GEN8_L3SQCREG1);
7101 val &= ~L3_PRIO_CREDITS_MASK;
7102 val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits);
7103 val |= L3_HIGH_PRIO_CREDITS(high_prio_credits);
7104 intel_uncore_write(&dev_priv->uncore, GEN8_L3SQCREG1, val);
7107 * Wait at least 100 clocks before re-enabling clock gating.
7108 * See the definition of L3SQCREG1 in BSpec.
7110 intel_uncore_posting_read(&dev_priv->uncore, GEN8_L3SQCREG1);
7112 intel_uncore_write(&dev_priv->uncore, GEN7_MISCCPCTL, misccpctl);
7115 static void icl_init_clock_gating(struct drm_i915_private *dev_priv)
7117 /* Wa_1409120013:icl,ehl */
7118 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN,
7119 ILK_DPFC_CHICKEN_COMP_DUMMY_PIXEL);
7121 /* This is not an Wa. Enable to reduce Sampler power */
7122 intel_uncore_write(&dev_priv->uncore, GEN10_DFR_RATIO_EN_AND_CHICKEN,
7123 intel_uncore_read(&dev_priv->uncore, GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE);
7125 /*Wa_14010594013:icl, ehl */
7126 intel_uncore_rmw(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1,
7127 0, CNL_DELAY_PMRSP);
7130 static void gen12lp_init_clock_gating(struct drm_i915_private *dev_priv)
7132 /* Wa_1409120013:tgl,rkl,adl_s,dg1 */
7133 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN,
7134 ILK_DPFC_CHICKEN_COMP_DUMMY_PIXEL);
7136 /* Wa_1409825376:tgl (pre-prod)*/
7137 if (IS_TGL_DISPLAY_STEP(dev_priv, STEP_A0, STEP_B1))
7138 intel_uncore_write(&dev_priv->uncore, GEN9_CLKGATE_DIS_3, intel_uncore_read(&dev_priv->uncore, GEN9_CLKGATE_DIS_3) |
7139 TGL_VRH_GATING_DIS);
7141 /* Wa_14011059788:tgl,rkl,adl_s,dg1 */
7142 intel_uncore_rmw(&dev_priv->uncore, GEN10_DFR_RATIO_EN_AND_CHICKEN,
7146 static void dg1_init_clock_gating(struct drm_i915_private *dev_priv)
7148 gen12lp_init_clock_gating(dev_priv);
7150 /* Wa_1409836686:dg1[a0] */
7151 if (IS_DG1_REVID(dev_priv, DG1_REVID_A0, DG1_REVID_A0))
7152 intel_uncore_write(&dev_priv->uncore, GEN9_CLKGATE_DIS_3, intel_uncore_read(&dev_priv->uncore, GEN9_CLKGATE_DIS_3) |
7156 static void cnp_init_clock_gating(struct drm_i915_private *dev_priv)
7158 if (!HAS_PCH_CNP(dev_priv))
7161 /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */
7162 intel_uncore_write(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D, intel_uncore_read(&dev_priv->uncore, SOUTH_DSPCLK_GATE_D) |
7163 CNP_PWM_CGE_GATING_DISABLE);
7166 static void cnl_init_clock_gating(struct drm_i915_private *dev_priv)
7169 cnp_init_clock_gating(dev_priv);
7171 /* This is not an Wa. Enable for better image quality */
7172 intel_uncore_write(&dev_priv->uncore, _3D_CHICKEN3,
7173 _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE));
7175 /* WaEnableChickenDCPR:cnl */
7176 intel_uncore_write(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1,
7177 intel_uncore_read(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM);
7180 * WaFbcWakeMemOn:cnl
7181 * Display WA #0859: cnl
7183 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
7184 DISP_FBC_MEMORY_WAKE);
7186 val = intel_uncore_read(&dev_priv->uncore, SLICE_UNIT_LEVEL_CLKGATE);
7187 /* ReadHitWriteOnlyDisable:cnl */
7188 val |= RCCUNIT_CLKGATE_DIS;
7189 intel_uncore_write(&dev_priv->uncore, SLICE_UNIT_LEVEL_CLKGATE, val);
7191 /* Wa_2201832410:cnl */
7192 val = intel_uncore_read(&dev_priv->uncore, SUBSLICE_UNIT_LEVEL_CLKGATE);
7193 val |= GWUNIT_CLKGATE_DIS;
7194 intel_uncore_write(&dev_priv->uncore, SUBSLICE_UNIT_LEVEL_CLKGATE, val);
7196 /* WaDisableVFclkgate:cnl */
7197 /* WaVFUnitClockGatingDisable:cnl */
7198 val = intel_uncore_read(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE);
7199 val |= VFUNIT_CLKGATE_DIS;
7200 intel_uncore_write(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE, val);
7203 static void cfl_init_clock_gating(struct drm_i915_private *dev_priv)
7205 cnp_init_clock_gating(dev_priv);
7206 gen9_init_clock_gating(dev_priv);
7208 /* WAC6entrylatency:cfl */
7209 intel_uncore_write(&dev_priv->uncore, FBC_LLC_READ_CTRL, intel_uncore_read(&dev_priv->uncore, FBC_LLC_READ_CTRL) |
7210 FBC_LLC_FULLY_OPEN);
7213 * WaFbcTurnOffFbcWatermark:cfl
7214 * Display WA #0562: cfl
7216 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
7220 * WaFbcNukeOnHostModify:cfl
7221 * Display WA #0873: cfl
7223 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN, intel_uncore_read(&dev_priv->uncore, ILK_DPFC_CHICKEN) |
7224 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
7227 static void kbl_init_clock_gating(struct drm_i915_private *dev_priv)
7229 gen9_init_clock_gating(dev_priv);
7231 /* WAC6entrylatency:kbl */
7232 intel_uncore_write(&dev_priv->uncore, FBC_LLC_READ_CTRL, intel_uncore_read(&dev_priv->uncore, FBC_LLC_READ_CTRL) |
7233 FBC_LLC_FULLY_OPEN);
7235 /* WaDisableSDEUnitClockGating:kbl */
7236 if (IS_KBL_GT_STEP(dev_priv, 0, STEP_B0))
7237 intel_uncore_write(&dev_priv->uncore, GEN8_UCGCTL6, intel_uncore_read(&dev_priv->uncore, GEN8_UCGCTL6) |
7238 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
7240 /* WaDisableGamClockGating:kbl */
7241 if (IS_KBL_GT_STEP(dev_priv, 0, STEP_B0))
7242 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL1, intel_uncore_read(&dev_priv->uncore, GEN6_UCGCTL1) |
7243 GEN6_GAMUNIT_CLOCK_GATE_DISABLE);
7246 * WaFbcTurnOffFbcWatermark:kbl
7247 * Display WA #0562: kbl
7249 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
7253 * WaFbcNukeOnHostModify:kbl
7254 * Display WA #0873: kbl
7256 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN, intel_uncore_read(&dev_priv->uncore, ILK_DPFC_CHICKEN) |
7257 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
7260 static void skl_init_clock_gating(struct drm_i915_private *dev_priv)
7262 gen9_init_clock_gating(dev_priv);
7264 /* WaDisableDopClockGating:skl */
7265 intel_uncore_write(&dev_priv->uncore, GEN7_MISCCPCTL, intel_uncore_read(&dev_priv->uncore, GEN7_MISCCPCTL) &
7266 ~GEN7_DOP_CLOCK_GATE_ENABLE);
7268 /* WAC6entrylatency:skl */
7269 intel_uncore_write(&dev_priv->uncore, FBC_LLC_READ_CTRL, intel_uncore_read(&dev_priv->uncore, FBC_LLC_READ_CTRL) |
7270 FBC_LLC_FULLY_OPEN);
7273 * WaFbcTurnOffFbcWatermark:skl
7274 * Display WA #0562: skl
7276 intel_uncore_write(&dev_priv->uncore, DISP_ARB_CTL, intel_uncore_read(&dev_priv->uncore, DISP_ARB_CTL) |
7280 * WaFbcNukeOnHostModify:skl
7281 * Display WA #0873: skl
7283 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN, intel_uncore_read(&dev_priv->uncore, ILK_DPFC_CHICKEN) |
7284 ILK_DPFC_NUKE_ON_ANY_MODIFICATION);
7287 * WaFbcHighMemBwCorruptionAvoidance:skl
7288 * Display WA #0883: skl
7290 intel_uncore_write(&dev_priv->uncore, ILK_DPFC_CHICKEN, intel_uncore_read(&dev_priv->uncore, ILK_DPFC_CHICKEN) |
7291 ILK_DPFC_DISABLE_DUMMY0);
7294 static void bdw_init_clock_gating(struct drm_i915_private *dev_priv)
7298 /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */
7299 intel_uncore_write(&dev_priv->uncore, CHICKEN_PIPESL_1(PIPE_A),
7300 intel_uncore_read(&dev_priv->uncore, CHICKEN_PIPESL_1(PIPE_A)) |
7303 /* WaSwitchSolVfFArbitrationPriority:bdw */
7304 intel_uncore_write(&dev_priv->uncore, GAM_ECOCHK, intel_uncore_read(&dev_priv->uncore, GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7306 /* WaPsrDPAMaskVBlankInSRD:bdw */
7307 intel_uncore_write(&dev_priv->uncore, CHICKEN_PAR1_1,
7308 intel_uncore_read(&dev_priv->uncore, CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD);
7310 for_each_pipe(dev_priv, pipe) {
7311 /* WaPsrDPRSUnmaskVBlankInSRD:bdw */
7312 intel_uncore_write(&dev_priv->uncore, CHICKEN_PIPESL_1(pipe),
7313 intel_uncore_read(&dev_priv->uncore, CHICKEN_PIPESL_1(pipe)) |
7314 BDW_DPRS_MASK_VBLANK_SRD);
7316 /* Undocumented but fixes async flip + VT-d corruption */
7317 if (intel_vtd_active())
7318 intel_uncore_rmw(&dev_priv->uncore, CHICKEN_PIPESL_1(pipe),
7319 HSW_PRI_STRETCH_MAX_MASK, HSW_PRI_STRETCH_MAX_X1);
7322 /* WaVSRefCountFullforceMissDisable:bdw */
7323 /* WaDSRefCountFullforceMissDisable:bdw */
7324 intel_uncore_write(&dev_priv->uncore, GEN7_FF_THREAD_MODE,
7325 intel_uncore_read(&dev_priv->uncore, GEN7_FF_THREAD_MODE) &
7326 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
7328 intel_uncore_write(&dev_priv->uncore, GEN6_RC_SLEEP_PSMI_CONTROL,
7329 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
7331 /* WaDisableSDEUnitClockGating:bdw */
7332 intel_uncore_write(&dev_priv->uncore, GEN8_UCGCTL6, intel_uncore_read(&dev_priv->uncore, GEN8_UCGCTL6) |
7333 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
7335 /* WaProgramL3SqcReg1Default:bdw */
7336 gen8_set_l3sqc_credits(dev_priv, 30, 2);
7338 /* WaKVMNotificationOnConfigChange:bdw */
7339 intel_uncore_write(&dev_priv->uncore, CHICKEN_PAR2_1, intel_uncore_read(&dev_priv->uncore, CHICKEN_PAR2_1)
7340 | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT);
7342 lpt_init_clock_gating(dev_priv);
7344 /* WaDisableDopClockGating:bdw
7346 * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP
7349 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL1,
7350 intel_uncore_read(&dev_priv->uncore, GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE);
7353 static void hsw_init_clock_gating(struct drm_i915_private *dev_priv)
7357 /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */
7358 intel_uncore_write(&dev_priv->uncore, CHICKEN_PIPESL_1(PIPE_A),
7359 intel_uncore_read(&dev_priv->uncore, CHICKEN_PIPESL_1(PIPE_A)) |
7362 for_each_pipe(dev_priv, pipe) {
7363 /* Undocumented but fixes async flip + VT-d corruption */
7364 if (intel_vtd_active())
7365 intel_uncore_rmw(&dev_priv->uncore, CHICKEN_PIPESL_1(pipe),
7366 HSW_PRI_STRETCH_MAX_MASK, HSW_PRI_STRETCH_MAX_X1);
7369 /* This is required by WaCatErrorRejectionIssue:hsw */
7370 intel_uncore_write(&dev_priv->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7371 intel_uncore_read(&dev_priv->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7372 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7374 /* WaSwitchSolVfFArbitrationPriority:hsw */
7375 intel_uncore_write(&dev_priv->uncore, GAM_ECOCHK, intel_uncore_read(&dev_priv->uncore, GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL);
7377 lpt_init_clock_gating(dev_priv);
7380 static void ivb_init_clock_gating(struct drm_i915_private *dev_priv)
7384 intel_uncore_write(&dev_priv->uncore, ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE);
7386 /* WaFbcAsynchFlipDisableFbcQueue:ivb */
7387 intel_uncore_write(&dev_priv->uncore, ILK_DISPLAY_CHICKEN1,
7388 intel_uncore_read(&dev_priv->uncore, ILK_DISPLAY_CHICKEN1) |
7391 /* WaDisableBackToBackFlipFix:ivb */
7392 intel_uncore_write(&dev_priv->uncore, IVB_CHICKEN3,
7393 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7394 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7396 if (IS_IVB_GT1(dev_priv))
7397 intel_uncore_write(&dev_priv->uncore, GEN7_ROW_CHICKEN2,
7398 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7400 /* must write both registers */
7401 intel_uncore_write(&dev_priv->uncore, GEN7_ROW_CHICKEN2,
7402 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7403 intel_uncore_write(&dev_priv->uncore, GEN7_ROW_CHICKEN2_GT2,
7404 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7408 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
7409 * This implements the WaDisableRCZUnitClockGating:ivb workaround.
7411 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL2,
7412 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
7414 /* This is required by WaCatErrorRejectionIssue:ivb */
7415 intel_uncore_write(&dev_priv->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7416 intel_uncore_read(&dev_priv->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7417 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7419 g4x_disable_trickle_feed(dev_priv);
7421 snpcr = intel_uncore_read(&dev_priv->uncore, GEN6_MBCUNIT_SNPCR);
7422 snpcr &= ~GEN6_MBC_SNPCR_MASK;
7423 snpcr |= GEN6_MBC_SNPCR_MED;
7424 intel_uncore_write(&dev_priv->uncore, GEN6_MBCUNIT_SNPCR, snpcr);
7426 if (!HAS_PCH_NOP(dev_priv))
7427 cpt_init_clock_gating(dev_priv);
7429 gen6_check_mch_setup(dev_priv);
7432 static void vlv_init_clock_gating(struct drm_i915_private *dev_priv)
7434 /* WaDisableBackToBackFlipFix:vlv */
7435 intel_uncore_write(&dev_priv->uncore, IVB_CHICKEN3,
7436 CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE |
7437 CHICKEN3_DGMG_DONE_FIX_DISABLE);
7439 /* WaDisableDopClockGating:vlv */
7440 intel_uncore_write(&dev_priv->uncore, GEN7_ROW_CHICKEN2,
7441 _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE));
7443 /* This is required by WaCatErrorRejectionIssue:vlv */
7444 intel_uncore_write(&dev_priv->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG,
7445 intel_uncore_read(&dev_priv->uncore, GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) |
7446 GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB);
7449 * According to the spec, bit 13 (RCZUNIT) must be set on IVB.
7450 * This implements the WaDisableRCZUnitClockGating:vlv workaround.
7452 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL2,
7453 GEN6_RCZUNIT_CLOCK_GATE_DISABLE);
7455 /* WaDisableL3Bank2xClockGate:vlv
7456 * Disabling L3 clock gating- MMIO 940c[25] = 1
7457 * Set bit 25, to disable L3_BANK_2x_CLK_GATING */
7458 intel_uncore_write(&dev_priv->uncore, GEN7_UCGCTL4,
7459 intel_uncore_read(&dev_priv->uncore, GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE);
7462 * WaDisableVLVClockGating_VBIIssue:vlv
7463 * Disable clock gating on th GCFG unit to prevent a delay
7464 * in the reporting of vblank events.
7466 intel_uncore_write(&dev_priv->uncore, VLV_GUNIT_CLOCK_GATE, GCFG_DIS);
7469 static void chv_init_clock_gating(struct drm_i915_private *dev_priv)
7471 /* WaVSRefCountFullforceMissDisable:chv */
7472 /* WaDSRefCountFullforceMissDisable:chv */
7473 intel_uncore_write(&dev_priv->uncore, GEN7_FF_THREAD_MODE,
7474 intel_uncore_read(&dev_priv->uncore, GEN7_FF_THREAD_MODE) &
7475 ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME));
7477 /* WaDisableSemaphoreAndSyncFlipWait:chv */
7478 intel_uncore_write(&dev_priv->uncore, GEN6_RC_SLEEP_PSMI_CONTROL,
7479 _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE));
7481 /* WaDisableCSUnitClockGating:chv */
7482 intel_uncore_write(&dev_priv->uncore, GEN6_UCGCTL1, intel_uncore_read(&dev_priv->uncore, GEN6_UCGCTL1) |
7483 GEN6_CSUNIT_CLOCK_GATE_DISABLE);
7485 /* WaDisableSDEUnitClockGating:chv */
7486 intel_uncore_write(&dev_priv->uncore, GEN8_UCGCTL6, intel_uncore_read(&dev_priv->uncore, GEN8_UCGCTL6) |
7487 GEN8_SDEUNIT_CLOCK_GATE_DISABLE);
7490 * WaProgramL3SqcReg1Default:chv
7491 * See gfxspecs/Related Documents/Performance Guide/
7492 * LSQC Setting Recommendations.
7494 gen8_set_l3sqc_credits(dev_priv, 38, 2);
7497 static void g4x_init_clock_gating(struct drm_i915_private *dev_priv)
7501 intel_uncore_write(&dev_priv->uncore, RENCLK_GATE_D1, 0);
7502 intel_uncore_write(&dev_priv->uncore, RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE |
7503 GS_UNIT_CLOCK_GATE_DISABLE |
7504 CL_UNIT_CLOCK_GATE_DISABLE);
7505 intel_uncore_write(&dev_priv->uncore, RAMCLK_GATE_D, 0);
7506 dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE |
7507 OVRUNIT_CLOCK_GATE_DISABLE |
7508 OVCUNIT_CLOCK_GATE_DISABLE;
7509 if (IS_GM45(dev_priv))
7510 dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE;
7511 intel_uncore_write(&dev_priv->uncore, DSPCLK_GATE_D, dspclk_gate);
7513 g4x_disable_trickle_feed(dev_priv);
7516 static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv)
7518 struct intel_uncore *uncore = &dev_priv->uncore;
7520 intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE);
7521 intel_uncore_write(uncore, RENCLK_GATE_D2, 0);
7522 intel_uncore_write(uncore, DSPCLK_GATE_D, 0);
7523 intel_uncore_write(uncore, RAMCLK_GATE_D, 0);
7524 intel_uncore_write16(uncore, DEUC, 0);
7525 intel_uncore_write(uncore,
7527 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
7530 static void i965g_init_clock_gating(struct drm_i915_private *dev_priv)
7532 intel_uncore_write(&dev_priv->uncore, RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE |
7533 I965_RCC_CLOCK_GATE_DISABLE |
7534 I965_RCPB_CLOCK_GATE_DISABLE |
7535 I965_ISC_CLOCK_GATE_DISABLE |
7536 I965_FBC_CLOCK_GATE_DISABLE);
7537 intel_uncore_write(&dev_priv->uncore, RENCLK_GATE_D2, 0);
7538 intel_uncore_write(&dev_priv->uncore, MI_ARB_STATE,
7539 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
7542 static void gen3_init_clock_gating(struct drm_i915_private *dev_priv)
7544 u32 dstate = intel_uncore_read(&dev_priv->uncore, D_STATE);
7546 dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING |
7547 DSTATE_DOT_CLOCK_GATING;
7548 intel_uncore_write(&dev_priv->uncore, D_STATE, dstate);
7550 if (IS_PINEVIEW(dev_priv))
7551 intel_uncore_write(&dev_priv->uncore, ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY));
7553 /* IIR "flip pending" means done if this bit is set */
7554 intel_uncore_write(&dev_priv->uncore, ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE));
7556 /* interrupts should cause a wake up from C3 */
7557 intel_uncore_write(&dev_priv->uncore, INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN));
7559 /* On GEN3 we really need to make sure the ARB C3 LP bit is set */
7560 intel_uncore_write(&dev_priv->uncore, MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE));
7562 intel_uncore_write(&dev_priv->uncore, MI_ARB_STATE,
7563 _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE));
7566 static void i85x_init_clock_gating(struct drm_i915_private *dev_priv)
7568 intel_uncore_write(&dev_priv->uncore, RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE);
7570 /* interrupts should cause a wake up from C3 */
7571 intel_uncore_write(&dev_priv->uncore, MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) |
7572 _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE));
7574 intel_uncore_write(&dev_priv->uncore, MEM_MODE,
7575 _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE));
7578 * Have FBC ignore 3D activity since we use software
7579 * render tracking, and otherwise a pure 3D workload
7580 * (even if it just renders a single frame and then does
7581 * abosultely nothing) would not allow FBC to recompress
7582 * until a 2D blit occurs.
7584 intel_uncore_write(&dev_priv->uncore, SCPD0,
7585 _MASKED_BIT_ENABLE(SCPD_FBC_IGNORE_3D));
7588 static void i830_init_clock_gating(struct drm_i915_private *dev_priv)
7590 intel_uncore_write(&dev_priv->uncore, MEM_MODE,
7591 _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) |
7592 _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE));
7595 void intel_init_clock_gating(struct drm_i915_private *dev_priv)
7597 dev_priv->display.init_clock_gating(dev_priv);
7600 void intel_suspend_hw(struct drm_i915_private *dev_priv)
7602 if (HAS_PCH_LPT(dev_priv))
7603 lpt_suspend_hw(dev_priv);
7606 static void nop_init_clock_gating(struct drm_i915_private *dev_priv)
7608 drm_dbg_kms(&dev_priv->drm,
7609 "No clock gating settings or workarounds applied.\n");
7613 * intel_init_clock_gating_hooks - setup the clock gating hooks
7614 * @dev_priv: device private
7616 * Setup the hooks that configure which clocks of a given platform can be
7617 * gated and also apply various GT and display specific workarounds for these
7618 * platforms. Note that some GT specific workarounds are applied separately
7619 * when GPU contexts or batchbuffers start their execution.
7621 void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv)
7623 if (IS_DG1(dev_priv))
7624 dev_priv->display.init_clock_gating = dg1_init_clock_gating;
7625 else if (IS_GEN(dev_priv, 12))
7626 dev_priv->display.init_clock_gating = gen12lp_init_clock_gating;
7627 else if (IS_GEN(dev_priv, 11))
7628 dev_priv->display.init_clock_gating = icl_init_clock_gating;
7629 else if (IS_CANNONLAKE(dev_priv))
7630 dev_priv->display.init_clock_gating = cnl_init_clock_gating;
7631 else if (IS_COFFEELAKE(dev_priv) || IS_COMETLAKE(dev_priv))
7632 dev_priv->display.init_clock_gating = cfl_init_clock_gating;
7633 else if (IS_SKYLAKE(dev_priv))
7634 dev_priv->display.init_clock_gating = skl_init_clock_gating;
7635 else if (IS_KABYLAKE(dev_priv))
7636 dev_priv->display.init_clock_gating = kbl_init_clock_gating;
7637 else if (IS_BROXTON(dev_priv))
7638 dev_priv->display.init_clock_gating = bxt_init_clock_gating;
7639 else if (IS_GEMINILAKE(dev_priv))
7640 dev_priv->display.init_clock_gating = glk_init_clock_gating;
7641 else if (IS_BROADWELL(dev_priv))
7642 dev_priv->display.init_clock_gating = bdw_init_clock_gating;
7643 else if (IS_CHERRYVIEW(dev_priv))
7644 dev_priv->display.init_clock_gating = chv_init_clock_gating;
7645 else if (IS_HASWELL(dev_priv))
7646 dev_priv->display.init_clock_gating = hsw_init_clock_gating;
7647 else if (IS_IVYBRIDGE(dev_priv))
7648 dev_priv->display.init_clock_gating = ivb_init_clock_gating;
7649 else if (IS_VALLEYVIEW(dev_priv))
7650 dev_priv->display.init_clock_gating = vlv_init_clock_gating;
7651 else if (IS_GEN(dev_priv, 6))
7652 dev_priv->display.init_clock_gating = gen6_init_clock_gating;
7653 else if (IS_GEN(dev_priv, 5))
7654 dev_priv->display.init_clock_gating = ilk_init_clock_gating;
7655 else if (IS_G4X(dev_priv))
7656 dev_priv->display.init_clock_gating = g4x_init_clock_gating;
7657 else if (IS_I965GM(dev_priv))
7658 dev_priv->display.init_clock_gating = i965gm_init_clock_gating;
7659 else if (IS_I965G(dev_priv))
7660 dev_priv->display.init_clock_gating = i965g_init_clock_gating;
7661 else if (IS_GEN(dev_priv, 3))
7662 dev_priv->display.init_clock_gating = gen3_init_clock_gating;
7663 else if (IS_I85X(dev_priv) || IS_I865G(dev_priv))
7664 dev_priv->display.init_clock_gating = i85x_init_clock_gating;
7665 else if (IS_GEN(dev_priv, 2))
7666 dev_priv->display.init_clock_gating = i830_init_clock_gating;
7668 MISSING_CASE(INTEL_DEVID(dev_priv));
7669 dev_priv->display.init_clock_gating = nop_init_clock_gating;
7673 /* Set up chip specific power management-related functions */
7674 void intel_init_pm(struct drm_i915_private *dev_priv)
7677 if (IS_PINEVIEW(dev_priv))
7678 pnv_get_mem_freq(dev_priv);
7679 else if (IS_GEN(dev_priv, 5))
7680 ilk_get_mem_freq(dev_priv);
7682 if (intel_has_sagv(dev_priv))
7683 skl_setup_sagv_block_time(dev_priv);
7685 /* For FIFO watermark updates */
7686 if (DISPLAY_VER(dev_priv) >= 9) {
7687 skl_setup_wm_latency(dev_priv);
7688 dev_priv->display.compute_global_watermarks = skl_compute_wm;
7689 } else if (HAS_PCH_SPLIT(dev_priv)) {
7690 ilk_setup_wm_latency(dev_priv);
7692 if ((IS_DISPLAY_VER(dev_priv, 5) && dev_priv->wm.pri_latency[1] &&
7693 dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) ||
7694 (!IS_DISPLAY_VER(dev_priv, 5) && dev_priv->wm.pri_latency[0] &&
7695 dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) {
7696 dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm;
7697 dev_priv->display.compute_intermediate_wm =
7698 ilk_compute_intermediate_wm;
7699 dev_priv->display.initial_watermarks =
7700 ilk_initial_watermarks;
7701 dev_priv->display.optimize_watermarks =
7702 ilk_optimize_watermarks;
7704 drm_dbg_kms(&dev_priv->drm,
7705 "Failed to read display plane latency. "
7708 } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
7709 vlv_setup_wm_latency(dev_priv);
7710 dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm;
7711 dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm;
7712 dev_priv->display.initial_watermarks = vlv_initial_watermarks;
7713 dev_priv->display.optimize_watermarks = vlv_optimize_watermarks;
7714 dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo;
7715 } else if (IS_G4X(dev_priv)) {
7716 g4x_setup_wm_latency(dev_priv);
7717 dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm;
7718 dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm;
7719 dev_priv->display.initial_watermarks = g4x_initial_watermarks;
7720 dev_priv->display.optimize_watermarks = g4x_optimize_watermarks;
7721 } else if (IS_PINEVIEW(dev_priv)) {
7722 if (!intel_get_cxsr_latency(!IS_MOBILE(dev_priv),
7725 dev_priv->mem_freq)) {
7726 drm_info(&dev_priv->drm,
7727 "failed to find known CxSR latency "
7728 "(found ddr%s fsb freq %d, mem freq %d), "
7730 (dev_priv->is_ddr3 == 1) ? "3" : "2",
7731 dev_priv->fsb_freq, dev_priv->mem_freq);
7732 /* Disable CxSR and never update its watermark again */
7733 intel_set_memory_cxsr(dev_priv, false);
7734 dev_priv->display.update_wm = NULL;
7736 dev_priv->display.update_wm = pnv_update_wm;
7737 } else if (IS_DISPLAY_VER(dev_priv, 4)) {
7738 dev_priv->display.update_wm = i965_update_wm;
7739 } else if (IS_DISPLAY_VER(dev_priv, 3)) {
7740 dev_priv->display.update_wm = i9xx_update_wm;
7741 dev_priv->display.get_fifo_size = i9xx_get_fifo_size;
7742 } else if (IS_DISPLAY_VER(dev_priv, 2)) {
7743 if (INTEL_NUM_PIPES(dev_priv) == 1) {
7744 dev_priv->display.update_wm = i845_update_wm;
7745 dev_priv->display.get_fifo_size = i845_get_fifo_size;
7747 dev_priv->display.update_wm = i9xx_update_wm;
7748 dev_priv->display.get_fifo_size = i830_get_fifo_size;
7751 drm_err(&dev_priv->drm,
7752 "unexpected fall-through in %s\n", __func__);
7756 void intel_pm_setup(struct drm_i915_private *dev_priv)
7758 dev_priv->runtime_pm.suspended = false;
7759 atomic_set(&dev_priv->runtime_pm.wakeref_count, 0);
7762 static struct intel_global_state *intel_dbuf_duplicate_state(struct intel_global_obj *obj)
7764 struct intel_dbuf_state *dbuf_state;
7766 dbuf_state = kmemdup(obj->state, sizeof(*dbuf_state), GFP_KERNEL);
7770 return &dbuf_state->base;
7773 static void intel_dbuf_destroy_state(struct intel_global_obj *obj,
7774 struct intel_global_state *state)
7779 static const struct intel_global_state_funcs intel_dbuf_funcs = {
7780 .atomic_duplicate_state = intel_dbuf_duplicate_state,
7781 .atomic_destroy_state = intel_dbuf_destroy_state,
7784 struct intel_dbuf_state *
7785 intel_atomic_get_dbuf_state(struct intel_atomic_state *state)
7787 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
7788 struct intel_global_state *dbuf_state;
7790 dbuf_state = intel_atomic_get_global_obj_state(state, &dev_priv->dbuf.obj);
7791 if (IS_ERR(dbuf_state))
7792 return ERR_CAST(dbuf_state);
7794 return to_intel_dbuf_state(dbuf_state);
7797 int intel_dbuf_init(struct drm_i915_private *dev_priv)
7799 struct intel_dbuf_state *dbuf_state;
7801 dbuf_state = kzalloc(sizeof(*dbuf_state), GFP_KERNEL);
7805 intel_atomic_global_obj_init(dev_priv, &dev_priv->dbuf.obj,
7806 &dbuf_state->base, &intel_dbuf_funcs);
7811 void intel_dbuf_pre_plane_update(struct intel_atomic_state *state)
7813 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
7814 const struct intel_dbuf_state *new_dbuf_state =
7815 intel_atomic_get_new_dbuf_state(state);
7816 const struct intel_dbuf_state *old_dbuf_state =
7817 intel_atomic_get_old_dbuf_state(state);
7819 if (!new_dbuf_state ||
7820 new_dbuf_state->enabled_slices == old_dbuf_state->enabled_slices)
7823 WARN_ON(!new_dbuf_state->base.changed);
7825 gen9_dbuf_slices_update(dev_priv,
7826 old_dbuf_state->enabled_slices |
7827 new_dbuf_state->enabled_slices);
7830 void intel_dbuf_post_plane_update(struct intel_atomic_state *state)
7832 struct drm_i915_private *dev_priv = to_i915(state->base.dev);
7833 const struct intel_dbuf_state *new_dbuf_state =
7834 intel_atomic_get_new_dbuf_state(state);
7835 const struct intel_dbuf_state *old_dbuf_state =
7836 intel_atomic_get_old_dbuf_state(state);
7838 if (!new_dbuf_state ||
7839 new_dbuf_state->enabled_slices == old_dbuf_state->enabled_slices)
7842 WARN_ON(!new_dbuf_state->base.changed);
7844 gen9_dbuf_slices_update(dev_priv,
7845 new_dbuf_state->enabled_slices);