Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2012 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 21 | * IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: |
| 24 | * Eugeni Dodonov <eugeni.dodonov@intel.com> |
| 25 | * |
| 26 | */ |
| 27 | |
Sam Ravnborg | d0e9359 | 2019-01-26 13:25:24 +0100 | [diff] [blame] | 28 | #include <linux/module.h> |
Chris Wilson | 08ea70a | 2018-08-12 23:36:31 +0100 | [diff] [blame] | 29 | #include <linux/pm_runtime.h> |
Sam Ravnborg | d0e9359 | 2019-01-26 13:25:24 +0100 | [diff] [blame] | 30 | |
| 31 | #include <drm/drm_atomic_helper.h> |
| 32 | #include <drm/drm_fourcc.h> |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 33 | #include <drm/drm_plane_helper.h> |
Sam Ravnborg | d0e9359 | 2019-01-26 13:25:24 +0100 | [diff] [blame] | 34 | |
Jani Nikula | df0566a | 2019-06-13 11:44:16 +0300 | [diff] [blame] | 35 | #include "display/intel_atomic.h" |
Jani Nikula | 1d455f8 | 2019-08-06 14:39:33 +0300 | [diff] [blame] | 36 | #include "display/intel_display_types.h" |
Jani Nikula | df0566a | 2019-06-13 11:44:16 +0300 | [diff] [blame] | 37 | #include "display/intel_fbc.h" |
| 38 | #include "display/intel_sprite.h" |
| 39 | |
Andi Shyti | 0dc3c56 | 2019-10-20 19:41:39 +0100 | [diff] [blame] | 40 | #include "gt/intel_llc.h" |
| 41 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 42 | #include "i915_drv.h" |
Jani Nikula | 440e2b3 | 2019-04-29 15:29:27 +0300 | [diff] [blame] | 43 | #include "i915_irq.h" |
Jani Nikula | a09d9a8 | 2019-08-06 13:07:28 +0300 | [diff] [blame] | 44 | #include "i915_trace.h" |
Jani Nikula | 696173b | 2019-04-05 14:00:15 +0300 | [diff] [blame] | 45 | #include "intel_pm.h" |
Chris Wilson | 56c5098 | 2019-04-26 09:17:22 +0100 | [diff] [blame] | 46 | #include "intel_sideband.h" |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 47 | #include "../../../platform/x86/intel_ips.h" |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 48 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 49 | static void gen9_init_clock_gating(struct drm_i915_private *dev_priv) |
Mika Kuoppala | b033bb6 | 2016-06-07 17:19:04 +0300 | [diff] [blame] | 50 | { |
Ville Syrjälä | 9356404 | 2017-08-24 22:10:51 +0300 | [diff] [blame] | 51 | if (HAS_LLC(dev_priv)) { |
| 52 | /* |
| 53 | * WaCompressedResourceDisplayNewHashMode:skl,kbl |
Lucas De Marchi | e0403cb | 2017-12-05 11:01:17 -0800 | [diff] [blame] | 54 | * Display WA #0390: skl,kbl |
Ville Syrjälä | 9356404 | 2017-08-24 22:10:51 +0300 | [diff] [blame] | 55 | * |
| 56 | * Must match Sampler, Pixel Back End, and Media. See |
| 57 | * WaCompressedResourceSamplerPbeMediaNewHashMode. |
| 58 | */ |
| 59 | I915_WRITE(CHICKEN_PAR1_1, |
| 60 | I915_READ(CHICKEN_PAR1_1) | |
| 61 | SKL_DE_COMPRESSED_HASH_MODE); |
| 62 | } |
| 63 | |
Rodrigo Vivi | 82525c1 | 2017-06-08 08:50:00 -0700 | [diff] [blame] | 64 | /* See Bspec note for PSR2_CTL bit 31, Wa#828:skl,bxt,kbl,cfl */ |
Mika Kuoppala | b033bb6 | 2016-06-07 17:19:04 +0300 | [diff] [blame] | 65 | I915_WRITE(CHICKEN_PAR1_1, |
| 66 | I915_READ(CHICKEN_PAR1_1) | SKL_EDP_PSR_FIX_RDWRAP); |
| 67 | |
Rodrigo Vivi | 82525c1 | 2017-06-08 08:50:00 -0700 | [diff] [blame] | 68 | /* WaEnableChickenDCPR:skl,bxt,kbl,glk,cfl */ |
Mika Kuoppala | 590e8ff | 2016-06-07 17:19:13 +0300 | [diff] [blame] | 69 | I915_WRITE(GEN8_CHICKEN_DCPR_1, |
| 70 | I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM); |
Mika Kuoppala | 0f78dee | 2016-06-07 17:19:16 +0300 | [diff] [blame] | 71 | |
Rodrigo Vivi | 82525c1 | 2017-06-08 08:50:00 -0700 | [diff] [blame] | 72 | /* WaFbcTurnOffFbcWatermark:skl,bxt,kbl,cfl */ |
| 73 | /* WaFbcWakeMemOn:skl,bxt,kbl,glk,cfl */ |
Mika Kuoppala | 303d4ea | 2016-06-07 17:19:17 +0300 | [diff] [blame] | 74 | I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) | |
| 75 | DISP_FBC_WM_DIS | |
| 76 | DISP_FBC_MEMORY_WAKE); |
Mika Kuoppala | d1b4eef | 2016-06-07 17:19:19 +0300 | [diff] [blame] | 77 | |
Rodrigo Vivi | 82525c1 | 2017-06-08 08:50:00 -0700 | [diff] [blame] | 78 | /* WaFbcHighMemBwCorruptionAvoidance:skl,bxt,kbl,cfl */ |
Mika Kuoppala | d1b4eef | 2016-06-07 17:19:19 +0300 | [diff] [blame] | 79 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 80 | ILK_DPFC_DISABLE_DUMMY0); |
Praveen Paneri | 32087d1 | 2017-08-03 23:02:10 +0530 | [diff] [blame] | 81 | |
| 82 | if (IS_SKYLAKE(dev_priv)) { |
| 83 | /* WaDisableDopClockGating */ |
| 84 | I915_WRITE(GEN7_MISCCPCTL, I915_READ(GEN7_MISCCPCTL) |
| 85 | & ~GEN7_DOP_CLOCK_GATE_ENABLE); |
| 86 | } |
Mika Kuoppala | b033bb6 | 2016-06-07 17:19:04 +0300 | [diff] [blame] | 87 | } |
| 88 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 89 | static void bxt_init_clock_gating(struct drm_i915_private *dev_priv) |
Imre Deak | a82abe4 | 2015-03-27 14:00:04 +0200 | [diff] [blame] | 90 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 91 | gen9_init_clock_gating(dev_priv); |
Daniel Vetter | dc00b6a | 2016-05-19 09:14:20 +0200 | [diff] [blame] | 92 | |
Nick Hoath | a754615 | 2015-06-29 14:07:32 +0100 | [diff] [blame] | 93 | /* WaDisableSDEUnitClockGating:bxt */ |
| 94 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 95 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
| 96 | |
Imre Deak | 32608ca | 2015-03-11 11:10:27 +0200 | [diff] [blame] | 97 | /* |
| 98 | * FIXME: |
Ben Widawsky | 868434c | 2015-03-11 10:49:32 +0200 | [diff] [blame] | 99 | * GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ applies on 3x6 GT SKUs only. |
Imre Deak | 32608ca | 2015-03-11 11:10:27 +0200 | [diff] [blame] | 100 | */ |
Imre Deak | 32608ca | 2015-03-11 11:10:27 +0200 | [diff] [blame] | 101 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
Ben Widawsky | 868434c | 2015-03-11 10:49:32 +0200 | [diff] [blame] | 102 | GEN8_HDCUNIT_CLOCK_GATE_DISABLE_HDCREQ); |
Imre Deak | d965e7ac | 2015-12-01 10:23:52 +0200 | [diff] [blame] | 103 | |
| 104 | /* |
| 105 | * Wa: Backlight PWM may stop in the asserted state, causing backlight |
| 106 | * to stay fully on. |
| 107 | */ |
Jani Nikula | 8aeaf64 | 2017-02-15 17:21:37 +0200 | [diff] [blame] | 108 | I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) | |
| 109 | PWM1_GATING_DIS | PWM2_GATING_DIS); |
Uma Shankar | 1d85a29 | 2018-08-07 21:15:35 +0530 | [diff] [blame] | 110 | |
| 111 | /* |
| 112 | * Lower the display internal timeout. |
| 113 | * This is needed to avoid any hard hangs when DSI port PLL |
| 114 | * is off and a MMIO access is attempted by any privilege |
| 115 | * application, using batch buffers or any other means. |
| 116 | */ |
| 117 | I915_WRITE(RM_TIMEOUT, MMIO_TIMEOUT_US(950)); |
Imre Deak | a82abe4 | 2015-03-27 14:00:04 +0200 | [diff] [blame] | 118 | } |
| 119 | |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 120 | static void glk_init_clock_gating(struct drm_i915_private *dev_priv) |
| 121 | { |
| 122 | gen9_init_clock_gating(dev_priv); |
| 123 | |
| 124 | /* |
| 125 | * WaDisablePWMClockGating:glk |
| 126 | * Backlight PWM may stop in the asserted state, causing backlight |
| 127 | * to stay fully on. |
| 128 | */ |
| 129 | I915_WRITE(GEN9_CLKGATE_DIS_0, I915_READ(GEN9_CLKGATE_DIS_0) | |
| 130 | PWM1_GATING_DIS | PWM2_GATING_DIS); |
Ander Conselvan de Oliveira | f4f4b59 | 2017-02-22 08:34:29 +0200 | [diff] [blame] | 131 | |
| 132 | /* WaDDIIOTimeout:glk */ |
| 133 | if (IS_GLK_REVID(dev_priv, 0, GLK_REVID_A1)) { |
| 134 | u32 val = I915_READ(CHICKEN_MISC_2); |
| 135 | val &= ~(GLK_CL0_PWR_DOWN | |
| 136 | GLK_CL1_PWR_DOWN | |
| 137 | GLK_CL2_PWR_DOWN); |
| 138 | I915_WRITE(CHICKEN_MISC_2, val); |
| 139 | } |
| 140 | |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 141 | } |
| 142 | |
Ville Syrjälä | 148ac1f | 2016-10-31 22:37:16 +0200 | [diff] [blame] | 143 | static void i915_pineview_get_mem_freq(struct drm_i915_private *dev_priv) |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 144 | { |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 145 | u32 tmp; |
| 146 | |
| 147 | tmp = I915_READ(CLKCFG); |
| 148 | |
| 149 | switch (tmp & CLKCFG_FSB_MASK) { |
| 150 | case CLKCFG_FSB_533: |
| 151 | dev_priv->fsb_freq = 533; /* 133*4 */ |
| 152 | break; |
| 153 | case CLKCFG_FSB_800: |
| 154 | dev_priv->fsb_freq = 800; /* 200*4 */ |
| 155 | break; |
| 156 | case CLKCFG_FSB_667: |
| 157 | dev_priv->fsb_freq = 667; /* 167*4 */ |
| 158 | break; |
| 159 | case CLKCFG_FSB_400: |
| 160 | dev_priv->fsb_freq = 400; /* 100*4 */ |
| 161 | break; |
| 162 | } |
| 163 | |
| 164 | switch (tmp & CLKCFG_MEM_MASK) { |
| 165 | case CLKCFG_MEM_533: |
| 166 | dev_priv->mem_freq = 533; |
| 167 | break; |
| 168 | case CLKCFG_MEM_667: |
| 169 | dev_priv->mem_freq = 667; |
| 170 | break; |
| 171 | case CLKCFG_MEM_800: |
| 172 | dev_priv->mem_freq = 800; |
| 173 | break; |
| 174 | } |
| 175 | |
| 176 | /* detect pineview DDR3 setting */ |
| 177 | tmp = I915_READ(CSHRDDR3CTL); |
| 178 | dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0; |
| 179 | } |
| 180 | |
Ville Syrjälä | 148ac1f | 2016-10-31 22:37:16 +0200 | [diff] [blame] | 181 | static void i915_ironlake_get_mem_freq(struct drm_i915_private *dev_priv) |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 182 | { |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 183 | u16 ddrpll, csipll; |
| 184 | |
Tvrtko Ursulin | 4f5fd91 | 2019-06-11 11:45:48 +0100 | [diff] [blame] | 185 | ddrpll = intel_uncore_read16(&dev_priv->uncore, DDRMPLL1); |
| 186 | csipll = intel_uncore_read16(&dev_priv->uncore, CSIPLL0); |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 187 | |
| 188 | switch (ddrpll & 0xff) { |
| 189 | case 0xc: |
| 190 | dev_priv->mem_freq = 800; |
| 191 | break; |
| 192 | case 0x10: |
| 193 | dev_priv->mem_freq = 1066; |
| 194 | break; |
| 195 | case 0x14: |
| 196 | dev_priv->mem_freq = 1333; |
| 197 | break; |
| 198 | case 0x18: |
| 199 | dev_priv->mem_freq = 1600; |
| 200 | break; |
| 201 | default: |
| 202 | DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n", |
| 203 | ddrpll & 0xff); |
| 204 | dev_priv->mem_freq = 0; |
| 205 | break; |
| 206 | } |
| 207 | |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 208 | switch (csipll & 0x3ff) { |
| 209 | case 0x00c: |
| 210 | dev_priv->fsb_freq = 3200; |
| 211 | break; |
| 212 | case 0x00e: |
| 213 | dev_priv->fsb_freq = 3733; |
| 214 | break; |
| 215 | case 0x010: |
| 216 | dev_priv->fsb_freq = 4266; |
| 217 | break; |
| 218 | case 0x012: |
| 219 | dev_priv->fsb_freq = 4800; |
| 220 | break; |
| 221 | case 0x014: |
| 222 | dev_priv->fsb_freq = 5333; |
| 223 | break; |
| 224 | case 0x016: |
| 225 | dev_priv->fsb_freq = 5866; |
| 226 | break; |
| 227 | case 0x018: |
| 228 | dev_priv->fsb_freq = 6400; |
| 229 | break; |
| 230 | default: |
| 231 | DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n", |
| 232 | csipll & 0x3ff); |
| 233 | dev_priv->fsb_freq = 0; |
| 234 | break; |
| 235 | } |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 236 | } |
| 237 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 238 | static const struct cxsr_latency cxsr_latency_table[] = { |
| 239 | {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */ |
| 240 | {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */ |
| 241 | {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */ |
| 242 | {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */ |
| 243 | {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */ |
| 244 | |
| 245 | {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */ |
| 246 | {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */ |
| 247 | {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */ |
| 248 | {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */ |
| 249 | {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */ |
| 250 | |
| 251 | {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */ |
| 252 | {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */ |
| 253 | {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */ |
| 254 | {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */ |
| 255 | {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */ |
| 256 | |
| 257 | {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */ |
| 258 | {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */ |
| 259 | {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */ |
| 260 | {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */ |
| 261 | {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */ |
| 262 | |
| 263 | {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */ |
| 264 | {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */ |
| 265 | {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */ |
| 266 | {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */ |
| 267 | {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */ |
| 268 | |
| 269 | {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */ |
| 270 | {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */ |
| 271 | {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */ |
| 272 | {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */ |
| 273 | {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */ |
| 274 | }; |
| 275 | |
Tvrtko Ursulin | 44a655c | 2016-10-13 11:09:23 +0100 | [diff] [blame] | 276 | static const struct cxsr_latency *intel_get_cxsr_latency(bool is_desktop, |
| 277 | bool is_ddr3, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 278 | int fsb, |
| 279 | int mem) |
| 280 | { |
| 281 | const struct cxsr_latency *latency; |
| 282 | int i; |
| 283 | |
| 284 | if (fsb == 0 || mem == 0) |
| 285 | return NULL; |
| 286 | |
| 287 | for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) { |
| 288 | latency = &cxsr_latency_table[i]; |
| 289 | if (is_desktop == latency->is_desktop && |
| 290 | is_ddr3 == latency->is_ddr3 && |
| 291 | fsb == latency->fsb_freq && mem == latency->mem_freq) |
| 292 | return latency; |
| 293 | } |
| 294 | |
| 295 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
| 296 | |
| 297 | return NULL; |
| 298 | } |
| 299 | |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 300 | static void chv_set_memory_dvfs(struct drm_i915_private *dev_priv, bool enable) |
| 301 | { |
| 302 | u32 val; |
| 303 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 304 | vlv_punit_get(dev_priv); |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 305 | |
| 306 | val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2); |
| 307 | if (enable) |
| 308 | val &= ~FORCE_DDR_HIGH_FREQ; |
| 309 | else |
| 310 | val |= FORCE_DDR_HIGH_FREQ; |
| 311 | val &= ~FORCE_DDR_LOW_FREQ; |
| 312 | val |= FORCE_DDR_FREQ_REQ_ACK; |
| 313 | vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val); |
| 314 | |
| 315 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) & |
| 316 | FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) |
| 317 | DRM_ERROR("timed out waiting for Punit DDR DVFS request\n"); |
| 318 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 319 | vlv_punit_put(dev_priv); |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 320 | } |
| 321 | |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 322 | static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable) |
| 323 | { |
| 324 | u32 val; |
| 325 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 326 | vlv_punit_get(dev_priv); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 327 | |
Ville Syrjälä | c11b813 | 2018-11-29 19:55:03 +0200 | [diff] [blame] | 328 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 329 | if (enable) |
| 330 | val |= DSP_MAXFIFO_PM5_ENABLE; |
| 331 | else |
| 332 | val &= ~DSP_MAXFIFO_PM5_ENABLE; |
Ville Syrjälä | c11b813 | 2018-11-29 19:55:03 +0200 | [diff] [blame] | 333 | vlv_punit_write(dev_priv, PUNIT_REG_DSPSSPM, val); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 334 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 335 | vlv_punit_put(dev_priv); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 336 | } |
| 337 | |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 338 | #define FW_WM(value, plane) \ |
| 339 | (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK) |
| 340 | |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 341 | static bool _intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 342 | { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 343 | bool was_enabled; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 344 | u32 val; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 345 | |
Tvrtko Ursulin | 920a14b | 2016-10-14 10:13:44 +0100 | [diff] [blame] | 346 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 347 | was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 348 | I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 349 | POSTING_READ(FW_BLC_SELF_VLV); |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 350 | } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 351 | was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 352 | I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 353 | POSTING_READ(FW_BLC_SELF); |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 354 | } else if (IS_PINEVIEW(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 355 | val = I915_READ(DSPFW3); |
| 356 | was_enabled = val & PINEVIEW_SELF_REFRESH_EN; |
| 357 | if (enable) |
| 358 | val |= PINEVIEW_SELF_REFRESH_EN; |
| 359 | else |
| 360 | val &= ~PINEVIEW_SELF_REFRESH_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 361 | I915_WRITE(DSPFW3, val); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 362 | POSTING_READ(DSPFW3); |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 363 | } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 364 | was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 365 | val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) : |
| 366 | _MASKED_BIT_DISABLE(FW_BLC_SELF_EN); |
| 367 | I915_WRITE(FW_BLC_SELF, val); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 368 | POSTING_READ(FW_BLC_SELF); |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 369 | } else if (IS_I915GM(dev_priv)) { |
Ville Syrjälä | acb9135 | 2016-07-29 17:57:02 +0300 | [diff] [blame] | 370 | /* |
| 371 | * FIXME can't find a bit like this for 915G, and |
| 372 | * and yet it does have the related watermark in |
| 373 | * FW_BLC_SELF. What's going on? |
| 374 | */ |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 375 | was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 376 | val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) : |
| 377 | _MASKED_BIT_DISABLE(INSTPM_SELF_EN); |
| 378 | I915_WRITE(INSTPM, val); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 379 | POSTING_READ(INSTPM); |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 380 | } else { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 381 | return false; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 382 | } |
| 383 | |
Ville Syrjälä | 1489bba | 2017-03-02 19:15:07 +0200 | [diff] [blame] | 384 | trace_intel_memory_cxsr(dev_priv, was_enabled, enable); |
| 385 | |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 386 | DRM_DEBUG_KMS("memory self-refresh is %s (was %s)\n", |
| 387 | enableddisabled(enable), |
| 388 | enableddisabled(was_enabled)); |
| 389 | |
| 390 | return was_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 391 | } |
| 392 | |
Ville Syrjälä | 62571fc | 2017-04-21 21:14:23 +0300 | [diff] [blame] | 393 | /** |
| 394 | * intel_set_memory_cxsr - Configure CxSR state |
| 395 | * @dev_priv: i915 device |
| 396 | * @enable: Allow vs. disallow CxSR |
| 397 | * |
| 398 | * Allow or disallow the system to enter a special CxSR |
| 399 | * (C-state self refresh) state. What typically happens in CxSR mode |
| 400 | * is that several display FIFOs may get combined into a single larger |
| 401 | * FIFO for a particular plane (so called max FIFO mode) to allow the |
| 402 | * system to defer memory fetches longer, and the memory will enter |
| 403 | * self refresh. |
| 404 | * |
| 405 | * Note that enabling CxSR does not guarantee that the system enter |
| 406 | * this special mode, nor does it guarantee that the system stays |
| 407 | * in that mode once entered. So this just allows/disallows the system |
| 408 | * to autonomously utilize the CxSR mode. Other factors such as core |
| 409 | * C-states will affect when/if the system actually enters/exits the |
| 410 | * CxSR mode. |
| 411 | * |
| 412 | * Note that on VLV/CHV this actually only controls the max FIFO mode, |
| 413 | * and the system is free to enter/exit memory self refresh at any time |
| 414 | * even when the use of CxSR has been disallowed. |
| 415 | * |
| 416 | * While the system is actually in the CxSR/max FIFO mode, some plane |
| 417 | * control registers will not get latched on vblank. Thus in order to |
| 418 | * guarantee the system will respond to changes in the plane registers |
| 419 | * we must always disallow CxSR prior to making changes to those registers. |
| 420 | * Unfortunately the system will re-evaluate the CxSR conditions at |
| 421 | * frame start which happens after vblank start (which is when the plane |
| 422 | * registers would get latched), so we can't proceed with the plane update |
| 423 | * during the same frame where we disallowed CxSR. |
| 424 | * |
| 425 | * Certain platforms also have a deeper HPLL SR mode. Fortunately the |
| 426 | * HPLL SR mode depends on CxSR itself, so we don't have to hand hold |
| 427 | * the hardware w.r.t. HPLL SR when writing to plane registers. |
| 428 | * Disallowing just CxSR is sufficient. |
| 429 | */ |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 430 | bool intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable) |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 431 | { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 432 | bool ret; |
| 433 | |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 434 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 435 | ret = _intel_set_memory_cxsr(dev_priv, enable); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 436 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
| 437 | dev_priv->wm.vlv.cxsr = enable; |
| 438 | else if (IS_G4X(dev_priv)) |
| 439 | dev_priv->wm.g4x.cxsr = enable; |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 440 | mutex_unlock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 441 | |
| 442 | return ret; |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 443 | } |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 444 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 445 | /* |
| 446 | * Latency for FIFO fetches is dependent on several factors: |
| 447 | * - memory configuration (speed, channels) |
| 448 | * - chipset |
| 449 | * - current MCH state |
| 450 | * It can be fairly high in some situations, so here we assume a fairly |
| 451 | * pessimal value. It's a tradeoff between extra memory fetches (if we |
| 452 | * set this value too high, the FIFO will fetch frequently to stay full) |
| 453 | * and power consumption (set it too low to save power and we might see |
| 454 | * FIFO underruns and display "flicker"). |
| 455 | * |
| 456 | * A value of 5us seems to be a good balance; safe for very low end |
| 457 | * platforms but not overly aggressive on lower latency configs. |
| 458 | */ |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 459 | static const int pessimal_latency_ns = 5000; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 460 | |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 461 | #define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \ |
| 462 | ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8)) |
| 463 | |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 464 | static void vlv_get_fifo_size(struct intel_crtc_state *crtc_state) |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 465 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 466 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 467 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 468 | struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state; |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 469 | enum pipe pipe = crtc->pipe; |
| 470 | int sprite0_start, sprite1_start; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 471 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 472 | switch (pipe) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 473 | u32 dsparb, dsparb2, dsparb3; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 474 | case PIPE_A: |
| 475 | dsparb = I915_READ(DSPARB); |
| 476 | dsparb2 = I915_READ(DSPARB2); |
| 477 | sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0); |
| 478 | sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4); |
| 479 | break; |
| 480 | case PIPE_B: |
| 481 | dsparb = I915_READ(DSPARB); |
| 482 | dsparb2 = I915_READ(DSPARB2); |
| 483 | sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8); |
| 484 | sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12); |
| 485 | break; |
| 486 | case PIPE_C: |
| 487 | dsparb2 = I915_READ(DSPARB2); |
| 488 | dsparb3 = I915_READ(DSPARB3); |
| 489 | sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16); |
| 490 | sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20); |
| 491 | break; |
| 492 | default: |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 493 | MISSING_CASE(pipe); |
| 494 | return; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 495 | } |
| 496 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 497 | fifo_state->plane[PLANE_PRIMARY] = sprite0_start; |
| 498 | fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start; |
| 499 | fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start; |
| 500 | fifo_state->plane[PLANE_CURSOR] = 63; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 501 | } |
| 502 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 503 | static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, |
| 504 | enum i9xx_plane_id i9xx_plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 505 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 506 | u32 dsparb = I915_READ(DSPARB); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 507 | int size; |
| 508 | |
| 509 | size = dsparb & 0x7f; |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 510 | if (i9xx_plane == PLANE_B) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 511 | size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size; |
| 512 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 513 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n", |
| 514 | dsparb, plane_name(i9xx_plane), size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 515 | |
| 516 | return size; |
| 517 | } |
| 518 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 519 | static int i830_get_fifo_size(struct drm_i915_private *dev_priv, |
| 520 | enum i9xx_plane_id i9xx_plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 521 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 522 | u32 dsparb = I915_READ(DSPARB); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 523 | int size; |
| 524 | |
| 525 | size = dsparb & 0x1ff; |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 526 | if (i9xx_plane == PLANE_B) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 527 | size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size; |
| 528 | size >>= 1; /* Convert to cachelines */ |
| 529 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 530 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n", |
| 531 | dsparb, plane_name(i9xx_plane), size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 532 | |
| 533 | return size; |
| 534 | } |
| 535 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 536 | static int i845_get_fifo_size(struct drm_i915_private *dev_priv, |
| 537 | enum i9xx_plane_id i9xx_plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 538 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 539 | u32 dsparb = I915_READ(DSPARB); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 540 | int size; |
| 541 | |
| 542 | size = dsparb & 0x7f; |
| 543 | size >>= 2; /* Convert to cachelines */ |
| 544 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 545 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %c: %d\n", |
| 546 | dsparb, plane_name(i9xx_plane), size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 547 | |
| 548 | return size; |
| 549 | } |
| 550 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 551 | /* Pineview has different values for various configs */ |
| 552 | static const struct intel_watermark_params pineview_display_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 553 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 554 | .max_wm = PINEVIEW_MAX_WM, |
| 555 | .default_wm = PINEVIEW_DFT_WM, |
| 556 | .guard_size = PINEVIEW_GUARD_WM, |
| 557 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 558 | }; |
| 559 | static const struct intel_watermark_params pineview_display_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 560 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 561 | .max_wm = PINEVIEW_MAX_WM, |
| 562 | .default_wm = PINEVIEW_DFT_HPLLOFF_WM, |
| 563 | .guard_size = PINEVIEW_GUARD_WM, |
| 564 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 565 | }; |
| 566 | static const struct intel_watermark_params pineview_cursor_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 567 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 568 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 569 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 570 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 571 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 572 | }; |
| 573 | static const struct intel_watermark_params pineview_cursor_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 574 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 575 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 576 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 577 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 578 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 579 | }; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 580 | static const struct intel_watermark_params i965_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 581 | .fifo_size = I965_CURSOR_FIFO, |
| 582 | .max_wm = I965_CURSOR_MAX_WM, |
| 583 | .default_wm = I965_CURSOR_DFT_WM, |
| 584 | .guard_size = 2, |
| 585 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 586 | }; |
| 587 | static const struct intel_watermark_params i945_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 588 | .fifo_size = I945_FIFO_SIZE, |
| 589 | .max_wm = I915_MAX_WM, |
| 590 | .default_wm = 1, |
| 591 | .guard_size = 2, |
| 592 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 593 | }; |
| 594 | static const struct intel_watermark_params i915_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 595 | .fifo_size = I915_FIFO_SIZE, |
| 596 | .max_wm = I915_MAX_WM, |
| 597 | .default_wm = 1, |
| 598 | .guard_size = 2, |
| 599 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 600 | }; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 601 | static const struct intel_watermark_params i830_a_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 602 | .fifo_size = I855GM_FIFO_SIZE, |
| 603 | .max_wm = I915_MAX_WM, |
| 604 | .default_wm = 1, |
| 605 | .guard_size = 2, |
| 606 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 607 | }; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 608 | static const struct intel_watermark_params i830_bc_wm_info = { |
| 609 | .fifo_size = I855GM_FIFO_SIZE, |
| 610 | .max_wm = I915_MAX_WM/2, |
| 611 | .default_wm = 1, |
| 612 | .guard_size = 2, |
| 613 | .cacheline_size = I830_FIFO_LINE_SIZE, |
| 614 | }; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 615 | static const struct intel_watermark_params i845_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 616 | .fifo_size = I830_FIFO_SIZE, |
| 617 | .max_wm = I915_MAX_WM, |
| 618 | .default_wm = 1, |
| 619 | .guard_size = 2, |
| 620 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 621 | }; |
| 622 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 623 | /** |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 624 | * intel_wm_method1 - Method 1 / "small buffer" watermark formula |
| 625 | * @pixel_rate: Pipe pixel rate in kHz |
| 626 | * @cpp: Plane bytes per pixel |
| 627 | * @latency: Memory wakeup latency in 0.1us units |
| 628 | * |
| 629 | * Compute the watermark using the method 1 or "small buffer" |
| 630 | * formula. The caller may additonally add extra cachelines |
| 631 | * to account for TLB misses and clock crossings. |
| 632 | * |
| 633 | * This method is concerned with the short term drain rate |
| 634 | * of the FIFO, ie. it does not account for blanking periods |
| 635 | * which would effectively reduce the average drain rate across |
| 636 | * a longer period. The name "small" refers to the fact the |
| 637 | * FIFO is relatively small compared to the amount of data |
| 638 | * fetched. |
| 639 | * |
| 640 | * The FIFO level vs. time graph might look something like: |
| 641 | * |
| 642 | * |\ |\ |
| 643 | * | \ | \ |
| 644 | * __---__---__ (- plane active, _ blanking) |
| 645 | * -> time |
| 646 | * |
| 647 | * or perhaps like this: |
| 648 | * |
| 649 | * |\|\ |\|\ |
| 650 | * __----__----__ (- plane active, _ blanking) |
| 651 | * -> time |
| 652 | * |
| 653 | * Returns: |
| 654 | * The watermark in bytes |
| 655 | */ |
| 656 | static unsigned int intel_wm_method1(unsigned int pixel_rate, |
| 657 | unsigned int cpp, |
| 658 | unsigned int latency) |
| 659 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 660 | u64 ret; |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 661 | |
Ville Syrjälä | d492a29 | 2019-04-08 18:27:01 +0300 | [diff] [blame] | 662 | ret = mul_u32_u32(pixel_rate, cpp * latency); |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 663 | ret = DIV_ROUND_UP_ULL(ret, 10000); |
| 664 | |
| 665 | return ret; |
| 666 | } |
| 667 | |
| 668 | /** |
| 669 | * intel_wm_method2 - Method 2 / "large buffer" watermark formula |
| 670 | * @pixel_rate: Pipe pixel rate in kHz |
| 671 | * @htotal: Pipe horizontal total |
| 672 | * @width: Plane width in pixels |
| 673 | * @cpp: Plane bytes per pixel |
| 674 | * @latency: Memory wakeup latency in 0.1us units |
| 675 | * |
| 676 | * Compute the watermark using the method 2 or "large buffer" |
| 677 | * formula. The caller may additonally add extra cachelines |
| 678 | * to account for TLB misses and clock crossings. |
| 679 | * |
| 680 | * This method is concerned with the long term drain rate |
| 681 | * of the FIFO, ie. it does account for blanking periods |
| 682 | * which effectively reduce the average drain rate across |
| 683 | * a longer period. The name "large" refers to the fact the |
| 684 | * FIFO is relatively large compared to the amount of data |
| 685 | * fetched. |
| 686 | * |
| 687 | * The FIFO level vs. time graph might look something like: |
| 688 | * |
| 689 | * |\___ |\___ |
| 690 | * | \___ | \___ |
| 691 | * | \ | \ |
| 692 | * __ --__--__--__--__--__--__ (- plane active, _ blanking) |
| 693 | * -> time |
| 694 | * |
| 695 | * Returns: |
| 696 | * The watermark in bytes |
| 697 | */ |
| 698 | static unsigned int intel_wm_method2(unsigned int pixel_rate, |
| 699 | unsigned int htotal, |
| 700 | unsigned int width, |
| 701 | unsigned int cpp, |
| 702 | unsigned int latency) |
| 703 | { |
| 704 | unsigned int ret; |
| 705 | |
| 706 | /* |
| 707 | * FIXME remove once all users are computing |
| 708 | * watermarks in the correct place. |
| 709 | */ |
| 710 | if (WARN_ON_ONCE(htotal == 0)) |
| 711 | htotal = 1; |
| 712 | |
| 713 | ret = (latency * pixel_rate) / (htotal * 10000); |
| 714 | ret = (ret + 1) * width * cpp; |
| 715 | |
| 716 | return ret; |
| 717 | } |
| 718 | |
| 719 | /** |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 720 | * intel_calculate_wm - calculate watermark level |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 721 | * @pixel_rate: pixel clock |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 722 | * @wm: chip FIFO params |
Chris Wilson | 3138341 | 2018-02-14 14:03:03 +0000 | [diff] [blame] | 723 | * @fifo_size: size of the FIFO buffer |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 724 | * @cpp: bytes per pixel |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 725 | * @latency_ns: memory latency for the platform |
| 726 | * |
| 727 | * Calculate the watermark level (the level at which the display plane will |
| 728 | * start fetching from memory again). Each chip has a different display |
| 729 | * FIFO size and allocation, so the caller needs to figure that out and pass |
| 730 | * in the correct intel_watermark_params structure. |
| 731 | * |
| 732 | * As the pixel clock runs, the FIFO will be drained at a rate that depends |
| 733 | * on the pixel size. When it reaches the watermark level, it'll start |
| 734 | * fetching FIFO line sized based chunks from memory until the FIFO fills |
| 735 | * past the watermark point. If the FIFO drains completely, a FIFO underrun |
| 736 | * will occur, and a display engine hang could result. |
| 737 | */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 738 | static unsigned int intel_calculate_wm(int pixel_rate, |
| 739 | const struct intel_watermark_params *wm, |
| 740 | int fifo_size, int cpp, |
| 741 | unsigned int latency_ns) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 742 | { |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 743 | int entries, wm_size; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 744 | |
| 745 | /* |
| 746 | * Note: we need to make sure we don't overflow for various clock & |
| 747 | * latency values. |
| 748 | * clocks go from a few thousand to several hundred thousand. |
| 749 | * latency is usually a few thousand |
| 750 | */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 751 | entries = intel_wm_method1(pixel_rate, cpp, |
| 752 | latency_ns / 100); |
| 753 | entries = DIV_ROUND_UP(entries, wm->cacheline_size) + |
| 754 | wm->guard_size; |
| 755 | DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 756 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 757 | wm_size = fifo_size - entries; |
| 758 | DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 759 | |
| 760 | /* Don't promote wm_size to unsigned... */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 761 | if (wm_size > wm->max_wm) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 762 | wm_size = wm->max_wm; |
| 763 | if (wm_size <= 0) |
| 764 | wm_size = wm->default_wm; |
Ville Syrjälä | d6feb19 | 2014-09-05 21:54:13 +0300 | [diff] [blame] | 765 | |
| 766 | /* |
| 767 | * Bspec seems to indicate that the value shouldn't be lower than |
| 768 | * 'burst size + 1'. Certainly 830 is quite unhappy with low values. |
| 769 | * Lets go for 8 which is the burst size since certain platforms |
| 770 | * already use a hardcoded 8 (which is what the spec says should be |
| 771 | * done). |
| 772 | */ |
| 773 | if (wm_size <= 8) |
| 774 | wm_size = 8; |
| 775 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 776 | return wm_size; |
| 777 | } |
| 778 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 779 | static bool is_disabling(int old, int new, int threshold) |
| 780 | { |
| 781 | return old >= threshold && new < threshold; |
| 782 | } |
| 783 | |
| 784 | static bool is_enabling(int old, int new, int threshold) |
| 785 | { |
| 786 | return old < threshold && new >= threshold; |
| 787 | } |
| 788 | |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 789 | static int intel_wm_num_levels(struct drm_i915_private *dev_priv) |
| 790 | { |
| 791 | return dev_priv->wm.max_level + 1; |
| 792 | } |
| 793 | |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 794 | static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state, |
| 795 | const struct intel_plane_state *plane_state) |
| 796 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 797 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 798 | |
| 799 | /* FIXME check the 'enable' instead */ |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 800 | if (!crtc_state->hw.active) |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 801 | return false; |
| 802 | |
| 803 | /* |
| 804 | * Treat cursor with fb as always visible since cursor updates |
| 805 | * can happen faster than the vrefresh rate, and the current |
| 806 | * watermark code doesn't handle that correctly. Cursor updates |
| 807 | * which set/clear the fb or change the cursor size are going |
| 808 | * to get throttled by intel_legacy_cursor_update() to work |
| 809 | * around this problem with the watermark code. |
| 810 | */ |
| 811 | if (plane->id == PLANE_CURSOR) |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 812 | return plane_state->hw.fb != NULL; |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 813 | else |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 814 | return plane_state->uapi.visible; |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 815 | } |
| 816 | |
Ville Syrjälä | 04da7b9 | 2019-11-27 22:12:11 +0200 | [diff] [blame^] | 817 | static bool intel_crtc_active(struct intel_crtc *crtc) |
| 818 | { |
| 819 | /* Be paranoid as we can arrive here with only partial |
| 820 | * state retrieved from the hardware during setup. |
| 821 | * |
| 822 | * We can ditch the adjusted_mode.crtc_clock check as soon |
| 823 | * as Haswell has gained clock readout/fastboot support. |
| 824 | * |
| 825 | * We can ditch the crtc->primary->state->fb check as soon as we can |
| 826 | * properly reconstruct framebuffers. |
| 827 | * |
| 828 | * FIXME: The intel_crtc->active here should be switched to |
| 829 | * crtc->state->active once we have proper CRTC states wired up |
| 830 | * for atomic. |
| 831 | */ |
| 832 | return crtc->active && crtc->base.primary->state->fb && |
| 833 | crtc->config->hw.adjusted_mode.crtc_clock; |
| 834 | } |
| 835 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 836 | static struct intel_crtc *single_enabled_crtc(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 837 | { |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 838 | struct intel_crtc *crtc, *enabled = NULL; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 839 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 840 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 841 | if (intel_crtc_active(crtc)) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 842 | if (enabled) |
| 843 | return NULL; |
| 844 | enabled = crtc; |
| 845 | } |
| 846 | } |
| 847 | |
| 848 | return enabled; |
| 849 | } |
| 850 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 851 | static void pineview_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 852 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 853 | struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 854 | struct intel_crtc *crtc; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 855 | const struct cxsr_latency *latency; |
| 856 | u32 reg; |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 857 | unsigned int wm; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 858 | |
Tvrtko Ursulin | 86d35d4 | 2019-03-26 07:40:54 +0000 | [diff] [blame] | 859 | latency = intel_get_cxsr_latency(!IS_MOBILE(dev_priv), |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 860 | dev_priv->is_ddr3, |
| 861 | dev_priv->fsb_freq, |
| 862 | dev_priv->mem_freq); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 863 | if (!latency) { |
| 864 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 865 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 866 | return; |
| 867 | } |
| 868 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 869 | crtc = single_enabled_crtc(dev_priv); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 870 | if (crtc) { |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 871 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 872 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 873 | const struct drm_framebuffer *fb = |
| 874 | crtc->base.primary->state->fb; |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 875 | int cpp = fb->format->cpp[0]; |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 876 | int clock = adjusted_mode->crtc_clock; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 877 | |
| 878 | /* Display SR */ |
| 879 | wm = intel_calculate_wm(clock, &pineview_display_wm, |
| 880 | pineview_display_wm.fifo_size, |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 881 | cpp, latency->display_sr); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 882 | reg = I915_READ(DSPFW1); |
| 883 | reg &= ~DSPFW_SR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 884 | reg |= FW_WM(wm, SR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 885 | I915_WRITE(DSPFW1, reg); |
| 886 | DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg); |
| 887 | |
| 888 | /* cursor SR */ |
| 889 | wm = intel_calculate_wm(clock, &pineview_cursor_wm, |
| 890 | pineview_display_wm.fifo_size, |
Ville Syrjälä | 99834b1 | 2017-04-21 21:14:24 +0300 | [diff] [blame] | 891 | 4, latency->cursor_sr); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 892 | reg = I915_READ(DSPFW3); |
| 893 | reg &= ~DSPFW_CURSOR_SR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 894 | reg |= FW_WM(wm, CURSOR_SR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 895 | I915_WRITE(DSPFW3, reg); |
| 896 | |
| 897 | /* Display HPLL off SR */ |
| 898 | wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm, |
| 899 | pineview_display_hplloff_wm.fifo_size, |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 900 | cpp, latency->display_hpll_disable); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 901 | reg = I915_READ(DSPFW3); |
| 902 | reg &= ~DSPFW_HPLL_SR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 903 | reg |= FW_WM(wm, HPLL_SR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 904 | I915_WRITE(DSPFW3, reg); |
| 905 | |
| 906 | /* cursor HPLL off SR */ |
| 907 | wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm, |
| 908 | pineview_display_hplloff_wm.fifo_size, |
Ville Syrjälä | 99834b1 | 2017-04-21 21:14:24 +0300 | [diff] [blame] | 909 | 4, latency->cursor_hpll_disable); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 910 | reg = I915_READ(DSPFW3); |
| 911 | reg &= ~DSPFW_HPLL_CURSOR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 912 | reg |= FW_WM(wm, HPLL_CURSOR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 913 | I915_WRITE(DSPFW3, reg); |
| 914 | DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg); |
| 915 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 916 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 917 | } else { |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 918 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 919 | } |
| 920 | } |
| 921 | |
Ville Syrjälä | 0f95ff8 | 2017-04-21 21:14:26 +0300 | [diff] [blame] | 922 | /* |
| 923 | * Documentation says: |
| 924 | * "If the line size is small, the TLB fetches can get in the way of the |
| 925 | * data fetches, causing some lag in the pixel data return which is not |
| 926 | * accounted for in the above formulas. The following adjustment only |
| 927 | * needs to be applied if eight whole lines fit in the buffer at once. |
| 928 | * The WM is adjusted upwards by the difference between the FIFO size |
| 929 | * and the size of 8 whole lines. This adjustment is always performed |
| 930 | * in the actual pixel depth regardless of whether FBC is enabled or not." |
| 931 | */ |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 932 | static unsigned int g4x_tlb_miss_wa(int fifo_size, int width, int cpp) |
Ville Syrjälä | 0f95ff8 | 2017-04-21 21:14:26 +0300 | [diff] [blame] | 933 | { |
| 934 | int tlb_miss = fifo_size * 64 - width * cpp * 8; |
| 935 | |
| 936 | return max(0, tlb_miss); |
| 937 | } |
| 938 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 939 | static void g4x_write_wm_values(struct drm_i915_private *dev_priv, |
| 940 | const struct g4x_wm_values *wm) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 941 | { |
Ville Syrjälä | e93329a | 2017-04-21 21:14:31 +0300 | [diff] [blame] | 942 | enum pipe pipe; |
| 943 | |
| 944 | for_each_pipe(dev_priv, pipe) |
| 945 | trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm); |
| 946 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 947 | I915_WRITE(DSPFW1, |
| 948 | FW_WM(wm->sr.plane, SR) | |
| 949 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) | |
| 950 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) | |
| 951 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA)); |
| 952 | I915_WRITE(DSPFW2, |
| 953 | (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) | |
| 954 | FW_WM(wm->sr.fbc, FBC_SR) | |
| 955 | FW_WM(wm->hpll.fbc, FBC_HPLL_SR) | |
| 956 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) | |
| 957 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) | |
| 958 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA)); |
| 959 | I915_WRITE(DSPFW3, |
| 960 | (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) | |
| 961 | FW_WM(wm->sr.cursor, CURSOR_SR) | |
| 962 | FW_WM(wm->hpll.cursor, HPLL_CURSOR) | |
| 963 | FW_WM(wm->hpll.plane, HPLL_SR)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 964 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 965 | POSTING_READ(DSPFW1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 966 | } |
| 967 | |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 968 | #define FW_WM_VLV(value, plane) \ |
| 969 | (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV) |
| 970 | |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 971 | static void vlv_write_wm_values(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 972 | const struct vlv_wm_values *wm) |
| 973 | { |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 974 | enum pipe pipe; |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 975 | |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 976 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | c137d66 | 2017-03-02 19:15:06 +0200 | [diff] [blame] | 977 | trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm); |
| 978 | |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 979 | I915_WRITE(VLV_DDL(pipe), |
| 980 | (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) | |
| 981 | (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) | |
| 982 | (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) | |
| 983 | (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT)); |
| 984 | } |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 985 | |
Ville Syrjälä | 6fe6a7f | 2016-11-28 19:37:14 +0200 | [diff] [blame] | 986 | /* |
| 987 | * Zero the (unused) WM1 watermarks, and also clear all the |
| 988 | * high order bits so that there are no out of bounds values |
| 989 | * present in the registers during the reprogramming. |
| 990 | */ |
| 991 | I915_WRITE(DSPHOWM, 0); |
| 992 | I915_WRITE(DSPHOWM1, 0); |
| 993 | I915_WRITE(DSPFW4, 0); |
| 994 | I915_WRITE(DSPFW5, 0); |
| 995 | I915_WRITE(DSPFW6, 0); |
| 996 | |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 997 | I915_WRITE(DSPFW1, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 998 | FW_WM(wm->sr.plane, SR) | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 999 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) | |
| 1000 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) | |
| 1001 | FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1002 | I915_WRITE(DSPFW2, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1003 | FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) | |
| 1004 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) | |
| 1005 | FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1006 | I915_WRITE(DSPFW3, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1007 | FW_WM(wm->sr.cursor, CURSOR_SR)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1008 | |
| 1009 | if (IS_CHERRYVIEW(dev_priv)) { |
| 1010 | I915_WRITE(DSPFW7_CHV, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1011 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) | |
| 1012 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1013 | I915_WRITE(DSPFW8_CHV, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1014 | FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) | |
| 1015 | FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1016 | I915_WRITE(DSPFW9_CHV, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1017 | FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) | |
| 1018 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1019 | I915_WRITE(DSPHOWM, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1020 | FW_WM(wm->sr.plane >> 9, SR_HI) | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1021 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) | |
| 1022 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) | |
| 1023 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) | |
| 1024 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) | |
| 1025 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) | |
| 1026 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) | |
| 1027 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) | |
| 1028 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) | |
| 1029 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1030 | } else { |
| 1031 | I915_WRITE(DSPFW7, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1032 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) | |
| 1033 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1034 | I915_WRITE(DSPHOWM, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1035 | FW_WM(wm->sr.plane >> 9, SR_HI) | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1036 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) | |
| 1037 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) | |
| 1038 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) | |
| 1039 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) | |
| 1040 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) | |
| 1041 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1042 | } |
| 1043 | |
| 1044 | POSTING_READ(DSPFW1); |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1045 | } |
| 1046 | |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1047 | #undef FW_WM_VLV |
| 1048 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1049 | static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv) |
| 1050 | { |
| 1051 | /* all latencies in usec */ |
| 1052 | dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5; |
| 1053 | dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12; |
Ville Syrjälä | 79d9430 | 2017-04-21 21:14:30 +0300 | [diff] [blame] | 1054 | dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1055 | |
Ville Syrjälä | 79d9430 | 2017-04-21 21:14:30 +0300 | [diff] [blame] | 1056 | dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1057 | } |
| 1058 | |
| 1059 | static int g4x_plane_fifo_size(enum plane_id plane_id, int level) |
| 1060 | { |
| 1061 | /* |
| 1062 | * DSPCNTR[13] supposedly controls whether the |
| 1063 | * primary plane can use the FIFO space otherwise |
| 1064 | * reserved for the sprite plane. It's not 100% clear |
| 1065 | * what the actual FIFO size is, but it looks like we |
| 1066 | * can happily set both primary and sprite watermarks |
| 1067 | * up to 127 cachelines. So that would seem to mean |
| 1068 | * that either DSPCNTR[13] doesn't do anything, or that |
| 1069 | * the total FIFO is >= 256 cachelines in size. Either |
| 1070 | * way, we don't seem to have to worry about this |
| 1071 | * repartitioning as the maximum watermark value the |
| 1072 | * register can hold for each plane is lower than the |
| 1073 | * minimum FIFO size. |
| 1074 | */ |
| 1075 | switch (plane_id) { |
| 1076 | case PLANE_CURSOR: |
| 1077 | return 63; |
| 1078 | case PLANE_PRIMARY: |
| 1079 | return level == G4X_WM_LEVEL_NORMAL ? 127 : 511; |
| 1080 | case PLANE_SPRITE0: |
| 1081 | return level == G4X_WM_LEVEL_NORMAL ? 127 : 0; |
| 1082 | default: |
| 1083 | MISSING_CASE(plane_id); |
| 1084 | return 0; |
| 1085 | } |
| 1086 | } |
| 1087 | |
| 1088 | static int g4x_fbc_fifo_size(int level) |
| 1089 | { |
| 1090 | switch (level) { |
| 1091 | case G4X_WM_LEVEL_SR: |
| 1092 | return 7; |
| 1093 | case G4X_WM_LEVEL_HPLL: |
| 1094 | return 15; |
| 1095 | default: |
| 1096 | MISSING_CASE(level); |
| 1097 | return 0; |
| 1098 | } |
| 1099 | } |
| 1100 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1101 | static u16 g4x_compute_wm(const struct intel_crtc_state *crtc_state, |
| 1102 | const struct intel_plane_state *plane_state, |
| 1103 | int level) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1104 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1105 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1106 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
| 1107 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 1108 | &crtc_state->hw.adjusted_mode; |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1109 | unsigned int latency = dev_priv->wm.pri_latency[level] * 10; |
| 1110 | unsigned int clock, htotal, cpp, width, wm; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1111 | |
| 1112 | if (latency == 0) |
| 1113 | return USHRT_MAX; |
| 1114 | |
| 1115 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
| 1116 | return 0; |
| 1117 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1118 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | d56e823 | 2019-07-03 23:08:22 +0300 | [diff] [blame] | 1119 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1120 | /* |
| 1121 | * Not 100% sure which way ELK should go here as the |
| 1122 | * spec only says CL/CTG should assume 32bpp and BW |
| 1123 | * doesn't need to. But as these things followed the |
| 1124 | * mobile vs. desktop lines on gen3 as well, let's |
| 1125 | * assume ELK doesn't need this. |
| 1126 | * |
| 1127 | * The spec also fails to list such a restriction for |
| 1128 | * the HPLL watermark, which seems a little strange. |
| 1129 | * Let's use 32bpp for the HPLL watermark as well. |
| 1130 | */ |
| 1131 | if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY && |
| 1132 | level != G4X_WM_LEVEL_NORMAL) |
Ville Syrjälä | d56e823 | 2019-07-03 23:08:22 +0300 | [diff] [blame] | 1133 | cpp = max(cpp, 4u); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1134 | |
| 1135 | clock = adjusted_mode->crtc_clock; |
| 1136 | htotal = adjusted_mode->crtc_htotal; |
| 1137 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1138 | width = drm_rect_width(&plane_state->uapi.dst); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1139 | |
| 1140 | if (plane->id == PLANE_CURSOR) { |
| 1141 | wm = intel_wm_method2(clock, htotal, width, cpp, latency); |
| 1142 | } else if (plane->id == PLANE_PRIMARY && |
| 1143 | level == G4X_WM_LEVEL_NORMAL) { |
| 1144 | wm = intel_wm_method1(clock, cpp, latency); |
| 1145 | } else { |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1146 | unsigned int small, large; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1147 | |
| 1148 | small = intel_wm_method1(clock, cpp, latency); |
| 1149 | large = intel_wm_method2(clock, htotal, width, cpp, latency); |
| 1150 | |
| 1151 | wm = min(small, large); |
| 1152 | } |
| 1153 | |
| 1154 | wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level), |
| 1155 | width, cpp); |
| 1156 | |
| 1157 | wm = DIV_ROUND_UP(wm, 64) + 2; |
| 1158 | |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1159 | return min_t(unsigned int, wm, USHRT_MAX); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1160 | } |
| 1161 | |
| 1162 | static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state, |
| 1163 | int level, enum plane_id plane_id, u16 value) |
| 1164 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1165 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1166 | bool dirty = false; |
| 1167 | |
| 1168 | for (; level < intel_wm_num_levels(dev_priv); level++) { |
| 1169 | struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1170 | |
| 1171 | dirty |= raw->plane[plane_id] != value; |
| 1172 | raw->plane[plane_id] = value; |
| 1173 | } |
| 1174 | |
| 1175 | return dirty; |
| 1176 | } |
| 1177 | |
| 1178 | static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state, |
| 1179 | int level, u16 value) |
| 1180 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1181 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1182 | bool dirty = false; |
| 1183 | |
| 1184 | /* NORMAL level doesn't have an FBC watermark */ |
| 1185 | level = max(level, G4X_WM_LEVEL_SR); |
| 1186 | |
| 1187 | for (; level < intel_wm_num_levels(dev_priv); level++) { |
| 1188 | struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1189 | |
| 1190 | dirty |= raw->fbc != value; |
| 1191 | raw->fbc = value; |
| 1192 | } |
| 1193 | |
| 1194 | return dirty; |
| 1195 | } |
| 1196 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 1197 | static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state, |
| 1198 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1199 | u32 pri_val); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1200 | |
| 1201 | static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state, |
| 1202 | const struct intel_plane_state *plane_state) |
| 1203 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1204 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1205 | int num_levels = intel_wm_num_levels(to_i915(plane->base.dev)); |
| 1206 | enum plane_id plane_id = plane->id; |
| 1207 | bool dirty = false; |
| 1208 | int level; |
| 1209 | |
| 1210 | if (!intel_wm_plane_visible(crtc_state, plane_state)) { |
| 1211 | dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0); |
| 1212 | if (plane_id == PLANE_PRIMARY) |
| 1213 | dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0); |
| 1214 | goto out; |
| 1215 | } |
| 1216 | |
| 1217 | for (level = 0; level < num_levels; level++) { |
| 1218 | struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1219 | int wm, max_wm; |
| 1220 | |
| 1221 | wm = g4x_compute_wm(crtc_state, plane_state, level); |
| 1222 | max_wm = g4x_plane_fifo_size(plane_id, level); |
| 1223 | |
| 1224 | if (wm > max_wm) |
| 1225 | break; |
| 1226 | |
| 1227 | dirty |= raw->plane[plane_id] != wm; |
| 1228 | raw->plane[plane_id] = wm; |
| 1229 | |
| 1230 | if (plane_id != PLANE_PRIMARY || |
| 1231 | level == G4X_WM_LEVEL_NORMAL) |
| 1232 | continue; |
| 1233 | |
| 1234 | wm = ilk_compute_fbc_wm(crtc_state, plane_state, |
| 1235 | raw->plane[plane_id]); |
| 1236 | max_wm = g4x_fbc_fifo_size(level); |
| 1237 | |
| 1238 | /* |
| 1239 | * FBC wm is not mandatory as we |
| 1240 | * can always just disable its use. |
| 1241 | */ |
| 1242 | if (wm > max_wm) |
| 1243 | wm = USHRT_MAX; |
| 1244 | |
| 1245 | dirty |= raw->fbc != wm; |
| 1246 | raw->fbc = wm; |
| 1247 | } |
| 1248 | |
| 1249 | /* mark watermarks as invalid */ |
| 1250 | dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX); |
| 1251 | |
| 1252 | if (plane_id == PLANE_PRIMARY) |
| 1253 | dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX); |
| 1254 | |
| 1255 | out: |
| 1256 | if (dirty) { |
| 1257 | DRM_DEBUG_KMS("%s watermarks: normal=%d, SR=%d, HPLL=%d\n", |
| 1258 | plane->base.name, |
| 1259 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id], |
| 1260 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id], |
| 1261 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]); |
| 1262 | |
| 1263 | if (plane_id == PLANE_PRIMARY) |
| 1264 | DRM_DEBUG_KMS("FBC watermarks: SR=%d, HPLL=%d\n", |
| 1265 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc, |
| 1266 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc); |
| 1267 | } |
| 1268 | |
| 1269 | return dirty; |
| 1270 | } |
| 1271 | |
| 1272 | static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state, |
| 1273 | enum plane_id plane_id, int level) |
| 1274 | { |
| 1275 | const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1276 | |
| 1277 | return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level); |
| 1278 | } |
| 1279 | |
| 1280 | static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, |
| 1281 | int level) |
| 1282 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1283 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1284 | |
| 1285 | if (level > dev_priv->wm.max_level) |
| 1286 | return false; |
| 1287 | |
| 1288 | return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) && |
| 1289 | g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) && |
| 1290 | g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level); |
| 1291 | } |
| 1292 | |
| 1293 | /* mark all levels starting from 'level' as invalid */ |
| 1294 | static void g4x_invalidate_wms(struct intel_crtc *crtc, |
| 1295 | struct g4x_wm_state *wm_state, int level) |
| 1296 | { |
| 1297 | if (level <= G4X_WM_LEVEL_NORMAL) { |
| 1298 | enum plane_id plane_id; |
| 1299 | |
| 1300 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 1301 | wm_state->wm.plane[plane_id] = USHRT_MAX; |
| 1302 | } |
| 1303 | |
| 1304 | if (level <= G4X_WM_LEVEL_SR) { |
| 1305 | wm_state->cxsr = false; |
| 1306 | wm_state->sr.cursor = USHRT_MAX; |
| 1307 | wm_state->sr.plane = USHRT_MAX; |
| 1308 | wm_state->sr.fbc = USHRT_MAX; |
| 1309 | } |
| 1310 | |
| 1311 | if (level <= G4X_WM_LEVEL_HPLL) { |
| 1312 | wm_state->hpll_en = false; |
| 1313 | wm_state->hpll.cursor = USHRT_MAX; |
| 1314 | wm_state->hpll.plane = USHRT_MAX; |
| 1315 | wm_state->hpll.fbc = USHRT_MAX; |
| 1316 | } |
| 1317 | } |
| 1318 | |
| 1319 | static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state) |
| 1320 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1321 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1322 | struct intel_atomic_state *state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1323 | to_intel_atomic_state(crtc_state->uapi.state); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1324 | struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal; |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 1325 | int num_active_planes = hweight8(crtc_state->active_planes & |
| 1326 | ~BIT(PLANE_CURSOR)); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1327 | const struct g4x_pipe_wm *raw; |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1328 | const struct intel_plane_state *old_plane_state; |
| 1329 | const struct intel_plane_state *new_plane_state; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1330 | struct intel_plane *plane; |
| 1331 | enum plane_id plane_id; |
| 1332 | int i, level; |
| 1333 | unsigned int dirty = 0; |
| 1334 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1335 | for_each_oldnew_intel_plane_in_state(state, plane, |
| 1336 | old_plane_state, |
| 1337 | new_plane_state, i) { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1338 | if (new_plane_state->hw.crtc != &crtc->base && |
| 1339 | old_plane_state->hw.crtc != &crtc->base) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1340 | continue; |
| 1341 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1342 | if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state)) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1343 | dirty |= BIT(plane->id); |
| 1344 | } |
| 1345 | |
| 1346 | if (!dirty) |
| 1347 | return 0; |
| 1348 | |
| 1349 | level = G4X_WM_LEVEL_NORMAL; |
| 1350 | if (!g4x_raw_crtc_wm_is_valid(crtc_state, level)) |
| 1351 | goto out; |
| 1352 | |
| 1353 | raw = &crtc_state->wm.g4x.raw[level]; |
| 1354 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 1355 | wm_state->wm.plane[plane_id] = raw->plane[plane_id]; |
| 1356 | |
| 1357 | level = G4X_WM_LEVEL_SR; |
| 1358 | |
| 1359 | if (!g4x_raw_crtc_wm_is_valid(crtc_state, level)) |
| 1360 | goto out; |
| 1361 | |
| 1362 | raw = &crtc_state->wm.g4x.raw[level]; |
| 1363 | wm_state->sr.plane = raw->plane[PLANE_PRIMARY]; |
| 1364 | wm_state->sr.cursor = raw->plane[PLANE_CURSOR]; |
| 1365 | wm_state->sr.fbc = raw->fbc; |
| 1366 | |
| 1367 | wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY); |
| 1368 | |
| 1369 | level = G4X_WM_LEVEL_HPLL; |
| 1370 | |
| 1371 | if (!g4x_raw_crtc_wm_is_valid(crtc_state, level)) |
| 1372 | goto out; |
| 1373 | |
| 1374 | raw = &crtc_state->wm.g4x.raw[level]; |
| 1375 | wm_state->hpll.plane = raw->plane[PLANE_PRIMARY]; |
| 1376 | wm_state->hpll.cursor = raw->plane[PLANE_CURSOR]; |
| 1377 | wm_state->hpll.fbc = raw->fbc; |
| 1378 | |
| 1379 | wm_state->hpll_en = wm_state->cxsr; |
| 1380 | |
| 1381 | level++; |
| 1382 | |
| 1383 | out: |
| 1384 | if (level == G4X_WM_LEVEL_NORMAL) |
| 1385 | return -EINVAL; |
| 1386 | |
| 1387 | /* invalidate the higher levels */ |
| 1388 | g4x_invalidate_wms(crtc, wm_state, level); |
| 1389 | |
| 1390 | /* |
| 1391 | * Determine if the FBC watermark(s) can be used. IF |
| 1392 | * this isn't the case we prefer to disable the FBC |
| 1393 | ( watermark(s) rather than disable the SR/HPLL |
| 1394 | * level(s) entirely. |
| 1395 | */ |
| 1396 | wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL; |
| 1397 | |
| 1398 | if (level >= G4X_WM_LEVEL_SR && |
| 1399 | wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR)) |
| 1400 | wm_state->fbc_en = false; |
| 1401 | else if (level >= G4X_WM_LEVEL_HPLL && |
| 1402 | wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL)) |
| 1403 | wm_state->fbc_en = false; |
| 1404 | |
| 1405 | return 0; |
| 1406 | } |
| 1407 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 1408 | static int g4x_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1409 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1410 | struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1411 | struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate; |
| 1412 | const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal; |
| 1413 | struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1414 | to_intel_atomic_state(new_crtc_state->uapi.state); |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1415 | const struct intel_crtc_state *old_crtc_state = |
| 1416 | intel_atomic_get_old_crtc_state(intel_state, crtc); |
| 1417 | const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1418 | enum plane_id plane_id; |
| 1419 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1420 | if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) { |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1421 | *intermediate = *optimal; |
| 1422 | |
| 1423 | intermediate->cxsr = false; |
| 1424 | intermediate->hpll_en = false; |
| 1425 | goto out; |
| 1426 | } |
| 1427 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1428 | intermediate->cxsr = optimal->cxsr && active->cxsr && |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1429 | !new_crtc_state->disable_cxsr; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1430 | intermediate->hpll_en = optimal->hpll_en && active->hpll_en && |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1431 | !new_crtc_state->disable_cxsr; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1432 | intermediate->fbc_en = optimal->fbc_en && active->fbc_en; |
| 1433 | |
| 1434 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 1435 | intermediate->wm.plane[plane_id] = |
| 1436 | max(optimal->wm.plane[plane_id], |
| 1437 | active->wm.plane[plane_id]); |
| 1438 | |
| 1439 | WARN_ON(intermediate->wm.plane[plane_id] > |
| 1440 | g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL)); |
| 1441 | } |
| 1442 | |
| 1443 | intermediate->sr.plane = max(optimal->sr.plane, |
| 1444 | active->sr.plane); |
| 1445 | intermediate->sr.cursor = max(optimal->sr.cursor, |
| 1446 | active->sr.cursor); |
| 1447 | intermediate->sr.fbc = max(optimal->sr.fbc, |
| 1448 | active->sr.fbc); |
| 1449 | |
| 1450 | intermediate->hpll.plane = max(optimal->hpll.plane, |
| 1451 | active->hpll.plane); |
| 1452 | intermediate->hpll.cursor = max(optimal->hpll.cursor, |
| 1453 | active->hpll.cursor); |
| 1454 | intermediate->hpll.fbc = max(optimal->hpll.fbc, |
| 1455 | active->hpll.fbc); |
| 1456 | |
| 1457 | WARN_ON((intermediate->sr.plane > |
| 1458 | g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) || |
| 1459 | intermediate->sr.cursor > |
| 1460 | g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) && |
| 1461 | intermediate->cxsr); |
| 1462 | WARN_ON((intermediate->sr.plane > |
| 1463 | g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) || |
| 1464 | intermediate->sr.cursor > |
| 1465 | g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) && |
| 1466 | intermediate->hpll_en); |
| 1467 | |
| 1468 | WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) && |
| 1469 | intermediate->fbc_en && intermediate->cxsr); |
| 1470 | WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) && |
| 1471 | intermediate->fbc_en && intermediate->hpll_en); |
| 1472 | |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1473 | out: |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1474 | /* |
| 1475 | * If our intermediate WM are identical to the final WM, then we can |
| 1476 | * omit the post-vblank programming; only update if it's different. |
| 1477 | */ |
| 1478 | if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0) |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1479 | new_crtc_state->wm.need_postvbl_update = true; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1480 | |
| 1481 | return 0; |
| 1482 | } |
| 1483 | |
| 1484 | static void g4x_merge_wm(struct drm_i915_private *dev_priv, |
| 1485 | struct g4x_wm_values *wm) |
| 1486 | { |
| 1487 | struct intel_crtc *crtc; |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 1488 | int num_active_pipes = 0; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1489 | |
| 1490 | wm->cxsr = true; |
| 1491 | wm->hpll_en = true; |
| 1492 | wm->fbc_en = true; |
| 1493 | |
| 1494 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 1495 | const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x; |
| 1496 | |
| 1497 | if (!crtc->active) |
| 1498 | continue; |
| 1499 | |
| 1500 | if (!wm_state->cxsr) |
| 1501 | wm->cxsr = false; |
| 1502 | if (!wm_state->hpll_en) |
| 1503 | wm->hpll_en = false; |
| 1504 | if (!wm_state->fbc_en) |
| 1505 | wm->fbc_en = false; |
| 1506 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 1507 | num_active_pipes++; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1508 | } |
| 1509 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 1510 | if (num_active_pipes != 1) { |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1511 | wm->cxsr = false; |
| 1512 | wm->hpll_en = false; |
| 1513 | wm->fbc_en = false; |
| 1514 | } |
| 1515 | |
| 1516 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 1517 | const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x; |
| 1518 | enum pipe pipe = crtc->pipe; |
| 1519 | |
| 1520 | wm->pipe[pipe] = wm_state->wm; |
| 1521 | if (crtc->active && wm->cxsr) |
| 1522 | wm->sr = wm_state->sr; |
| 1523 | if (crtc->active && wm->hpll_en) |
| 1524 | wm->hpll = wm_state->hpll; |
| 1525 | } |
| 1526 | } |
| 1527 | |
| 1528 | static void g4x_program_watermarks(struct drm_i915_private *dev_priv) |
| 1529 | { |
| 1530 | struct g4x_wm_values *old_wm = &dev_priv->wm.g4x; |
| 1531 | struct g4x_wm_values new_wm = {}; |
| 1532 | |
| 1533 | g4x_merge_wm(dev_priv, &new_wm); |
| 1534 | |
| 1535 | if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) |
| 1536 | return; |
| 1537 | |
| 1538 | if (is_disabling(old_wm->cxsr, new_wm.cxsr, true)) |
| 1539 | _intel_set_memory_cxsr(dev_priv, false); |
| 1540 | |
| 1541 | g4x_write_wm_values(dev_priv, &new_wm); |
| 1542 | |
| 1543 | if (is_enabling(old_wm->cxsr, new_wm.cxsr, true)) |
| 1544 | _intel_set_memory_cxsr(dev_priv, true); |
| 1545 | |
| 1546 | *old_wm = new_wm; |
| 1547 | } |
| 1548 | |
| 1549 | static void g4x_initial_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1550 | struct intel_crtc *crtc) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1551 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1552 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1553 | const struct intel_crtc_state *crtc_state = |
| 1554 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1555 | |
| 1556 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 1557 | crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate; |
| 1558 | g4x_program_watermarks(dev_priv); |
| 1559 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 1560 | } |
| 1561 | |
| 1562 | static void g4x_optimize_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1563 | struct intel_crtc *crtc) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1564 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1565 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1566 | const struct intel_crtc_state *crtc_state = |
| 1567 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1568 | |
| 1569 | if (!crtc_state->wm.need_postvbl_update) |
| 1570 | return; |
| 1571 | |
| 1572 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 1573 | crtc->wm.active.g4x = crtc_state->wm.g4x.optimal; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1574 | g4x_program_watermarks(dev_priv); |
| 1575 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 1576 | } |
| 1577 | |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1578 | /* latency must be in 0.1us units. */ |
| 1579 | static unsigned int vlv_wm_method2(unsigned int pixel_rate, |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 1580 | unsigned int htotal, |
| 1581 | unsigned int width, |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 1582 | unsigned int cpp, |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1583 | unsigned int latency) |
| 1584 | { |
| 1585 | unsigned int ret; |
| 1586 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 1587 | ret = intel_wm_method2(pixel_rate, htotal, |
| 1588 | width, cpp, latency); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1589 | ret = DIV_ROUND_UP(ret, 64); |
| 1590 | |
| 1591 | return ret; |
| 1592 | } |
| 1593 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 1594 | static void vlv_setup_wm_latency(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1595 | { |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1596 | /* all latencies in usec */ |
| 1597 | dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3; |
| 1598 | |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 1599 | dev_priv->wm.max_level = VLV_WM_LEVEL_PM2; |
| 1600 | |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1601 | if (IS_CHERRYVIEW(dev_priv)) { |
| 1602 | dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12; |
| 1603 | dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33; |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 1604 | |
| 1605 | dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1606 | } |
| 1607 | } |
| 1608 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1609 | static u16 vlv_compute_wm_level(const struct intel_crtc_state *crtc_state, |
| 1610 | const struct intel_plane_state *plane_state, |
| 1611 | int level) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1612 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1613 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1614 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Ville Syrjälä | e339d67 | 2016-11-28 19:37:17 +0200 | [diff] [blame] | 1615 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 1616 | &crtc_state->hw.adjusted_mode; |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1617 | unsigned int clock, htotal, cpp, width, wm; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1618 | |
| 1619 | if (dev_priv->wm.pri_latency[level] == 0) |
| 1620 | return USHRT_MAX; |
| 1621 | |
Ville Syrjälä | a07102f | 2017-03-03 17:19:27 +0200 | [diff] [blame] | 1622 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1623 | return 0; |
| 1624 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1625 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | e339d67 | 2016-11-28 19:37:17 +0200 | [diff] [blame] | 1626 | clock = adjusted_mode->crtc_clock; |
| 1627 | htotal = adjusted_mode->crtc_htotal; |
| 1628 | width = crtc_state->pipe_src_w; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1629 | |
Ville Syrjälä | 709f3fc | 2017-03-03 17:19:26 +0200 | [diff] [blame] | 1630 | if (plane->id == PLANE_CURSOR) { |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1631 | /* |
| 1632 | * FIXME the formula gives values that are |
| 1633 | * too big for the cursor FIFO, and hence we |
| 1634 | * would never be able to use cursors. For |
| 1635 | * now just hardcode the watermark. |
| 1636 | */ |
| 1637 | wm = 63; |
| 1638 | } else { |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 1639 | wm = vlv_wm_method2(clock, htotal, width, cpp, |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1640 | dev_priv->wm.pri_latency[level] * 10); |
| 1641 | } |
| 1642 | |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1643 | return min_t(unsigned int, wm, USHRT_MAX); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1644 | } |
| 1645 | |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1646 | static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes) |
| 1647 | { |
| 1648 | return (active_planes & (BIT(PLANE_SPRITE0) | |
| 1649 | BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1); |
| 1650 | } |
| 1651 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1652 | static int vlv_compute_fifo(struct intel_crtc_state *crtc_state) |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1653 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1654 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1655 | const struct g4x_pipe_wm *raw = |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1656 | &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2]; |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 1657 | struct vlv_fifo_state *fifo_state = &crtc_state->wm.vlv.fifo_state; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1658 | unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR); |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 1659 | int num_active_planes = hweight8(active_planes); |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1660 | const int fifo_size = 511; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1661 | int fifo_extra, fifo_left = fifo_size; |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1662 | int sprite0_fifo_extra = 0; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1663 | unsigned int total_rate; |
| 1664 | enum plane_id plane_id; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1665 | |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1666 | /* |
| 1667 | * When enabling sprite0 after sprite1 has already been enabled |
| 1668 | * we tend to get an underrun unless sprite0 already has some |
| 1669 | * FIFO space allcoated. Hence we always allocate at least one |
| 1670 | * cacheline for sprite0 whenever sprite1 is enabled. |
| 1671 | * |
| 1672 | * All other plane enable sequences appear immune to this problem. |
| 1673 | */ |
| 1674 | if (vlv_need_sprite0_fifo_workaround(active_planes)) |
| 1675 | sprite0_fifo_extra = 1; |
| 1676 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1677 | total_rate = raw->plane[PLANE_PRIMARY] + |
| 1678 | raw->plane[PLANE_SPRITE0] + |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1679 | raw->plane[PLANE_SPRITE1] + |
| 1680 | sprite0_fifo_extra; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1681 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1682 | if (total_rate > fifo_size) |
| 1683 | return -EINVAL; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1684 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1685 | if (total_rate == 0) |
| 1686 | total_rate = 1; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1687 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1688 | for_each_plane_id_on_crtc(crtc, plane_id) { |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1689 | unsigned int rate; |
| 1690 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1691 | if ((active_planes & BIT(plane_id)) == 0) { |
| 1692 | fifo_state->plane[plane_id] = 0; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1693 | continue; |
| 1694 | } |
| 1695 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1696 | rate = raw->plane[plane_id]; |
| 1697 | fifo_state->plane[plane_id] = fifo_size * rate / total_rate; |
| 1698 | fifo_left -= fifo_state->plane[plane_id]; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1699 | } |
| 1700 | |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1701 | fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra; |
| 1702 | fifo_left -= sprite0_fifo_extra; |
| 1703 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1704 | fifo_state->plane[PLANE_CURSOR] = 63; |
| 1705 | |
| 1706 | fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1707 | |
| 1708 | /* spread the remainder evenly */ |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1709 | for_each_plane_id_on_crtc(crtc, plane_id) { |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1710 | int plane_extra; |
| 1711 | |
| 1712 | if (fifo_left == 0) |
| 1713 | break; |
| 1714 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1715 | if ((active_planes & BIT(plane_id)) == 0) |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1716 | continue; |
| 1717 | |
| 1718 | plane_extra = min(fifo_extra, fifo_left); |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1719 | fifo_state->plane[plane_id] += plane_extra; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1720 | fifo_left -= plane_extra; |
| 1721 | } |
| 1722 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1723 | WARN_ON(active_planes != 0 && fifo_left != 0); |
| 1724 | |
| 1725 | /* give it all to the first plane if none are active */ |
| 1726 | if (active_planes == 0) { |
| 1727 | WARN_ON(fifo_left != fifo_size); |
| 1728 | fifo_state->plane[PLANE_PRIMARY] = fifo_left; |
| 1729 | } |
| 1730 | |
| 1731 | return 0; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1732 | } |
| 1733 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1734 | /* mark all levels starting from 'level' as invalid */ |
| 1735 | static void vlv_invalidate_wms(struct intel_crtc *crtc, |
| 1736 | struct vlv_wm_state *wm_state, int level) |
| 1737 | { |
| 1738 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1739 | |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1740 | for (; level < intel_wm_num_levels(dev_priv); level++) { |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1741 | enum plane_id plane_id; |
| 1742 | |
| 1743 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 1744 | wm_state->wm[level].plane[plane_id] = USHRT_MAX; |
| 1745 | |
| 1746 | wm_state->sr[level].cursor = USHRT_MAX; |
| 1747 | wm_state->sr[level].plane = USHRT_MAX; |
| 1748 | } |
| 1749 | } |
| 1750 | |
Ville Syrjälä | 26cca0e | 2016-11-28 19:37:09 +0200 | [diff] [blame] | 1751 | static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size) |
| 1752 | { |
| 1753 | if (wm > fifo_size) |
| 1754 | return USHRT_MAX; |
| 1755 | else |
| 1756 | return fifo_size - wm; |
| 1757 | } |
| 1758 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1759 | /* |
| 1760 | * Starting from 'level' set all higher |
| 1761 | * levels to 'value' in the "raw" watermarks. |
| 1762 | */ |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1763 | static bool vlv_raw_plane_wm_set(struct intel_crtc_state *crtc_state, |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1764 | int level, enum plane_id plane_id, u16 value) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1765 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1766 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1767 | int num_levels = intel_wm_num_levels(dev_priv); |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1768 | bool dirty = false; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1769 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1770 | for (; level < num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1771 | struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level]; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1772 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1773 | dirty |= raw->plane[plane_id] != value; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1774 | raw->plane[plane_id] = value; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1775 | } |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1776 | |
| 1777 | return dirty; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1778 | } |
| 1779 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1780 | static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state, |
| 1781 | const struct intel_plane_state *plane_state) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1782 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1783 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1784 | enum plane_id plane_id = plane->id; |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1785 | int num_levels = intel_wm_num_levels(to_i915(plane->base.dev)); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1786 | int level; |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1787 | bool dirty = false; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1788 | |
Ville Syrjälä | a07102f | 2017-03-03 17:19:27 +0200 | [diff] [blame] | 1789 | if (!intel_wm_plane_visible(crtc_state, plane_state)) { |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1790 | dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0); |
| 1791 | goto out; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | for (level = 0; level < num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1795 | struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level]; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1796 | int wm = vlv_compute_wm_level(crtc_state, plane_state, level); |
| 1797 | int max_wm = plane_id == PLANE_CURSOR ? 63 : 511; |
| 1798 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1799 | if (wm > max_wm) |
| 1800 | break; |
| 1801 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1802 | dirty |= raw->plane[plane_id] != wm; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1803 | raw->plane[plane_id] = wm; |
| 1804 | } |
| 1805 | |
| 1806 | /* mark all higher levels as invalid */ |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1807 | dirty |= vlv_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1808 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1809 | out: |
| 1810 | if (dirty) |
Ville Syrjälä | 57a6528 | 2017-04-21 21:14:22 +0300 | [diff] [blame] | 1811 | DRM_DEBUG_KMS("%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n", |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1812 | plane->base.name, |
| 1813 | crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id], |
| 1814 | crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id], |
| 1815 | crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]); |
| 1816 | |
| 1817 | return dirty; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1818 | } |
| 1819 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1820 | static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state, |
| 1821 | enum plane_id plane_id, int level) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1822 | { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1823 | const struct g4x_pipe_wm *raw = |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1824 | &crtc_state->wm.vlv.raw[level]; |
| 1825 | const struct vlv_fifo_state *fifo_state = |
| 1826 | &crtc_state->wm.vlv.fifo_state; |
| 1827 | |
| 1828 | return raw->plane[plane_id] <= fifo_state->plane[plane_id]; |
| 1829 | } |
| 1830 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1831 | static bool vlv_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, int level) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1832 | { |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1833 | return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) && |
| 1834 | vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) && |
| 1835 | vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) && |
| 1836 | vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1837 | } |
| 1838 | |
| 1839 | static int vlv_compute_pipe_wm(struct intel_crtc_state *crtc_state) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1840 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1841 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 1842 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1843 | struct intel_atomic_state *state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1844 | to_intel_atomic_state(crtc_state->uapi.state); |
Ville Syrjälä | 855c79f | 2017-03-02 19:14:54 +0200 | [diff] [blame] | 1845 | struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1846 | const struct vlv_fifo_state *fifo_state = |
| 1847 | &crtc_state->wm.vlv.fifo_state; |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 1848 | int num_active_planes = hweight8(crtc_state->active_planes & |
| 1849 | ~BIT(PLANE_CURSOR)); |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1850 | bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->uapi); |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1851 | const struct intel_plane_state *old_plane_state; |
| 1852 | const struct intel_plane_state *new_plane_state; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1853 | struct intel_plane *plane; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1854 | enum plane_id plane_id; |
| 1855 | int level, ret, i; |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1856 | unsigned int dirty = 0; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1857 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1858 | for_each_oldnew_intel_plane_in_state(state, plane, |
| 1859 | old_plane_state, |
| 1860 | new_plane_state, i) { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1861 | if (new_plane_state->hw.crtc != &crtc->base && |
| 1862 | old_plane_state->hw.crtc != &crtc->base) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1863 | continue; |
| 1864 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1865 | if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state)) |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1866 | dirty |= BIT(plane->id); |
| 1867 | } |
| 1868 | |
| 1869 | /* |
| 1870 | * DSPARB registers may have been reset due to the |
| 1871 | * power well being turned off. Make sure we restore |
| 1872 | * them to a consistent state even if no primary/sprite |
| 1873 | * planes are initially active. |
| 1874 | */ |
| 1875 | if (needs_modeset) |
| 1876 | crtc_state->fifo_changed = true; |
| 1877 | |
| 1878 | if (!dirty) |
| 1879 | return 0; |
| 1880 | |
| 1881 | /* cursor changes don't warrant a FIFO recompute */ |
| 1882 | if (dirty & ~BIT(PLANE_CURSOR)) { |
| 1883 | const struct intel_crtc_state *old_crtc_state = |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1884 | intel_atomic_get_old_crtc_state(state, crtc); |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1885 | const struct vlv_fifo_state *old_fifo_state = |
| 1886 | &old_crtc_state->wm.vlv.fifo_state; |
| 1887 | |
| 1888 | ret = vlv_compute_fifo(crtc_state); |
| 1889 | if (ret) |
| 1890 | return ret; |
| 1891 | |
| 1892 | if (needs_modeset || |
| 1893 | memcmp(old_fifo_state, fifo_state, |
| 1894 | sizeof(*fifo_state)) != 0) |
| 1895 | crtc_state->fifo_changed = true; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1896 | } |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1897 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1898 | /* initially allow all levels */ |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1899 | wm_state->num_levels = intel_wm_num_levels(dev_priv); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1900 | /* |
| 1901 | * Note that enabling cxsr with no primary/sprite planes |
| 1902 | * enabled can wedge the pipe. Hence we only allow cxsr |
| 1903 | * with exactly one enabled primary/sprite plane. |
| 1904 | */ |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 1905 | wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1906 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1907 | for (level = 0; level < wm_state->num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1908 | const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level]; |
Jani Nikula | 2497787 | 2019-09-11 12:26:08 +0300 | [diff] [blame] | 1909 | const int sr_fifo_size = INTEL_NUM_PIPES(dev_priv) * 512 - 1; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1910 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1911 | if (!vlv_raw_crtc_wm_is_valid(crtc_state, level)) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1912 | break; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1913 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1914 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 1915 | wm_state->wm[level].plane[plane_id] = |
| 1916 | vlv_invert_wm_value(raw->plane[plane_id], |
| 1917 | fifo_state->plane[plane_id]); |
| 1918 | } |
| 1919 | |
| 1920 | wm_state->sr[level].plane = |
| 1921 | vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY], |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1922 | raw->plane[PLANE_SPRITE0], |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1923 | raw->plane[PLANE_SPRITE1]), |
| 1924 | sr_fifo_size); |
| 1925 | |
| 1926 | wm_state->sr[level].cursor = |
| 1927 | vlv_invert_wm_value(raw->plane[PLANE_CURSOR], |
| 1928 | 63); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1929 | } |
| 1930 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1931 | if (level == 0) |
| 1932 | return -EINVAL; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1933 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1934 | /* limit to only levels we can actually handle */ |
| 1935 | wm_state->num_levels = level; |
| 1936 | |
| 1937 | /* invalidate the higher levels */ |
| 1938 | vlv_invalidate_wms(crtc, wm_state, level); |
| 1939 | |
| 1940 | return 0; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1941 | } |
| 1942 | |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1943 | #define VLV_FIFO(plane, value) \ |
| 1944 | (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV) |
| 1945 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1946 | static void vlv_atomic_update_fifo(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1947 | struct intel_crtc *crtc) |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1948 | { |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1949 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1950 | struct intel_uncore *uncore = &dev_priv->uncore; |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1951 | const struct intel_crtc_state *crtc_state = |
| 1952 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 1953 | const struct vlv_fifo_state *fifo_state = |
| 1954 | &crtc_state->wm.vlv.fifo_state; |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1955 | int sprite0_start, sprite1_start, fifo_size; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1956 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1957 | if (!crtc_state->fifo_changed) |
| 1958 | return; |
| 1959 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1960 | sprite0_start = fifo_state->plane[PLANE_PRIMARY]; |
| 1961 | sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start; |
| 1962 | fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1963 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1964 | WARN_ON(fifo_state->plane[PLANE_CURSOR] != 63); |
| 1965 | WARN_ON(fifo_size != 511); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1966 | |
Ville Syrjälä | c137d66 | 2017-03-02 19:15:06 +0200 | [diff] [blame] | 1967 | trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size); |
| 1968 | |
Ville Syrjälä | 44e921d | 2017-03-09 17:44:34 +0200 | [diff] [blame] | 1969 | /* |
| 1970 | * uncore.lock serves a double purpose here. It allows us to |
| 1971 | * use the less expensive I915_{READ,WRITE}_FW() functions, and |
| 1972 | * it protects the DSPARB registers from getting clobbered by |
| 1973 | * parallel updates from multiple pipes. |
| 1974 | * |
| 1975 | * intel_pipe_update_start() has already disabled interrupts |
| 1976 | * for us, so a plain spin_lock() is sufficient here. |
| 1977 | */ |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1978 | spin_lock(&uncore->lock); |
Ville Syrjälä | 467a14d | 2016-12-05 16:13:28 +0200 | [diff] [blame] | 1979 | |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1980 | switch (crtc->pipe) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1981 | u32 dsparb, dsparb2, dsparb3; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1982 | case PIPE_A: |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1983 | dsparb = intel_uncore_read_fw(uncore, DSPARB); |
| 1984 | dsparb2 = intel_uncore_read_fw(uncore, DSPARB2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1985 | |
| 1986 | dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) | |
| 1987 | VLV_FIFO(SPRITEB, 0xff)); |
| 1988 | dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) | |
| 1989 | VLV_FIFO(SPRITEB, sprite1_start)); |
| 1990 | |
| 1991 | dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) | |
| 1992 | VLV_FIFO(SPRITEB_HI, 0x1)); |
| 1993 | dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) | |
| 1994 | VLV_FIFO(SPRITEB_HI, sprite1_start >> 8)); |
| 1995 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1996 | intel_uncore_write_fw(uncore, DSPARB, dsparb); |
| 1997 | intel_uncore_write_fw(uncore, DSPARB2, dsparb2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1998 | break; |
| 1999 | case PIPE_B: |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2000 | dsparb = intel_uncore_read_fw(uncore, DSPARB); |
| 2001 | dsparb2 = intel_uncore_read_fw(uncore, DSPARB2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2002 | |
| 2003 | dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) | |
| 2004 | VLV_FIFO(SPRITED, 0xff)); |
| 2005 | dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) | |
| 2006 | VLV_FIFO(SPRITED, sprite1_start)); |
| 2007 | |
| 2008 | dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) | |
| 2009 | VLV_FIFO(SPRITED_HI, 0xff)); |
| 2010 | dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) | |
| 2011 | VLV_FIFO(SPRITED_HI, sprite1_start >> 8)); |
| 2012 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2013 | intel_uncore_write_fw(uncore, DSPARB, dsparb); |
| 2014 | intel_uncore_write_fw(uncore, DSPARB2, dsparb2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2015 | break; |
| 2016 | case PIPE_C: |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2017 | dsparb3 = intel_uncore_read_fw(uncore, DSPARB3); |
| 2018 | dsparb2 = intel_uncore_read_fw(uncore, DSPARB2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2019 | |
| 2020 | dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) | |
| 2021 | VLV_FIFO(SPRITEF, 0xff)); |
| 2022 | dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) | |
| 2023 | VLV_FIFO(SPRITEF, sprite1_start)); |
| 2024 | |
| 2025 | dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) | |
| 2026 | VLV_FIFO(SPRITEF_HI, 0xff)); |
| 2027 | dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) | |
| 2028 | VLV_FIFO(SPRITEF_HI, sprite1_start >> 8)); |
| 2029 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2030 | intel_uncore_write_fw(uncore, DSPARB3, dsparb3); |
| 2031 | intel_uncore_write_fw(uncore, DSPARB2, dsparb2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2032 | break; |
| 2033 | default: |
| 2034 | break; |
| 2035 | } |
Ville Syrjälä | 467a14d | 2016-12-05 16:13:28 +0200 | [diff] [blame] | 2036 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2037 | intel_uncore_posting_read_fw(uncore, DSPARB); |
Ville Syrjälä | 467a14d | 2016-12-05 16:13:28 +0200 | [diff] [blame] | 2038 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2039 | spin_unlock(&uncore->lock); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2040 | } |
| 2041 | |
| 2042 | #undef VLV_FIFO |
| 2043 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2044 | static int vlv_compute_intermediate_wm(struct intel_crtc_state *new_crtc_state) |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2045 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2046 | struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2047 | struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate; |
| 2048 | const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal; |
| 2049 | struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2050 | to_intel_atomic_state(new_crtc_state->uapi.state); |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2051 | const struct intel_crtc_state *old_crtc_state = |
| 2052 | intel_atomic_get_old_crtc_state(intel_state, crtc); |
| 2053 | const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2054 | int level; |
| 2055 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2056 | if (!new_crtc_state->hw.active || drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi)) { |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2057 | *intermediate = *optimal; |
| 2058 | |
| 2059 | intermediate->cxsr = false; |
| 2060 | goto out; |
| 2061 | } |
| 2062 | |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2063 | intermediate->num_levels = min(optimal->num_levels, active->num_levels); |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 2064 | intermediate->cxsr = optimal->cxsr && active->cxsr && |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2065 | !new_crtc_state->disable_cxsr; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2066 | |
| 2067 | for (level = 0; level < intermediate->num_levels; level++) { |
| 2068 | enum plane_id plane_id; |
| 2069 | |
| 2070 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 2071 | intermediate->wm[level].plane[plane_id] = |
| 2072 | min(optimal->wm[level].plane[plane_id], |
| 2073 | active->wm[level].plane[plane_id]); |
| 2074 | } |
| 2075 | |
| 2076 | intermediate->sr[level].plane = min(optimal->sr[level].plane, |
| 2077 | active->sr[level].plane); |
| 2078 | intermediate->sr[level].cursor = min(optimal->sr[level].cursor, |
| 2079 | active->sr[level].cursor); |
| 2080 | } |
| 2081 | |
| 2082 | vlv_invalidate_wms(crtc, intermediate, level); |
| 2083 | |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2084 | out: |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2085 | /* |
| 2086 | * If our intermediate WM are identical to the final WM, then we can |
| 2087 | * omit the post-vblank programming; only update if it's different. |
| 2088 | */ |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 2089 | if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0) |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2090 | new_crtc_state->wm.need_postvbl_update = true; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2091 | |
| 2092 | return 0; |
| 2093 | } |
| 2094 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2095 | static void vlv_merge_wm(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2096 | struct vlv_wm_values *wm) |
| 2097 | { |
| 2098 | struct intel_crtc *crtc; |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2099 | int num_active_pipes = 0; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2100 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2101 | wm->level = dev_priv->wm.max_level; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2102 | wm->cxsr = true; |
| 2103 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2104 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | 7eb4941 | 2017-03-02 19:14:53 +0200 | [diff] [blame] | 2105 | const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2106 | |
| 2107 | if (!crtc->active) |
| 2108 | continue; |
| 2109 | |
| 2110 | if (!wm_state->cxsr) |
| 2111 | wm->cxsr = false; |
| 2112 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2113 | num_active_pipes++; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2114 | wm->level = min_t(int, wm->level, wm_state->num_levels - 1); |
| 2115 | } |
| 2116 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2117 | if (num_active_pipes != 1) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2118 | wm->cxsr = false; |
| 2119 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2120 | if (num_active_pipes > 1) |
Ville Syrjälä | 6f9c784 | 2015-06-24 22:00:08 +0300 | [diff] [blame] | 2121 | wm->level = VLV_WM_LEVEL_PM2; |
| 2122 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2123 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | 7eb4941 | 2017-03-02 19:14:53 +0200 | [diff] [blame] | 2124 | const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2125 | enum pipe pipe = crtc->pipe; |
| 2126 | |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2127 | wm->pipe[pipe] = wm_state->wm[wm->level]; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2128 | if (crtc->active && wm->cxsr) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2129 | wm->sr = wm_state->sr[wm->level]; |
| 2130 | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 2131 | wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2; |
| 2132 | wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2; |
| 2133 | wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2; |
| 2134 | wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2135 | } |
| 2136 | } |
| 2137 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2138 | static void vlv_program_watermarks(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2139 | { |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2140 | struct vlv_wm_values *old_wm = &dev_priv->wm.vlv; |
| 2141 | struct vlv_wm_values new_wm = {}; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2142 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2143 | vlv_merge_wm(dev_priv, &new_wm); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2144 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2145 | if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2146 | return; |
| 2147 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2148 | if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS)) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2149 | chv_set_memory_dvfs(dev_priv, false); |
| 2150 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2151 | if (is_disabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5)) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2152 | chv_set_memory_pm5(dev_priv, false); |
| 2153 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2154 | if (is_disabling(old_wm->cxsr, new_wm.cxsr, true)) |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 2155 | _intel_set_memory_cxsr(dev_priv, false); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2156 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2157 | vlv_write_wm_values(dev_priv, &new_wm); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2158 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2159 | if (is_enabling(old_wm->cxsr, new_wm.cxsr, true)) |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 2160 | _intel_set_memory_cxsr(dev_priv, true); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2161 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2162 | if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_PM5)) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2163 | chv_set_memory_pm5(dev_priv, true); |
| 2164 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2165 | if (is_enabling(old_wm->level, new_wm.level, VLV_WM_LEVEL_DDR_DVFS)) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2166 | chv_set_memory_dvfs(dev_priv, true); |
| 2167 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2168 | *old_wm = new_wm; |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 2169 | } |
| 2170 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2171 | static void vlv_initial_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2172 | struct intel_crtc *crtc) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2173 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2174 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 2175 | const struct intel_crtc_state *crtc_state = |
| 2176 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2177 | |
| 2178 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2179 | crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate; |
| 2180 | vlv_program_watermarks(dev_priv); |
| 2181 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 2182 | } |
| 2183 | |
| 2184 | static void vlv_optimize_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2185 | struct intel_crtc *crtc) |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2186 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2187 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 2188 | const struct intel_crtc_state *crtc_state = |
| 2189 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2190 | |
| 2191 | if (!crtc_state->wm.need_postvbl_update) |
| 2192 | return; |
| 2193 | |
| 2194 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 2195 | crtc->wm.active.vlv = crtc_state->wm.vlv.optimal; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2196 | vlv_program_watermarks(dev_priv); |
| 2197 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 2198 | } |
| 2199 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 2200 | static void i965_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2201 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2202 | struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2203 | struct intel_crtc *crtc; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2204 | int srwm = 1; |
| 2205 | int cursor_sr = 16; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2206 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2207 | |
| 2208 | /* Calc sr entries for one plane configs */ |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2209 | crtc = single_enabled_crtc(dev_priv); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2210 | if (crtc) { |
| 2211 | /* self-refresh has much higher latency */ |
| 2212 | static const int sr_latency_ns = 12000; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2213 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2214 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2215 | const struct drm_framebuffer *fb = |
| 2216 | crtc->base.primary->state->fb; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2217 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 2218 | int htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2219 | int hdisplay = crtc->config->pipe_src_w; |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2220 | int cpp = fb->format->cpp[0]; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2221 | int entries; |
| 2222 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2223 | entries = intel_wm_method2(clock, htotal, |
| 2224 | hdisplay, cpp, sr_latency_ns / 100); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2225 | entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE); |
| 2226 | srwm = I965_FIFO_SIZE - entries; |
| 2227 | if (srwm < 0) |
| 2228 | srwm = 1; |
| 2229 | srwm &= 0x1ff; |
| 2230 | DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n", |
| 2231 | entries, srwm); |
| 2232 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2233 | entries = intel_wm_method2(clock, htotal, |
| 2234 | crtc->base.cursor->state->crtc_w, 4, |
| 2235 | sr_latency_ns / 100); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2236 | entries = DIV_ROUND_UP(entries, |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2237 | i965_cursor_wm_info.cacheline_size) + |
| 2238 | i965_cursor_wm_info.guard_size; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2239 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2240 | cursor_sr = i965_cursor_wm_info.fifo_size - entries; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2241 | if (cursor_sr > i965_cursor_wm_info.max_wm) |
| 2242 | cursor_sr = i965_cursor_wm_info.max_wm; |
| 2243 | |
| 2244 | DRM_DEBUG_KMS("self-refresh watermark: display plane %d " |
| 2245 | "cursor %d\n", srwm, cursor_sr); |
| 2246 | |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2247 | cxsr_enabled = true; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2248 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2249 | cxsr_enabled = false; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2250 | /* Turn off self refresh if both pipes are enabled */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 2251 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2252 | } |
| 2253 | |
| 2254 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", |
| 2255 | srwm); |
| 2256 | |
| 2257 | /* 965 has limitations... */ |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 2258 | I915_WRITE(DSPFW1, FW_WM(srwm, SR) | |
| 2259 | FW_WM(8, CURSORB) | |
| 2260 | FW_WM(8, PLANEB) | |
| 2261 | FW_WM(8, PLANEA)); |
| 2262 | I915_WRITE(DSPFW2, FW_WM(8, CURSORA) | |
| 2263 | FW_WM(8, PLANEC_OLD)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2264 | /* update cursor SR watermark */ |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 2265 | I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2266 | |
| 2267 | if (cxsr_enabled) |
| 2268 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2269 | } |
| 2270 | |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 2271 | #undef FW_WM |
| 2272 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 2273 | static void i9xx_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2274 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2275 | struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2276 | const struct intel_watermark_params *wm_info; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2277 | u32 fwater_lo; |
| 2278 | u32 fwater_hi; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2279 | int cwm, srwm = 1; |
| 2280 | int fifo_size; |
| 2281 | int planea_wm, planeb_wm; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2282 | struct intel_crtc *crtc, *enabled = NULL; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2283 | |
Ville Syrjälä | a9097be | 2016-10-31 22:37:20 +0200 | [diff] [blame] | 2284 | if (IS_I945GM(dev_priv)) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2285 | wm_info = &i945_wm_info; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2286 | else if (!IS_GEN(dev_priv, 2)) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2287 | wm_info = &i915_wm_info; |
| 2288 | else |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2289 | wm_info = &i830_a_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2290 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 2291 | fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A); |
| 2292 | crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2293 | if (intel_crtc_active(crtc)) { |
| 2294 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2295 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2296 | const struct drm_framebuffer *fb = |
| 2297 | crtc->base.primary->state->fb; |
| 2298 | int cpp; |
| 2299 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2300 | if (IS_GEN(dev_priv, 2)) |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2301 | cpp = 4; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2302 | else |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2303 | cpp = fb->format->cpp[0]; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2304 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2305 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2306 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 2307 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2308 | enabled = crtc; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2309 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2310 | planea_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2311 | if (planea_wm > (long)wm_info->max_wm) |
| 2312 | planea_wm = wm_info->max_wm; |
| 2313 | } |
| 2314 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2315 | if (IS_GEN(dev_priv, 2)) |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2316 | wm_info = &i830_bc_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2317 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 2318 | fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B); |
| 2319 | crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2320 | if (intel_crtc_active(crtc)) { |
| 2321 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2322 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2323 | const struct drm_framebuffer *fb = |
| 2324 | crtc->base.primary->state->fb; |
| 2325 | int cpp; |
| 2326 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2327 | if (IS_GEN(dev_priv, 2)) |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2328 | cpp = 4; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2329 | else |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2330 | cpp = fb->format->cpp[0]; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2331 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2332 | planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2333 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 2334 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2335 | if (enabled == NULL) |
| 2336 | enabled = crtc; |
| 2337 | else |
| 2338 | enabled = NULL; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2339 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2340 | planeb_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2341 | if (planeb_wm > (long)wm_info->max_wm) |
| 2342 | planeb_wm = wm_info->max_wm; |
| 2343 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2344 | |
| 2345 | DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); |
| 2346 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 2347 | if (IS_I915GM(dev_priv) && enabled) { |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 2348 | struct drm_i915_gem_object *obj; |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 2349 | |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2350 | obj = intel_fb_obj(enabled->base.primary->state->fb); |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 2351 | |
| 2352 | /* self-refresh seems busted with untiled */ |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 2353 | if (!i915_gem_object_is_tiled(obj)) |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 2354 | enabled = NULL; |
| 2355 | } |
| 2356 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2357 | /* |
| 2358 | * Overlay gets an aggressive default since video jitter is bad. |
| 2359 | */ |
| 2360 | cwm = 2; |
| 2361 | |
| 2362 | /* Play safe and disable self-refresh before adjusting watermarks. */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 2363 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2364 | |
| 2365 | /* Calc sr entries for one plane configs */ |
Ville Syrjälä | 03427fc | 2016-10-31 22:37:18 +0200 | [diff] [blame] | 2366 | if (HAS_FW_BLC(dev_priv) && enabled) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2367 | /* self-refresh has much higher latency */ |
| 2368 | static const int sr_latency_ns = 6000; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2369 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2370 | &enabled->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2371 | const struct drm_framebuffer *fb = |
| 2372 | enabled->base.primary->state->fb; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2373 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 2374 | int htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2375 | int hdisplay = enabled->config->pipe_src_w; |
| 2376 | int cpp; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2377 | int entries; |
| 2378 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 2379 | if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv)) |
Ville Syrjälä | 2d1b505 | 2016-07-29 17:57:01 +0300 | [diff] [blame] | 2380 | cpp = 4; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2381 | else |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2382 | cpp = fb->format->cpp[0]; |
Ville Syrjälä | 2d1b505 | 2016-07-29 17:57:01 +0300 | [diff] [blame] | 2383 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2384 | entries = intel_wm_method2(clock, htotal, hdisplay, cpp, |
| 2385 | sr_latency_ns / 100); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2386 | entries = DIV_ROUND_UP(entries, wm_info->cacheline_size); |
| 2387 | DRM_DEBUG_KMS("self-refresh entries: %d\n", entries); |
| 2388 | srwm = wm_info->fifo_size - entries; |
| 2389 | if (srwm < 0) |
| 2390 | srwm = 1; |
| 2391 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 2392 | if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2393 | I915_WRITE(FW_BLC_SELF, |
| 2394 | FW_BLC_SELF_FIFO_MASK | (srwm & 0xff)); |
Ville Syrjälä | acb9135 | 2016-07-29 17:57:02 +0300 | [diff] [blame] | 2395 | else |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2396 | I915_WRITE(FW_BLC_SELF, srwm & 0x3f); |
| 2397 | } |
| 2398 | |
| 2399 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", |
| 2400 | planea_wm, planeb_wm, cwm, srwm); |
| 2401 | |
| 2402 | fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f); |
| 2403 | fwater_hi = (cwm & 0x1f); |
| 2404 | |
| 2405 | /* Set request length to 8 cachelines per fetch */ |
| 2406 | fwater_lo = fwater_lo | (1 << 24) | (1 << 8); |
| 2407 | fwater_hi = fwater_hi | (1 << 8); |
| 2408 | |
| 2409 | I915_WRITE(FW_BLC, fwater_lo); |
| 2410 | I915_WRITE(FW_BLC2, fwater_hi); |
| 2411 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 2412 | if (enabled) |
| 2413 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2414 | } |
| 2415 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 2416 | static void i845_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2417 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2418 | struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2419 | struct intel_crtc *crtc; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2420 | const struct drm_display_mode *adjusted_mode; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2421 | u32 fwater_lo; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2422 | int planea_wm; |
| 2423 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2424 | crtc = single_enabled_crtc(dev_priv); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2425 | if (crtc == NULL) |
| 2426 | return; |
| 2427 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2428 | adjusted_mode = &crtc->config->hw.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2429 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 2430 | &i845_wm_info, |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 2431 | dev_priv->display.get_fifo_size(dev_priv, PLANE_A), |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 2432 | 4, pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2433 | fwater_lo = I915_READ(FW_BLC) & ~0xfff; |
| 2434 | fwater_lo |= (3<<8) | planea_wm; |
| 2435 | |
| 2436 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm); |
| 2437 | |
| 2438 | I915_WRITE(FW_BLC, fwater_lo); |
| 2439 | } |
| 2440 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2441 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2442 | static unsigned int ilk_wm_method1(unsigned int pixel_rate, |
| 2443 | unsigned int cpp, |
| 2444 | unsigned int latency) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2445 | { |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2446 | unsigned int ret; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2447 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2448 | ret = intel_wm_method1(pixel_rate, cpp, latency); |
| 2449 | ret = DIV_ROUND_UP(ret, 64) + 2; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2450 | |
| 2451 | return ret; |
| 2452 | } |
| 2453 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2454 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2455 | static unsigned int ilk_wm_method2(unsigned int pixel_rate, |
| 2456 | unsigned int htotal, |
| 2457 | unsigned int width, |
| 2458 | unsigned int cpp, |
| 2459 | unsigned int latency) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2460 | { |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2461 | unsigned int ret; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2462 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2463 | ret = intel_wm_method2(pixel_rate, htotal, |
| 2464 | width, cpp, latency); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2465 | ret = DIV_ROUND_UP(ret, 64) + 2; |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2466 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2467 | return ret; |
| 2468 | } |
| 2469 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2470 | static u32 ilk_wm_fbc(u32 pri_val, u32 horiz_pixels, u8 cpp) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2471 | { |
Matt Roper | 1512688 | 2015-12-03 11:37:40 -0800 | [diff] [blame] | 2472 | /* |
| 2473 | * Neither of these should be possible since this function shouldn't be |
| 2474 | * called if the CRTC is off or the plane is invisible. But let's be |
| 2475 | * extra paranoid to avoid a potential divide-by-zero if we screw up |
| 2476 | * elsewhere in the driver. |
| 2477 | */ |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2478 | if (WARN_ON(!cpp)) |
Matt Roper | 1512688 | 2015-12-03 11:37:40 -0800 | [diff] [blame] | 2479 | return 0; |
| 2480 | if (WARN_ON(!horiz_pixels)) |
| 2481 | return 0; |
| 2482 | |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2483 | return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2484 | } |
| 2485 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2486 | struct ilk_wm_maximums { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2487 | u16 pri; |
| 2488 | u16 spr; |
| 2489 | u16 cur; |
| 2490 | u16 fbc; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2491 | }; |
| 2492 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2493 | /* |
| 2494 | * For both WM_PIPE and WM_LP. |
| 2495 | * mem_value must be in 0.1us units. |
| 2496 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2497 | static u32 ilk_compute_pri_wm(const struct intel_crtc_state *crtc_state, |
| 2498 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2499 | u32 mem_value, bool is_lp) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2500 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2501 | u32 method1, method2; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2502 | int cpp; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2503 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 2504 | if (mem_value == 0) |
| 2505 | return U32_MAX; |
| 2506 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2507 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2508 | return 0; |
| 2509 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2510 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2511 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2512 | method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2513 | |
| 2514 | if (!is_lp) |
| 2515 | return method1; |
| 2516 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2517 | method2 = ilk_wm_method2(crtc_state->pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2518 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2519 | drm_rect_width(&plane_state->uapi.dst), |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2520 | cpp, mem_value); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2521 | |
| 2522 | return min(method1, method2); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2523 | } |
| 2524 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2525 | /* |
| 2526 | * For both WM_PIPE and WM_LP. |
| 2527 | * mem_value must be in 0.1us units. |
| 2528 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2529 | static u32 ilk_compute_spr_wm(const struct intel_crtc_state *crtc_state, |
| 2530 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2531 | u32 mem_value) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2532 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2533 | u32 method1, method2; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2534 | int cpp; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2535 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 2536 | if (mem_value == 0) |
| 2537 | return U32_MAX; |
| 2538 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2539 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2540 | return 0; |
| 2541 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2542 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2543 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2544 | method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value); |
| 2545 | method2 = ilk_wm_method2(crtc_state->pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2546 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2547 | drm_rect_width(&plane_state->uapi.dst), |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2548 | cpp, mem_value); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2549 | return min(method1, method2); |
| 2550 | } |
| 2551 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2552 | /* |
| 2553 | * For both WM_PIPE and WM_LP. |
| 2554 | * mem_value must be in 0.1us units. |
| 2555 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2556 | static u32 ilk_compute_cur_wm(const struct intel_crtc_state *crtc_state, |
| 2557 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2558 | u32 mem_value) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2559 | { |
Ville Syrjälä | a5509ab | 2017-02-17 17:01:59 +0200 | [diff] [blame] | 2560 | int cpp; |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 2561 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 2562 | if (mem_value == 0) |
| 2563 | return U32_MAX; |
| 2564 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2565 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2566 | return 0; |
| 2567 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2568 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | a5509ab | 2017-02-17 17:01:59 +0200 | [diff] [blame] | 2569 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2570 | return ilk_wm_method2(crtc_state->pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2571 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2572 | drm_rect_width(&plane_state->uapi.dst), |
Maarten Lankhorst | 3a61276 | 2019-10-04 13:34:54 +0200 | [diff] [blame] | 2573 | cpp, mem_value); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2574 | } |
| 2575 | |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2576 | /* Only for WM_LP. */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2577 | static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state, |
| 2578 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2579 | u32 pri_val) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2580 | { |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2581 | int cpp; |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 2582 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2583 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2584 | return 0; |
| 2585 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2586 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2587 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2588 | return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst), |
| 2589 | cpp); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2590 | } |
| 2591 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2592 | static unsigned int |
| 2593 | ilk_display_fifo_size(const struct drm_i915_private *dev_priv) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2594 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2595 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2596 | return 3072; |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2597 | else if (INTEL_GEN(dev_priv) >= 7) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2598 | return 768; |
| 2599 | else |
| 2600 | return 512; |
| 2601 | } |
| 2602 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2603 | static unsigned int |
| 2604 | ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv, |
| 2605 | int level, bool is_sprite) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2606 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2607 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2608 | /* BDW primary/sprite plane watermarks */ |
| 2609 | return level == 0 ? 255 : 2047; |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2610 | else if (INTEL_GEN(dev_priv) >= 7) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2611 | /* IVB/HSW primary/sprite plane watermarks */ |
| 2612 | return level == 0 ? 127 : 1023; |
| 2613 | else if (!is_sprite) |
| 2614 | /* ILK/SNB primary plane watermarks */ |
| 2615 | return level == 0 ? 127 : 511; |
| 2616 | else |
| 2617 | /* ILK/SNB sprite plane watermarks */ |
| 2618 | return level == 0 ? 63 : 255; |
| 2619 | } |
| 2620 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2621 | static unsigned int |
| 2622 | ilk_cursor_wm_reg_max(const struct drm_i915_private *dev_priv, int level) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2623 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2624 | if (INTEL_GEN(dev_priv) >= 7) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2625 | return level == 0 ? 63 : 255; |
| 2626 | else |
| 2627 | return level == 0 ? 31 : 63; |
| 2628 | } |
| 2629 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2630 | static unsigned int ilk_fbc_wm_reg_max(const struct drm_i915_private *dev_priv) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2631 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2632 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2633 | return 31; |
| 2634 | else |
| 2635 | return 15; |
| 2636 | } |
| 2637 | |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2638 | /* Calculate the maximum primary/sprite plane watermark */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2639 | static unsigned int ilk_plane_wm_max(const struct drm_i915_private *dev_priv, |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2640 | int level, |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2641 | const struct intel_wm_config *config, |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2642 | enum intel_ddb_partitioning ddb_partitioning, |
| 2643 | bool is_sprite) |
| 2644 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2645 | unsigned int fifo_size = ilk_display_fifo_size(dev_priv); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2646 | |
| 2647 | /* if sprites aren't enabled, sprites get nothing */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2648 | if (is_sprite && !config->sprites_enabled) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2649 | return 0; |
| 2650 | |
| 2651 | /* HSW allows LP1+ watermarks even with multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2652 | if (level == 0 || config->num_pipes_active > 1) { |
Jani Nikula | 2497787 | 2019-09-11 12:26:08 +0300 | [diff] [blame] | 2653 | fifo_size /= INTEL_NUM_PIPES(dev_priv); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2654 | |
| 2655 | /* |
| 2656 | * For some reason the non self refresh |
| 2657 | * FIFO size is only half of the self |
| 2658 | * refresh FIFO size on ILK/SNB. |
| 2659 | */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2660 | if (INTEL_GEN(dev_priv) <= 6) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2661 | fifo_size /= 2; |
| 2662 | } |
| 2663 | |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2664 | if (config->sprites_enabled) { |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2665 | /* level 0 is always calculated with 1:1 split */ |
| 2666 | if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) { |
| 2667 | if (is_sprite) |
| 2668 | fifo_size *= 5; |
| 2669 | fifo_size /= 6; |
| 2670 | } else { |
| 2671 | fifo_size /= 2; |
| 2672 | } |
| 2673 | } |
| 2674 | |
| 2675 | /* clamp to max that the registers can hold */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2676 | return min(fifo_size, ilk_plane_wm_reg_max(dev_priv, level, is_sprite)); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2677 | } |
| 2678 | |
| 2679 | /* Calculate the maximum cursor plane watermark */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2680 | static unsigned int ilk_cursor_wm_max(const struct drm_i915_private *dev_priv, |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2681 | int level, |
| 2682 | const struct intel_wm_config *config) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2683 | { |
| 2684 | /* HSW LP1+ watermarks w/ multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2685 | if (level > 0 && config->num_pipes_active > 1) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2686 | return 64; |
| 2687 | |
| 2688 | /* otherwise just report max that registers can hold */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2689 | return ilk_cursor_wm_reg_max(dev_priv, level); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2690 | } |
| 2691 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2692 | static void ilk_compute_wm_maximums(const struct drm_i915_private *dev_priv, |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 2693 | int level, |
| 2694 | const struct intel_wm_config *config, |
| 2695 | enum intel_ddb_partitioning ddb_partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2696 | struct ilk_wm_maximums *max) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2697 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2698 | max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false); |
| 2699 | max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true); |
| 2700 | max->cur = ilk_cursor_wm_max(dev_priv, level, config); |
| 2701 | max->fbc = ilk_fbc_wm_reg_max(dev_priv); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2702 | } |
| 2703 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2704 | static void ilk_compute_wm_reg_maximums(const struct drm_i915_private *dev_priv, |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2705 | int level, |
| 2706 | struct ilk_wm_maximums *max) |
| 2707 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2708 | max->pri = ilk_plane_wm_reg_max(dev_priv, level, false); |
| 2709 | max->spr = ilk_plane_wm_reg_max(dev_priv, level, true); |
| 2710 | max->cur = ilk_cursor_wm_reg_max(dev_priv, level); |
| 2711 | max->fbc = ilk_fbc_wm_reg_max(dev_priv); |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2712 | } |
| 2713 | |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 2714 | static bool ilk_validate_wm_level(int level, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2715 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 2716 | struct intel_wm_level *result) |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2717 | { |
| 2718 | bool ret; |
| 2719 | |
| 2720 | /* already determined to be invalid? */ |
| 2721 | if (!result->enable) |
| 2722 | return false; |
| 2723 | |
| 2724 | result->enable = result->pri_val <= max->pri && |
| 2725 | result->spr_val <= max->spr && |
| 2726 | result->cur_val <= max->cur; |
| 2727 | |
| 2728 | ret = result->enable; |
| 2729 | |
| 2730 | /* |
| 2731 | * HACK until we can pre-compute everything, |
| 2732 | * and thus fail gracefully if LP0 watermarks |
| 2733 | * are exceeded... |
| 2734 | */ |
| 2735 | if (level == 0 && !result->enable) { |
| 2736 | if (result->pri_val > max->pri) |
| 2737 | DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n", |
| 2738 | level, result->pri_val, max->pri); |
| 2739 | if (result->spr_val > max->spr) |
| 2740 | DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n", |
| 2741 | level, result->spr_val, max->spr); |
| 2742 | if (result->cur_val > max->cur) |
| 2743 | DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n", |
| 2744 | level, result->cur_val, max->cur); |
| 2745 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2746 | result->pri_val = min_t(u32, result->pri_val, max->pri); |
| 2747 | result->spr_val = min_t(u32, result->spr_val, max->spr); |
| 2748 | result->cur_val = min_t(u32, result->cur_val, max->cur); |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2749 | result->enable = true; |
| 2750 | } |
| 2751 | |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2752 | return ret; |
| 2753 | } |
| 2754 | |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 2755 | static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv, |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 2756 | const struct intel_crtc *intel_crtc, |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2757 | int level, |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2758 | struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 2759 | const struct intel_plane_state *pristate, |
| 2760 | const struct intel_plane_state *sprstate, |
| 2761 | const struct intel_plane_state *curstate, |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 2762 | struct intel_wm_level *result) |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2763 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2764 | u16 pri_latency = dev_priv->wm.pri_latency[level]; |
| 2765 | u16 spr_latency = dev_priv->wm.spr_latency[level]; |
| 2766 | u16 cur_latency = dev_priv->wm.cur_latency[level]; |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2767 | |
| 2768 | /* WM1+ latency values stored in 0.5us units */ |
| 2769 | if (level > 0) { |
| 2770 | pri_latency *= 5; |
| 2771 | spr_latency *= 5; |
| 2772 | cur_latency *= 5; |
| 2773 | } |
| 2774 | |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2775 | if (pristate) { |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2776 | result->pri_val = ilk_compute_pri_wm(crtc_state, pristate, |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2777 | pri_latency, level); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2778 | result->fbc_val = ilk_compute_fbc_wm(crtc_state, pristate, result->pri_val); |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2779 | } |
| 2780 | |
| 2781 | if (sprstate) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2782 | result->spr_val = ilk_compute_spr_wm(crtc_state, sprstate, spr_latency); |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2783 | |
| 2784 | if (curstate) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2785 | result->cur_val = ilk_compute_cur_wm(crtc_state, curstate, cur_latency); |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2786 | |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2787 | result->enable = true; |
| 2788 | } |
| 2789 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2790 | static u32 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2791 | hsw_compute_linetime_wm(const struct intel_crtc_state *crtc_state) |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2792 | { |
Ville Syrjälä | 532f7a7 | 2016-04-29 17:31:17 +0300 | [diff] [blame] | 2793 | const struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2794 | to_intel_atomic_state(crtc_state->uapi.state); |
Matt Roper | ee91a15 | 2015-12-03 11:37:39 -0800 | [diff] [blame] | 2795 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2796 | &crtc_state->hw.adjusted_mode; |
Paulo Zanoni | 85a02de | 2013-05-03 17:23:43 -0300 | [diff] [blame] | 2797 | u32 linetime, ips_linetime; |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2798 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2799 | if (!crtc_state->hw.active) |
Matt Roper | ee91a15 | 2015-12-03 11:37:39 -0800 | [diff] [blame] | 2800 | return 0; |
| 2801 | if (WARN_ON(adjusted_mode->crtc_clock == 0)) |
| 2802 | return 0; |
Ville Syrjälä | bb0f4aa | 2017-01-20 20:21:59 +0200 | [diff] [blame] | 2803 | if (WARN_ON(intel_state->cdclk.logical.cdclk == 0)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2804 | return 0; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2805 | |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2806 | /* The WM are computed with base on how long it takes to fill a single |
| 2807 | * row at the given clock rate, multiplied by 8. |
| 2808 | * */ |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 2809 | linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8, |
| 2810 | adjusted_mode->crtc_clock); |
| 2811 | ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8, |
Ville Syrjälä | bb0f4aa | 2017-01-20 20:21:59 +0200 | [diff] [blame] | 2812 | intel_state->cdclk.logical.cdclk); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2813 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2814 | return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) | |
| 2815 | PIPE_WM_LINETIME_TIME(linetime); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2816 | } |
| 2817 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 2818 | static void intel_read_wm_latency(struct drm_i915_private *dev_priv, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2819 | u16 wm[8]) |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2820 | { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2821 | struct intel_uncore *uncore = &dev_priv->uncore; |
| 2822 | |
Paulo Zanoni | 50682ee | 2017-08-09 13:52:43 -0700 | [diff] [blame] | 2823 | if (INTEL_GEN(dev_priv) >= 9) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2824 | u32 val; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2825 | int ret, i; |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2826 | int level, max_level = ilk_wm_max_level(dev_priv); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2827 | |
| 2828 | /* read the first set of memory latencies[0:3] */ |
| 2829 | val = 0; /* data0 to be programmed to 0 for first set */ |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2830 | ret = sandybridge_pcode_read(dev_priv, |
| 2831 | GEN9_PCODE_READ_MEM_LATENCY, |
Ville Syrjälä | d284d51 | 2019-05-21 19:40:24 +0300 | [diff] [blame] | 2832 | &val, NULL); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2833 | |
| 2834 | if (ret) { |
| 2835 | DRM_ERROR("SKL Mailbox read error = %d\n", ret); |
| 2836 | return; |
| 2837 | } |
| 2838 | |
| 2839 | wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2840 | wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 2841 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2842 | wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 2843 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2844 | wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 2845 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2846 | |
| 2847 | /* read the second set of memory latencies[4:7] */ |
| 2848 | val = 1; /* data0 to be programmed to 1 for second set */ |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2849 | ret = sandybridge_pcode_read(dev_priv, |
| 2850 | GEN9_PCODE_READ_MEM_LATENCY, |
Ville Syrjälä | d284d51 | 2019-05-21 19:40:24 +0300 | [diff] [blame] | 2851 | &val, NULL); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2852 | if (ret) { |
| 2853 | DRM_ERROR("SKL Mailbox read error = %d\n", ret); |
| 2854 | return; |
| 2855 | } |
| 2856 | |
| 2857 | wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2858 | wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 2859 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2860 | wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 2861 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2862 | wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 2863 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2864 | |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2865 | /* |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2866 | * If a level n (n > 1) has a 0us latency, all levels m (m >= n) |
| 2867 | * need to be disabled. We make sure to sanitize the values out |
| 2868 | * of the punit to satisfy this requirement. |
| 2869 | */ |
| 2870 | for (level = 1; level <= max_level; level++) { |
| 2871 | if (wm[level] == 0) { |
| 2872 | for (i = level + 1; i <= max_level; i++) |
| 2873 | wm[i] = 0; |
| 2874 | break; |
| 2875 | } |
| 2876 | } |
| 2877 | |
| 2878 | /* |
Paulo Zanoni | 50682ee | 2017-08-09 13:52:43 -0700 | [diff] [blame] | 2879 | * WaWmMemoryReadLatency:skl+,glk |
Damien Lespiau | 6f97235 | 2015-02-09 19:33:07 +0000 | [diff] [blame] | 2880 | * |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2881 | * punit doesn't take into account the read latency so we need |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2882 | * to add 2us to the various latency levels we retrieve from the |
| 2883 | * punit when level 0 response data us 0us. |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2884 | */ |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2885 | if (wm[0] == 0) { |
| 2886 | wm[0] += 2; |
| 2887 | for (level = 1; level <= max_level; level++) { |
| 2888 | if (wm[level] == 0) |
| 2889 | break; |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2890 | wm[level] += 2; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2891 | } |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2892 | } |
| 2893 | |
Mahesh Kumar | 86b5928 | 2018-08-31 16:39:42 +0530 | [diff] [blame] | 2894 | /* |
| 2895 | * WA Level-0 adjustment for 16GB DIMMs: SKL+ |
| 2896 | * If we could not get dimm info enable this WA to prevent from |
| 2897 | * any underrun. If not able to get Dimm info assume 16GB dimm |
| 2898 | * to avoid any underrun. |
| 2899 | */ |
Ville Syrjälä | 5d6f36b | 2018-10-23 21:21:02 +0300 | [diff] [blame] | 2900 | if (dev_priv->dram_info.is_16gb_dimm) |
Mahesh Kumar | 86b5928 | 2018-08-31 16:39:42 +0530 | [diff] [blame] | 2901 | wm[0] += 1; |
| 2902 | |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2903 | } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2904 | u64 sskpd = intel_uncore_read64(uncore, MCH_SSKPD); |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2905 | |
| 2906 | wm[0] = (sskpd >> 56) & 0xFF; |
| 2907 | if (wm[0] == 0) |
| 2908 | wm[0] = sskpd & 0xF; |
Ville Syrjälä | e5d5019 | 2013-07-05 11:57:22 +0300 | [diff] [blame] | 2909 | wm[1] = (sskpd >> 4) & 0xFF; |
| 2910 | wm[2] = (sskpd >> 12) & 0xFF; |
| 2911 | wm[3] = (sskpd >> 20) & 0x1FF; |
| 2912 | wm[4] = (sskpd >> 32) & 0x1FF; |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 2913 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2914 | u32 sskpd = intel_uncore_read(uncore, MCH_SSKPD); |
Ville Syrjälä | 63cf9a1 | 2013-07-05 11:57:23 +0300 | [diff] [blame] | 2915 | |
| 2916 | wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK; |
| 2917 | wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK; |
| 2918 | wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK; |
| 2919 | wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK; |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 2920 | } else if (INTEL_GEN(dev_priv) >= 5) { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2921 | u32 mltr = intel_uncore_read(uncore, MLTR_ILK); |
Ville Syrjälä | 3a88d0a | 2013-08-01 16:18:49 +0300 | [diff] [blame] | 2922 | |
| 2923 | /* ILK primary LP0 latency is 700 ns */ |
| 2924 | wm[0] = 7; |
| 2925 | wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK; |
| 2926 | wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK; |
Paulo Zanoni | 50682ee | 2017-08-09 13:52:43 -0700 | [diff] [blame] | 2927 | } else { |
| 2928 | MISSING_CASE(INTEL_DEVID(dev_priv)); |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2929 | } |
| 2930 | } |
| 2931 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2932 | static void intel_fixup_spr_wm_latency(struct drm_i915_private *dev_priv, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2933 | u16 wm[5]) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2934 | { |
| 2935 | /* ILK sprite LP0 latency is 1300 ns */ |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2936 | if (IS_GEN(dev_priv, 5)) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2937 | wm[0] = 13; |
| 2938 | } |
| 2939 | |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 2940 | static void intel_fixup_cur_wm_latency(struct drm_i915_private *dev_priv, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2941 | u16 wm[5]) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2942 | { |
| 2943 | /* ILK cursor LP0 latency is 1300 ns */ |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2944 | if (IS_GEN(dev_priv, 5)) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2945 | wm[0] = 13; |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2946 | } |
| 2947 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2948 | int ilk_wm_max_level(const struct drm_i915_private *dev_priv) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2949 | { |
| 2950 | /* how many WM levels are we expecting */ |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2951 | if (INTEL_GEN(dev_priv) >= 9) |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2952 | return 7; |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2953 | else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2954 | return 4; |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2955 | else if (INTEL_GEN(dev_priv) >= 6) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2956 | return 3; |
| 2957 | else |
| 2958 | return 2; |
| 2959 | } |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 2960 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2961 | static void intel_print_wm_latency(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2962 | const char *name, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2963 | const u16 wm[8]) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2964 | { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2965 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2966 | |
| 2967 | for (level = 0; level <= max_level; level++) { |
| 2968 | unsigned int latency = wm[level]; |
| 2969 | |
| 2970 | if (latency == 0) { |
Chris Wilson | 86c1c87 | 2018-07-26 17:15:27 +0100 | [diff] [blame] | 2971 | DRM_DEBUG_KMS("%s WM%d latency not provided\n", |
| 2972 | name, level); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2973 | continue; |
| 2974 | } |
| 2975 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2976 | /* |
| 2977 | * - latencies are in us on gen9. |
| 2978 | * - before then, WM1+ latency values are in 0.5us units |
| 2979 | */ |
Paulo Zanoni | dfc267a | 2017-08-09 13:52:46 -0700 | [diff] [blame] | 2980 | if (INTEL_GEN(dev_priv) >= 9) |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2981 | latency *= 10; |
| 2982 | else if (level > 0) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2983 | latency *= 5; |
| 2984 | |
| 2985 | DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n", |
| 2986 | name, level, wm[level], |
| 2987 | latency / 10, latency % 10); |
| 2988 | } |
| 2989 | } |
| 2990 | |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 2991 | static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2992 | u16 wm[5], u16 min) |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 2993 | { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2994 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 2995 | |
| 2996 | if (wm[0] >= min) |
| 2997 | return false; |
| 2998 | |
| 2999 | wm[0] = max(wm[0], min); |
| 3000 | for (level = 1; level <= max_level; level++) |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 3001 | wm[level] = max_t(u16, wm[level], DIV_ROUND_UP(min, 5)); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3002 | |
| 3003 | return true; |
| 3004 | } |
| 3005 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3006 | static void snb_wm_latency_quirk(struct drm_i915_private *dev_priv) |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3007 | { |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3008 | bool changed; |
| 3009 | |
| 3010 | /* |
| 3011 | * The BIOS provided WM memory latency values are often |
| 3012 | * inadequate for high resolution displays. Adjust them. |
| 3013 | */ |
| 3014 | changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | |
| 3015 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) | |
| 3016 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12); |
| 3017 | |
| 3018 | if (!changed) |
| 3019 | return; |
| 3020 | |
| 3021 | DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n"); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3022 | intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency); |
| 3023 | intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency); |
| 3024 | intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3025 | } |
| 3026 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 3027 | static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv) |
| 3028 | { |
| 3029 | /* |
| 3030 | * On some SNB machines (Thinkpad X220 Tablet at least) |
| 3031 | * LP3 usage can cause vblank interrupts to be lost. |
| 3032 | * The DEIIR bit will go high but it looks like the CPU |
| 3033 | * never gets interrupted. |
| 3034 | * |
| 3035 | * It's not clear whether other interrupt source could |
| 3036 | * be affected or if this is somehow limited to vblank |
| 3037 | * interrupts only. To play it safe we disable LP3 |
| 3038 | * watermarks entirely. |
| 3039 | */ |
| 3040 | if (dev_priv->wm.pri_latency[3] == 0 && |
| 3041 | dev_priv->wm.spr_latency[3] == 0 && |
| 3042 | dev_priv->wm.cur_latency[3] == 0) |
| 3043 | return; |
| 3044 | |
| 3045 | dev_priv->wm.pri_latency[3] = 0; |
| 3046 | dev_priv->wm.spr_latency[3] = 0; |
| 3047 | dev_priv->wm.cur_latency[3] = 0; |
| 3048 | |
| 3049 | DRM_DEBUG_KMS("LP3 watermarks disabled due to potential for lost interrupts\n"); |
| 3050 | intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency); |
| 3051 | intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency); |
| 3052 | intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency); |
| 3053 | } |
| 3054 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3055 | static void ilk_setup_wm_latency(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 3056 | { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3057 | intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 3058 | |
| 3059 | memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency, |
| 3060 | sizeof(dev_priv->wm.pri_latency)); |
| 3061 | memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency, |
| 3062 | sizeof(dev_priv->wm.pri_latency)); |
| 3063 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3064 | intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency); |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 3065 | intel_fixup_cur_wm_latency(dev_priv, dev_priv->wm.cur_latency); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 3066 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3067 | intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency); |
| 3068 | intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency); |
| 3069 | intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3070 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 3071 | if (IS_GEN(dev_priv, 6)) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3072 | snb_wm_latency_quirk(dev_priv); |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 3073 | snb_wm_lp3_irq_quirk(dev_priv); |
| 3074 | } |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 3075 | } |
| 3076 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3077 | static void skl_setup_wm_latency(struct drm_i915_private *dev_priv) |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 3078 | { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3079 | intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3080 | intel_print_wm_latency(dev_priv, "Gen9 Plane", dev_priv->wm.skl_latency); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 3081 | } |
| 3082 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3083 | static bool ilk_validate_pipe_wm(const struct drm_i915_private *dev_priv, |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3084 | struct intel_pipe_wm *pipe_wm) |
| 3085 | { |
| 3086 | /* LP0 watermark maximums depend on this pipe alone */ |
| 3087 | const struct intel_wm_config config = { |
| 3088 | .num_pipes_active = 1, |
| 3089 | .sprites_enabled = pipe_wm->sprites_enabled, |
| 3090 | .sprites_scaled = pipe_wm->sprites_scaled, |
| 3091 | }; |
| 3092 | struct ilk_wm_maximums max; |
| 3093 | |
| 3094 | /* LP0 watermarks always use 1/2 DDB partitioning */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3095 | ilk_compute_wm_maximums(dev_priv, 0, &config, INTEL_DDB_PART_1_2, &max); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3096 | |
| 3097 | /* At least LP0 must be valid */ |
| 3098 | if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) { |
| 3099 | DRM_DEBUG_KMS("LP0 watermark invalid\n"); |
| 3100 | return false; |
| 3101 | } |
| 3102 | |
| 3103 | return true; |
| 3104 | } |
| 3105 | |
Matt Roper | 261a27d | 2015-10-08 15:28:25 -0700 | [diff] [blame] | 3106 | /* Compute new watermarks for the pipe */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3107 | static int ilk_compute_pipe_wm(struct intel_crtc_state *crtc_state) |
Matt Roper | 261a27d | 2015-10-08 15:28:25 -0700 | [diff] [blame] | 3108 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3109 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
| 3110 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 3111 | struct intel_pipe_wm *pipe_wm; |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 3112 | struct intel_plane *plane; |
| 3113 | const struct intel_plane_state *plane_state; |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3114 | const struct intel_plane_state *pristate = NULL; |
| 3115 | const struct intel_plane_state *sprstate = NULL; |
| 3116 | const struct intel_plane_state *curstate = NULL; |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3117 | int level, max_level = ilk_wm_max_level(dev_priv), usable_level; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3118 | struct ilk_wm_maximums max; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3119 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3120 | pipe_wm = &crtc_state->wm.ilk.optimal; |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 3121 | |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 3122 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) { |
| 3123 | if (plane->base.type == DRM_PLANE_TYPE_PRIMARY) |
| 3124 | pristate = plane_state; |
| 3125 | else if (plane->base.type == DRM_PLANE_TYPE_OVERLAY) |
| 3126 | sprstate = plane_state; |
| 3127 | else if (plane->base.type == DRM_PLANE_TYPE_CURSOR) |
| 3128 | curstate = plane_state; |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 3129 | } |
| 3130 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3131 | pipe_wm->pipe_enabled = crtc_state->hw.active; |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 3132 | if (sprstate) { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 3133 | pipe_wm->sprites_enabled = sprstate->uapi.visible; |
| 3134 | pipe_wm->sprites_scaled = sprstate->uapi.visible && |
| 3135 | (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 || |
| 3136 | drm_rect_height(&sprstate->uapi.dst) != drm_rect_height(&sprstate->uapi.src) >> 16); |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 3137 | } |
| 3138 | |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3139 | usable_level = max_level; |
| 3140 | |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 3141 | /* ILK/SNB: LP2+ watermarks only w/o sprites */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3142 | if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled) |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3143 | usable_level = 1; |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 3144 | |
| 3145 | /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */ |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3146 | if (pipe_wm->sprites_scaled) |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3147 | usable_level = 0; |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 3148 | |
Maarten Lankhorst | 71f0a62 | 2016-03-08 10:57:16 +0100 | [diff] [blame] | 3149 | memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm)); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3150 | ilk_compute_wm_level(dev_priv, intel_crtc, 0, crtc_state, |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3151 | pristate, sprstate, curstate, &pipe_wm->wm[0]); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3152 | |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3153 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3154 | pipe_wm->linetime = hsw_compute_linetime_wm(crtc_state); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3155 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3156 | if (!ilk_validate_pipe_wm(dev_priv, pipe_wm)) |
Maarten Lankhorst | 1a426d6 | 2016-03-02 12:36:03 +0100 | [diff] [blame] | 3157 | return -EINVAL; |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3158 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3159 | ilk_compute_wm_reg_maximums(dev_priv, 1, &max); |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3160 | |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3161 | for (level = 1; level <= usable_level; level++) { |
| 3162 | struct intel_wm_level *wm = &pipe_wm->wm[level]; |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3163 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3164 | ilk_compute_wm_level(dev_priv, intel_crtc, level, crtc_state, |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3165 | pristate, sprstate, curstate, wm); |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3166 | |
| 3167 | /* |
| 3168 | * Disable any watermark level that exceeds the |
| 3169 | * register maximums since such watermarks are |
| 3170 | * always invalid. |
| 3171 | */ |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3172 | if (!ilk_validate_wm_level(level, &max, wm)) { |
| 3173 | memset(wm, 0, sizeof(*wm)); |
| 3174 | break; |
| 3175 | } |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3176 | } |
| 3177 | |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 3178 | return 0; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3179 | } |
| 3180 | |
| 3181 | /* |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3182 | * Build a set of 'intermediate' watermark values that satisfy both the old |
| 3183 | * state and the new state. These can be programmed to the hardware |
| 3184 | * immediately. |
| 3185 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3186 | static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3187 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3188 | struct intel_crtc *intel_crtc = to_intel_crtc(newstate->uapi.crtc); |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3189 | struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev); |
Matt Roper | e8f1f02 | 2016-05-12 07:05:55 -0700 | [diff] [blame] | 3190 | struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate; |
Maarten Lankhorst | b6b178a | 2017-10-19 17:13:41 +0200 | [diff] [blame] | 3191 | struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3192 | to_intel_atomic_state(newstate->uapi.state); |
Maarten Lankhorst | b6b178a | 2017-10-19 17:13:41 +0200 | [diff] [blame] | 3193 | const struct intel_crtc_state *oldstate = |
| 3194 | intel_atomic_get_old_crtc_state(intel_state, intel_crtc); |
| 3195 | const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3196 | int level, max_level = ilk_wm_max_level(dev_priv); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3197 | |
| 3198 | /* |
| 3199 | * Start with the final, target watermarks, then combine with the |
| 3200 | * currently active watermarks to get values that are safe both before |
| 3201 | * and after the vblank. |
| 3202 | */ |
Matt Roper | e8f1f02 | 2016-05-12 07:05:55 -0700 | [diff] [blame] | 3203 | *a = newstate->wm.ilk.optimal; |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3204 | if (!newstate->hw.active || drm_atomic_crtc_needs_modeset(&newstate->uapi) || |
Ville Syrjälä | f255c62 | 2018-11-08 17:10:13 +0200 | [diff] [blame] | 3205 | intel_state->skip_intermediate_wm) |
Maarten Lankhorst | b6b178a | 2017-10-19 17:13:41 +0200 | [diff] [blame] | 3206 | return 0; |
| 3207 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3208 | a->pipe_enabled |= b->pipe_enabled; |
| 3209 | a->sprites_enabled |= b->sprites_enabled; |
| 3210 | a->sprites_scaled |= b->sprites_scaled; |
| 3211 | |
| 3212 | for (level = 0; level <= max_level; level++) { |
| 3213 | struct intel_wm_level *a_wm = &a->wm[level]; |
| 3214 | const struct intel_wm_level *b_wm = &b->wm[level]; |
| 3215 | |
| 3216 | a_wm->enable &= b_wm->enable; |
| 3217 | a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val); |
| 3218 | a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val); |
| 3219 | a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val); |
| 3220 | a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val); |
| 3221 | } |
| 3222 | |
| 3223 | /* |
| 3224 | * We need to make sure that these merged watermark values are |
| 3225 | * actually a valid configuration themselves. If they're not, |
| 3226 | * there's no safe way to transition from the old state to |
| 3227 | * the new state, so we need to fail the atomic transaction. |
| 3228 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3229 | if (!ilk_validate_pipe_wm(dev_priv, a)) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3230 | return -EINVAL; |
| 3231 | |
| 3232 | /* |
| 3233 | * If our intermediate WM are identical to the final WM, then we can |
| 3234 | * omit the post-vblank programming; only update if it's different. |
| 3235 | */ |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 3236 | if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0) |
| 3237 | newstate->wm.need_postvbl_update = true; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3238 | |
| 3239 | return 0; |
| 3240 | } |
| 3241 | |
| 3242 | /* |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3243 | * Merge the watermarks from all active pipes for a specific level. |
| 3244 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3245 | static void ilk_merge_wm_level(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3246 | int level, |
| 3247 | struct intel_wm_level *ret_wm) |
| 3248 | { |
| 3249 | const struct intel_crtc *intel_crtc; |
| 3250 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3251 | ret_wm->enable = true; |
| 3252 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3253 | for_each_intel_crtc(&dev_priv->drm, intel_crtc) { |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3254 | const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk; |
Ville Syrjälä | fe392ef | 2014-03-07 18:32:10 +0200 | [diff] [blame] | 3255 | const struct intel_wm_level *wm = &active->wm[level]; |
| 3256 | |
| 3257 | if (!active->pipe_enabled) |
| 3258 | continue; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3259 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3260 | /* |
| 3261 | * The watermark values may have been used in the past, |
| 3262 | * so we must maintain them in the registers for some |
| 3263 | * time even if the level is now disabled. |
| 3264 | */ |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3265 | if (!wm->enable) |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3266 | ret_wm->enable = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3267 | |
| 3268 | ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val); |
| 3269 | ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val); |
| 3270 | ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val); |
| 3271 | ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val); |
| 3272 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3273 | } |
| 3274 | |
| 3275 | /* |
| 3276 | * Merge all low power watermarks for all active pipes. |
| 3277 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3278 | static void ilk_wm_merge(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3279 | const struct intel_wm_config *config, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3280 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3281 | struct intel_pipe_wm *merged) |
| 3282 | { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3283 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3284 | int last_enabled_level = max_level; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3285 | |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3286 | /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */ |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 3287 | if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) && |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3288 | config->num_pipes_active > 1) |
Ville Syrjälä | 1204d5b | 2016-04-01 21:53:18 +0300 | [diff] [blame] | 3289 | last_enabled_level = 0; |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3290 | |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 3291 | /* ILK: FBC WM must be disabled always */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3292 | merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3293 | |
| 3294 | /* merge each WM1+ level */ |
| 3295 | for (level = 1; level <= max_level; level++) { |
| 3296 | struct intel_wm_level *wm = &merged->wm[level]; |
| 3297 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3298 | ilk_merge_wm_level(dev_priv, level, wm); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3299 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3300 | if (level > last_enabled_level) |
| 3301 | wm->enable = false; |
| 3302 | else if (!ilk_validate_wm_level(level, max, wm)) |
| 3303 | /* make sure all following levels get disabled */ |
| 3304 | last_enabled_level = level - 1; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3305 | |
| 3306 | /* |
| 3307 | * The spec says it is preferred to disable |
| 3308 | * FBC WMs instead of disabling a WM level. |
| 3309 | */ |
| 3310 | if (wm->fbc_val > max->fbc) { |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3311 | if (wm->enable) |
| 3312 | merged->fbc_wm_enabled = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3313 | wm->fbc_val = 0; |
| 3314 | } |
| 3315 | } |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 3316 | |
| 3317 | /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */ |
| 3318 | /* |
| 3319 | * FIXME this is racy. FBC might get enabled later. |
| 3320 | * What we should check here is whether FBC can be |
| 3321 | * enabled sometime later. |
| 3322 | */ |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 3323 | if (IS_GEN(dev_priv, 5) && !merged->fbc_wm_enabled && |
Paulo Zanoni | 0e631ad | 2015-10-14 17:45:36 -0300 | [diff] [blame] | 3324 | intel_fbc_is_active(dev_priv)) { |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 3325 | for (level = 2; level <= max_level; level++) { |
| 3326 | struct intel_wm_level *wm = &merged->wm[level]; |
| 3327 | |
| 3328 | wm->enable = false; |
| 3329 | } |
| 3330 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3331 | } |
| 3332 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 3333 | static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm) |
| 3334 | { |
| 3335 | /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */ |
| 3336 | return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable); |
| 3337 | } |
| 3338 | |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 3339 | /* The value we need to program into the WM_LPx latency field */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3340 | static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv, |
| 3341 | int level) |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 3342 | { |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3343 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 3344 | return 2 * level; |
| 3345 | else |
| 3346 | return dev_priv->wm.pri_latency[level]; |
| 3347 | } |
| 3348 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3349 | static void ilk_compute_wm_results(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3350 | const struct intel_pipe_wm *merged, |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3351 | enum intel_ddb_partitioning partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3352 | struct ilk_wm_values *results) |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3353 | { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3354 | struct intel_crtc *intel_crtc; |
| 3355 | int level, wm_lp; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3356 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3357 | results->enable_fbc_wm = merged->fbc_wm_enabled; |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3358 | results->partitioning = partitioning; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3359 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3360 | /* LP1+ register values */ |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3361 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 3362 | const struct intel_wm_level *r; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3363 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 3364 | level = ilk_wm_lp_to_level(wm_lp, merged); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3365 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3366 | r = &merged->wm[level]; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3367 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3368 | /* |
| 3369 | * Maintain the watermark values even if the level is |
| 3370 | * disabled. Doing otherwise could cause underruns. |
| 3371 | */ |
| 3372 | results->wm_lp[wm_lp - 1] = |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3373 | (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) | |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 3374 | (r->pri_val << WM1_LP_SR_SHIFT) | |
| 3375 | r->cur_val; |
| 3376 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3377 | if (r->enable) |
| 3378 | results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN; |
| 3379 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3380 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 3381 | results->wm_lp[wm_lp - 1] |= |
| 3382 | r->fbc_val << WM1_LP_FBC_SHIFT_BDW; |
| 3383 | else |
| 3384 | results->wm_lp[wm_lp - 1] |= |
| 3385 | r->fbc_val << WM1_LP_FBC_SHIFT; |
| 3386 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3387 | /* |
| 3388 | * Always set WM1S_LP_EN when spr_val != 0, even if the |
| 3389 | * level is disabled. Doing otherwise could cause underruns. |
| 3390 | */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3391 | if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) { |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 3392 | WARN_ON(wm_lp != 1); |
| 3393 | results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val; |
| 3394 | } else |
| 3395 | results->wm_lp_spr[wm_lp - 1] = r->spr_val; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3396 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3397 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3398 | /* LP0 register values */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3399 | for_each_intel_crtc(&dev_priv->drm, intel_crtc) { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3400 | enum pipe pipe = intel_crtc->pipe; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3401 | const struct intel_wm_level *r = |
| 3402 | &intel_crtc->wm.active.ilk.wm[0]; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3403 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3404 | if (WARN_ON(!r->enable)) |
| 3405 | continue; |
| 3406 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3407 | results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3408 | |
| 3409 | results->wm_pipe[pipe] = |
| 3410 | (r->pri_val << WM0_PIPE_PLANE_SHIFT) | |
| 3411 | (r->spr_val << WM0_PIPE_SPRITE_SHIFT) | |
| 3412 | r->cur_val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3413 | } |
| 3414 | } |
| 3415 | |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3416 | /* Find the result with the highest level enabled. Check for enable_fbc_wm in |
| 3417 | * case both are at the same level. Prefer r1 in case they're the same. */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3418 | static struct intel_pipe_wm * |
| 3419 | ilk_find_best_result(struct drm_i915_private *dev_priv, |
| 3420 | struct intel_pipe_wm *r1, |
| 3421 | struct intel_pipe_wm *r2) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3422 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3423 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3424 | int level1 = 0, level2 = 0; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3425 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3426 | for (level = 1; level <= max_level; level++) { |
| 3427 | if (r1->wm[level].enable) |
| 3428 | level1 = level; |
| 3429 | if (r2->wm[level].enable) |
| 3430 | level2 = level; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3431 | } |
| 3432 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3433 | if (level1 == level2) { |
| 3434 | if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3435 | return r2; |
| 3436 | else |
| 3437 | return r1; |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3438 | } else if (level1 > level2) { |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3439 | return r1; |
| 3440 | } else { |
| 3441 | return r2; |
| 3442 | } |
| 3443 | } |
| 3444 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3445 | /* dirty bits used to track which watermarks need changes */ |
| 3446 | #define WM_DIRTY_PIPE(pipe) (1 << (pipe)) |
| 3447 | #define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe))) |
| 3448 | #define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp))) |
| 3449 | #define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3)) |
| 3450 | #define WM_DIRTY_FBC (1 << 24) |
| 3451 | #define WM_DIRTY_DDB (1 << 25) |
| 3452 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3453 | static unsigned int ilk_compute_wm_dirty(struct drm_i915_private *dev_priv, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3454 | const struct ilk_wm_values *old, |
| 3455 | const struct ilk_wm_values *new) |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3456 | { |
| 3457 | unsigned int dirty = 0; |
| 3458 | enum pipe pipe; |
| 3459 | int wm_lp; |
| 3460 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3461 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3462 | if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) { |
| 3463 | dirty |= WM_DIRTY_LINETIME(pipe); |
| 3464 | /* Must disable LP1+ watermarks too */ |
| 3465 | dirty |= WM_DIRTY_LP_ALL; |
| 3466 | } |
| 3467 | |
| 3468 | if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) { |
| 3469 | dirty |= WM_DIRTY_PIPE(pipe); |
| 3470 | /* Must disable LP1+ watermarks too */ |
| 3471 | dirty |= WM_DIRTY_LP_ALL; |
| 3472 | } |
| 3473 | } |
| 3474 | |
| 3475 | if (old->enable_fbc_wm != new->enable_fbc_wm) { |
| 3476 | dirty |= WM_DIRTY_FBC; |
| 3477 | /* Must disable LP1+ watermarks too */ |
| 3478 | dirty |= WM_DIRTY_LP_ALL; |
| 3479 | } |
| 3480 | |
| 3481 | if (old->partitioning != new->partitioning) { |
| 3482 | dirty |= WM_DIRTY_DDB; |
| 3483 | /* Must disable LP1+ watermarks too */ |
| 3484 | dirty |= WM_DIRTY_LP_ALL; |
| 3485 | } |
| 3486 | |
| 3487 | /* LP1+ watermarks already deemed dirty, no need to continue */ |
| 3488 | if (dirty & WM_DIRTY_LP_ALL) |
| 3489 | return dirty; |
| 3490 | |
| 3491 | /* Find the lowest numbered LP1+ watermark in need of an update... */ |
| 3492 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
| 3493 | if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] || |
| 3494 | old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1]) |
| 3495 | break; |
| 3496 | } |
| 3497 | |
| 3498 | /* ...and mark it and all higher numbered LP1+ watermarks as dirty */ |
| 3499 | for (; wm_lp <= 3; wm_lp++) |
| 3500 | dirty |= WM_DIRTY_LP(wm_lp); |
| 3501 | |
| 3502 | return dirty; |
| 3503 | } |
| 3504 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3505 | static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv, |
| 3506 | unsigned int dirty) |
| 3507 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3508 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3509 | bool changed = false; |
| 3510 | |
| 3511 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) { |
| 3512 | previous->wm_lp[2] &= ~WM1_LP_SR_EN; |
| 3513 | I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]); |
| 3514 | changed = true; |
| 3515 | } |
| 3516 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) { |
| 3517 | previous->wm_lp[1] &= ~WM1_LP_SR_EN; |
| 3518 | I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]); |
| 3519 | changed = true; |
| 3520 | } |
| 3521 | if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) { |
| 3522 | previous->wm_lp[0] &= ~WM1_LP_SR_EN; |
| 3523 | I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]); |
| 3524 | changed = true; |
| 3525 | } |
| 3526 | |
| 3527 | /* |
| 3528 | * Don't touch WM1S_LP_EN here. |
| 3529 | * Doing so could cause underruns. |
| 3530 | */ |
| 3531 | |
| 3532 | return changed; |
| 3533 | } |
| 3534 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3535 | /* |
| 3536 | * The spec says we shouldn't write when we don't need, because every write |
| 3537 | * causes WMs to be re-evaluated, expending some power. |
| 3538 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3539 | static void ilk_write_wm_values(struct drm_i915_private *dev_priv, |
| 3540 | struct ilk_wm_values *results) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3541 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3542 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3543 | unsigned int dirty; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 3544 | u32 val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3545 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3546 | dirty = ilk_compute_wm_dirty(dev_priv, previous, results); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3547 | if (!dirty) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3548 | return; |
| 3549 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3550 | _ilk_disable_lp_wm(dev_priv, dirty); |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 3551 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3552 | if (dirty & WM_DIRTY_PIPE(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3553 | I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3554 | if (dirty & WM_DIRTY_PIPE(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3555 | I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3556 | if (dirty & WM_DIRTY_PIPE(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3557 | I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]); |
| 3558 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3559 | if (dirty & WM_DIRTY_LINETIME(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3560 | I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3561 | if (dirty & WM_DIRTY_LINETIME(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3562 | I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3563 | if (dirty & WM_DIRTY_LINETIME(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3564 | I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]); |
| 3565 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3566 | if (dirty & WM_DIRTY_DDB) { |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3567 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 3568 | val = I915_READ(WM_MISC); |
| 3569 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 3570 | val &= ~WM_MISC_DATA_PARTITION_5_6; |
| 3571 | else |
| 3572 | val |= WM_MISC_DATA_PARTITION_5_6; |
| 3573 | I915_WRITE(WM_MISC, val); |
| 3574 | } else { |
| 3575 | val = I915_READ(DISP_ARB_CTL2); |
| 3576 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 3577 | val &= ~DISP_DATA_PARTITION_5_6; |
| 3578 | else |
| 3579 | val |= DISP_DATA_PARTITION_5_6; |
| 3580 | I915_WRITE(DISP_ARB_CTL2, val); |
| 3581 | } |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3582 | } |
| 3583 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3584 | if (dirty & WM_DIRTY_FBC) { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3585 | val = I915_READ(DISP_ARB_CTL); |
| 3586 | if (results->enable_fbc_wm) |
| 3587 | val &= ~DISP_FBC_WM_DIS; |
| 3588 | else |
| 3589 | val |= DISP_FBC_WM_DIS; |
| 3590 | I915_WRITE(DISP_ARB_CTL, val); |
| 3591 | } |
| 3592 | |
Imre Deak | 954911e | 2013-12-17 14:46:34 +0200 | [diff] [blame] | 3593 | if (dirty & WM_DIRTY_LP(1) && |
| 3594 | previous->wm_lp_spr[0] != results->wm_lp_spr[0]) |
| 3595 | I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]); |
| 3596 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3597 | if (INTEL_GEN(dev_priv) >= 7) { |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 3598 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1]) |
| 3599 | I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]); |
| 3600 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2]) |
| 3601 | I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]); |
| 3602 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3603 | |
Ville Syrjälä | facd619b | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 3604 | if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] != results->wm_lp[0]) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3605 | I915_WRITE(WM1_LP_ILK, results->wm_lp[0]); |
Ville Syrjälä | facd619b | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 3606 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] != results->wm_lp[1]) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3607 | I915_WRITE(WM2_LP_ILK, results->wm_lp[1]); |
Ville Syrjälä | facd619b | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 3608 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] != results->wm_lp[2]) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3609 | I915_WRITE(WM3_LP_ILK, results->wm_lp[2]); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3610 | |
| 3611 | dev_priv->wm.hw = *results; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3612 | } |
| 3613 | |
Ville Syrjälä | 60aca57 | 2019-11-27 21:05:51 +0200 | [diff] [blame] | 3614 | bool ilk_disable_lp_wm(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3615 | { |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3616 | return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL); |
| 3617 | } |
| 3618 | |
Mahesh Kumar | 74bd800 | 2018-04-26 19:55:15 +0530 | [diff] [blame] | 3619 | static u8 intel_enabled_dbuf_slices_num(struct drm_i915_private *dev_priv) |
| 3620 | { |
| 3621 | u8 enabled_slices; |
| 3622 | |
| 3623 | /* Slice 1 will always be enabled */ |
| 3624 | enabled_slices = 1; |
| 3625 | |
| 3626 | /* Gen prior to GEN11 have only one DBuf slice */ |
| 3627 | if (INTEL_GEN(dev_priv) < 11) |
| 3628 | return enabled_slices; |
| 3629 | |
Imre Deak | 209d735 | 2019-03-07 12:32:35 +0200 | [diff] [blame] | 3630 | /* |
| 3631 | * FIXME: for now we'll only ever use 1 slice; pretend that we have |
| 3632 | * only that 1 slice enabled until we have a proper way for on-demand |
| 3633 | * toggling of the second slice. |
| 3634 | */ |
| 3635 | if (0 && I915_READ(DBUF_CTL_S2) & DBUF_POWER_STATE) |
Mahesh Kumar | 74bd800 | 2018-04-26 19:55:15 +0530 | [diff] [blame] | 3636 | enabled_slices++; |
| 3637 | |
| 3638 | return enabled_slices; |
| 3639 | } |
| 3640 | |
Matt Roper | 024c904 | 2015-09-24 15:53:11 -0700 | [diff] [blame] | 3641 | /* |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3642 | * FIXME: We still don't have the proper code detect if we need to apply the WA, |
| 3643 | * so assume we'll always need it in order to avoid underruns. |
| 3644 | */ |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 3645 | static bool skl_needs_memory_bw_wa(struct drm_i915_private *dev_priv) |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3646 | { |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 3647 | return IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv); |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3648 | } |
| 3649 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3650 | static bool |
| 3651 | intel_has_sagv(struct drm_i915_private *dev_priv) |
| 3652 | { |
Lucas De Marchi | 8ffa439 | 2019-09-04 14:34:18 -0700 | [diff] [blame] | 3653 | /* HACK! */ |
| 3654 | if (IS_GEN(dev_priv, 12)) |
| 3655 | return false; |
| 3656 | |
Rodrigo Vivi | 1ca2b06 | 2018-10-26 13:03:17 -0700 | [diff] [blame] | 3657 | return (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) && |
| 3658 | dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED; |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3659 | } |
| 3660 | |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 3661 | static void |
| 3662 | skl_setup_sagv_block_time(struct drm_i915_private *dev_priv) |
| 3663 | { |
James Ausmus | da80f04 | 2019-10-09 10:23:15 -0700 | [diff] [blame] | 3664 | if (INTEL_GEN(dev_priv) >= 12) { |
| 3665 | u32 val = 0; |
| 3666 | int ret; |
| 3667 | |
| 3668 | ret = sandybridge_pcode_read(dev_priv, |
| 3669 | GEN12_PCODE_READ_SAGV_BLOCK_TIME_US, |
| 3670 | &val, NULL); |
| 3671 | if (!ret) { |
| 3672 | dev_priv->sagv_block_time_us = val; |
| 3673 | return; |
| 3674 | } |
| 3675 | |
| 3676 | DRM_DEBUG_DRIVER("Couldn't read SAGV block time!\n"); |
| 3677 | } else if (IS_GEN(dev_priv, 11)) { |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 3678 | dev_priv->sagv_block_time_us = 10; |
| 3679 | return; |
| 3680 | } else if (IS_GEN(dev_priv, 10)) { |
| 3681 | dev_priv->sagv_block_time_us = 20; |
| 3682 | return; |
| 3683 | } else if (IS_GEN(dev_priv, 9)) { |
| 3684 | dev_priv->sagv_block_time_us = 30; |
| 3685 | return; |
| 3686 | } else { |
| 3687 | MISSING_CASE(INTEL_GEN(dev_priv)); |
| 3688 | } |
| 3689 | |
| 3690 | /* Default to an unusable block time */ |
| 3691 | dev_priv->sagv_block_time_us = -1; |
| 3692 | } |
| 3693 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3694 | /* |
| 3695 | * SAGV dynamically adjusts the system agent voltage and clock frequencies |
| 3696 | * depending on power and performance requirements. The display engine access |
| 3697 | * to system memory is blocked during the adjustment time. Because of the |
| 3698 | * blocking time, having this enabled can cause full system hangs and/or pipe |
| 3699 | * underruns if we don't meet all of the following requirements: |
| 3700 | * |
| 3701 | * - <= 1 pipe enabled |
| 3702 | * - All planes can enable watermarks for latencies >= SAGV engine block time |
| 3703 | * - We're not using an interlaced display configuration |
| 3704 | */ |
| 3705 | int |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3706 | intel_enable_sagv(struct drm_i915_private *dev_priv) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3707 | { |
| 3708 | int ret; |
| 3709 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3710 | if (!intel_has_sagv(dev_priv)) |
| 3711 | return 0; |
| 3712 | |
| 3713 | if (dev_priv->sagv_status == I915_SAGV_ENABLED) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3714 | return 0; |
| 3715 | |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3716 | DRM_DEBUG_KMS("Enabling SAGV\n"); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3717 | ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL, |
| 3718 | GEN9_SAGV_ENABLE); |
| 3719 | |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3720 | /* We don't need to wait for SAGV when enabling */ |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3721 | |
| 3722 | /* |
| 3723 | * Some skl systems, pre-release machines in particular, |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3724 | * don't actually have SAGV. |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3725 | */ |
Paulo Zanoni | 6e3100e | 2016-09-22 18:00:29 -0300 | [diff] [blame] | 3726 | if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) { |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3727 | DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n"); |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3728 | dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3729 | return 0; |
| 3730 | } else if (ret < 0) { |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3731 | DRM_ERROR("Failed to enable SAGV\n"); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3732 | return ret; |
| 3733 | } |
| 3734 | |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3735 | dev_priv->sagv_status = I915_SAGV_ENABLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3736 | return 0; |
| 3737 | } |
| 3738 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3739 | int |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3740 | intel_disable_sagv(struct drm_i915_private *dev_priv) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3741 | { |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3742 | int ret; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3743 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3744 | if (!intel_has_sagv(dev_priv)) |
| 3745 | return 0; |
| 3746 | |
| 3747 | if (dev_priv->sagv_status == I915_SAGV_DISABLED) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3748 | return 0; |
| 3749 | |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3750 | DRM_DEBUG_KMS("Disabling SAGV\n"); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3751 | /* bspec says to keep retrying for at least 1 ms */ |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3752 | ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL, |
| 3753 | GEN9_SAGV_DISABLE, |
| 3754 | GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED, |
| 3755 | 1); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3756 | /* |
| 3757 | * Some skl systems, pre-release machines in particular, |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3758 | * don't actually have SAGV. |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3759 | */ |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3760 | if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) { |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3761 | DRM_DEBUG_DRIVER("No SAGV found on system, ignoring\n"); |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3762 | dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3763 | return 0; |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3764 | } else if (ret < 0) { |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3765 | DRM_ERROR("Failed to disable SAGV (%d)\n", ret); |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3766 | return ret; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3767 | } |
| 3768 | |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3769 | dev_priv->sagv_status = I915_SAGV_DISABLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3770 | return 0; |
| 3771 | } |
| 3772 | |
Maarten Lankhorst | 855e0d6 | 2019-06-28 10:55:13 +0200 | [diff] [blame] | 3773 | bool intel_can_enable_sagv(struct intel_atomic_state *state) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3774 | { |
Maarten Lankhorst | 855e0d6 | 2019-06-28 10:55:13 +0200 | [diff] [blame] | 3775 | struct drm_device *dev = state->base.dev; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3776 | struct drm_i915_private *dev_priv = to_i915(dev); |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3777 | struct intel_crtc *crtc; |
| 3778 | struct intel_plane *plane; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3779 | struct intel_crtc_state *crtc_state; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3780 | enum pipe pipe; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 3781 | int level, latency; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3782 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3783 | if (!intel_has_sagv(dev_priv)) |
| 3784 | return false; |
| 3785 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3786 | /* |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3787 | * If there are no active CRTCs, no additional checks need be performed |
| 3788 | */ |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3789 | if (hweight8(state->active_pipes) == 0) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3790 | return true; |
Lucas De Marchi | da17223 | 2019-04-04 16:04:26 -0700 | [diff] [blame] | 3791 | |
| 3792 | /* |
| 3793 | * SKL+ workaround: bspec recommends we disable SAGV when we have |
| 3794 | * more then one pipe enabled |
| 3795 | */ |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3796 | if (hweight8(state->active_pipes) > 1) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3797 | return false; |
| 3798 | |
| 3799 | /* Since we're now guaranteed to only have one active CRTC... */ |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 3800 | pipe = ffs(state->active_pipes) - 1; |
Ville Syrjälä | 9818783 | 2016-10-31 22:37:10 +0200 | [diff] [blame] | 3801 | crtc = intel_get_crtc_for_pipe(dev_priv, pipe); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3802 | crtc_state = to_intel_crtc_state(crtc->base.state); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3803 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3804 | if (crtc_state->hw.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3805 | return false; |
| 3806 | |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3807 | for_each_intel_plane_on_crtc(dev, crtc, plane) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 3808 | struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3809 | &crtc_state->wm.skl.optimal.planes[plane->id]; |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3810 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3811 | /* Skip this plane if it's not enabled */ |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 3812 | if (!wm->wm[0].plane_en) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3813 | continue; |
| 3814 | |
| 3815 | /* Find the highest enabled wm level for this plane */ |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3816 | for (level = ilk_wm_max_level(dev_priv); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 3817 | !wm->wm[level].plane_en; --level) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3818 | { } |
| 3819 | |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3820 | latency = dev_priv->wm.skl_latency[level]; |
| 3821 | |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 3822 | if (skl_needs_memory_bw_wa(dev_priv) && |
Ville Syrjälä | bae781b | 2016-11-16 13:33:16 +0200 | [diff] [blame] | 3823 | plane->base.state->fb->modifier == |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3824 | I915_FORMAT_MOD_X_TILED) |
| 3825 | latency += 15; |
| 3826 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3827 | /* |
Paulo Zanoni | fdd11c2 | 2017-08-09 13:52:45 -0700 | [diff] [blame] | 3828 | * If any of the planes on this pipe don't enable wm levels that |
| 3829 | * incur memory latencies higher than sagv_block_time_us we |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3830 | * can't enable SAGV. |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3831 | */ |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 3832 | if (latency < dev_priv->sagv_block_time_us) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3833 | return false; |
| 3834 | } |
| 3835 | |
| 3836 | return true; |
| 3837 | } |
| 3838 | |
Mahesh Kumar | aaa0237 | 2018-07-31 19:54:44 +0530 | [diff] [blame] | 3839 | static u16 intel_get_ddb_size(struct drm_i915_private *dev_priv, |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3840 | const struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 3841 | const u64 total_data_rate, |
Mahesh Kumar | aaa0237 | 2018-07-31 19:54:44 +0530 | [diff] [blame] | 3842 | const int num_active, |
| 3843 | struct skl_ddb_allocation *ddb) |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3844 | { |
| 3845 | const struct drm_display_mode *adjusted_mode; |
| 3846 | u64 total_data_bw; |
| 3847 | u16 ddb_size = INTEL_INFO(dev_priv)->ddb_size; |
| 3848 | |
| 3849 | WARN_ON(ddb_size == 0); |
| 3850 | |
| 3851 | if (INTEL_GEN(dev_priv) < 11) |
| 3852 | return ddb_size - 4; /* 4 blocks for bypass path allocation */ |
| 3853 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3854 | adjusted_mode = &crtc_state->hw.adjusted_mode; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 3855 | total_data_bw = total_data_rate * drm_mode_vrefresh(adjusted_mode); |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3856 | |
| 3857 | /* |
| 3858 | * 12GB/s is maximum BW supported by single DBuf slice. |
Ville Syrjälä | ad3e7b8 | 2019-01-30 17:51:10 +0200 | [diff] [blame] | 3859 | * |
| 3860 | * FIXME dbuf slice code is broken: |
| 3861 | * - must wait for planes to stop using the slice before powering it off |
| 3862 | * - plane straddling both slices is illegal in multi-pipe scenarios |
| 3863 | * - should validate we stay within the hw bandwidth limits |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3864 | */ |
Ville Syrjälä | ad3e7b8 | 2019-01-30 17:51:10 +0200 | [diff] [blame] | 3865 | if (0 && (num_active > 1 || total_data_bw >= GBps(12))) { |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3866 | ddb->enabled_slices = 2; |
| 3867 | } else { |
| 3868 | ddb->enabled_slices = 1; |
| 3869 | ddb_size /= 2; |
| 3870 | } |
| 3871 | |
| 3872 | return ddb_size; |
| 3873 | } |
| 3874 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3875 | static void |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 3876 | skl_ddb_get_pipe_allocation_limits(struct drm_i915_private *dev_priv, |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3877 | const struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 3878 | const u64 total_data_rate, |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3879 | struct skl_ddb_allocation *ddb, |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3880 | struct skl_ddb_entry *alloc, /* out */ |
| 3881 | int *num_active /* out */) |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3882 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3883 | struct drm_atomic_state *state = crtc_state->uapi.state; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3884 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3885 | struct drm_crtc *for_crtc = crtc_state->uapi.crtc; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3886 | const struct intel_crtc *crtc; |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3887 | u32 pipe_width = 0, total_width = 0, width_before_pipe = 0; |
| 3888 | enum pipe for_pipe = to_intel_crtc(for_crtc)->pipe; |
| 3889 | u16 ddb_size; |
| 3890 | u32 i; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3891 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3892 | if (WARN_ON(!state) || !crtc_state->hw.active) { |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3893 | alloc->start = 0; |
| 3894 | alloc->end = 0; |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3895 | *num_active = hweight8(dev_priv->active_pipes); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3896 | return; |
| 3897 | } |
| 3898 | |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3899 | if (intel_state->active_pipe_changes) |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3900 | *num_active = hweight8(intel_state->active_pipes); |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3901 | else |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3902 | *num_active = hweight8(dev_priv->active_pipes); |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3903 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3904 | ddb_size = intel_get_ddb_size(dev_priv, crtc_state, total_data_rate, |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3905 | *num_active, ddb); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3906 | |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3907 | /* |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3908 | * If the state doesn't change the active CRTC's or there is no |
| 3909 | * modeset request, then there's no need to recalculate; |
| 3910 | * the existing pipe allocation limits should remain unchanged. |
| 3911 | * Note that we're safe from racing commits since any racing commit |
| 3912 | * that changes the active CRTC list or do modeset would need to |
| 3913 | * grab _all_ crtc locks, including the one we currently hold. |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3914 | */ |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3915 | if (!intel_state->active_pipe_changes && !intel_state->modeset) { |
Maarten Lankhorst | 512b552 | 2016-11-08 13:55:34 +0100 | [diff] [blame] | 3916 | /* |
| 3917 | * alloc may be cleared by clear_intel_crtc_state, |
| 3918 | * copy from old state to be sure |
| 3919 | */ |
| 3920 | *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb; |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3921 | return; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3922 | } |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3923 | |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3924 | /* |
| 3925 | * Watermark/ddb requirement highly depends upon width of the |
| 3926 | * framebuffer, So instead of allocating DDB equally among pipes |
| 3927 | * distribute DDB based on resolution/width of the display. |
| 3928 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3929 | for_each_new_intel_crtc_in_state(intel_state, crtc, crtc_state, i) { |
| 3930 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3931 | &crtc_state->hw.adjusted_mode; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3932 | enum pipe pipe = crtc->pipe; |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3933 | int hdisplay, vdisplay; |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3934 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3935 | if (!crtc_state->hw.enable) |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3936 | continue; |
| 3937 | |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3938 | drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay); |
| 3939 | total_width += hdisplay; |
| 3940 | |
| 3941 | if (pipe < for_pipe) |
| 3942 | width_before_pipe += hdisplay; |
| 3943 | else if (pipe == for_pipe) |
| 3944 | pipe_width = hdisplay; |
| 3945 | } |
| 3946 | |
| 3947 | alloc->start = ddb_size * width_before_pipe / total_width; |
| 3948 | alloc->end = ddb_size * (width_before_pipe + pipe_width) / total_width; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3949 | } |
| 3950 | |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3951 | static int skl_compute_wm_params(const struct intel_crtc_state *crtc_state, |
| 3952 | int width, const struct drm_format_info *format, |
| 3953 | u64 modifier, unsigned int rotation, |
| 3954 | u32 plane_pixel_rate, struct skl_wm_params *wp, |
| 3955 | int color_plane); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3956 | static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state, |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3957 | int level, |
| 3958 | const struct skl_wm_params *wp, |
| 3959 | const struct skl_wm_level *result_prev, |
| 3960 | struct skl_wm_level *result /* out */); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3961 | |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3962 | static unsigned int |
| 3963 | skl_cursor_allocation(const struct intel_crtc_state *crtc_state, |
| 3964 | int num_active) |
| 3965 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3966 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3967 | int level, max_level = ilk_wm_max_level(dev_priv); |
| 3968 | struct skl_wm_level wm = {}; |
| 3969 | int ret, min_ddb_alloc = 0; |
| 3970 | struct skl_wm_params wp; |
| 3971 | |
| 3972 | ret = skl_compute_wm_params(crtc_state, 256, |
| 3973 | drm_format_info(DRM_FORMAT_ARGB8888), |
| 3974 | DRM_FORMAT_MOD_LINEAR, |
| 3975 | DRM_MODE_ROTATE_0, |
| 3976 | crtc_state->pixel_rate, &wp, 0); |
| 3977 | WARN_ON(ret); |
| 3978 | |
| 3979 | for (level = 0; level <= max_level; level++) { |
Ville Syrjälä | 6086e47 | 2019-03-21 19:51:28 +0200 | [diff] [blame] | 3980 | skl_compute_plane_wm(crtc_state, level, &wp, &wm, &wm); |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3981 | if (wm.min_ddb_alloc == U16_MAX) |
| 3982 | break; |
| 3983 | |
| 3984 | min_ddb_alloc = wm.min_ddb_alloc; |
| 3985 | } |
| 3986 | |
| 3987 | return max(num_active == 1 ? 32 : 8, min_ddb_alloc); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3988 | } |
| 3989 | |
Mahesh Kumar | 37cde11 | 2018-04-26 19:55:17 +0530 | [diff] [blame] | 3990 | static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv, |
| 3991 | struct skl_ddb_entry *entry, u32 reg) |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3992 | { |
Mahesh Kumar | 37cde11 | 2018-04-26 19:55:17 +0530 | [diff] [blame] | 3993 | |
Ville Syrjälä | d7e449a | 2019-02-05 22:50:56 +0200 | [diff] [blame] | 3994 | entry->start = reg & DDB_ENTRY_MASK; |
| 3995 | entry->end = (reg >> DDB_ENTRY_END_SHIFT) & DDB_ENTRY_MASK; |
Mahesh Kumar | 37cde11 | 2018-04-26 19:55:17 +0530 | [diff] [blame] | 3996 | |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 3997 | if (entry->end) |
| 3998 | entry->end += 1; |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3999 | } |
| 4000 | |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4001 | static void |
| 4002 | skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv, |
| 4003 | const enum pipe pipe, |
| 4004 | const enum plane_id plane_id, |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4005 | struct skl_ddb_entry *ddb_y, |
| 4006 | struct skl_ddb_entry *ddb_uv) |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4007 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4008 | u32 val, val2; |
| 4009 | u32 fourcc = 0; |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4010 | |
| 4011 | /* Cursor doesn't support NV12/planar, so no extra calculation needed */ |
| 4012 | if (plane_id == PLANE_CURSOR) { |
| 4013 | val = I915_READ(CUR_BUF_CFG(pipe)); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4014 | skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4015 | return; |
| 4016 | } |
| 4017 | |
| 4018 | val = I915_READ(PLANE_CTL(pipe, plane_id)); |
| 4019 | |
| 4020 | /* No DDB allocated for disabled planes */ |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4021 | if (val & PLANE_CTL_ENABLE) |
| 4022 | fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK, |
| 4023 | val & PLANE_CTL_ORDER_RGBX, |
| 4024 | val & PLANE_CTL_ALPHA_MASK); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4025 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4026 | if (INTEL_GEN(dev_priv) >= 11) { |
| 4027 | val = I915_READ(PLANE_BUF_CFG(pipe, plane_id)); |
| 4028 | skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val); |
| 4029 | } else { |
| 4030 | val = I915_READ(PLANE_BUF_CFG(pipe, plane_id)); |
Paulo Zanoni | 12a6c93 | 2018-07-31 17:46:14 -0700 | [diff] [blame] | 4031 | val2 = I915_READ(PLANE_NV12_BUF_CFG(pipe, plane_id)); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4032 | |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4033 | if (fourcc && |
| 4034 | drm_format_info_is_yuv_semiplanar(drm_format_info(fourcc))) |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4035 | swap(val, val2); |
| 4036 | |
| 4037 | skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val); |
| 4038 | skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4039 | } |
| 4040 | } |
| 4041 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4042 | void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc, |
| 4043 | struct skl_ddb_entry *ddb_y, |
| 4044 | struct skl_ddb_entry *ddb_uv) |
| 4045 | { |
| 4046 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 4047 | enum intel_display_power_domain power_domain; |
| 4048 | enum pipe pipe = crtc->pipe; |
Chris Wilson | 0e6e0be | 2019-01-14 14:21:24 +0000 | [diff] [blame] | 4049 | intel_wakeref_t wakeref; |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4050 | enum plane_id plane_id; |
| 4051 | |
| 4052 | power_domain = POWER_DOMAIN_PIPE(pipe); |
Chris Wilson | 0e6e0be | 2019-01-14 14:21:24 +0000 | [diff] [blame] | 4053 | wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain); |
| 4054 | if (!wakeref) |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4055 | return; |
| 4056 | |
| 4057 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 4058 | skl_ddb_get_hw_plane_state(dev_priv, pipe, |
| 4059 | plane_id, |
| 4060 | &ddb_y[plane_id], |
| 4061 | &ddb_uv[plane_id]); |
| 4062 | |
Chris Wilson | 0e6e0be | 2019-01-14 14:21:24 +0000 | [diff] [blame] | 4063 | intel_display_power_put(dev_priv, power_domain, wakeref); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4064 | } |
| 4065 | |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 4066 | void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv, |
| 4067 | struct skl_ddb_allocation *ddb /* out */) |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 4068 | { |
Mahesh Kumar | 74bd800 | 2018-04-26 19:55:15 +0530 | [diff] [blame] | 4069 | ddb->enabled_slices = intel_enabled_dbuf_slices_num(dev_priv); |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 4070 | } |
| 4071 | |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4072 | /* |
| 4073 | * Determines the downscale amount of a plane for the purposes of watermark calculations. |
| 4074 | * The bspec defines downscale amount as: |
| 4075 | * |
| 4076 | * """ |
| 4077 | * Horizontal down scale amount = maximum[1, Horizontal source size / |
| 4078 | * Horizontal destination size] |
| 4079 | * Vertical down scale amount = maximum[1, Vertical source size / |
| 4080 | * Vertical destination size] |
| 4081 | * Total down scale amount = Horizontal down scale amount * |
| 4082 | * Vertical down scale amount |
| 4083 | * """ |
| 4084 | * |
| 4085 | * Return value is provided in 16.16 fixed point form to retain fractional part. |
| 4086 | * Caller should take care of dividing & rounding off the value. |
| 4087 | */ |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4088 | static uint_fixed_16_16_t |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4089 | skl_plane_downscale_amount(const struct intel_crtc_state *crtc_state, |
| 4090 | const struct intel_plane_state *plane_state) |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4091 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4092 | u32 src_w, src_h, dst_w, dst_h; |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4093 | uint_fixed_16_16_t fp_w_ratio, fp_h_ratio; |
| 4094 | uint_fixed_16_16_t downscale_h, downscale_w; |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4095 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4096 | if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state))) |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4097 | return u32_to_fixed16(0); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4098 | |
Maarten Lankhorst | 3a61276 | 2019-10-04 13:34:54 +0200 | [diff] [blame] | 4099 | /* |
| 4100 | * Src coordinates are already rotated by 270 degrees for |
| 4101 | * the 90/270 degree plane rotation cases (to match the |
| 4102 | * GTT mapping), hence no need to account for rotation here. |
| 4103 | * |
| 4104 | * n.b., src is 16.16 fixed point, dst is whole integer. |
| 4105 | */ |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4106 | src_w = drm_rect_width(&plane_state->uapi.src) >> 16; |
| 4107 | src_h = drm_rect_height(&plane_state->uapi.src) >> 16; |
| 4108 | dst_w = drm_rect_width(&plane_state->uapi.dst); |
| 4109 | dst_h = drm_rect_height(&plane_state->uapi.dst); |
Ville Syrjälä | 93aa2a1 | 2017-03-14 17:10:50 +0200 | [diff] [blame] | 4110 | |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4111 | fp_w_ratio = div_fixed16(src_w, dst_w); |
| 4112 | fp_h_ratio = div_fixed16(src_h, dst_h); |
| 4113 | downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1)); |
| 4114 | downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1)); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4115 | |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4116 | return mul_fixed16(downscale_w, downscale_h); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4117 | } |
| 4118 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4119 | static u64 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4120 | skl_plane_relative_data_rate(const struct intel_crtc_state *crtc_state, |
| 4121 | const struct intel_plane_state *plane_state, |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4122 | int color_plane) |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4123 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4124 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4125 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4126 | u32 data_rate; |
| 4127 | u32 width = 0, height = 0; |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4128 | uint_fixed_16_16_t down_scale_amount; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4129 | u64 rate; |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4130 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4131 | if (!plane_state->uapi.visible) |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4132 | return 0; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 4133 | |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4134 | if (plane->id == PLANE_CURSOR) |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4135 | return 0; |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4136 | |
| 4137 | if (color_plane == 1 && |
| 4138 | !drm_format_info_is_yuv_semiplanar(fb->format)) |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4139 | return 0; |
Kumar, Mahesh | a280f7d | 2016-04-06 08:26:39 -0700 | [diff] [blame] | 4140 | |
Ville Syrjälä | fce5adf | 2017-03-31 21:00:55 +0300 | [diff] [blame] | 4141 | /* |
| 4142 | * Src coordinates are already rotated by 270 degrees for |
| 4143 | * the 90/270 degree plane rotation cases (to match the |
| 4144 | * GTT mapping), hence no need to account for rotation here. |
| 4145 | */ |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4146 | width = drm_rect_width(&plane_state->uapi.src) >> 16; |
| 4147 | height = drm_rect_height(&plane_state->uapi.src) >> 16; |
Kumar, Mahesh | a280f7d | 2016-04-06 08:26:39 -0700 | [diff] [blame] | 4148 | |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4149 | /* UV plane does 1/2 pixel sub-sampling */ |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4150 | if (color_plane == 1) { |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4151 | width /= 2; |
| 4152 | height /= 2; |
Chandra Konduru | 2cd601c | 2015-04-27 15:47:37 -0700 | [diff] [blame] | 4153 | } |
| 4154 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4155 | data_rate = width * height; |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4156 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4157 | down_scale_amount = skl_plane_downscale_amount(crtc_state, plane_state); |
Kumar, Mahesh | 8d19d7d | 2016-05-19 15:03:01 -0700 | [diff] [blame] | 4158 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4159 | rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount); |
| 4160 | |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4161 | rate *= fb->format->cpp[color_plane]; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4162 | return rate; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4163 | } |
| 4164 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4165 | static u64 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4166 | skl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4167 | u64 *plane_data_rate, |
| 4168 | u64 *uv_plane_data_rate) |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4169 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4170 | struct drm_atomic_state *state = crtc_state->uapi.state; |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4171 | struct intel_plane *plane; |
| 4172 | const struct intel_plane_state *plane_state; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4173 | u64 total_data_rate = 0; |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 4174 | |
| 4175 | if (WARN_ON(!state)) |
| 4176 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4177 | |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4178 | /* Calculate and cache data rate for each plane */ |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4179 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) { |
| 4180 | enum plane_id plane_id = plane->id; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4181 | u64 rate; |
Matt Roper | 024c904 | 2015-09-24 15:53:11 -0700 | [diff] [blame] | 4182 | |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4183 | /* packed/y */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4184 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0); |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4185 | plane_data_rate[plane_id] = rate; |
Maarten Lankhorst | 1e6ee54 | 2016-10-26 15:41:32 +0200 | [diff] [blame] | 4186 | total_data_rate += rate; |
Matt Roper | 9c74d82 | 2016-05-12 07:05:58 -0700 | [diff] [blame] | 4187 | |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4188 | /* uv-plane */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4189 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1); |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4190 | uv_plane_data_rate[plane_id] = rate; |
Maarten Lankhorst | 1e6ee54 | 2016-10-26 15:41:32 +0200 | [diff] [blame] | 4191 | total_data_rate += rate; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4192 | } |
| 4193 | |
| 4194 | return total_data_rate; |
| 4195 | } |
| 4196 | |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4197 | static u64 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4198 | icl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4199 | u64 *plane_data_rate) |
| 4200 | { |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4201 | struct intel_plane *plane; |
| 4202 | const struct intel_plane_state *plane_state; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4203 | u64 total_data_rate = 0; |
| 4204 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4205 | if (WARN_ON(!crtc_state->uapi.state)) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4206 | return 0; |
| 4207 | |
| 4208 | /* Calculate and cache data rate for each plane */ |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4209 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) { |
| 4210 | enum plane_id plane_id = plane->id; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4211 | u64 rate; |
| 4212 | |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4213 | if (!plane_state->planar_linked_plane) { |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4214 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4215 | plane_data_rate[plane_id] = rate; |
| 4216 | total_data_rate += rate; |
| 4217 | } else { |
| 4218 | enum plane_id y_plane_id; |
| 4219 | |
| 4220 | /* |
| 4221 | * The slave plane might not iterate in |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4222 | * intel_atomic_crtc_state_for_each_plane_state(), |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4223 | * and needs the master plane state which may be |
| 4224 | * NULL if we try get_new_plane_state(), so we |
| 4225 | * always calculate from the master. |
| 4226 | */ |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4227 | if (plane_state->planar_slave) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4228 | continue; |
| 4229 | |
| 4230 | /* Y plane rate is calculated on the slave */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4231 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0); |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4232 | y_plane_id = plane_state->planar_linked_plane->id; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4233 | plane_data_rate[y_plane_id] = rate; |
| 4234 | total_data_rate += rate; |
| 4235 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4236 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4237 | plane_data_rate[plane_id] = rate; |
| 4238 | total_data_rate += rate; |
| 4239 | } |
| 4240 | } |
| 4241 | |
| 4242 | return total_data_rate; |
| 4243 | } |
| 4244 | |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4245 | static int |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4246 | skl_allocate_pipe_ddb(struct intel_crtc_state *crtc_state, |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4247 | struct skl_ddb_allocation *ddb /* out */) |
| 4248 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4249 | struct drm_atomic_state *state = crtc_state->uapi.state; |
| 4250 | struct drm_crtc *crtc = crtc_state->uapi.crtc; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4251 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4252 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4253 | struct skl_ddb_entry *alloc = &crtc_state->wm.skl.ddb; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4254 | u16 alloc_size, start = 0; |
| 4255 | u16 total[I915_MAX_PLANES] = {}; |
| 4256 | u16 uv_total[I915_MAX_PLANES] = {}; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4257 | u64 total_data_rate; |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4258 | enum plane_id plane_id; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4259 | int num_active; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4260 | u64 plane_data_rate[I915_MAX_PLANES] = {}; |
| 4261 | u64 uv_plane_data_rate[I915_MAX_PLANES] = {}; |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4262 | u32 blocks; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4263 | int level; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4264 | |
Paulo Zanoni | 5a920b8 | 2016-10-04 14:37:32 -0300 | [diff] [blame] | 4265 | /* Clear the partitioning for disabled planes. */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4266 | memset(crtc_state->wm.skl.plane_ddb_y, 0, sizeof(crtc_state->wm.skl.plane_ddb_y)); |
| 4267 | memset(crtc_state->wm.skl.plane_ddb_uv, 0, sizeof(crtc_state->wm.skl.plane_ddb_uv)); |
Paulo Zanoni | 5a920b8 | 2016-10-04 14:37:32 -0300 | [diff] [blame] | 4268 | |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 4269 | if (WARN_ON(!state)) |
| 4270 | return 0; |
| 4271 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4272 | if (!crtc_state->hw.active) { |
Lyude | ce0ba28 | 2016-09-15 10:46:35 -0400 | [diff] [blame] | 4273 | alloc->start = alloc->end = 0; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4274 | return 0; |
| 4275 | } |
| 4276 | |
Lucas De Marchi | 323b0a8 | 2019-04-04 16:04:25 -0700 | [diff] [blame] | 4277 | if (INTEL_GEN(dev_priv) >= 11) |
| 4278 | total_data_rate = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4279 | icl_get_total_relative_data_rate(crtc_state, |
Lucas De Marchi | 323b0a8 | 2019-04-04 16:04:25 -0700 | [diff] [blame] | 4280 | plane_data_rate); |
| 4281 | else |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4282 | total_data_rate = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4283 | skl_get_total_relative_data_rate(crtc_state, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4284 | plane_data_rate, |
| 4285 | uv_plane_data_rate); |
Lucas De Marchi | 323b0a8 | 2019-04-04 16:04:25 -0700 | [diff] [blame] | 4286 | |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4287 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4288 | skl_ddb_get_pipe_allocation_limits(dev_priv, crtc_state, total_data_rate, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4289 | ddb, alloc, &num_active); |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 4290 | alloc_size = skl_ddb_entry_size(alloc); |
Kumar, Mahesh | 336031e | 2017-05-17 17:28:25 +0530 | [diff] [blame] | 4291 | if (alloc_size == 0) |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4292 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4293 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4294 | /* Allocate fixed number of blocks for cursor. */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4295 | total[PLANE_CURSOR] = skl_cursor_allocation(crtc_state, num_active); |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4296 | alloc_size -= total[PLANE_CURSOR]; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4297 | crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].start = |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4298 | alloc->end - total[PLANE_CURSOR]; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4299 | crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end; |
Maarten Lankhorst | 49845a7 | 2016-10-26 15:41:34 +0200 | [diff] [blame] | 4300 | |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4301 | if (total_data_rate == 0) |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4302 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4303 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4304 | /* |
| 4305 | * Find the highest watermark level for which we can satisfy the block |
| 4306 | * requirement of active planes. |
| 4307 | */ |
| 4308 | for (level = ilk_wm_max_level(dev_priv); level >= 0; level--) { |
Matt Roper | 25db2ea | 2018-12-12 11:17:20 -0800 | [diff] [blame] | 4309 | blocks = 0; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4310 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4311 | const struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4312 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Ville Syrjälä | 10a7e07 | 2019-03-12 22:58:40 +0200 | [diff] [blame] | 4313 | |
| 4314 | if (plane_id == PLANE_CURSOR) { |
| 4315 | if (WARN_ON(wm->wm[level].min_ddb_alloc > |
| 4316 | total[PLANE_CURSOR])) { |
| 4317 | blocks = U32_MAX; |
| 4318 | break; |
| 4319 | } |
| 4320 | continue; |
| 4321 | } |
| 4322 | |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4323 | blocks += wm->wm[level].min_ddb_alloc; |
| 4324 | blocks += wm->uv_wm[level].min_ddb_alloc; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4325 | } |
| 4326 | |
Ville Syrjälä | 3cf963c | 2019-03-12 22:58:36 +0200 | [diff] [blame] | 4327 | if (blocks <= alloc_size) { |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4328 | alloc_size -= blocks; |
| 4329 | break; |
| 4330 | } |
| 4331 | } |
| 4332 | |
| 4333 | if (level < 0) { |
| 4334 | DRM_DEBUG_KMS("Requested display configuration exceeds system DDB limitations"); |
| 4335 | DRM_DEBUG_KMS("minimum required %d/%d\n", blocks, |
| 4336 | alloc_size); |
| 4337 | return -EINVAL; |
| 4338 | } |
| 4339 | |
| 4340 | /* |
| 4341 | * Grant each plane the blocks it requires at the highest achievable |
| 4342 | * watermark level, plus an extra share of the leftover blocks |
| 4343 | * proportional to its relative data rate. |
| 4344 | */ |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4345 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4346 | const struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4347 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4348 | u64 rate; |
| 4349 | u16 extra; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4350 | |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4351 | if (plane_id == PLANE_CURSOR) |
Maarten Lankhorst | 49845a7 | 2016-10-26 15:41:34 +0200 | [diff] [blame] | 4352 | continue; |
| 4353 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4354 | /* |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4355 | * We've accounted for all active planes; remaining planes are |
| 4356 | * all disabled. |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4357 | */ |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4358 | if (total_data_rate == 0) |
| 4359 | break; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4360 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4361 | rate = plane_data_rate[plane_id]; |
| 4362 | extra = min_t(u16, alloc_size, |
| 4363 | DIV64_U64_ROUND_UP(alloc_size * rate, |
| 4364 | total_data_rate)); |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4365 | total[plane_id] = wm->wm[level].min_ddb_alloc + extra; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4366 | alloc_size -= extra; |
| 4367 | total_data_rate -= rate; |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 4368 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4369 | if (total_data_rate == 0) |
| 4370 | break; |
Chandra Konduru | 2cd601c | 2015-04-27 15:47:37 -0700 | [diff] [blame] | 4371 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4372 | rate = uv_plane_data_rate[plane_id]; |
| 4373 | extra = min_t(u16, alloc_size, |
| 4374 | DIV64_U64_ROUND_UP(alloc_size * rate, |
| 4375 | total_data_rate)); |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4376 | uv_total[plane_id] = wm->uv_wm[level].min_ddb_alloc + extra; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4377 | alloc_size -= extra; |
| 4378 | total_data_rate -= rate; |
| 4379 | } |
| 4380 | WARN_ON(alloc_size != 0 || total_data_rate != 0); |
| 4381 | |
| 4382 | /* Set the actual DDB start/end points for each plane */ |
| 4383 | start = alloc->start; |
| 4384 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4385 | struct skl_ddb_entry *plane_alloc = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4386 | &crtc_state->wm.skl.plane_ddb_y[plane_id]; |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4387 | struct skl_ddb_entry *uv_plane_alloc = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4388 | &crtc_state->wm.skl.plane_ddb_uv[plane_id]; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4389 | |
| 4390 | if (plane_id == PLANE_CURSOR) |
| 4391 | continue; |
| 4392 | |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4393 | /* Gen11+ uses a separate plane for UV watermarks */ |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4394 | WARN_ON(INTEL_GEN(dev_priv) >= 11 && uv_total[plane_id]); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4395 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4396 | /* Leave disabled planes at (0,0) */ |
| 4397 | if (total[plane_id]) { |
| 4398 | plane_alloc->start = start; |
| 4399 | start += total[plane_id]; |
| 4400 | plane_alloc->end = start; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4401 | } |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 4402 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4403 | if (uv_total[plane_id]) { |
| 4404 | uv_plane_alloc->start = start; |
| 4405 | start += uv_total[plane_id]; |
| 4406 | uv_plane_alloc->end = start; |
| 4407 | } |
| 4408 | } |
| 4409 | |
| 4410 | /* |
| 4411 | * When we calculated watermark values we didn't know how high |
| 4412 | * of a level we'd actually be able to hit, so we just marked |
| 4413 | * all levels as "enabled." Go back now and disable the ones |
| 4414 | * that aren't actually possible. |
| 4415 | */ |
| 4416 | for (level++; level <= ilk_wm_max_level(dev_priv); level++) { |
| 4417 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4418 | struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4419 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Ville Syrjälä | a301cb0 | 2019-03-12 22:58:41 +0200 | [diff] [blame] | 4420 | |
| 4421 | /* |
| 4422 | * We only disable the watermarks for each plane if |
| 4423 | * they exceed the ddb allocation of said plane. This |
| 4424 | * is done so that we don't end up touching cursor |
| 4425 | * watermarks needlessly when some other plane reduces |
| 4426 | * our max possible watermark level. |
| 4427 | * |
| 4428 | * Bspec has this to say about the PLANE_WM enable bit: |
| 4429 | * "All the watermarks at this level for all enabled |
| 4430 | * planes must be enabled before the level will be used." |
| 4431 | * So this is actually safe to do. |
| 4432 | */ |
| 4433 | if (wm->wm[level].min_ddb_alloc > total[plane_id] || |
| 4434 | wm->uv_wm[level].min_ddb_alloc > uv_total[plane_id]) |
| 4435 | memset(&wm->wm[level], 0, sizeof(wm->wm[level])); |
Ville Syrjälä | 290248c | 2019-02-13 18:54:24 +0200 | [diff] [blame] | 4436 | |
Ville Syrjälä | c384afe | 2019-02-28 19:36:39 +0200 | [diff] [blame] | 4437 | /* |
Bob Paauwe | 39564ae | 2019-04-12 11:09:20 -0700 | [diff] [blame] | 4438 | * Wa_1408961008:icl, ehl |
Ville Syrjälä | c384afe | 2019-02-28 19:36:39 +0200 | [diff] [blame] | 4439 | * Underruns with WM1+ disabled |
| 4440 | */ |
Bob Paauwe | 39564ae | 2019-04-12 11:09:20 -0700 | [diff] [blame] | 4441 | if (IS_GEN(dev_priv, 11) && |
Ville Syrjälä | 290248c | 2019-02-13 18:54:24 +0200 | [diff] [blame] | 4442 | level == 1 && wm->wm[0].plane_en) { |
| 4443 | wm->wm[level].plane_res_b = wm->wm[0].plane_res_b; |
Ville Syrjälä | c384afe | 2019-02-28 19:36:39 +0200 | [diff] [blame] | 4444 | wm->wm[level].plane_res_l = wm->wm[0].plane_res_l; |
| 4445 | wm->wm[level].ignore_lines = wm->wm[0].ignore_lines; |
Ville Syrjälä | 290248c | 2019-02-13 18:54:24 +0200 | [diff] [blame] | 4446 | } |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4447 | } |
| 4448 | } |
| 4449 | |
| 4450 | /* |
| 4451 | * Go back and disable the transition watermark if it turns out we |
| 4452 | * don't have enough DDB blocks for it. |
| 4453 | */ |
| 4454 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4455 | struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4456 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4457 | |
Ville Syrjälä | b19c9bc | 2018-12-21 19:14:31 +0200 | [diff] [blame] | 4458 | if (wm->trans_wm.plane_res_b >= total[plane_id]) |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4459 | memset(&wm->trans_wm, 0, sizeof(wm->trans_wm)); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4460 | } |
| 4461 | |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4462 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4463 | } |
| 4464 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4465 | /* |
| 4466 | * The max latency should be 257 (max the punit can code is 255 and we add 2us |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 4467 | * for the read latency) and cpp should always be <= 8, so that |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4468 | * should allow pixel_rate up to ~2 GHz which seems sufficient since max |
| 4469 | * 2xcdclk is 1350 MHz and the pixel rate should never exceed that. |
| 4470 | */ |
Paulo Zanoni | 6c64dd3 | 2017-08-11 16:38:25 -0700 | [diff] [blame] | 4471 | static uint_fixed_16_16_t |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4472 | skl_wm_method1(const struct drm_i915_private *dev_priv, u32 pixel_rate, |
| 4473 | u8 cpp, u32 latency, u32 dbuf_block_size) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4474 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4475 | u32 wm_intermediate_val; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4476 | uint_fixed_16_16_t ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4477 | |
| 4478 | if (latency == 0) |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4479 | return FP_16_16_MAX; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4480 | |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4481 | wm_intermediate_val = latency * pixel_rate * cpp; |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4482 | ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size); |
Paulo Zanoni | 6c64dd3 | 2017-08-11 16:38:25 -0700 | [diff] [blame] | 4483 | |
| 4484 | if (INTEL_GEN(dev_priv) >= 10) |
| 4485 | ret = add_fixed16_u32(ret, 1); |
| 4486 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4487 | return ret; |
| 4488 | } |
| 4489 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4490 | static uint_fixed_16_16_t |
| 4491 | skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency, |
| 4492 | uint_fixed_16_16_t plane_blocks_per_line) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4493 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4494 | u32 wm_intermediate_val; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4495 | uint_fixed_16_16_t ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4496 | |
| 4497 | if (latency == 0) |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4498 | return FP_16_16_MAX; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4499 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4500 | wm_intermediate_val = latency * pixel_rate; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4501 | wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val, |
| 4502 | pipe_htotal * 1000); |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4503 | ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4504 | return ret; |
| 4505 | } |
| 4506 | |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4507 | static uint_fixed_16_16_t |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4508 | intel_get_linetime_us(const struct intel_crtc_state *crtc_state) |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4509 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4510 | u32 pixel_rate; |
| 4511 | u32 crtc_htotal; |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4512 | uint_fixed_16_16_t linetime_us; |
| 4513 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4514 | if (!crtc_state->hw.active) |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4515 | return u32_to_fixed16(0); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4516 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4517 | pixel_rate = crtc_state->pixel_rate; |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4518 | |
| 4519 | if (WARN_ON(pixel_rate == 0)) |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4520 | return u32_to_fixed16(0); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4521 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4522 | crtc_htotal = crtc_state->hw.adjusted_mode.crtc_htotal; |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4523 | linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4524 | |
| 4525 | return linetime_us; |
| 4526 | } |
| 4527 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4528 | static u32 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4529 | skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *crtc_state, |
| 4530 | const struct intel_plane_state *plane_state) |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4531 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4532 | u64 adjusted_pixel_rate; |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4533 | uint_fixed_16_16_t downscale_amount; |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4534 | |
| 4535 | /* Shouldn't reach here on disabled planes... */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4536 | if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state))) |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4537 | return 0; |
| 4538 | |
| 4539 | /* |
| 4540 | * Adjusted plane pixel rate is just the pipe's adjusted pixel rate |
| 4541 | * with additional adjustments for plane-specific scaling. |
| 4542 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4543 | adjusted_pixel_rate = crtc_state->pixel_rate; |
| 4544 | downscale_amount = skl_plane_downscale_amount(crtc_state, plane_state); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4545 | |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4546 | return mul_round_up_u32_fixed16(adjusted_pixel_rate, |
| 4547 | downscale_amount); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4548 | } |
| 4549 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4550 | static int |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4551 | skl_compute_wm_params(const struct intel_crtc_state *crtc_state, |
| 4552 | int width, const struct drm_format_info *format, |
| 4553 | u64 modifier, unsigned int rotation, |
| 4554 | u32 plane_pixel_rate, struct skl_wm_params *wp, |
| 4555 | int color_plane) |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4556 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4557 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4558 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4559 | u32 interm_pbpl; |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4560 | |
Juha-Pekka Heikkila | df7d415 | 2019-03-04 17:26:31 +0530 | [diff] [blame] | 4561 | /* only planar format has two planes */ |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4562 | if (color_plane == 1 && !drm_format_info_is_yuv_semiplanar(format)) { |
Juha-Pekka Heikkila | df7d415 | 2019-03-04 17:26:31 +0530 | [diff] [blame] | 4563 | DRM_DEBUG_KMS("Non planar format have single plane\n"); |
Mahesh Kumar | 942aa2d | 2018-04-09 09:11:04 +0530 | [diff] [blame] | 4564 | return -EINVAL; |
| 4565 | } |
| 4566 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4567 | wp->y_tiled = modifier == I915_FORMAT_MOD_Y_TILED || |
| 4568 | modifier == I915_FORMAT_MOD_Yf_TILED || |
| 4569 | modifier == I915_FORMAT_MOD_Y_TILED_CCS || |
| 4570 | modifier == I915_FORMAT_MOD_Yf_TILED_CCS; |
| 4571 | wp->x_tiled = modifier == I915_FORMAT_MOD_X_TILED; |
| 4572 | wp->rc_surface = modifier == I915_FORMAT_MOD_Y_TILED_CCS || |
| 4573 | modifier == I915_FORMAT_MOD_Yf_TILED_CCS; |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4574 | wp->is_planar = drm_format_info_is_yuv_semiplanar(format); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4575 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4576 | wp->width = width; |
Ville Syrjälä | 45bee43 | 2018-11-14 23:07:28 +0200 | [diff] [blame] | 4577 | if (color_plane == 1 && wp->is_planar) |
Mahesh Kumar | 942aa2d | 2018-04-09 09:11:04 +0530 | [diff] [blame] | 4578 | wp->width /= 2; |
| 4579 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4580 | wp->cpp = format->cpp[color_plane]; |
| 4581 | wp->plane_pixel_rate = plane_pixel_rate; |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4582 | |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4583 | if (INTEL_GEN(dev_priv) >= 11 && |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4584 | modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 1) |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4585 | wp->dbuf_block_size = 256; |
| 4586 | else |
| 4587 | wp->dbuf_block_size = 512; |
| 4588 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4589 | if (drm_rotation_90_or_270(rotation)) { |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4590 | switch (wp->cpp) { |
| 4591 | case 1: |
| 4592 | wp->y_min_scanlines = 16; |
| 4593 | break; |
| 4594 | case 2: |
| 4595 | wp->y_min_scanlines = 8; |
| 4596 | break; |
| 4597 | case 4: |
| 4598 | wp->y_min_scanlines = 4; |
| 4599 | break; |
| 4600 | default: |
| 4601 | MISSING_CASE(wp->cpp); |
| 4602 | return -EINVAL; |
| 4603 | } |
| 4604 | } else { |
| 4605 | wp->y_min_scanlines = 4; |
| 4606 | } |
| 4607 | |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 4608 | if (skl_needs_memory_bw_wa(dev_priv)) |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4609 | wp->y_min_scanlines *= 2; |
| 4610 | |
| 4611 | wp->plane_bytes_per_line = wp->width * wp->cpp; |
| 4612 | if (wp->y_tiled) { |
| 4613 | interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line * |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4614 | wp->y_min_scanlines, |
| 4615 | wp->dbuf_block_size); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4616 | |
| 4617 | if (INTEL_GEN(dev_priv) >= 10) |
| 4618 | interm_pbpl++; |
| 4619 | |
| 4620 | wp->plane_blocks_per_line = div_fixed16(interm_pbpl, |
| 4621 | wp->y_min_scanlines); |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 4622 | } else if (wp->x_tiled && IS_GEN(dev_priv, 9)) { |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4623 | interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, |
| 4624 | wp->dbuf_block_size); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4625 | wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl); |
| 4626 | } else { |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4627 | interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, |
| 4628 | wp->dbuf_block_size) + 1; |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4629 | wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl); |
| 4630 | } |
| 4631 | |
| 4632 | wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines, |
| 4633 | wp->plane_blocks_per_line); |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4634 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4635 | wp->linetime_us = fixed16_to_u32_round_up( |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4636 | intel_get_linetime_us(crtc_state)); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4637 | |
| 4638 | return 0; |
| 4639 | } |
| 4640 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4641 | static int |
| 4642 | skl_compute_plane_wm_params(const struct intel_crtc_state *crtc_state, |
| 4643 | const struct intel_plane_state *plane_state, |
| 4644 | struct skl_wm_params *wp, int color_plane) |
| 4645 | { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4646 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4647 | int width; |
| 4648 | |
Maarten Lankhorst | 3a61276 | 2019-10-04 13:34:54 +0200 | [diff] [blame] | 4649 | /* |
| 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. |
| 4653 | */ |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4654 | width = drm_rect_width(&plane_state->uapi.src) >> 16; |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4655 | |
| 4656 | return skl_compute_wm_params(crtc_state, width, |
| 4657 | fb->format, fb->modifier, |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4658 | plane_state->hw.rotation, |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4659 | skl_adjusted_plane_pixel_rate(crtc_state, plane_state), |
| 4660 | wp, color_plane); |
| 4661 | } |
| 4662 | |
Ville Syrjälä | b52c273 | 2018-12-21 19:14:28 +0200 | [diff] [blame] | 4663 | static bool skl_wm_has_lines(struct drm_i915_private *dev_priv, int level) |
| 4664 | { |
| 4665 | if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv)) |
| 4666 | return true; |
| 4667 | |
| 4668 | /* The number of lines are ignored for the level 0 watermark. */ |
| 4669 | return level > 0; |
| 4670 | } |
| 4671 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4672 | static void skl_compute_plane_wm(const struct intel_crtc_state *crtc_state, |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4673 | int level, |
| 4674 | const struct skl_wm_params *wp, |
| 4675 | const struct skl_wm_level *result_prev, |
| 4676 | struct skl_wm_level *result /* out */) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4677 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4678 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4679 | u32 latency = dev_priv->wm.skl_latency[level]; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4680 | uint_fixed_16_16_t method1, method2; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4681 | uint_fixed_16_16_t selected_result; |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4682 | u32 res_blocks, res_lines, min_ddb_alloc = 0; |
Ville Syrjälä | ce110ec | 2018-11-14 23:07:21 +0200 | [diff] [blame] | 4683 | |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4684 | if (latency == 0) { |
| 4685 | /* reject it */ |
| 4686 | result->min_ddb_alloc = U16_MAX; |
Ville Syrjälä | 692927f | 2018-12-21 19:14:29 +0200 | [diff] [blame] | 4687 | return; |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4688 | } |
Ville Syrjälä | 692927f | 2018-12-21 19:14:29 +0200 | [diff] [blame] | 4689 | |
Ville Syrjälä | 25312ef | 2019-05-03 20:38:05 +0300 | [diff] [blame] | 4690 | /* |
| 4691 | * WaIncreaseLatencyIPCEnabled: kbl,cfl |
| 4692 | * Display WA #1141: kbl,cfl |
| 4693 | */ |
Ville Syrjälä | 5a7d202 | 2019-05-03 20:38:06 +0300 | [diff] [blame] | 4694 | if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) || |
Rodrigo Vivi | 82525c1 | 2017-06-08 08:50:00 -0700 | [diff] [blame] | 4695 | dev_priv->ipc_enabled) |
Mahesh Kumar | 4b7b233 | 2016-12-01 21:19:35 +0530 | [diff] [blame] | 4696 | latency += 4; |
| 4697 | |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 4698 | if (skl_needs_memory_bw_wa(dev_priv) && wp->x_tiled) |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 4699 | latency += 15; |
| 4700 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4701 | method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate, |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4702 | wp->cpp, latency, wp->dbuf_block_size); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4703 | method2 = skl_wm_method2(wp->plane_pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4704 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Paulo Zanoni | 1186fa8 | 2016-09-22 18:00:31 -0300 | [diff] [blame] | 4705 | latency, |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4706 | wp->plane_blocks_per_line); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4707 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4708 | if (wp->y_tiled) { |
| 4709 | selected_result = max_fixed16(method2, wp->y_tile_minimum); |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4710 | } else { |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4711 | if ((wp->cpp * crtc_state->hw.adjusted_mode.crtc_htotal / |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4712 | wp->dbuf_block_size < 1) && |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4713 | (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) { |
Paulo Zanoni | f1db3ea | 2016-09-22 18:00:34 -0300 | [diff] [blame] | 4714 | selected_result = method2; |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4715 | } else if (latency >= wp->linetime_us) { |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 4716 | if (IS_GEN(dev_priv, 9) && |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4717 | !IS_GEMINILAKE(dev_priv)) |
| 4718 | selected_result = min_fixed16(method1, method2); |
| 4719 | else |
| 4720 | selected_result = method2; |
| 4721 | } else { |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4722 | selected_result = method1; |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4723 | } |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4724 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4725 | |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4726 | res_blocks = fixed16_to_u32_round_up(selected_result) + 1; |
Kumar, Mahesh | d273ecc | 2017-05-17 17:28:22 +0530 | [diff] [blame] | 4727 | res_lines = div_round_up_fixed16(selected_result, |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4728 | wp->plane_blocks_per_line); |
Damien Lespiau | e6d6617 | 2014-11-04 17:06:55 +0000 | [diff] [blame] | 4729 | |
Paulo Zanoni | a5b79d3 | 2018-11-13 17:24:32 -0800 | [diff] [blame] | 4730 | if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv)) { |
| 4731 | /* Display WA #1125: skl,bxt,kbl */ |
| 4732 | if (level == 0 && wp->rc_surface) |
| 4733 | res_blocks += |
| 4734 | fixed16_to_u32_round_up(wp->y_tile_minimum); |
Ville Syrjälä | 2e2adb0 | 2017-08-01 09:58:13 -0700 | [diff] [blame] | 4735 | |
Paulo Zanoni | a5b79d3 | 2018-11-13 17:24:32 -0800 | [diff] [blame] | 4736 | /* Display WA #1126: skl,bxt,kbl */ |
| 4737 | if (level >= 1 && level <= 7) { |
| 4738 | if (wp->y_tiled) { |
| 4739 | res_blocks += |
| 4740 | fixed16_to_u32_round_up(wp->y_tile_minimum); |
| 4741 | res_lines += wp->y_min_scanlines; |
| 4742 | } else { |
| 4743 | res_blocks++; |
| 4744 | } |
| 4745 | |
| 4746 | /* |
| 4747 | * Make sure result blocks for higher latency levels are |
| 4748 | * atleast as high as level below the current level. |
| 4749 | * Assumption in DDB algorithm optimization for special |
| 4750 | * cases. Also covers Display WA #1125 for RC. |
| 4751 | */ |
| 4752 | if (result_prev->plane_res_b > res_blocks) |
| 4753 | res_blocks = result_prev->plane_res_b; |
Paulo Zanoni | 75676ed | 2016-09-22 18:00:33 -0300 | [diff] [blame] | 4754 | } |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4755 | } |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 4756 | |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4757 | if (INTEL_GEN(dev_priv) >= 11) { |
| 4758 | if (wp->y_tiled) { |
| 4759 | int extra_lines; |
| 4760 | |
| 4761 | if (res_lines % wp->y_min_scanlines == 0) |
| 4762 | extra_lines = wp->y_min_scanlines; |
| 4763 | else |
| 4764 | extra_lines = wp->y_min_scanlines * 2 - |
| 4765 | res_lines % wp->y_min_scanlines; |
| 4766 | |
| 4767 | min_ddb_alloc = mul_round_up_u32_fixed16(res_lines + extra_lines, |
| 4768 | wp->plane_blocks_per_line); |
| 4769 | } else { |
| 4770 | min_ddb_alloc = res_blocks + |
| 4771 | DIV_ROUND_UP(res_blocks, 10); |
| 4772 | } |
| 4773 | } |
| 4774 | |
Ville Syrjälä | b52c273 | 2018-12-21 19:14:28 +0200 | [diff] [blame] | 4775 | if (!skl_wm_has_lines(dev_priv, level)) |
| 4776 | res_lines = 0; |
| 4777 | |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4778 | if (res_lines > 31) { |
| 4779 | /* reject it */ |
| 4780 | result->min_ddb_alloc = U16_MAX; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4781 | return; |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4782 | } |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4783 | |
| 4784 | /* |
| 4785 | * If res_lines is valid, assume we can use this watermark level |
| 4786 | * for now. We'll come back and disable it after we calculate the |
| 4787 | * DDB allocation if it turns out we don't actually have enough |
| 4788 | * blocks to satisfy it. |
| 4789 | */ |
Mahesh Kumar | 62027b7 | 2018-04-09 09:11:05 +0530 | [diff] [blame] | 4790 | result->plane_res_b = res_blocks; |
| 4791 | result->plane_res_l = res_lines; |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4792 | /* Bspec says: value >= plane ddb allocation -> invalid, hence the +1 here */ |
| 4793 | result->min_ddb_alloc = max(min_ddb_alloc, res_blocks) + 1; |
Mahesh Kumar | 62027b7 | 2018-04-09 09:11:05 +0530 | [diff] [blame] | 4794 | result->plane_en = true; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4795 | } |
| 4796 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4797 | static void |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4798 | skl_compute_wm_levels(const struct intel_crtc_state *crtc_state, |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4799 | const struct skl_wm_params *wm_params, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4800 | struct skl_wm_level *levels) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4801 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4802 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4803 | int level, max_level = ilk_wm_max_level(dev_priv); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4804 | struct skl_wm_level *result_prev = &levels[0]; |
Lyude | a62163e | 2016-10-04 14:28:20 -0400 | [diff] [blame] | 4805 | |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4806 | for (level = 0; level <= max_level; level++) { |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4807 | struct skl_wm_level *result = &levels[level]; |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4808 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4809 | skl_compute_plane_wm(crtc_state, level, wm_params, |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4810 | result_prev, result); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4811 | |
| 4812 | result_prev = result; |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4813 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4814 | } |
| 4815 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4816 | static u32 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4817 | skl_compute_linetime_wm(const struct intel_crtc_state *crtc_state) |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4818 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4819 | struct drm_atomic_state *state = crtc_state->uapi.state; |
Mahesh Kumar | a3a8986 | 2016-12-01 21:19:34 +0530 | [diff] [blame] | 4820 | struct drm_i915_private *dev_priv = to_i915(state->dev); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4821 | uint_fixed_16_16_t linetime_us; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4822 | u32 linetime_wm; |
Paulo Zanoni | 30d1b5f | 2016-10-07 17:28:58 -0300 | [diff] [blame] | 4823 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4824 | linetime_us = intel_get_linetime_us(crtc_state); |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4825 | linetime_wm = fixed16_to_u32_round_up(mul_u32_fixed16(8, linetime_us)); |
Mahesh Kumar | a3a8986 | 2016-12-01 21:19:34 +0530 | [diff] [blame] | 4826 | |
Ville Syrjälä | 717671c | 2018-12-21 19:14:36 +0200 | [diff] [blame] | 4827 | /* Display WA #1135: BXT:ALL GLK:ALL */ |
| 4828 | if (IS_GEN9_LP(dev_priv) && dev_priv->ipc_enabled) |
Kumar, Mahesh | 446e850 | 2017-08-17 19:15:25 +0530 | [diff] [blame] | 4829 | linetime_wm /= 2; |
Mahesh Kumar | a3a8986 | 2016-12-01 21:19:34 +0530 | [diff] [blame] | 4830 | |
| 4831 | return linetime_wm; |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4832 | } |
| 4833 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4834 | static void skl_compute_transition_wm(const struct intel_crtc_state *crtc_state, |
Ville Syrjälä | 6a3c910b | 2018-11-14 23:07:23 +0200 | [diff] [blame] | 4835 | const struct skl_wm_params *wp, |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4836 | struct skl_plane_wm *wm) |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4837 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4838 | struct drm_device *dev = crtc_state->uapi.crtc->dev; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4839 | const struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4840 | u16 trans_min, trans_y_tile_min; |
| 4841 | const u16 trans_amount = 10; /* This is configurable amount */ |
| 4842 | u16 wm0_sel_res_b, trans_offset_b, res_blocks; |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 4843 | |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4844 | /* Transition WM are not recommended by HW team for GEN9 */ |
| 4845 | if (INTEL_GEN(dev_priv) <= 9) |
Ville Syrjälä | 14a4306 | 2018-11-14 23:07:22 +0200 | [diff] [blame] | 4846 | return; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4847 | |
| 4848 | /* Transition WM don't make any sense if ipc is disabled */ |
| 4849 | if (!dev_priv->ipc_enabled) |
Ville Syrjälä | 14a4306 | 2018-11-14 23:07:22 +0200 | [diff] [blame] | 4850 | return; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4851 | |
Paulo Zanoni | 91961a8 | 2018-10-04 16:15:56 -0700 | [diff] [blame] | 4852 | trans_min = 14; |
| 4853 | if (INTEL_GEN(dev_priv) >= 11) |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4854 | trans_min = 4; |
| 4855 | |
| 4856 | trans_offset_b = trans_min + trans_amount; |
| 4857 | |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4858 | /* |
| 4859 | * The spec asks for Selected Result Blocks for wm0 (the real value), |
| 4860 | * not Result Blocks (the integer value). Pay attention to the capital |
| 4861 | * letters. The value wm_l0->plane_res_b is actually Result Blocks, but |
| 4862 | * since Result Blocks is the ceiling of Selected Result Blocks plus 1, |
| 4863 | * and since we later will have to get the ceiling of the sum in the |
| 4864 | * transition watermarks calculation, we can just pretend Selected |
| 4865 | * Result Blocks is Result Blocks minus 1 and it should work for the |
| 4866 | * current platforms. |
| 4867 | */ |
Ville Syrjälä | 6a3c910b | 2018-11-14 23:07:23 +0200 | [diff] [blame] | 4868 | wm0_sel_res_b = wm->wm[0].plane_res_b - 1; |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4869 | |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4870 | if (wp->y_tiled) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4871 | trans_y_tile_min = |
| 4872 | (u16)mul_round_up_u32_fixed16(2, wp->y_tile_minimum); |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4873 | res_blocks = max(wm0_sel_res_b, trans_y_tile_min) + |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4874 | trans_offset_b; |
| 4875 | } else { |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4876 | res_blocks = wm0_sel_res_b + trans_offset_b; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4877 | |
| 4878 | /* WA BUG:1938466 add one block for non y-tile planes */ |
| 4879 | if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0)) |
| 4880 | res_blocks += 1; |
| 4881 | |
| 4882 | } |
| 4883 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4884 | /* |
| 4885 | * Just assume we can enable the transition watermark. After |
| 4886 | * computing the DDB we'll come back and disable it if that |
| 4887 | * assumption turns out to be false. |
| 4888 | */ |
| 4889 | wm->trans_wm.plane_res_b = res_blocks + 1; |
| 4890 | wm->trans_wm.plane_en = true; |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4891 | } |
| 4892 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4893 | static int skl_build_plane_wm_single(struct intel_crtc_state *crtc_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4894 | const struct intel_plane_state *plane_state, |
| 4895 | enum plane_id plane_id, int color_plane) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4896 | { |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4897 | struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id]; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4898 | struct skl_wm_params wm_params; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4899 | int ret; |
| 4900 | |
Ville Syrjälä | 51de9c6 | 2018-11-14 23:07:25 +0200 | [diff] [blame] | 4901 | ret = skl_compute_plane_wm_params(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4902 | &wm_params, color_plane); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4903 | if (ret) |
| 4904 | return ret; |
| 4905 | |
Ville Syrjälä | 67155a6 | 2019-03-12 22:58:37 +0200 | [diff] [blame] | 4906 | skl_compute_wm_levels(crtc_state, &wm_params, wm->wm); |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4907 | skl_compute_transition_wm(crtc_state, &wm_params, wm); |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4908 | |
| 4909 | return 0; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4910 | } |
| 4911 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4912 | static int skl_build_plane_wm_uv(struct intel_crtc_state *crtc_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4913 | const struct intel_plane_state *plane_state, |
| 4914 | enum plane_id plane_id) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4915 | { |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4916 | struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id]; |
| 4917 | struct skl_wm_params wm_params; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4918 | int ret; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4919 | |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4920 | wm->is_planar = true; |
| 4921 | |
| 4922 | /* uv plane watermarks must also be validated for NV12/Planar */ |
Ville Syrjälä | 51de9c6 | 2018-11-14 23:07:25 +0200 | [diff] [blame] | 4923 | ret = skl_compute_plane_wm_params(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4924 | &wm_params, 1); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4925 | if (ret) |
| 4926 | return ret; |
| 4927 | |
Ville Syrjälä | 67155a6 | 2019-03-12 22:58:37 +0200 | [diff] [blame] | 4928 | skl_compute_wm_levels(crtc_state, &wm_params, wm->uv_wm); |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4929 | |
| 4930 | return 0; |
| 4931 | } |
| 4932 | |
Ville Syrjälä | 96cb7cd | 2019-03-12 22:58:43 +0200 | [diff] [blame] | 4933 | static int skl_build_plane_wm(struct intel_crtc_state *crtc_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4934 | const struct intel_plane_state *plane_state) |
| 4935 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4936 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4937 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4938 | enum plane_id plane_id = plane->id; |
| 4939 | int ret; |
| 4940 | |
| 4941 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
| 4942 | return 0; |
| 4943 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4944 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4945 | plane_id, 0); |
| 4946 | if (ret) |
| 4947 | return ret; |
| 4948 | |
| 4949 | if (fb->format->is_yuv && fb->format->num_planes > 1) { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4950 | ret = skl_build_plane_wm_uv(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4951 | plane_id); |
| 4952 | if (ret) |
| 4953 | return ret; |
| 4954 | } |
| 4955 | |
| 4956 | return 0; |
| 4957 | } |
| 4958 | |
Ville Syrjälä | 96cb7cd | 2019-03-12 22:58:43 +0200 | [diff] [blame] | 4959 | static int icl_build_plane_wm(struct intel_crtc_state *crtc_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4960 | const struct intel_plane_state *plane_state) |
| 4961 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4962 | enum plane_id plane_id = to_intel_plane(plane_state->uapi.plane)->id; |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4963 | int ret; |
| 4964 | |
| 4965 | /* Watermarks calculated in master */ |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4966 | if (plane_state->planar_slave) |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4967 | return 0; |
| 4968 | |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4969 | if (plane_state->planar_linked_plane) { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4970 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4971 | enum plane_id y_plane_id = plane_state->planar_linked_plane->id; |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4972 | |
| 4973 | WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)); |
| 4974 | WARN_ON(!fb->format->is_yuv || |
| 4975 | fb->format->num_planes == 1); |
| 4976 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4977 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4978 | y_plane_id, 0); |
| 4979 | if (ret) |
| 4980 | return ret; |
| 4981 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4982 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4983 | plane_id, 1); |
| 4984 | if (ret) |
| 4985 | return ret; |
| 4986 | } else if (intel_wm_plane_visible(crtc_state, plane_state)) { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4987 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4988 | plane_id, 0); |
| 4989 | if (ret) |
| 4990 | return ret; |
| 4991 | } |
| 4992 | |
| 4993 | return 0; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4994 | } |
| 4995 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4996 | static int skl_build_pipe_wm(struct intel_crtc_state *crtc_state) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4997 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4998 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4999 | struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal; |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 5000 | struct intel_plane *plane; |
| 5001 | const struct intel_plane_state *plane_state; |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 5002 | int ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5003 | |
Lyude | a62163e | 2016-10-04 14:28:20 -0400 | [diff] [blame] | 5004 | /* |
| 5005 | * We'll only calculate watermarks for planes that are actually |
| 5006 | * enabled, so make sure all other planes are set as disabled. |
| 5007 | */ |
| 5008 | memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes)); |
| 5009 | |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 5010 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, |
| 5011 | crtc_state) { |
Kumar, Mahesh | eb2fdcd | 2017-05-17 17:28:27 +0530 | [diff] [blame] | 5012 | |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 5013 | if (INTEL_GEN(dev_priv) >= 11) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5014 | ret = icl_build_plane_wm(crtc_state, plane_state); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 5015 | else |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5016 | ret = skl_build_plane_wm(crtc_state, plane_state); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 5017 | if (ret) |
| 5018 | return ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5019 | } |
Mahesh Kumar | 942aa2d | 2018-04-09 09:11:04 +0530 | [diff] [blame] | 5020 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5021 | pipe_wm->linetime = skl_compute_linetime_wm(crtc_state); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5022 | |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 5023 | return 0; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5024 | } |
| 5025 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 5026 | static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, |
| 5027 | i915_reg_t reg, |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 5028 | const struct skl_ddb_entry *entry) |
| 5029 | { |
| 5030 | if (entry->end) |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5031 | I915_WRITE_FW(reg, (entry->end - 1) << 16 | entry->start); |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 5032 | else |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5033 | I915_WRITE_FW(reg, 0); |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 5034 | } |
| 5035 | |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5036 | static void skl_write_wm_level(struct drm_i915_private *dev_priv, |
| 5037 | i915_reg_t reg, |
| 5038 | const struct skl_wm_level *level) |
| 5039 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5040 | u32 val = 0; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5041 | |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5042 | if (level->plane_en) |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5043 | val |= PLANE_WM_EN; |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5044 | if (level->ignore_lines) |
| 5045 | val |= PLANE_WM_IGNORE_LINES; |
| 5046 | val |= level->plane_res_b; |
| 5047 | val |= level->plane_res_l << PLANE_WM_LINES_SHIFT; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5048 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5049 | I915_WRITE_FW(reg, val); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5050 | } |
| 5051 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5052 | void skl_write_plane_wm(struct intel_plane *plane, |
| 5053 | const struct intel_crtc_state *crtc_state) |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5054 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5055 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5056 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5057 | enum plane_id plane_id = plane->id; |
| 5058 | enum pipe pipe = plane->pipe; |
| 5059 | const struct skl_plane_wm *wm = |
| 5060 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
| 5061 | const struct skl_ddb_entry *ddb_y = |
| 5062 | &crtc_state->wm.skl.plane_ddb_y[plane_id]; |
| 5063 | const struct skl_ddb_entry *ddb_uv = |
| 5064 | &crtc_state->wm.skl.plane_ddb_uv[plane_id]; |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5065 | |
| 5066 | for (level = 0; level <= max_level; level++) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5067 | skl_write_wm_level(dev_priv, PLANE_WM(pipe, plane_id, level), |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5068 | &wm->wm[level]); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5069 | } |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5070 | skl_write_wm_level(dev_priv, PLANE_WM_TRANS(pipe, plane_id), |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5071 | &wm->trans_wm); |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5072 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5073 | if (INTEL_GEN(dev_priv) >= 11) { |
Mahesh Kumar | 234059d | 2018-01-30 11:49:13 -0200 | [diff] [blame] | 5074 | skl_ddb_entry_write(dev_priv, |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5075 | PLANE_BUF_CFG(pipe, plane_id), ddb_y); |
| 5076 | return; |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 5077 | } |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5078 | |
| 5079 | if (wm->is_planar) |
| 5080 | swap(ddb_y, ddb_uv); |
| 5081 | |
| 5082 | skl_ddb_entry_write(dev_priv, |
| 5083 | PLANE_BUF_CFG(pipe, plane_id), ddb_y); |
| 5084 | skl_ddb_entry_write(dev_priv, |
| 5085 | PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5086 | } |
| 5087 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5088 | void skl_write_cursor_wm(struct intel_plane *plane, |
| 5089 | const struct intel_crtc_state *crtc_state) |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5090 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5091 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5092 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5093 | enum plane_id plane_id = plane->id; |
| 5094 | enum pipe pipe = plane->pipe; |
| 5095 | const struct skl_plane_wm *wm = |
| 5096 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
| 5097 | const struct skl_ddb_entry *ddb = |
| 5098 | &crtc_state->wm.skl.plane_ddb_y[plane_id]; |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5099 | |
| 5100 | for (level = 0; level <= max_level; level++) { |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5101 | skl_write_wm_level(dev_priv, CUR_WM(pipe, level), |
| 5102 | &wm->wm[level]); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5103 | } |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5104 | skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm); |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5105 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5106 | skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5107 | } |
| 5108 | |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5109 | bool skl_wm_level_equals(const struct skl_wm_level *l1, |
| 5110 | const struct skl_wm_level *l2) |
| 5111 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5112 | return l1->plane_en == l2->plane_en && |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5113 | l1->ignore_lines == l2->ignore_lines && |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5114 | l1->plane_res_l == l2->plane_res_l && |
| 5115 | l1->plane_res_b == l2->plane_res_b; |
| 5116 | } |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5117 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5118 | static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv, |
| 5119 | const struct skl_plane_wm *wm1, |
| 5120 | const struct skl_plane_wm *wm2) |
| 5121 | { |
| 5122 | int level, max_level = ilk_wm_max_level(dev_priv); |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5123 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5124 | for (level = 0; level <= max_level; level++) { |
| 5125 | if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]) || |
| 5126 | !skl_wm_level_equals(&wm1->uv_wm[level], &wm2->uv_wm[level])) |
| 5127 | return false; |
| 5128 | } |
| 5129 | |
| 5130 | return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm); |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5131 | } |
| 5132 | |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 5133 | static bool skl_pipe_wm_equals(struct intel_crtc *crtc, |
| 5134 | const struct skl_pipe_wm *wm1, |
| 5135 | const struct skl_pipe_wm *wm2) |
| 5136 | { |
| 5137 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5138 | enum plane_id plane_id; |
| 5139 | |
| 5140 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 5141 | if (!skl_plane_wm_equals(dev_priv, |
| 5142 | &wm1->planes[plane_id], |
| 5143 | &wm2->planes[plane_id])) |
| 5144 | return false; |
| 5145 | } |
| 5146 | |
| 5147 | return wm1->linetime == wm2->linetime; |
| 5148 | } |
| 5149 | |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5150 | static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a, |
| 5151 | const struct skl_ddb_entry *b) |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5152 | { |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5153 | return a->start < b->end && b->start < a->end; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5154 | } |
| 5155 | |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5156 | bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb, |
Jani Nikula | 696173b | 2019-04-05 14:00:15 +0300 | [diff] [blame] | 5157 | const struct skl_ddb_entry *entries, |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5158 | int num_entries, int ignore_idx) |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5159 | { |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5160 | int i; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5161 | |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5162 | for (i = 0; i < num_entries; i++) { |
| 5163 | if (i != ignore_idx && |
| 5164 | skl_ddb_entries_overlap(ddb, &entries[i])) |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5165 | return true; |
Mika Kahola | 2b68504 | 2017-10-10 13:17:03 +0300 | [diff] [blame] | 5166 | } |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5167 | |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5168 | return false; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5169 | } |
| 5170 | |
Jani Nikula | bb7791b | 2016-10-04 12:29:17 +0300 | [diff] [blame] | 5171 | static int |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5172 | skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state, |
| 5173 | struct intel_crtc_state *new_crtc_state) |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5174 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5175 | struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state); |
| 5176 | struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5177 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5178 | struct intel_plane *plane; |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5179 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5180 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5181 | struct intel_plane_state *plane_state; |
| 5182 | enum plane_id plane_id = plane->id; |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5183 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5184 | if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id], |
| 5185 | &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) && |
| 5186 | skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id], |
| 5187 | &new_crtc_state->wm.skl.plane_ddb_uv[plane_id])) |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5188 | continue; |
| 5189 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5190 | plane_state = intel_atomic_get_plane_state(state, plane); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5191 | if (IS_ERR(plane_state)) |
| 5192 | return PTR_ERR(plane_state); |
Maarten Lankhorst | 1ab554b | 2018-10-22 15:51:52 +0200 | [diff] [blame] | 5193 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5194 | new_crtc_state->update_planes |= BIT(plane_id); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5195 | } |
| 5196 | |
| 5197 | return 0; |
| 5198 | } |
| 5199 | |
| 5200 | static int |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5201 | skl_compute_ddb(struct intel_atomic_state *state) |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5202 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5203 | const struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
| 5204 | struct skl_ddb_allocation *ddb = &state->wm_results.ddb; |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5205 | struct intel_crtc_state *old_crtc_state; |
| 5206 | struct intel_crtc_state *new_crtc_state; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5207 | struct intel_crtc *crtc; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5208 | int ret, i; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5209 | |
Paulo Zanoni | 5a920b8 | 2016-10-04 14:37:32 -0300 | [diff] [blame] | 5210 | memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb)); |
| 5211 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5212 | for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state, |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5213 | new_crtc_state, i) { |
| 5214 | ret = skl_allocate_pipe_ddb(new_crtc_state, ddb); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5215 | if (ret) |
| 5216 | return ret; |
| 5217 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5218 | ret = skl_ddb_add_affected_planes(old_crtc_state, |
| 5219 | new_crtc_state); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5220 | if (ret) |
| 5221 | return ret; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5222 | } |
| 5223 | |
| 5224 | return 0; |
| 5225 | } |
| 5226 | |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5227 | static char enast(bool enable) |
| 5228 | { |
| 5229 | return enable ? '*' : ' '; |
| 5230 | } |
| 5231 | |
Matt Roper | 2722efb | 2016-08-17 15:55:55 -0400 | [diff] [blame] | 5232 | static void |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5233 | skl_print_wm_changes(struct intel_atomic_state *state) |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5234 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5235 | struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
| 5236 | const struct intel_crtc_state *old_crtc_state; |
| 5237 | const struct intel_crtc_state *new_crtc_state; |
| 5238 | struct intel_plane *plane; |
| 5239 | struct intel_crtc *crtc; |
Maarten Lankhorst | 7570498 | 2016-11-01 12:04:10 +0100 | [diff] [blame] | 5240 | int i; |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5241 | |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5242 | if ((drm_debug & DRM_UT_KMS) == 0) |
| 5243 | return; |
| 5244 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5245 | for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state, |
| 5246 | new_crtc_state, i) { |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5247 | const struct skl_pipe_wm *old_pipe_wm, *new_pipe_wm; |
| 5248 | |
| 5249 | old_pipe_wm = &old_crtc_state->wm.skl.optimal; |
| 5250 | new_pipe_wm = &new_crtc_state->wm.skl.optimal; |
| 5251 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5252 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5253 | enum plane_id plane_id = plane->id; |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5254 | const struct skl_ddb_entry *old, *new; |
| 5255 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5256 | old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id]; |
| 5257 | new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id]; |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5258 | |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5259 | if (skl_ddb_entry_equal(old, new)) |
| 5260 | continue; |
| 5261 | |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5262 | DRM_DEBUG_KMS("[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n", |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5263 | plane->base.base.id, plane->base.name, |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5264 | old->start, old->end, new->start, new->end, |
| 5265 | skl_ddb_entry_size(old), skl_ddb_entry_size(new)); |
| 5266 | } |
| 5267 | |
| 5268 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5269 | enum plane_id plane_id = plane->id; |
| 5270 | const struct skl_plane_wm *old_wm, *new_wm; |
| 5271 | |
| 5272 | old_wm = &old_pipe_wm->planes[plane_id]; |
| 5273 | new_wm = &new_pipe_wm->planes[plane_id]; |
| 5274 | |
| 5275 | if (skl_plane_wm_equals(dev_priv, old_wm, new_wm)) |
| 5276 | continue; |
| 5277 | |
| 5278 | DRM_DEBUG_KMS("[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm" |
| 5279 | " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm\n", |
| 5280 | plane->base.base.id, plane->base.name, |
| 5281 | enast(old_wm->wm[0].plane_en), enast(old_wm->wm[1].plane_en), |
| 5282 | enast(old_wm->wm[2].plane_en), enast(old_wm->wm[3].plane_en), |
| 5283 | enast(old_wm->wm[4].plane_en), enast(old_wm->wm[5].plane_en), |
| 5284 | enast(old_wm->wm[6].plane_en), enast(old_wm->wm[7].plane_en), |
| 5285 | enast(old_wm->trans_wm.plane_en), |
| 5286 | enast(new_wm->wm[0].plane_en), enast(new_wm->wm[1].plane_en), |
| 5287 | enast(new_wm->wm[2].plane_en), enast(new_wm->wm[3].plane_en), |
| 5288 | enast(new_wm->wm[4].plane_en), enast(new_wm->wm[5].plane_en), |
| 5289 | enast(new_wm->wm[6].plane_en), enast(new_wm->wm[7].plane_en), |
| 5290 | enast(new_wm->trans_wm.plane_en)); |
| 5291 | |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5292 | DRM_DEBUG_KMS("[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d" |
| 5293 | " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d\n", |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5294 | plane->base.base.id, plane->base.name, |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5295 | enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].plane_res_l, |
| 5296 | enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].plane_res_l, |
| 5297 | enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].plane_res_l, |
| 5298 | enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].plane_res_l, |
| 5299 | enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].plane_res_l, |
| 5300 | enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].plane_res_l, |
| 5301 | enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].plane_res_l, |
| 5302 | enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].plane_res_l, |
| 5303 | enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.plane_res_l, |
| 5304 | |
| 5305 | enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].plane_res_l, |
| 5306 | enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].plane_res_l, |
| 5307 | enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].plane_res_l, |
| 5308 | enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].plane_res_l, |
| 5309 | enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].plane_res_l, |
| 5310 | enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].plane_res_l, |
| 5311 | enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].plane_res_l, |
| 5312 | enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].plane_res_l, |
| 5313 | enast(new_wm->trans_wm.ignore_lines), new_wm->trans_wm.plane_res_l); |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5314 | |
| 5315 | DRM_DEBUG_KMS("[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d" |
| 5316 | " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n", |
| 5317 | plane->base.base.id, plane->base.name, |
| 5318 | old_wm->wm[0].plane_res_b, old_wm->wm[1].plane_res_b, |
| 5319 | old_wm->wm[2].plane_res_b, old_wm->wm[3].plane_res_b, |
| 5320 | old_wm->wm[4].plane_res_b, old_wm->wm[5].plane_res_b, |
| 5321 | old_wm->wm[6].plane_res_b, old_wm->wm[7].plane_res_b, |
| 5322 | old_wm->trans_wm.plane_res_b, |
| 5323 | new_wm->wm[0].plane_res_b, new_wm->wm[1].plane_res_b, |
| 5324 | new_wm->wm[2].plane_res_b, new_wm->wm[3].plane_res_b, |
| 5325 | new_wm->wm[4].plane_res_b, new_wm->wm[5].plane_res_b, |
| 5326 | new_wm->wm[6].plane_res_b, new_wm->wm[7].plane_res_b, |
| 5327 | new_wm->trans_wm.plane_res_b); |
| 5328 | |
| 5329 | DRM_DEBUG_KMS("[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d" |
| 5330 | " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n", |
| 5331 | plane->base.base.id, plane->base.name, |
| 5332 | old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc, |
| 5333 | old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc, |
| 5334 | old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc, |
| 5335 | old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc, |
| 5336 | old_wm->trans_wm.min_ddb_alloc, |
| 5337 | new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc, |
| 5338 | new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc, |
| 5339 | new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc, |
| 5340 | new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc, |
| 5341 | new_wm->trans_wm.min_ddb_alloc); |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5342 | } |
| 5343 | } |
| 5344 | } |
| 5345 | |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5346 | static int intel_add_all_pipes(struct intel_atomic_state *state) |
| 5347 | { |
| 5348 | struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
| 5349 | struct intel_crtc *crtc; |
| 5350 | |
| 5351 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 5352 | struct intel_crtc_state *crtc_state; |
| 5353 | |
| 5354 | crtc_state = intel_atomic_get_crtc_state(&state->base, crtc); |
| 5355 | if (IS_ERR(crtc_state)) |
| 5356 | return PTR_ERR(crtc_state); |
| 5357 | } |
| 5358 | |
| 5359 | return 0; |
| 5360 | } |
| 5361 | |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5362 | static int |
Ville Syrjälä | d7a1458 | 2019-10-11 23:09:42 +0300 | [diff] [blame] | 5363 | skl_ddb_add_affected_pipes(struct intel_atomic_state *state) |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5364 | { |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5365 | struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
Ville Syrjälä | d7a1458 | 2019-10-11 23:09:42 +0300 | [diff] [blame] | 5366 | int ret; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5367 | |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5368 | /* |
| 5369 | * If this is our first atomic update following hardware readout, |
| 5370 | * we can't trust the DDB that the BIOS programmed for us. Let's |
| 5371 | * pretend that all pipes switched active status so that we'll |
| 5372 | * ensure a full DDB recompute. |
| 5373 | */ |
| 5374 | if (dev_priv->wm.distrust_bios_wm) { |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5375 | ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex, |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5376 | state->base.acquire_ctx); |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5377 | if (ret) |
| 5378 | return ret; |
| 5379 | |
Ville Syrjälä | 8d9875b | 2019-10-11 23:09:45 +0300 | [diff] [blame] | 5380 | state->active_pipe_changes = INTEL_INFO(dev_priv)->pipe_mask; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5381 | |
| 5382 | /* |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 5383 | * We usually only initialize state->active_pipes if we |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5384 | * we're doing a modeset; make sure this field is always |
| 5385 | * initialized during the sanitization process that happens |
| 5386 | * on the first commit too. |
| 5387 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5388 | if (!state->modeset) |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 5389 | state->active_pipes = dev_priv->active_pipes; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5390 | } |
| 5391 | |
| 5392 | /* |
| 5393 | * If the modeset changes which CRTC's are active, we need to |
| 5394 | * recompute the DDB allocation for *all* active pipes, even |
| 5395 | * those that weren't otherwise being modified in any way by this |
| 5396 | * atomic commit. Due to the shrinking of the per-pipe allocations |
| 5397 | * when new active CRTC's are added, it's possible for a pipe that |
| 5398 | * we were already using and aren't changing at all here to suddenly |
| 5399 | * become invalid if its DDB needs exceeds its new allocation. |
| 5400 | * |
| 5401 | * Note that if we wind up doing a full DDB recompute, we can't let |
| 5402 | * any other display updates race with this transaction, so we need |
| 5403 | * to grab the lock on *all* CRTC's. |
| 5404 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5405 | if (state->active_pipe_changes || state->modeset) { |
Ville Syrjälä | 8d9875b | 2019-10-11 23:09:45 +0300 | [diff] [blame] | 5406 | state->wm_results.dirty_pipes = INTEL_INFO(dev_priv)->pipe_mask; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5407 | |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5408 | ret = intel_add_all_pipes(state); |
| 5409 | if (ret) |
| 5410 | return ret; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5411 | } |
| 5412 | |
| 5413 | return 0; |
| 5414 | } |
| 5415 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5416 | /* |
| 5417 | * To make sure the cursor watermark registers are always consistent |
| 5418 | * with our computed state the following scenario needs special |
| 5419 | * treatment: |
| 5420 | * |
| 5421 | * 1. enable cursor |
| 5422 | * 2. move cursor entirely offscreen |
| 5423 | * 3. disable cursor |
| 5424 | * |
| 5425 | * Step 2. does call .disable_plane() but does not zero the watermarks |
| 5426 | * (since we consider an offscreen cursor still active for the purposes |
| 5427 | * of watermarks). Step 3. would not normally call .disable_plane() |
| 5428 | * because the actual plane visibility isn't changing, and we don't |
| 5429 | * deallocate the cursor ddb until the pipe gets disabled. So we must |
| 5430 | * force step 3. to call .disable_plane() to update the watermark |
| 5431 | * registers properly. |
| 5432 | * |
| 5433 | * Other planes do not suffer from this issues as their watermarks are |
| 5434 | * calculated based on the actual plane visibility. The only time this |
| 5435 | * can trigger for the other planes is during the initial readout as the |
| 5436 | * default value of the watermarks registers is not zero. |
| 5437 | */ |
| 5438 | static int skl_wm_add_affected_planes(struct intel_atomic_state *state, |
| 5439 | struct intel_crtc *crtc) |
| 5440 | { |
| 5441 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5442 | const struct intel_crtc_state *old_crtc_state = |
| 5443 | intel_atomic_get_old_crtc_state(state, crtc); |
| 5444 | struct intel_crtc_state *new_crtc_state = |
| 5445 | intel_atomic_get_new_crtc_state(state, crtc); |
| 5446 | struct intel_plane *plane; |
| 5447 | |
| 5448 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5449 | struct intel_plane_state *plane_state; |
| 5450 | enum plane_id plane_id = plane->id; |
| 5451 | |
| 5452 | /* |
| 5453 | * Force a full wm update for every plane on modeset. |
| 5454 | * Required because the reset value of the wm registers |
| 5455 | * is non-zero, whereas we want all disabled planes to |
| 5456 | * have zero watermarks. So if we turn off the relevant |
| 5457 | * power well the hardware state will go out of sync |
| 5458 | * with the software state. |
| 5459 | */ |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5460 | if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi) && |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5461 | skl_plane_wm_equals(dev_priv, |
| 5462 | &old_crtc_state->wm.skl.optimal.planes[plane_id], |
| 5463 | &new_crtc_state->wm.skl.optimal.planes[plane_id])) |
| 5464 | continue; |
| 5465 | |
| 5466 | plane_state = intel_atomic_get_plane_state(state, plane); |
| 5467 | if (IS_ERR(plane_state)) |
| 5468 | return PTR_ERR(plane_state); |
| 5469 | |
| 5470 | new_crtc_state->update_planes |= BIT(plane_id); |
| 5471 | } |
| 5472 | |
| 5473 | return 0; |
| 5474 | } |
| 5475 | |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5476 | static int |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5477 | skl_compute_wm(struct intel_atomic_state *state) |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5478 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5479 | struct intel_crtc *crtc; |
Ville Syrjälä | 8cac9fd | 2019-03-12 22:58:44 +0200 | [diff] [blame] | 5480 | struct intel_crtc_state *new_crtc_state; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5481 | struct intel_crtc_state *old_crtc_state; |
| 5482 | struct skl_ddb_values *results = &state->wm_results; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5483 | int ret, i; |
| 5484 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5485 | /* Clear all dirty flags */ |
| 5486 | results->dirty_pipes = 0; |
| 5487 | |
Ville Syrjälä | d7a1458 | 2019-10-11 23:09:42 +0300 | [diff] [blame] | 5488 | ret = skl_ddb_add_affected_pipes(state); |
| 5489 | if (ret) |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5490 | return ret; |
| 5491 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5492 | /* |
| 5493 | * Calculate WM's for all pipes that are part of this transaction. |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 5494 | * Note that skl_ddb_add_affected_pipes may have added more CRTC's that |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5495 | * weren't otherwise being modified (and set bits in dirty_pipes) if |
| 5496 | * pipe allocations had to change. |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5497 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5498 | for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state, |
Ville Syrjälä | 8cac9fd | 2019-03-12 22:58:44 +0200 | [diff] [blame] | 5499 | new_crtc_state, i) { |
| 5500 | ret = skl_build_pipe_wm(new_crtc_state); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5501 | if (ret) |
| 5502 | return ret; |
| 5503 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5504 | ret = skl_wm_add_affected_planes(state, crtc); |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5505 | if (ret) |
| 5506 | return ret; |
| 5507 | |
Ville Syrjälä | 8cac9fd | 2019-03-12 22:58:44 +0200 | [diff] [blame] | 5508 | if (!skl_pipe_wm_equals(crtc, |
| 5509 | &old_crtc_state->wm.skl.optimal, |
| 5510 | &new_crtc_state->wm.skl.optimal)) |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5511 | results->dirty_pipes |= BIT(crtc->pipe); |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5512 | } |
| 5513 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 5514 | ret = skl_compute_ddb(state); |
| 5515 | if (ret) |
| 5516 | return ret; |
| 5517 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5518 | skl_print_wm_changes(state); |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5519 | |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5520 | return 0; |
| 5521 | } |
| 5522 | |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5523 | static void skl_atomic_update_crtc_wm(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5524 | struct intel_crtc *crtc) |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5525 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5526 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5527 | const struct intel_crtc_state *crtc_state = |
| 5528 | intel_atomic_get_new_crtc_state(state, crtc); |
| 5529 | const struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal; |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5530 | enum pipe pipe = crtc->pipe; |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 5531 | |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5532 | if ((state->wm_results.dirty_pipes & BIT(crtc->pipe)) == 0) |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 5533 | return; |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5534 | |
| 5535 | I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime); |
| 5536 | } |
| 5537 | |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 5538 | static void skl_initial_wm(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5539 | struct intel_crtc *crtc) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5540 | { |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5541 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5542 | const struct intel_crtc_state *crtc_state = |
| 5543 | intel_atomic_get_new_crtc_state(state, crtc); |
Mahesh Kumar | 60f8e87 | 2018-04-09 09:11:00 +0530 | [diff] [blame] | 5544 | struct skl_ddb_values *results = &state->wm_results; |
Bob Paauwe | adda50b | 2015-07-21 10:42:53 -0700 | [diff] [blame] | 5545 | |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5546 | if ((results->dirty_pipes & BIT(crtc->pipe)) == 0) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5547 | return; |
| 5548 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5549 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 5550 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5551 | if (crtc_state->uapi.active_changed) |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5552 | skl_atomic_update_crtc_wm(state, crtc); |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5553 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5554 | mutex_unlock(&dev_priv->wm.wm_mutex); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5555 | } |
| 5556 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5557 | static void ilk_compute_wm_config(struct drm_i915_private *dev_priv, |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5558 | struct intel_wm_config *config) |
| 5559 | { |
| 5560 | struct intel_crtc *crtc; |
| 5561 | |
| 5562 | /* Compute the currently _active_ config */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5563 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5564 | const struct intel_pipe_wm *wm = &crtc->wm.active.ilk; |
| 5565 | |
| 5566 | if (!wm->pipe_enabled) |
| 5567 | continue; |
| 5568 | |
| 5569 | config->sprites_enabled |= wm->sprites_enabled; |
| 5570 | config->sprites_scaled |= wm->sprites_scaled; |
| 5571 | config->num_pipes_active++; |
| 5572 | } |
| 5573 | } |
| 5574 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5575 | static void ilk_program_watermarks(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 5576 | { |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5577 | struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5578 | struct ilk_wm_maximums max; |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5579 | struct intel_wm_config config = {}; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5580 | struct ilk_wm_values results = {}; |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 5581 | enum intel_ddb_partitioning partitioning; |
Matt Roper | 261a27d | 2015-10-08 15:28:25 -0700 | [diff] [blame] | 5582 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5583 | ilk_compute_wm_config(dev_priv, &config); |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5584 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5585 | ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max); |
| 5586 | ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2); |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 5587 | |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 5588 | /* 5/6 split only in single pipe config on IVB+ */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 5589 | if (INTEL_GEN(dev_priv) >= 7 && |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5590 | config.num_pipes_active == 1 && config.sprites_enabled) { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5591 | ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max); |
| 5592 | ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6); |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 5593 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5594 | best_lp_wm = ilk_find_best_result(dev_priv, &lp_wm_1_2, &lp_wm_5_6); |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 5595 | } else { |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 5596 | best_lp_wm = &lp_wm_1_2; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 5597 | } |
| 5598 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 5599 | partitioning = (best_lp_wm == &lp_wm_1_2) ? |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 5600 | INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 5601 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5602 | ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 5603 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5604 | ilk_write_wm_values(dev_priv, &results); |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 5605 | } |
| 5606 | |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5607 | static void ilk_initial_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5608 | struct intel_crtc *crtc) |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5609 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5610 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5611 | const struct intel_crtc_state *crtc_state = |
| 5612 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5613 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5614 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 5615 | crtc->wm.active.ilk = crtc_state->wm.ilk.intermediate; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5616 | ilk_program_watermarks(dev_priv); |
| 5617 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 5618 | } |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5619 | |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5620 | static void ilk_optimize_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5621 | struct intel_crtc *crtc) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5622 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5623 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5624 | const struct intel_crtc_state *crtc_state = |
| 5625 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 5626 | |
| 5627 | if (!crtc_state->wm.need_postvbl_update) |
| 5628 | return; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5629 | |
| 5630 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 5631 | crtc->wm.active.ilk = crtc_state->wm.ilk.optimal; |
| 5632 | ilk_program_watermarks(dev_priv); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5633 | mutex_unlock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5634 | } |
| 5635 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5636 | static inline void skl_wm_level_from_reg_val(u32 val, |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5637 | struct skl_wm_level *level) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5638 | { |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5639 | level->plane_en = val & PLANE_WM_EN; |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5640 | level->ignore_lines = val & PLANE_WM_IGNORE_LINES; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5641 | level->plane_res_b = val & PLANE_WM_BLOCKS_MASK; |
| 5642 | level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) & |
| 5643 | PLANE_WM_LINES_MASK; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5644 | } |
| 5645 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5646 | void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc, |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5647 | struct skl_pipe_wm *out) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5648 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5649 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5650 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5651 | int level, max_level; |
| 5652 | enum plane_id plane_id; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5653 | u32 val; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5654 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5655 | max_level = ilk_wm_max_level(dev_priv); |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5656 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5657 | for_each_plane_id_on_crtc(crtc, plane_id) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5658 | struct skl_plane_wm *wm = &out->planes[plane_id]; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5659 | |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5660 | for (level = 0; level <= max_level; level++) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5661 | if (plane_id != PLANE_CURSOR) |
| 5662 | val = I915_READ(PLANE_WM(pipe, plane_id, level)); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5663 | else |
| 5664 | val = I915_READ(CUR_WM(pipe, level)); |
| 5665 | |
| 5666 | skl_wm_level_from_reg_val(val, &wm->wm[level]); |
| 5667 | } |
| 5668 | |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5669 | if (plane_id != PLANE_CURSOR) |
| 5670 | val = I915_READ(PLANE_WM_TRANS(pipe, plane_id)); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5671 | else |
| 5672 | val = I915_READ(CUR_WM_TRANS(pipe)); |
| 5673 | |
| 5674 | skl_wm_level_from_reg_val(val, &wm->trans_wm); |
| 5675 | } |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5676 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5677 | if (!crtc->active) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5678 | return; |
| 5679 | |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5680 | out->linetime = I915_READ(PIPE_WM_LINETIME(pipe)); |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5681 | } |
| 5682 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5683 | void skl_wm_get_hw_state(struct drm_i915_private *dev_priv) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5684 | { |
Mahesh Kumar | 60f8e87 | 2018-04-09 09:11:00 +0530 | [diff] [blame] | 5685 | struct skl_ddb_values *hw = &dev_priv->wm.skl_hw; |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 5686 | struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5687 | struct intel_crtc *crtc; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5688 | struct intel_crtc_state *crtc_state; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5689 | |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 5690 | skl_ddb_get_hw_state(dev_priv, ddb); |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5691 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5692 | crtc_state = to_intel_crtc_state(crtc->base.state); |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5693 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5694 | skl_pipe_wm_get_hw_state(crtc, &crtc_state->wm.skl.optimal); |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5695 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5696 | if (crtc->active) |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5697 | hw->dirty_pipes |= BIT(crtc->pipe); |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5698 | } |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 5699 | |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 5700 | if (dev_priv->active_pipes) { |
Matt Roper | 279e99d | 2016-05-12 07:06:02 -0700 | [diff] [blame] | 5701 | /* Fully recompute DDB on first atomic commit */ |
| 5702 | dev_priv->wm.distrust_bios_wm = true; |
Matt Roper | 279e99d | 2016-05-12 07:06:02 -0700 | [diff] [blame] | 5703 | } |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5704 | } |
| 5705 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5706 | static void ilk_pipe_wm_get_hw_state(struct intel_crtc *crtc) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5707 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5708 | struct drm_device *dev = crtc->base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 5709 | struct drm_i915_private *dev_priv = to_i915(dev); |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5710 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5711 | struct intel_crtc_state *crtc_state = to_intel_crtc_state(crtc->base.state); |
| 5712 | struct intel_pipe_wm *active = &crtc_state->wm.ilk.optimal; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5713 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 5714 | static const i915_reg_t wm0_pipe_reg[] = { |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5715 | [PIPE_A] = WM0_PIPEA_ILK, |
| 5716 | [PIPE_B] = WM0_PIPEB_ILK, |
| 5717 | [PIPE_C] = WM0_PIPEC_IVB, |
| 5718 | }; |
| 5719 | |
| 5720 | hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]); |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 5721 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | ce0e071 | 2013-12-05 15:51:36 +0200 | [diff] [blame] | 5722 | hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe)); |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5723 | |
Ville Syrjälä | 1560653 | 2016-05-13 17:55:17 +0300 | [diff] [blame] | 5724 | memset(active, 0, sizeof(*active)); |
| 5725 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5726 | active->pipe_enabled = crtc->active; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 5727 | |
| 5728 | if (active->pipe_enabled) { |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5729 | u32 tmp = hw->wm_pipe[pipe]; |
| 5730 | |
| 5731 | /* |
| 5732 | * For active pipes LP0 watermark is marked as |
| 5733 | * enabled, and LP1+ watermaks as disabled since |
| 5734 | * we can't really reverse compute them in case |
| 5735 | * multiple pipes are active. |
| 5736 | */ |
| 5737 | active->wm[0].enable = true; |
| 5738 | active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT; |
| 5739 | active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT; |
| 5740 | active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK; |
| 5741 | active->linetime = hw->wm_linetime[pipe]; |
| 5742 | } else { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5743 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5744 | |
| 5745 | /* |
| 5746 | * For inactive pipes, all watermark levels |
| 5747 | * should be marked as enabled but zeroed, |
| 5748 | * which is what we'd compute them to. |
| 5749 | */ |
| 5750 | for (level = 0; level <= max_level; level++) |
| 5751 | active->wm[level].enable = true; |
| 5752 | } |
Matt Roper | 4e0963c | 2015-09-24 15:53:15 -0700 | [diff] [blame] | 5753 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5754 | crtc->wm.active.ilk = *active; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5755 | } |
| 5756 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5757 | #define _FW_WM(value, plane) \ |
| 5758 | (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT) |
| 5759 | #define _FW_WM_VLV(value, plane) \ |
| 5760 | (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT) |
| 5761 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5762 | static void g4x_read_wm_values(struct drm_i915_private *dev_priv, |
| 5763 | struct g4x_wm_values *wm) |
| 5764 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5765 | u32 tmp; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5766 | |
| 5767 | tmp = I915_READ(DSPFW1); |
| 5768 | wm->sr.plane = _FW_WM(tmp, SR); |
| 5769 | wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB); |
| 5770 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB); |
| 5771 | wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA); |
| 5772 | |
| 5773 | tmp = I915_READ(DSPFW2); |
| 5774 | wm->fbc_en = tmp & DSPFW_FBC_SR_EN; |
| 5775 | wm->sr.fbc = _FW_WM(tmp, FBC_SR); |
| 5776 | wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR); |
| 5777 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB); |
| 5778 | wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA); |
| 5779 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA); |
| 5780 | |
| 5781 | tmp = I915_READ(DSPFW3); |
| 5782 | wm->hpll_en = tmp & DSPFW_HPLL_SR_EN; |
| 5783 | wm->sr.cursor = _FW_WM(tmp, CURSOR_SR); |
| 5784 | wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR); |
| 5785 | wm->hpll.plane = _FW_WM(tmp, HPLL_SR); |
| 5786 | } |
| 5787 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5788 | static void vlv_read_wm_values(struct drm_i915_private *dev_priv, |
| 5789 | struct vlv_wm_values *wm) |
| 5790 | { |
| 5791 | enum pipe pipe; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5792 | u32 tmp; |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5793 | |
| 5794 | for_each_pipe(dev_priv, pipe) { |
| 5795 | tmp = I915_READ(VLV_DDL(pipe)); |
| 5796 | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5797 | wm->ddl[pipe].plane[PLANE_PRIMARY] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5798 | (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5799 | wm->ddl[pipe].plane[PLANE_CURSOR] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5800 | (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5801 | wm->ddl[pipe].plane[PLANE_SPRITE0] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5802 | (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5803 | wm->ddl[pipe].plane[PLANE_SPRITE1] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5804 | (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
| 5805 | } |
| 5806 | |
| 5807 | tmp = I915_READ(DSPFW1); |
| 5808 | wm->sr.plane = _FW_WM(tmp, SR); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5809 | wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB); |
| 5810 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB); |
| 5811 | wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEA); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5812 | |
| 5813 | tmp = I915_READ(DSPFW2); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5814 | wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB); |
| 5815 | wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA); |
| 5816 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEA); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5817 | |
| 5818 | tmp = I915_READ(DSPFW3); |
| 5819 | wm->sr.cursor = _FW_WM(tmp, CURSOR_SR); |
| 5820 | |
| 5821 | if (IS_CHERRYVIEW(dev_priv)) { |
| 5822 | tmp = I915_READ(DSPFW7_CHV); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5823 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED); |
| 5824 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5825 | |
| 5826 | tmp = I915_READ(DSPFW8_CHV); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5827 | wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF); |
| 5828 | wm->pipe[PIPE_C].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEE); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5829 | |
| 5830 | tmp = I915_READ(DSPFW9_CHV); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5831 | wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC); |
| 5832 | wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5833 | |
| 5834 | tmp = I915_READ(DSPHOWM); |
| 5835 | wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9; |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5836 | wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8; |
| 5837 | wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8; |
| 5838 | wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8; |
| 5839 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8; |
| 5840 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8; |
| 5841 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8; |
| 5842 | wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8; |
| 5843 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8; |
| 5844 | wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8; |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5845 | } else { |
| 5846 | tmp = I915_READ(DSPFW7); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5847 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED); |
| 5848 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM_VLV(tmp, SPRITEC); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5849 | |
| 5850 | tmp = I915_READ(DSPHOWM); |
| 5851 | wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9; |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5852 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8; |
| 5853 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8; |
| 5854 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8; |
| 5855 | wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8; |
| 5856 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8; |
| 5857 | wm->pipe[PIPE_A].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEA_HI) << 8; |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5858 | } |
| 5859 | } |
| 5860 | |
| 5861 | #undef _FW_WM |
| 5862 | #undef _FW_WM_VLV |
| 5863 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5864 | void g4x_wm_get_hw_state(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5865 | { |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5866 | struct g4x_wm_values *wm = &dev_priv->wm.g4x; |
| 5867 | struct intel_crtc *crtc; |
| 5868 | |
| 5869 | g4x_read_wm_values(dev_priv, wm); |
| 5870 | |
| 5871 | wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
| 5872 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5873 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5874 | struct intel_crtc_state *crtc_state = |
| 5875 | to_intel_crtc_state(crtc->base.state); |
| 5876 | struct g4x_wm_state *active = &crtc->wm.active.g4x; |
| 5877 | struct g4x_pipe_wm *raw; |
| 5878 | enum pipe pipe = crtc->pipe; |
| 5879 | enum plane_id plane_id; |
| 5880 | int level, max_level; |
| 5881 | |
| 5882 | active->cxsr = wm->cxsr; |
| 5883 | active->hpll_en = wm->hpll_en; |
| 5884 | active->fbc_en = wm->fbc_en; |
| 5885 | |
| 5886 | active->sr = wm->sr; |
| 5887 | active->hpll = wm->hpll; |
| 5888 | |
| 5889 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 5890 | active->wm.plane[plane_id] = |
| 5891 | wm->pipe[pipe].plane[plane_id]; |
| 5892 | } |
| 5893 | |
| 5894 | if (wm->cxsr && wm->hpll_en) |
| 5895 | max_level = G4X_WM_LEVEL_HPLL; |
| 5896 | else if (wm->cxsr) |
| 5897 | max_level = G4X_WM_LEVEL_SR; |
| 5898 | else |
| 5899 | max_level = G4X_WM_LEVEL_NORMAL; |
| 5900 | |
| 5901 | level = G4X_WM_LEVEL_NORMAL; |
| 5902 | raw = &crtc_state->wm.g4x.raw[level]; |
| 5903 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 5904 | raw->plane[plane_id] = active->wm.plane[plane_id]; |
| 5905 | |
| 5906 | if (++level > max_level) |
| 5907 | goto out; |
| 5908 | |
| 5909 | raw = &crtc_state->wm.g4x.raw[level]; |
| 5910 | raw->plane[PLANE_PRIMARY] = active->sr.plane; |
| 5911 | raw->plane[PLANE_CURSOR] = active->sr.cursor; |
| 5912 | raw->plane[PLANE_SPRITE0] = 0; |
| 5913 | raw->fbc = active->sr.fbc; |
| 5914 | |
| 5915 | if (++level > max_level) |
| 5916 | goto out; |
| 5917 | |
| 5918 | raw = &crtc_state->wm.g4x.raw[level]; |
| 5919 | raw->plane[PLANE_PRIMARY] = active->hpll.plane; |
| 5920 | raw->plane[PLANE_CURSOR] = active->hpll.cursor; |
| 5921 | raw->plane[PLANE_SPRITE0] = 0; |
| 5922 | raw->fbc = active->hpll.fbc; |
| 5923 | |
| 5924 | out: |
| 5925 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 5926 | g4x_raw_plane_wm_set(crtc_state, level, |
| 5927 | plane_id, USHRT_MAX); |
| 5928 | g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX); |
| 5929 | |
| 5930 | crtc_state->wm.g4x.optimal = *active; |
| 5931 | crtc_state->wm.g4x.intermediate = *active; |
| 5932 | |
| 5933 | DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n", |
| 5934 | pipe_name(pipe), |
| 5935 | wm->pipe[pipe].plane[PLANE_PRIMARY], |
| 5936 | wm->pipe[pipe].plane[PLANE_CURSOR], |
| 5937 | wm->pipe[pipe].plane[PLANE_SPRITE0]); |
| 5938 | } |
| 5939 | |
| 5940 | DRM_DEBUG_KMS("Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n", |
| 5941 | wm->sr.plane, wm->sr.cursor, wm->sr.fbc); |
| 5942 | DRM_DEBUG_KMS("Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n", |
| 5943 | wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc); |
| 5944 | DRM_DEBUG_KMS("Initial SR=%s HPLL=%s FBC=%s\n", |
| 5945 | yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en)); |
| 5946 | } |
| 5947 | |
| 5948 | void g4x_wm_sanitize(struct drm_i915_private *dev_priv) |
| 5949 | { |
| 5950 | struct intel_plane *plane; |
| 5951 | struct intel_crtc *crtc; |
| 5952 | |
| 5953 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 5954 | |
| 5955 | for_each_intel_plane(&dev_priv->drm, plane) { |
| 5956 | struct intel_crtc *crtc = |
| 5957 | intel_get_crtc_for_pipe(dev_priv, plane->pipe); |
| 5958 | struct intel_crtc_state *crtc_state = |
| 5959 | to_intel_crtc_state(crtc->base.state); |
| 5960 | struct intel_plane_state *plane_state = |
| 5961 | to_intel_plane_state(plane->base.state); |
| 5962 | struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal; |
| 5963 | enum plane_id plane_id = plane->id; |
| 5964 | int level; |
| 5965 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 5966 | if (plane_state->uapi.visible) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5967 | continue; |
| 5968 | |
| 5969 | for (level = 0; level < 3; level++) { |
| 5970 | struct g4x_pipe_wm *raw = |
| 5971 | &crtc_state->wm.g4x.raw[level]; |
| 5972 | |
| 5973 | raw->plane[plane_id] = 0; |
| 5974 | wm_state->wm.plane[plane_id] = 0; |
| 5975 | } |
| 5976 | |
| 5977 | if (plane_id == PLANE_PRIMARY) { |
| 5978 | for (level = 0; level < 3; level++) { |
| 5979 | struct g4x_pipe_wm *raw = |
| 5980 | &crtc_state->wm.g4x.raw[level]; |
| 5981 | raw->fbc = 0; |
| 5982 | } |
| 5983 | |
| 5984 | wm_state->sr.fbc = 0; |
| 5985 | wm_state->hpll.fbc = 0; |
| 5986 | wm_state->fbc_en = false; |
| 5987 | } |
| 5988 | } |
| 5989 | |
| 5990 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 5991 | struct intel_crtc_state *crtc_state = |
| 5992 | to_intel_crtc_state(crtc->base.state); |
| 5993 | |
| 5994 | crtc_state->wm.g4x.intermediate = |
| 5995 | crtc_state->wm.g4x.optimal; |
| 5996 | crtc->wm.active.g4x = crtc_state->wm.g4x.optimal; |
| 5997 | } |
| 5998 | |
| 5999 | g4x_program_watermarks(dev_priv); |
| 6000 | |
| 6001 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 6002 | } |
| 6003 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6004 | void vlv_wm_get_hw_state(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6005 | { |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6006 | struct vlv_wm_values *wm = &dev_priv->wm.vlv; |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 6007 | struct intel_crtc *crtc; |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6008 | u32 val; |
| 6009 | |
| 6010 | vlv_read_wm_values(dev_priv, wm); |
| 6011 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6012 | wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN; |
| 6013 | wm->level = VLV_WM_LEVEL_PM2; |
| 6014 | |
| 6015 | if (IS_CHERRYVIEW(dev_priv)) { |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 6016 | vlv_punit_get(dev_priv); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6017 | |
Ville Syrjälä | c11b813 | 2018-11-29 19:55:03 +0200 | [diff] [blame] | 6018 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6019 | if (val & DSP_MAXFIFO_PM5_ENABLE) |
| 6020 | wm->level = VLV_WM_LEVEL_PM5; |
| 6021 | |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 6022 | /* |
| 6023 | * If DDR DVFS is disabled in the BIOS, Punit |
| 6024 | * will never ack the request. So if that happens |
| 6025 | * assume we don't have to enable/disable DDR DVFS |
| 6026 | * dynamically. To test that just set the REQ_ACK |
| 6027 | * bit to poke the Punit, but don't change the |
| 6028 | * HIGH/LOW bits so that we don't actually change |
| 6029 | * the current state. |
| 6030 | */ |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6031 | val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2); |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 6032 | val |= FORCE_DDR_FREQ_REQ_ACK; |
| 6033 | vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val); |
| 6034 | |
| 6035 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) & |
| 6036 | FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) { |
| 6037 | DRM_DEBUG_KMS("Punit not acking DDR DVFS request, " |
| 6038 | "assuming DDR DVFS is disabled\n"); |
| 6039 | dev_priv->wm.max_level = VLV_WM_LEVEL_PM5; |
| 6040 | } else { |
| 6041 | val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2); |
| 6042 | if ((val & FORCE_DDR_HIGH_FREQ) == 0) |
| 6043 | wm->level = VLV_WM_LEVEL_DDR_DVFS; |
| 6044 | } |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6045 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 6046 | vlv_punit_put(dev_priv); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6047 | } |
| 6048 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6049 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6050 | struct intel_crtc_state *crtc_state = |
| 6051 | to_intel_crtc_state(crtc->base.state); |
| 6052 | struct vlv_wm_state *active = &crtc->wm.active.vlv; |
| 6053 | const struct vlv_fifo_state *fifo_state = |
| 6054 | &crtc_state->wm.vlv.fifo_state; |
| 6055 | enum pipe pipe = crtc->pipe; |
| 6056 | enum plane_id plane_id; |
| 6057 | int level; |
| 6058 | |
| 6059 | vlv_get_fifo_size(crtc_state); |
| 6060 | |
| 6061 | active->num_levels = wm->level + 1; |
| 6062 | active->cxsr = wm->cxsr; |
| 6063 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6064 | for (level = 0; level < active->num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 6065 | struct g4x_pipe_wm *raw = |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6066 | &crtc_state->wm.vlv.raw[level]; |
| 6067 | |
| 6068 | active->sr[level].plane = wm->sr.plane; |
| 6069 | active->sr[level].cursor = wm->sr.cursor; |
| 6070 | |
| 6071 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 6072 | active->wm[level].plane[plane_id] = |
| 6073 | wm->pipe[pipe].plane[plane_id]; |
| 6074 | |
| 6075 | raw->plane[plane_id] = |
| 6076 | vlv_invert_wm_value(active->wm[level].plane[plane_id], |
| 6077 | fifo_state->plane[plane_id]); |
| 6078 | } |
| 6079 | } |
| 6080 | |
| 6081 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 6082 | vlv_raw_plane_wm_set(crtc_state, level, |
| 6083 | plane_id, USHRT_MAX); |
| 6084 | vlv_invalidate_wms(crtc, active, level); |
| 6085 | |
| 6086 | crtc_state->wm.vlv.optimal = *active; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 6087 | crtc_state->wm.vlv.intermediate = *active; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6088 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6089 | DRM_DEBUG_KMS("Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n", |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 6090 | pipe_name(pipe), |
| 6091 | wm->pipe[pipe].plane[PLANE_PRIMARY], |
| 6092 | wm->pipe[pipe].plane[PLANE_CURSOR], |
| 6093 | wm->pipe[pipe].plane[PLANE_SPRITE0], |
| 6094 | wm->pipe[pipe].plane[PLANE_SPRITE1]); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6095 | } |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6096 | |
| 6097 | DRM_DEBUG_KMS("Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n", |
| 6098 | wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr); |
| 6099 | } |
| 6100 | |
Ville Syrjälä | 602ae83 | 2017-03-02 19:15:02 +0200 | [diff] [blame] | 6101 | void vlv_wm_sanitize(struct drm_i915_private *dev_priv) |
| 6102 | { |
| 6103 | struct intel_plane *plane; |
| 6104 | struct intel_crtc *crtc; |
| 6105 | |
| 6106 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 6107 | |
| 6108 | for_each_intel_plane(&dev_priv->drm, plane) { |
| 6109 | struct intel_crtc *crtc = |
| 6110 | intel_get_crtc_for_pipe(dev_priv, plane->pipe); |
| 6111 | struct intel_crtc_state *crtc_state = |
| 6112 | to_intel_crtc_state(crtc->base.state); |
| 6113 | struct intel_plane_state *plane_state = |
| 6114 | to_intel_plane_state(plane->base.state); |
| 6115 | struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal; |
| 6116 | const struct vlv_fifo_state *fifo_state = |
| 6117 | &crtc_state->wm.vlv.fifo_state; |
| 6118 | enum plane_id plane_id = plane->id; |
| 6119 | int level; |
| 6120 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 6121 | if (plane_state->uapi.visible) |
Ville Syrjälä | 602ae83 | 2017-03-02 19:15:02 +0200 | [diff] [blame] | 6122 | continue; |
| 6123 | |
| 6124 | for (level = 0; level < wm_state->num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 6125 | struct g4x_pipe_wm *raw = |
Ville Syrjälä | 602ae83 | 2017-03-02 19:15:02 +0200 | [diff] [blame] | 6126 | &crtc_state->wm.vlv.raw[level]; |
| 6127 | |
| 6128 | raw->plane[plane_id] = 0; |
| 6129 | |
| 6130 | wm_state->wm[level].plane[plane_id] = |
| 6131 | vlv_invert_wm_value(raw->plane[plane_id], |
| 6132 | fifo_state->plane[plane_id]); |
| 6133 | } |
| 6134 | } |
| 6135 | |
| 6136 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 6137 | struct intel_crtc_state *crtc_state = |
| 6138 | to_intel_crtc_state(crtc->base.state); |
| 6139 | |
| 6140 | crtc_state->wm.vlv.intermediate = |
| 6141 | crtc_state->wm.vlv.optimal; |
| 6142 | crtc->wm.active.vlv = crtc_state->wm.vlv.optimal; |
| 6143 | } |
| 6144 | |
| 6145 | vlv_program_watermarks(dev_priv); |
| 6146 | |
| 6147 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 6148 | } |
| 6149 | |
Ville Syrjälä | f72b84c | 2017-11-08 15:35:55 +0200 | [diff] [blame] | 6150 | /* |
| 6151 | * FIXME should probably kill this and improve |
| 6152 | * the real watermark readout/sanitation instead |
| 6153 | */ |
| 6154 | static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv) |
| 6155 | { |
| 6156 | I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN); |
| 6157 | I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN); |
| 6158 | I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN); |
| 6159 | |
| 6160 | /* |
| 6161 | * Don't touch WM1S_LP_EN here. |
| 6162 | * Doing so could cause underruns. |
| 6163 | */ |
| 6164 | } |
| 6165 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6166 | void ilk_wm_get_hw_state(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6167 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 6168 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6169 | struct intel_crtc *crtc; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6170 | |
Ville Syrjälä | f72b84c | 2017-11-08 15:35:55 +0200 | [diff] [blame] | 6171 | ilk_init_lp_watermarks(dev_priv); |
| 6172 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6173 | for_each_intel_crtc(&dev_priv->drm, crtc) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6174 | ilk_pipe_wm_get_hw_state(crtc); |
| 6175 | |
| 6176 | hw->wm_lp[0] = I915_READ(WM1_LP_ILK); |
| 6177 | hw->wm_lp[1] = I915_READ(WM2_LP_ILK); |
| 6178 | hw->wm_lp[2] = I915_READ(WM3_LP_ILK); |
| 6179 | |
| 6180 | hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK); |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 6181 | if (INTEL_GEN(dev_priv) >= 7) { |
Ville Syrjälä | cfa7698 | 2014-03-07 18:32:08 +0200 | [diff] [blame] | 6182 | hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB); |
| 6183 | hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB); |
| 6184 | } |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6185 | |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 6186 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 6187 | hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ? |
| 6188 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 6189 | else if (IS_IVYBRIDGE(dev_priv)) |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 6190 | hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ? |
| 6191 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6192 | |
| 6193 | hw->enable_fbc_wm = |
| 6194 | !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS); |
| 6195 | } |
| 6196 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6197 | /** |
| 6198 | * intel_update_watermarks - update FIFO watermark values based on current modes |
Chris Wilson | 3138341 | 2018-02-14 14:03:03 +0000 | [diff] [blame] | 6199 | * @crtc: the #intel_crtc on which to compute the WM |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6200 | * |
| 6201 | * Calculate watermark values for the various WM regs based on current mode |
| 6202 | * and plane configuration. |
| 6203 | * |
| 6204 | * There are several cases to deal with here: |
| 6205 | * - normal (i.e. non-self-refresh) |
| 6206 | * - self-refresh (SR) mode |
| 6207 | * - lines are large relative to FIFO size (buffer can hold up to 2) |
| 6208 | * - lines are small relative to FIFO size (buffer can hold more than 2 |
| 6209 | * lines), so need to account for TLB latency |
| 6210 | * |
| 6211 | * The normal calculation is: |
| 6212 | * watermark = dotclock * bytes per pixel * latency |
| 6213 | * where latency is platform & configuration dependent (we assume pessimal |
| 6214 | * values here). |
| 6215 | * |
| 6216 | * The SR calculation is: |
| 6217 | * watermark = (trunc(latency/line time)+1) * surface width * |
| 6218 | * bytes per pixel |
| 6219 | * where |
| 6220 | * line time = htotal / dotclock |
| 6221 | * surface width = hdisplay for normal plane and 64 for cursor |
| 6222 | * and latency is assumed to be high, as above. |
| 6223 | * |
| 6224 | * The final value programmed to the register should always be rounded up, |
| 6225 | * and include an extra 2 entries to account for clock crossings. |
| 6226 | * |
| 6227 | * We don't use the sprite, so we can ignore that. And on Crestline we have |
| 6228 | * to set the non-SR watermarks to 8. |
| 6229 | */ |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 6230 | void intel_update_watermarks(struct intel_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6231 | { |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 6232 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6233 | |
| 6234 | if (dev_priv->display.update_wm) |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 6235 | dev_priv->display.update_wm(crtc); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6236 | } |
| 6237 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6238 | void intel_enable_ipc(struct drm_i915_private *dev_priv) |
| 6239 | { |
| 6240 | u32 val; |
| 6241 | |
José Roberto de Souza | fd847b8 | 2018-09-18 13:47:11 -0700 | [diff] [blame] | 6242 | if (!HAS_IPC(dev_priv)) |
| 6243 | return; |
| 6244 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6245 | val = I915_READ(DISP_ARB_CTL2); |
| 6246 | |
| 6247 | if (dev_priv->ipc_enabled) |
| 6248 | val |= DISP_IPC_ENABLE; |
| 6249 | else |
| 6250 | val &= ~DISP_IPC_ENABLE; |
| 6251 | |
| 6252 | I915_WRITE(DISP_ARB_CTL2, val); |
| 6253 | } |
| 6254 | |
Ville Syrjälä | c91a45f | 2019-05-03 20:38:07 +0300 | [diff] [blame] | 6255 | static bool intel_can_enable_ipc(struct drm_i915_private *dev_priv) |
| 6256 | { |
| 6257 | /* Display WA #0477 WaDisableIPC: skl */ |
| 6258 | if (IS_SKYLAKE(dev_priv)) |
| 6259 | return false; |
| 6260 | |
| 6261 | /* Display WA #1141: SKL:all KBL:all CFL */ |
| 6262 | if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) |
| 6263 | return dev_priv->dram_info.symmetric_memory; |
| 6264 | |
| 6265 | return true; |
| 6266 | } |
| 6267 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6268 | void intel_init_ipc(struct drm_i915_private *dev_priv) |
| 6269 | { |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6270 | if (!HAS_IPC(dev_priv)) |
| 6271 | return; |
| 6272 | |
Ville Syrjälä | c91a45f | 2019-05-03 20:38:07 +0300 | [diff] [blame] | 6273 | dev_priv->ipc_enabled = intel_can_enable_ipc(dev_priv); |
José Roberto de Souza | c9b818d | 2018-09-18 13:47:13 -0700 | [diff] [blame] | 6274 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6275 | intel_enable_ipc(dev_priv); |
| 6276 | } |
| 6277 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6278 | static void ibx_init_clock_gating(struct drm_i915_private *dev_priv) |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6279 | { |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6280 | /* |
| 6281 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 6282 | * gating for the panel power sequencer or it will fail to |
| 6283 | * start up when no ports are active. |
| 6284 | */ |
| 6285 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE); |
| 6286 | } |
| 6287 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6288 | static void g4x_disable_trickle_feed(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6289 | { |
Ville Syrjälä | b12ce1d | 2015-05-26 20:27:23 +0300 | [diff] [blame] | 6290 | enum pipe pipe; |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6291 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6292 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6293 | I915_WRITE(DSPCNTR(pipe), |
| 6294 | I915_READ(DSPCNTR(pipe)) | |
| 6295 | DISPPLANE_TRICKLE_FEED_DISABLE); |
Ville Syrjälä | b12ce1d | 2015-05-26 20:27:23 +0300 | [diff] [blame] | 6296 | |
| 6297 | I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe))); |
| 6298 | POSTING_READ(DSPSURF(pipe)); |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6299 | } |
| 6300 | } |
| 6301 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6302 | static void ilk_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6303 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6304 | u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6305 | |
Damien Lespiau | f1e8fa5 | 2013-06-07 17:41:09 +0100 | [diff] [blame] | 6306 | /* |
| 6307 | * Required for FBC |
| 6308 | * WaFbcDisableDpfcClockGating:ilk |
| 6309 | */ |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6310 | dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE | |
| 6311 | ILK_DPFCUNIT_CLOCK_GATE_DISABLE | |
| 6312 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6313 | |
| 6314 | I915_WRITE(PCH_3DCGDIS0, |
| 6315 | MARIUNIT_CLOCK_GATE_DISABLE | |
| 6316 | SVSMUNIT_CLOCK_GATE_DISABLE); |
| 6317 | I915_WRITE(PCH_3DCGDIS1, |
| 6318 | VFMUNIT_CLOCK_GATE_DISABLE); |
| 6319 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6320 | /* |
| 6321 | * According to the spec the following bits should be set in |
| 6322 | * order to enable memory self-refresh |
| 6323 | * The bit 22/21 of 0x42004 |
| 6324 | * The bit 5 of 0x42020 |
| 6325 | * The bit 15 of 0x45000 |
| 6326 | */ |
| 6327 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6328 | (I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6329 | ILK_DPARB_GATE | ILK_VSDPFD_FULL)); |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6330 | dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6331 | I915_WRITE(DISP_ARB_CTL, |
| 6332 | (I915_READ(DISP_ARB_CTL) | |
| 6333 | DISP_FBC_WM_DIS)); |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6334 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6335 | /* |
| 6336 | * Based on the document from hardware guys the following bits |
| 6337 | * should be set unconditionally in order to enable FBC. |
| 6338 | * The bit 22 of 0x42000 |
| 6339 | * The bit 22 of 0x42004 |
| 6340 | * The bit 7,8,9 of 0x42020. |
| 6341 | */ |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 6342 | if (IS_IRONLAKE_M(dev_priv)) { |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 6343 | /* WaFbcAsynchFlipDisableFbcQueue:ilk */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6344 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 6345 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 6346 | ILK_FBCQ_DIS); |
| 6347 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6348 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6349 | ILK_DPARB_GATE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6350 | } |
| 6351 | |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6352 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
| 6353 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6354 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6355 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6356 | ILK_ELPIN_409_SELECT); |
| 6357 | I915_WRITE(_3D_CHICKEN2, |
| 6358 | _3D_CHICKEN2_WM_READ_PIPELINED << 16 | |
| 6359 | _3D_CHICKEN2_WM_READ_PIPELINED); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6360 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6361 | /* WaDisableRenderCachePipelinedFlush:ilk */ |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6362 | I915_WRITE(CACHE_MODE_0, |
| 6363 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6364 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6365 | /* WaDisable_RenderCache_OperationalFlush:ilk */ |
| 6366 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6367 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6368 | g4x_disable_trickle_feed(dev_priv); |
Ville Syrjälä | bdad2b2 | 2013-06-07 10:47:03 +0300 | [diff] [blame] | 6369 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6370 | ibx_init_clock_gating(dev_priv); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6371 | } |
| 6372 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6373 | static void cpt_init_clock_gating(struct drm_i915_private *dev_priv) |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6374 | { |
Ville Syrjälä | d048a26 | 2019-08-21 20:30:31 +0300 | [diff] [blame] | 6375 | enum pipe pipe; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6376 | u32 val; |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6377 | |
| 6378 | /* |
| 6379 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 6380 | * gating for the panel power sequencer or it will fail to |
| 6381 | * start up when no ports are active. |
| 6382 | */ |
Jesse Barnes | cd66407 | 2013-10-02 10:34:19 -0700 | [diff] [blame] | 6383 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE | |
| 6384 | PCH_DPLUNIT_CLOCK_GATE_DISABLE | |
| 6385 | PCH_CPUNIT_CLOCK_GATE_DISABLE); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6386 | I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) | |
| 6387 | DPLS_EDP_PPS_FIX_DIS); |
Takashi Iwai | 335c07b | 2012-12-11 11:46:29 +0100 | [diff] [blame] | 6388 | /* The below fixes the weird display corruption, a few pixels shifted |
| 6389 | * downward, on (only) LVDS of some HP laptops with IVY. |
| 6390 | */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6391 | for_each_pipe(dev_priv, pipe) { |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 6392 | val = I915_READ(TRANS_CHICKEN2(pipe)); |
| 6393 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 6394 | val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 6395 | if (dev_priv->vbt.fdi_rx_polarity_inverted) |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6396 | val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 6397 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER; |
| 6398 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH; |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6399 | I915_WRITE(TRANS_CHICKEN2(pipe), val); |
| 6400 | } |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6401 | /* WADP0ClockGatingDisable */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6402 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6403 | I915_WRITE(TRANS_CHICKEN1(pipe), |
| 6404 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
| 6405 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6406 | } |
| 6407 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6408 | static void gen6_check_mch_setup(struct drm_i915_private *dev_priv) |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6409 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6410 | u32 tmp; |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6411 | |
| 6412 | tmp = I915_READ(MCH_SSKPD); |
Daniel Vetter | df662a2 | 2014-08-04 11:17:25 +0200 | [diff] [blame] | 6413 | if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) |
| 6414 | DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n", |
| 6415 | tmp); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6416 | } |
| 6417 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6418 | static void gen6_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6419 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6420 | u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6421 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6422 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6423 | |
| 6424 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6425 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6426 | ILK_ELPIN_409_SELECT); |
| 6427 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6428 | /* WaDisableHiZPlanesWhenMSAAEnabled:snb */ |
Daniel Vetter | 4283908 | 2012-12-14 23:38:28 +0100 | [diff] [blame] | 6429 | I915_WRITE(_3D_CHICKEN, |
| 6430 | _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB)); |
| 6431 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6432 | /* WaDisable_RenderCache_OperationalFlush:snb */ |
| 6433 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6434 | |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6435 | /* |
| 6436 | * BSpec recoomends 8x4 when MSAA is used, |
| 6437 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6438 | * |
| 6439 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6440 | * disable bit, which we don't touch here, but it's good |
| 6441 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6442 | */ |
| 6443 | I915_WRITE(GEN6_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6444 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6445 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6446 | I915_WRITE(CACHE_MODE_0, |
Daniel Vetter | 5074329 | 2012-04-26 22:02:54 +0200 | [diff] [blame] | 6447 | _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6448 | |
| 6449 | I915_WRITE(GEN6_UCGCTL1, |
| 6450 | I915_READ(GEN6_UCGCTL1) | |
| 6451 | GEN6_BLBUNIT_CLOCK_GATE_DISABLE | |
| 6452 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
| 6453 | |
| 6454 | /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock |
| 6455 | * gating disable must be set. Failure to set it results in |
| 6456 | * flickering pixels due to Z write ordering failures after |
| 6457 | * some amount of runtime in the Mesa "fire" demo, and Unigine |
| 6458 | * Sanctuary and Tropics, and apparently anything else with |
| 6459 | * alpha test or pixel discard. |
| 6460 | * |
| 6461 | * According to the spec, bit 11 (RCCUNIT) must also be set, |
| 6462 | * but we didn't debug actual testcases to find it out. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6463 | * |
Ville Syrjälä | ef59318 | 2014-01-22 21:32:47 +0200 | [diff] [blame] | 6464 | * WaDisableRCCUnitClockGating:snb |
| 6465 | * WaDisableRCPBUnitClockGating:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6466 | */ |
| 6467 | I915_WRITE(GEN6_UCGCTL2, |
| 6468 | GEN6_RCPBUNIT_CLOCK_GATE_DISABLE | |
| 6469 | GEN6_RCCUNIT_CLOCK_GATE_DISABLE); |
| 6470 | |
Ville Syrjälä | 5eb146d | 2014-02-04 21:59:16 +0200 | [diff] [blame] | 6471 | /* WaStripsFansDisableFastClipPerformanceFix:snb */ |
Ville Syrjälä | 743b57d | 2014-02-04 21:59:17 +0200 | [diff] [blame] | 6472 | I915_WRITE(_3D_CHICKEN3, |
| 6473 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6474 | |
| 6475 | /* |
Ville Syrjälä | e927ecd | 2014-02-04 21:59:18 +0200 | [diff] [blame] | 6476 | * Bspec says: |
| 6477 | * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and |
| 6478 | * 3DSTATE_SF number of SF output attributes is more than 16." |
| 6479 | */ |
| 6480 | I915_WRITE(_3D_CHICKEN3, |
| 6481 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH)); |
| 6482 | |
| 6483 | /* |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6484 | * According to the spec the following bits should be |
| 6485 | * set in order to enable memory self-refresh and fbc: |
| 6486 | * The bit21 and bit22 of 0x42000 |
| 6487 | * The bit21 and bit22 of 0x42004 |
| 6488 | * The bit5 and bit7 of 0x42020 |
| 6489 | * The bit14 of 0x70180 |
| 6490 | * The bit14 of 0x71180 |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 6491 | * |
| 6492 | * WaFbcAsynchFlipDisableFbcQueue:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6493 | */ |
| 6494 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 6495 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 6496 | ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS); |
| 6497 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6498 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6499 | ILK_DPARB_GATE | ILK_VSDPFD_FULL); |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6500 | I915_WRITE(ILK_DSPCLK_GATE_D, |
| 6501 | I915_READ(ILK_DSPCLK_GATE_D) | |
| 6502 | ILK_DPARBUNIT_CLOCK_GATE_ENABLE | |
| 6503 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6504 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6505 | g4x_disable_trickle_feed(dev_priv); |
Ben Widawsky | f8f2ac9 | 2012-10-03 19:34:24 -0700 | [diff] [blame] | 6506 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6507 | cpt_init_clock_gating(dev_priv); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6508 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6509 | gen6_check_mch_setup(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6510 | } |
| 6511 | |
| 6512 | static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv) |
| 6513 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6514 | u32 reg = I915_READ(GEN7_FF_THREAD_MODE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6515 | |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 6516 | /* |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6517 | * WaVSThreadDispatchOverride:ivb,vlv |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 6518 | * |
| 6519 | * This actually overrides the dispatch |
| 6520 | * mode for all thread types. |
| 6521 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6522 | reg &= ~GEN7_FF_SCHED_MASK; |
| 6523 | reg |= GEN7_FF_TS_SCHED_HW; |
| 6524 | reg |= GEN7_FF_VS_SCHED_HW; |
| 6525 | reg |= GEN7_FF_DS_SCHED_HW; |
| 6526 | |
| 6527 | I915_WRITE(GEN7_FF_THREAD_MODE, reg); |
| 6528 | } |
| 6529 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6530 | static void lpt_init_clock_gating(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6531 | { |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6532 | /* |
| 6533 | * TODO: this bit should only be enabled when really needed, then |
| 6534 | * disabled when not needed anymore in order to save power. |
| 6535 | */ |
Tvrtko Ursulin | 4f8036a | 2016-10-13 11:02:52 +0100 | [diff] [blame] | 6536 | if (HAS_PCH_LPT_LP(dev_priv)) |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6537 | I915_WRITE(SOUTH_DSPCLK_GATE_D, |
| 6538 | I915_READ(SOUTH_DSPCLK_GATE_D) | |
| 6539 | PCH_LP_PARTITION_LEVEL_DISABLE); |
Paulo Zanoni | 0a790cd | 2013-04-17 18:15:49 -0300 | [diff] [blame] | 6540 | |
| 6541 | /* WADPOClockGatingDisable:hsw */ |
Ville Syrjälä | 36c0d0c | 2015-09-18 20:03:31 +0300 | [diff] [blame] | 6542 | I915_WRITE(TRANS_CHICKEN1(PIPE_A), |
| 6543 | I915_READ(TRANS_CHICKEN1(PIPE_A)) | |
Paulo Zanoni | 0a790cd | 2013-04-17 18:15:49 -0300 | [diff] [blame] | 6544 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6545 | } |
| 6546 | |
Ville Syrjälä | 712bf36 | 2016-10-31 22:37:23 +0200 | [diff] [blame] | 6547 | static void lpt_suspend_hw(struct drm_i915_private *dev_priv) |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 6548 | { |
Tvrtko Ursulin | 4f8036a | 2016-10-13 11:02:52 +0100 | [diff] [blame] | 6549 | if (HAS_PCH_LPT_LP(dev_priv)) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6550 | u32 val = I915_READ(SOUTH_DSPCLK_GATE_D); |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 6551 | |
| 6552 | val &= ~PCH_LP_PARTITION_LEVEL_DISABLE; |
| 6553 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); |
| 6554 | } |
| 6555 | } |
| 6556 | |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6557 | static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv, |
| 6558 | int general_prio_credits, |
| 6559 | int high_prio_credits) |
| 6560 | { |
| 6561 | u32 misccpctl; |
Oscar Mateo | 930a784 | 2017-10-17 13:25:45 -0700 | [diff] [blame] | 6562 | u32 val; |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6563 | |
| 6564 | /* WaTempDisableDOPClkGating:bdw */ |
| 6565 | misccpctl = I915_READ(GEN7_MISCCPCTL); |
| 6566 | I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE); |
| 6567 | |
Oscar Mateo | 930a784 | 2017-10-17 13:25:45 -0700 | [diff] [blame] | 6568 | val = I915_READ(GEN8_L3SQCREG1); |
| 6569 | val &= ~L3_PRIO_CREDITS_MASK; |
| 6570 | val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits); |
| 6571 | val |= L3_HIGH_PRIO_CREDITS(high_prio_credits); |
| 6572 | I915_WRITE(GEN8_L3SQCREG1, val); |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6573 | |
| 6574 | /* |
| 6575 | * Wait at least 100 clocks before re-enabling clock gating. |
| 6576 | * See the definition of L3SQCREG1 in BSpec. |
| 6577 | */ |
| 6578 | POSTING_READ(GEN8_L3SQCREG1); |
| 6579 | udelay(1); |
| 6580 | I915_WRITE(GEN7_MISCCPCTL, misccpctl); |
| 6581 | } |
| 6582 | |
Oscar Mateo | d65dc3e | 2018-05-08 14:29:24 -0700 | [diff] [blame] | 6583 | static void icl_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6584 | { |
| 6585 | /* This is not an Wa. Enable to reduce Sampler power */ |
| 6586 | I915_WRITE(GEN10_DFR_RATIO_EN_AND_CHICKEN, |
| 6587 | I915_READ(GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE); |
Radhakrishna Sripada | 622b3f6 | 2018-10-30 01:45:01 -0700 | [diff] [blame] | 6588 | |
| 6589 | /* WaEnable32PlaneMode:icl */ |
| 6590 | I915_WRITE(GEN9_CSFE_CHICKEN1_RCS, |
| 6591 | _MASKED_BIT_ENABLE(GEN11_ENABLE_32_PLANE_MODE)); |
Oscar Mateo | d65dc3e | 2018-05-08 14:29:24 -0700 | [diff] [blame] | 6592 | } |
| 6593 | |
Michel Thierry | 5d86923 | 2019-08-23 01:20:34 -0700 | [diff] [blame] | 6594 | static void tgl_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6595 | { |
| 6596 | u32 vd_pg_enable = 0; |
| 6597 | unsigned int i; |
| 6598 | |
| 6599 | /* This is not a WA. Enable VD HCP & MFX_ENC powergate */ |
| 6600 | for (i = 0; i < I915_MAX_VCS; i++) { |
| 6601 | if (HAS_ENGINE(dev_priv, _VCS(i))) |
| 6602 | vd_pg_enable |= VDN_HCP_POWERGATE_ENABLE(i) | |
| 6603 | VDN_MFX_POWERGATE_ENABLE(i); |
| 6604 | } |
| 6605 | |
| 6606 | I915_WRITE(POWERGATE_ENABLE, |
| 6607 | I915_READ(POWERGATE_ENABLE) | vd_pg_enable); |
| 6608 | } |
| 6609 | |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6610 | static void cnp_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6611 | { |
| 6612 | if (!HAS_PCH_CNP(dev_priv)) |
| 6613 | return; |
| 6614 | |
Rodrigo Vivi | 470e7c6 | 2018-03-05 17:28:12 -0800 | [diff] [blame] | 6615 | /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */ |
Rodrigo Vivi | 4cc6feb | 2017-09-08 16:45:33 -0700 | [diff] [blame] | 6616 | I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) | |
| 6617 | CNP_PWM_CGE_GATING_DISABLE); |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6618 | } |
| 6619 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6620 | static void cnl_init_clock_gating(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6621 | { |
Rodrigo Vivi | 8f06783 | 2017-09-05 12:30:13 -0700 | [diff] [blame] | 6622 | u32 val; |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6623 | cnp_init_clock_gating(dev_priv); |
| 6624 | |
Rodrigo Vivi | 1a25db6 | 2017-08-15 16:16:51 -0700 | [diff] [blame] | 6625 | /* This is not an Wa. Enable for better image quality */ |
| 6626 | I915_WRITE(_3D_CHICKEN3, |
| 6627 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE)); |
| 6628 | |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6629 | /* WaEnableChickenDCPR:cnl */ |
| 6630 | I915_WRITE(GEN8_CHICKEN_DCPR_1, |
| 6631 | I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM); |
| 6632 | |
| 6633 | /* WaFbcWakeMemOn:cnl */ |
| 6634 | I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) | |
| 6635 | DISP_FBC_MEMORY_WAKE); |
| 6636 | |
Chris Wilson | 34991bd | 2017-11-11 10:03:36 +0000 | [diff] [blame] | 6637 | val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE); |
| 6638 | /* ReadHitWriteOnlyDisable:cnl */ |
| 6639 | val |= RCCUNIT_CLKGATE_DIS; |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6640 | /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */ |
| 6641 | if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) |
Chris Wilson | 34991bd | 2017-11-11 10:03:36 +0000 | [diff] [blame] | 6642 | val |= SARBUNIT_CLKGATE_DIS; |
| 6643 | I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val); |
Rafael Antognolli | 01ab0f9 | 2017-12-15 16:11:16 -0800 | [diff] [blame] | 6644 | |
Rodrigo Vivi | a4713c5 | 2018-03-07 14:09:12 -0800 | [diff] [blame] | 6645 | /* Wa_2201832410:cnl */ |
| 6646 | val = I915_READ(SUBSLICE_UNIT_LEVEL_CLKGATE); |
| 6647 | val |= GWUNIT_CLKGATE_DIS; |
| 6648 | I915_WRITE(SUBSLICE_UNIT_LEVEL_CLKGATE, val); |
| 6649 | |
Rafael Antognolli | 01ab0f9 | 2017-12-15 16:11:16 -0800 | [diff] [blame] | 6650 | /* WaDisableVFclkgate:cnl */ |
Rodrigo Vivi | 14941b6 | 2018-03-05 17:20:00 -0800 | [diff] [blame] | 6651 | /* WaVFUnitClockGatingDisable:cnl */ |
Rafael Antognolli | 01ab0f9 | 2017-12-15 16:11:16 -0800 | [diff] [blame] | 6652 | val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE); |
| 6653 | val |= VFUNIT_CLKGATE_DIS; |
| 6654 | I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val); |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6655 | } |
| 6656 | |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6657 | static void cfl_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6658 | { |
| 6659 | cnp_init_clock_gating(dev_priv); |
| 6660 | gen9_init_clock_gating(dev_priv); |
| 6661 | |
| 6662 | /* WaFbcNukeOnHostModify:cfl */ |
| 6663 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 6664 | ILK_DPFC_NUKE_ON_ANY_MODIFICATION); |
| 6665 | } |
| 6666 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6667 | static void kbl_init_clock_gating(struct drm_i915_private *dev_priv) |
Mika Kuoppala | 9498dba | 2016-06-07 17:19:01 +0300 | [diff] [blame] | 6668 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6669 | gen9_init_clock_gating(dev_priv); |
Mika Kuoppala | 9498dba | 2016-06-07 17:19:01 +0300 | [diff] [blame] | 6670 | |
| 6671 | /* WaDisableSDEUnitClockGating:kbl */ |
| 6672 | if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0)) |
| 6673 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6674 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Mika Kuoppala | 8aeb7f6 | 2016-06-07 17:19:05 +0300 | [diff] [blame] | 6675 | |
| 6676 | /* WaDisableGamClockGating:kbl */ |
| 6677 | if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0)) |
| 6678 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 6679 | GEN6_GAMUNIT_CLOCK_GATE_DISABLE); |
Mika Kuoppala | 031cd8c | 2016-06-07 17:19:18 +0300 | [diff] [blame] | 6680 | |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6681 | /* WaFbcNukeOnHostModify:kbl */ |
Mika Kuoppala | 031cd8c | 2016-06-07 17:19:18 +0300 | [diff] [blame] | 6682 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 6683 | ILK_DPFC_NUKE_ON_ANY_MODIFICATION); |
Mika Kuoppala | 9498dba | 2016-06-07 17:19:01 +0300 | [diff] [blame] | 6684 | } |
| 6685 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6686 | static void skl_init_clock_gating(struct drm_i915_private *dev_priv) |
Daniel Vetter | dc00b6a | 2016-05-19 09:14:20 +0200 | [diff] [blame] | 6687 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6688 | gen9_init_clock_gating(dev_priv); |
Mika Kuoppala | 44fff99 | 2016-06-07 17:19:09 +0300 | [diff] [blame] | 6689 | |
| 6690 | /* WAC6entrylatency:skl */ |
| 6691 | I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) | |
| 6692 | FBC_LLC_FULLY_OPEN); |
Mika Kuoppala | 031cd8c | 2016-06-07 17:19:18 +0300 | [diff] [blame] | 6693 | |
| 6694 | /* WaFbcNukeOnHostModify:skl */ |
| 6695 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 6696 | ILK_DPFC_NUKE_ON_ANY_MODIFICATION); |
Daniel Vetter | dc00b6a | 2016-05-19 09:14:20 +0200 | [diff] [blame] | 6697 | } |
| 6698 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6699 | static void bdw_init_clock_gating(struct drm_i915_private *dev_priv) |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6700 | { |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 6701 | enum pipe pipe; |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6702 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6703 | /* WaSwitchSolVfFArbitrationPriority:bdw */ |
Ben Widawsky | 50ed5fb | 2013-11-02 21:07:40 -0700 | [diff] [blame] | 6704 | I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL); |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6705 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6706 | /* WaPsrDPAMaskVBlankInSRD:bdw */ |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6707 | I915_WRITE(CHICKEN_PAR1_1, |
| 6708 | I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD); |
| 6709 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6710 | /* WaPsrDPRSUnmaskVBlankInSRD:bdw */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6711 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 6712 | I915_WRITE(CHICKEN_PIPESL_1(pipe), |
Ville Syrjälä | c7c6562 | 2014-03-05 13:05:45 +0200 | [diff] [blame] | 6713 | I915_READ(CHICKEN_PIPESL_1(pipe)) | |
Ville Syrjälä | 8f670bb | 2014-03-05 13:05:47 +0200 | [diff] [blame] | 6714 | BDW_DPRS_MASK_VBLANK_SRD); |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6715 | } |
Ben Widawsky | 63801f2 | 2013-12-12 17:26:03 -0800 | [diff] [blame] | 6716 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6717 | /* WaVSRefCountFullforceMissDisable:bdw */ |
| 6718 | /* WaDSRefCountFullforceMissDisable:bdw */ |
| 6719 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6720 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 6721 | ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME)); |
Ville Syrjälä | 36075a4 | 2014-02-04 21:59:21 +0200 | [diff] [blame] | 6722 | |
Ville Syrjälä | 295e8bb | 2014-02-27 21:59:01 +0200 | [diff] [blame] | 6723 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6724 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 4f1ca9e | 2014-02-27 21:59:02 +0200 | [diff] [blame] | 6725 | |
| 6726 | /* WaDisableSDEUnitClockGating:bdw */ |
| 6727 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6728 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Damien Lespiau | 5d70868 | 2014-03-26 18:41:51 +0000 | [diff] [blame] | 6729 | |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6730 | /* WaProgramL3SqcReg1Default:bdw */ |
| 6731 | gen8_set_l3sqc_credits(dev_priv, 30, 2); |
Ville Syrjälä | 4d487cf | 2015-05-19 20:32:56 +0300 | [diff] [blame] | 6732 | |
Mika Kuoppala | 17e0adf | 2016-06-07 17:19:02 +0300 | [diff] [blame] | 6733 | /* WaKVMNotificationOnConfigChange:bdw */ |
| 6734 | I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1) |
| 6735 | | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT); |
| 6736 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6737 | lpt_init_clock_gating(dev_priv); |
Robert Bragg | 9cc1973 | 2017-02-12 13:32:52 +0000 | [diff] [blame] | 6738 | |
| 6739 | /* WaDisableDopClockGating:bdw |
| 6740 | * |
| 6741 | * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP |
| 6742 | * clock gating. |
| 6743 | */ |
| 6744 | I915_WRITE(GEN6_UCGCTL1, |
| 6745 | I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE); |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6746 | } |
| 6747 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6748 | static void hsw_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6749 | { |
Francisco Jerez | f3fc488 | 2013-10-02 15:53:16 -0700 | [diff] [blame] | 6750 | /* L3 caching of data atomics doesn't work -- disable it. */ |
| 6751 | I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE); |
| 6752 | I915_WRITE(HSW_ROW_CHICKEN3, |
| 6753 | _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE)); |
| 6754 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6755 | /* This is required by WaCatErrorRejectionIssue:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6756 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6757 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6758 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6759 | |
Ville Syrjälä | e36ea7f | 2014-01-22 21:33:00 +0200 | [diff] [blame] | 6760 | /* WaVSRefCountFullforceMissDisable:hsw */ |
| 6761 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6762 | I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6763 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6764 | /* WaDisable_RenderCache_OperationalFlush:hsw */ |
| 6765 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6766 | |
Chia-I Wu | fe27c60 | 2014-01-28 13:29:33 +0800 | [diff] [blame] | 6767 | /* enable HiZ Raw Stall Optimization */ |
| 6768 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6769 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6770 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6771 | /* WaDisable4x2SubspanOptimization:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6772 | I915_WRITE(CACHE_MODE_1, |
| 6773 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Eugeni Dodonov | 1544d9d | 2012-07-02 11:51:10 -0300 | [diff] [blame] | 6774 | |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6775 | /* |
| 6776 | * BSpec recommends 8x4 when MSAA is used, |
| 6777 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6778 | * |
| 6779 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6780 | * disable bit, which we don't touch here, but it's good |
| 6781 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6782 | */ |
| 6783 | I915_WRITE(GEN7_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6784 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6785 | |
Kenneth Graunke | 9441159 | 2014-12-31 16:23:00 -0800 | [diff] [blame] | 6786 | /* WaSampleCChickenBitEnable:hsw */ |
| 6787 | I915_WRITE(HALF_SLICE_CHICKEN3, |
| 6788 | _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE)); |
| 6789 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6790 | /* WaSwitchSolVfFArbitrationPriority:hsw */ |
Ben Widawsky | e3dff58 | 2013-03-20 14:49:14 -0700 | [diff] [blame] | 6791 | I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL); |
| 6792 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6793 | lpt_init_clock_gating(dev_priv); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6794 | } |
| 6795 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6796 | static void ivb_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6797 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6798 | u32 snpcr; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6799 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6800 | I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6801 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6802 | /* WaDisableEarlyCull:ivb */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6803 | I915_WRITE(_3D_CHICKEN3, |
| 6804 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6805 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6806 | /* WaDisableBackToBackFlipFix:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6807 | I915_WRITE(IVB_CHICKEN3, |
| 6808 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6809 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6810 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6811 | /* WaDisablePSDDualDispatchEnable:ivb */ |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 6812 | if (IS_IVB_GT1(dev_priv)) |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6813 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
| 6814 | _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6815 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6816 | /* WaDisable_RenderCache_OperationalFlush:ivb */ |
| 6817 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6818 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6819 | /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6820 | I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1, |
| 6821 | GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC); |
| 6822 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6823 | /* WaApplyL3ControlAndL3ChickenMode:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6824 | I915_WRITE(GEN7_L3CNTLREG1, |
| 6825 | GEN7_WA_FOR_GEN7_L3_CONTROL); |
| 6826 | I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6827 | GEN7_WA_L3_CHICKEN_MODE); |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 6828 | if (IS_IVB_GT1(dev_priv)) |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6829 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6830 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6831 | else { |
| 6832 | /* must write both registers */ |
| 6833 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6834 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6835 | I915_WRITE(GEN7_ROW_CHICKEN2_GT2, |
| 6836 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6837 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6838 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6839 | /* WaForceL3Serialization:ivb */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6840 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6841 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6842 | |
Ville Syrjälä | 1b80a19a | 2014-01-22 21:32:53 +0200 | [diff] [blame] | 6843 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6844 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6845 | * This implements the WaDisableRCZUnitClockGating:ivb workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6846 | */ |
| 6847 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 28acf3b | 2014-01-22 21:32:48 +0200 | [diff] [blame] | 6848 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6849 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6850 | /* This is required by WaCatErrorRejectionIssue:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6851 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6852 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6853 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6854 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6855 | g4x_disable_trickle_feed(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6856 | |
| 6857 | gen7_setup_fixed_func_scheduler(dev_priv); |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6858 | |
Chris Wilson | 2272134 | 2014-03-04 09:41:43 +0000 | [diff] [blame] | 6859 | if (0) { /* causes HiZ corruption on ivb:gt1 */ |
| 6860 | /* enable HiZ Raw Stall Optimization */ |
| 6861 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6862 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6863 | } |
Chia-I Wu | 116f2b6 | 2014-01-28 13:29:34 +0800 | [diff] [blame] | 6864 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6865 | /* WaDisable4x2SubspanOptimization:ivb */ |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6866 | I915_WRITE(CACHE_MODE_1, |
| 6867 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6868 | |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6869 | /* |
| 6870 | * BSpec recommends 8x4 when MSAA is used, |
| 6871 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6872 | * |
| 6873 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6874 | * disable bit, which we don't touch here, but it's good |
| 6875 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6876 | */ |
| 6877 | I915_WRITE(GEN7_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6878 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6879 | |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6880 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 6881 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 6882 | snpcr |= GEN6_MBC_SNPCR_MED; |
| 6883 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6884 | |
Tvrtko Ursulin | 6e26695 | 2016-10-13 11:02:53 +0100 | [diff] [blame] | 6885 | if (!HAS_PCH_NOP(dev_priv)) |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6886 | cpt_init_clock_gating(dev_priv); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6887 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6888 | gen6_check_mch_setup(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6889 | } |
| 6890 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6891 | static void vlv_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6892 | { |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6893 | /* WaDisableEarlyCull:vlv */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6894 | I915_WRITE(_3D_CHICKEN3, |
| 6895 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6896 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6897 | /* WaDisableBackToBackFlipFix:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6898 | I915_WRITE(IVB_CHICKEN3, |
| 6899 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6900 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6901 | |
Ville Syrjälä | fad7d36 | 2014-01-22 21:32:39 +0200 | [diff] [blame] | 6902 | /* WaPsdDispatchEnable:vlv */ |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6903 | /* WaDisablePSDDualDispatchEnable:vlv */ |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6904 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
Jesse Barnes | d3bc030 | 2013-03-08 10:45:51 -0800 | [diff] [blame] | 6905 | _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP | |
| 6906 | GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6907 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6908 | /* WaDisable_RenderCache_OperationalFlush:vlv */ |
| 6909 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6910 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6911 | /* WaForceL3Serialization:vlv */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6912 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6913 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6914 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6915 | /* WaDisableDopClockGating:vlv */ |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6916 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6917 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
| 6918 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6919 | /* This is required by WaCatErrorRejectionIssue:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6920 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6921 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6922 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6923 | |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6924 | gen7_setup_fixed_func_scheduler(dev_priv); |
| 6925 | |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6926 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6927 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6928 | * This implements the WaDisableRCZUnitClockGating:vlv workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6929 | */ |
| 6930 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6931 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6932 | |
Akash Goel | c98f506 | 2014-03-24 23:00:07 +0530 | [diff] [blame] | 6933 | /* WaDisableL3Bank2xClockGate:vlv |
| 6934 | * Disabling L3 clock gating- MMIO 940c[25] = 1 |
| 6935 | * Set bit 25, to disable L3_BANK_2x_CLK_GATING */ |
| 6936 | I915_WRITE(GEN7_UCGCTL4, |
| 6937 | I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE); |
Jesse Barnes | e3f33d4 | 2012-06-14 11:04:50 -0700 | [diff] [blame] | 6938 | |
Ville Syrjälä | afd58e7 | 2014-01-22 21:33:03 +0200 | [diff] [blame] | 6939 | /* |
| 6940 | * BSpec says this must be set, even though |
| 6941 | * WaDisable4x2SubspanOptimization isn't listed for VLV. |
| 6942 | */ |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 6943 | I915_WRITE(CACHE_MODE_1, |
| 6944 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Jesse Barnes | 7983117 | 2012-06-20 10:53:12 -0700 | [diff] [blame] | 6945 | |
| 6946 | /* |
Ville Syrjälä | da2518f | 2015-01-21 19:38:01 +0200 | [diff] [blame] | 6947 | * BSpec recommends 8x4 when MSAA is used, |
| 6948 | * however in practice 16x4 seems fastest. |
| 6949 | * |
| 6950 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6951 | * disable bit, which we don't touch here, but it's good |
| 6952 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
| 6953 | */ |
| 6954 | I915_WRITE(GEN7_GT_MODE, |
| 6955 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
| 6956 | |
| 6957 | /* |
Ville Syrjälä | 031994e | 2014-01-22 21:32:46 +0200 | [diff] [blame] | 6958 | * WaIncreaseL3CreditsForVLVB0:vlv |
| 6959 | * This is the hardware default actually. |
| 6960 | */ |
| 6961 | I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE); |
| 6962 | |
| 6963 | /* |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6964 | * WaDisableVLVClockGating_VBIIssue:vlv |
Jesse Barnes | 2d80957 | 2012-10-25 12:15:44 -0700 | [diff] [blame] | 6965 | * Disable clock gating on th GCFG unit to prevent a delay |
| 6966 | * in the reporting of vblank events. |
| 6967 | */ |
Ville Syrjälä | 7a0d1ee | 2014-01-22 21:33:04 +0200 | [diff] [blame] | 6968 | I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6969 | } |
| 6970 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6971 | static void chv_init_clock_gating(struct drm_i915_private *dev_priv) |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6972 | { |
Ville Syrjälä | 232ce33 | 2014-04-09 13:28:35 +0300 | [diff] [blame] | 6973 | /* WaVSRefCountFullforceMissDisable:chv */ |
| 6974 | /* WaDSRefCountFullforceMissDisable:chv */ |
| 6975 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6976 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 6977 | ~(GEN8_FF_DS_REF_CNT_FFME | GEN7_FF_VS_REF_CNT_FFME)); |
Ville Syrjälä | acea6f9 | 2014-04-09 13:28:36 +0300 | [diff] [blame] | 6978 | |
| 6979 | /* WaDisableSemaphoreAndSyncFlipWait:chv */ |
| 6980 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6981 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 0846697 | 2014-04-09 13:28:37 +0300 | [diff] [blame] | 6982 | |
| 6983 | /* WaDisableCSUnitClockGating:chv */ |
| 6984 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 6985 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | c631780 | 2014-04-09 13:28:38 +0300 | [diff] [blame] | 6986 | |
| 6987 | /* WaDisableSDEUnitClockGating:chv */ |
| 6988 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6989 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 6d50b06 | 2015-05-19 20:32:57 +0300 | [diff] [blame] | 6990 | |
| 6991 | /* |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6992 | * WaProgramL3SqcReg1Default:chv |
| 6993 | * See gfxspecs/Related Documents/Performance Guide/ |
| 6994 | * LSQC Setting Recommendations. |
| 6995 | */ |
| 6996 | gen8_set_l3sqc_credits(dev_priv, 38, 2); |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6997 | } |
| 6998 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6999 | static void g4x_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7000 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 7001 | u32 dspclk_gate; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7002 | |
| 7003 | I915_WRITE(RENCLK_GATE_D1, 0); |
| 7004 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | |
| 7005 | GS_UNIT_CLOCK_GATE_DISABLE | |
| 7006 | CL_UNIT_CLOCK_GATE_DISABLE); |
| 7007 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 7008 | dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE | |
| 7009 | OVRUNIT_CLOCK_GATE_DISABLE | |
| 7010 | OVCUNIT_CLOCK_GATE_DISABLE; |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 7011 | if (IS_GM45(dev_priv)) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7012 | dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE; |
| 7013 | I915_WRITE(DSPCLK_GATE_D, dspclk_gate); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 7014 | |
| 7015 | /* WaDisableRenderCachePipelinedFlush */ |
| 7016 | I915_WRITE(CACHE_MODE_0, |
| 7017 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Ville Syrjälä | de1aa62 | 2013-06-07 10:47:01 +0300 | [diff] [blame] | 7018 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 7019 | /* WaDisable_RenderCache_OperationalFlush:g4x */ |
| 7020 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 7021 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7022 | g4x_disable_trickle_feed(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7023 | } |
| 7024 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7025 | static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7026 | { |
Tvrtko Ursulin | 4f5fd91 | 2019-06-11 11:45:48 +0100 | [diff] [blame] | 7027 | struct intel_uncore *uncore = &dev_priv->uncore; |
| 7028 | |
| 7029 | intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE); |
| 7030 | intel_uncore_write(uncore, RENCLK_GATE_D2, 0); |
| 7031 | intel_uncore_write(uncore, DSPCLK_GATE_D, 0); |
| 7032 | intel_uncore_write(uncore, RAMCLK_GATE_D, 0); |
| 7033 | intel_uncore_write16(uncore, DEUC, 0); |
| 7034 | intel_uncore_write(uncore, |
| 7035 | MI_ARB_STATE, |
| 7036 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 7037 | |
| 7038 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
Tvrtko Ursulin | 4f5fd91 | 2019-06-11 11:45:48 +0100 | [diff] [blame] | 7039 | intel_uncore_write(uncore, |
| 7040 | CACHE_MODE_0, |
| 7041 | _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7042 | } |
| 7043 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7044 | static void i965g_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7045 | { |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7046 | I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE | |
| 7047 | I965_RCC_CLOCK_GATE_DISABLE | |
| 7048 | I965_RCPB_CLOCK_GATE_DISABLE | |
| 7049 | I965_ISC_CLOCK_GATE_DISABLE | |
| 7050 | I965_FBC_CLOCK_GATE_DISABLE); |
| 7051 | I915_WRITE(RENCLK_GATE_D2, 0); |
Ville Syrjälä | 20f9496 | 2013-06-07 10:47:02 +0300 | [diff] [blame] | 7052 | I915_WRITE(MI_ARB_STATE, |
| 7053 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 7054 | |
| 7055 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
| 7056 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7057 | } |
| 7058 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7059 | static void gen3_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7060 | { |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7061 | u32 dstate = I915_READ(D_STATE); |
| 7062 | |
| 7063 | dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING | |
| 7064 | DSTATE_DOT_CLOCK_GATING; |
| 7065 | I915_WRITE(D_STATE, dstate); |
Chris Wilson | 13a86b8 | 2012-04-24 14:51:43 +0100 | [diff] [blame] | 7066 | |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 7067 | if (IS_PINEVIEW(dev_priv)) |
Chris Wilson | 13a86b8 | 2012-04-24 14:51:43 +0100 | [diff] [blame] | 7068 | I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY)); |
Daniel Vetter | 974a3b0 | 2012-09-09 11:54:16 +0200 | [diff] [blame] | 7069 | |
| 7070 | /* IIR "flip pending" means done if this bit is set */ |
| 7071 | I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE)); |
Ville Syrjälä | 12fabbcb9 | 2014-02-25 15:13:38 +0200 | [diff] [blame] | 7072 | |
| 7073 | /* interrupts should cause a wake up from C3 */ |
Ville Syrjälä | 3299254 | 2014-02-25 15:13:39 +0200 | [diff] [blame] | 7074 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN)); |
Ville Syrjälä | dbb4274 | 2014-02-25 15:13:41 +0200 | [diff] [blame] | 7075 | |
| 7076 | /* On GEN3 we really need to make sure the ARB C3 LP bit is set */ |
| 7077 | I915_WRITE(MI_ARB_STATE, _MASKED_BIT_ENABLE(MI_ARB_C3_LP_WRITE_ENABLE)); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7078 | |
| 7079 | I915_WRITE(MI_ARB_STATE, |
| 7080 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7081 | } |
| 7082 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7083 | static void i85x_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7084 | { |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7085 | I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 54e472a | 2014-02-25 15:13:40 +0200 | [diff] [blame] | 7086 | |
| 7087 | /* interrupts should cause a wake up from C3 */ |
| 7088 | I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) | |
| 7089 | _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE)); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7090 | |
| 7091 | I915_WRITE(MEM_MODE, |
| 7092 | _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7093 | } |
| 7094 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7095 | static void i830_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7096 | { |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7097 | I915_WRITE(MEM_MODE, |
| 7098 | _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) | |
| 7099 | _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7100 | } |
| 7101 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7102 | void intel_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7103 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7104 | dev_priv->display.init_clock_gating(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7105 | } |
| 7106 | |
Ville Syrjälä | 712bf36 | 2016-10-31 22:37:23 +0200 | [diff] [blame] | 7107 | void intel_suspend_hw(struct drm_i915_private *dev_priv) |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 7108 | { |
Ville Syrjälä | 712bf36 | 2016-10-31 22:37:23 +0200 | [diff] [blame] | 7109 | if (HAS_PCH_LPT(dev_priv)) |
| 7110 | lpt_suspend_hw(dev_priv); |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 7111 | } |
| 7112 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7113 | static void nop_init_clock_gating(struct drm_i915_private *dev_priv) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7114 | { |
| 7115 | DRM_DEBUG_KMS("No clock gating settings or workarounds applied.\n"); |
| 7116 | } |
| 7117 | |
| 7118 | /** |
| 7119 | * intel_init_clock_gating_hooks - setup the clock gating hooks |
| 7120 | * @dev_priv: device private |
| 7121 | * |
| 7122 | * Setup the hooks that configure which clocks of a given platform can be |
| 7123 | * gated and also apply various GT and display specific workarounds for these |
| 7124 | * platforms. Note that some GT specific workarounds are applied separately |
| 7125 | * when GPU contexts or batchbuffers start their execution. |
| 7126 | */ |
| 7127 | void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv) |
| 7128 | { |
Lucas De Marchi | 13e53c5 | 2019-08-17 02:38:42 -0700 | [diff] [blame] | 7129 | if (IS_GEN(dev_priv, 12)) |
Michel Thierry | 5d86923 | 2019-08-23 01:20:34 -0700 | [diff] [blame] | 7130 | dev_priv->display.init_clock_gating = tgl_init_clock_gating; |
Lucas De Marchi | 13e53c5 | 2019-08-17 02:38:42 -0700 | [diff] [blame] | 7131 | else if (IS_GEN(dev_priv, 11)) |
Oscar Mateo | d65dc3e | 2018-05-08 14:29:24 -0700 | [diff] [blame] | 7132 | dev_priv->display.init_clock_gating = icl_init_clock_gating; |
Oscar Mateo | cc38cae | 2018-05-08 14:29:23 -0700 | [diff] [blame] | 7133 | else if (IS_CANNONLAKE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7134 | dev_priv->display.init_clock_gating = cnl_init_clock_gating; |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 7135 | else if (IS_COFFEELAKE(dev_priv)) |
| 7136 | dev_priv->display.init_clock_gating = cfl_init_clock_gating; |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 7137 | else if (IS_SKYLAKE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7138 | dev_priv->display.init_clock_gating = skl_init_clock_gating; |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 7139 | else if (IS_KABYLAKE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7140 | dev_priv->display.init_clock_gating = kbl_init_clock_gating; |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 7141 | else if (IS_BROXTON(dev_priv)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7142 | dev_priv->display.init_clock_gating = bxt_init_clock_gating; |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 7143 | else if (IS_GEMINILAKE(dev_priv)) |
| 7144 | dev_priv->display.init_clock_gating = glk_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7145 | else if (IS_BROADWELL(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7146 | dev_priv->display.init_clock_gating = bdw_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7147 | else if (IS_CHERRYVIEW(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7148 | dev_priv->display.init_clock_gating = chv_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7149 | else if (IS_HASWELL(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7150 | dev_priv->display.init_clock_gating = hsw_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7151 | else if (IS_IVYBRIDGE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7152 | dev_priv->display.init_clock_gating = ivb_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7153 | else if (IS_VALLEYVIEW(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7154 | dev_priv->display.init_clock_gating = vlv_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7155 | else if (IS_GEN(dev_priv, 6)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7156 | dev_priv->display.init_clock_gating = gen6_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7157 | else if (IS_GEN(dev_priv, 5)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7158 | dev_priv->display.init_clock_gating = ilk_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7159 | else if (IS_G4X(dev_priv)) |
| 7160 | dev_priv->display.init_clock_gating = g4x_init_clock_gating; |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 7161 | else if (IS_I965GM(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7162 | dev_priv->display.init_clock_gating = i965gm_init_clock_gating; |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 7163 | else if (IS_I965G(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7164 | dev_priv->display.init_clock_gating = i965g_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7165 | else if (IS_GEN(dev_priv, 3)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7166 | dev_priv->display.init_clock_gating = gen3_init_clock_gating; |
| 7167 | else if (IS_I85X(dev_priv) || IS_I865G(dev_priv)) |
| 7168 | dev_priv->display.init_clock_gating = i85x_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7169 | else if (IS_GEN(dev_priv, 2)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7170 | dev_priv->display.init_clock_gating = i830_init_clock_gating; |
| 7171 | else { |
| 7172 | MISSING_CASE(INTEL_DEVID(dev_priv)); |
| 7173 | dev_priv->display.init_clock_gating = nop_init_clock_gating; |
| 7174 | } |
| 7175 | } |
| 7176 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7177 | /* Set up chip specific power management-related functions */ |
Ville Syrjälä | 62d75df | 2016-10-31 22:37:25 +0200 | [diff] [blame] | 7178 | void intel_init_pm(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7179 | { |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 7180 | /* For cxsr */ |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 7181 | if (IS_PINEVIEW(dev_priv)) |
Ville Syrjälä | 148ac1f | 2016-10-31 22:37:16 +0200 | [diff] [blame] | 7182 | i915_pineview_get_mem_freq(dev_priv); |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7183 | else if (IS_GEN(dev_priv, 5)) |
Ville Syrjälä | 148ac1f | 2016-10-31 22:37:16 +0200 | [diff] [blame] | 7184 | i915_ironlake_get_mem_freq(dev_priv); |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 7185 | |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 7186 | if (intel_has_sagv(dev_priv)) |
| 7187 | skl_setup_sagv_block_time(dev_priv); |
| 7188 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7189 | /* For FIFO watermark updates */ |
Ville Syrjälä | 62d75df | 2016-10-31 22:37:25 +0200 | [diff] [blame] | 7190 | if (INTEL_GEN(dev_priv) >= 9) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 7191 | skl_setup_wm_latency(dev_priv); |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 7192 | dev_priv->display.initial_watermarks = skl_initial_wm; |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 7193 | dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 7194 | dev_priv->display.compute_global_watermarks = skl_compute_wm; |
Tvrtko Ursulin | 6e26695 | 2016-10-13 11:02:53 +0100 | [diff] [blame] | 7195 | } else if (HAS_PCH_SPLIT(dev_priv)) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 7196 | ilk_setup_wm_latency(dev_priv); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 7197 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7198 | if ((IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[1] && |
Ville Syrjälä | bd60254 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7199 | dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) || |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7200 | (!IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[0] && |
Ville Syrjälä | bd60254 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7201 | dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) { |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 7202 | dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 7203 | dev_priv->display.compute_intermediate_wm = |
| 7204 | ilk_compute_intermediate_wm; |
| 7205 | dev_priv->display.initial_watermarks = |
| 7206 | ilk_initial_watermarks; |
| 7207 | dev_priv->display.optimize_watermarks = |
| 7208 | ilk_optimize_watermarks; |
Ville Syrjälä | bd60254 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7209 | } else { |
| 7210 | DRM_DEBUG_KMS("Failed to read display plane latency. " |
| 7211 | "Disable CxSR\n"); |
| 7212 | } |
Ville Syrjälä | 6b6b3ee | 2016-11-28 19:37:07 +0200 | [diff] [blame] | 7213 | } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 7214 | vlv_setup_wm_latency(dev_priv); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 7215 | dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 7216 | dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 7217 | dev_priv->display.initial_watermarks = vlv_initial_watermarks; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 7218 | dev_priv->display.optimize_watermarks = vlv_optimize_watermarks; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 7219 | dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 7220 | } else if (IS_G4X(dev_priv)) { |
| 7221 | g4x_setup_wm_latency(dev_priv); |
| 7222 | dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm; |
| 7223 | dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm; |
| 7224 | dev_priv->display.initial_watermarks = g4x_initial_watermarks; |
| 7225 | dev_priv->display.optimize_watermarks = g4x_optimize_watermarks; |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 7226 | } else if (IS_PINEVIEW(dev_priv)) { |
Tvrtko Ursulin | 86d35d4 | 2019-03-26 07:40:54 +0000 | [diff] [blame] | 7227 | if (!intel_get_cxsr_latency(!IS_MOBILE(dev_priv), |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7228 | dev_priv->is_ddr3, |
| 7229 | dev_priv->fsb_freq, |
| 7230 | dev_priv->mem_freq)) { |
| 7231 | DRM_INFO("failed to find known CxSR latency " |
| 7232 | "(found ddr%s fsb freq %d, mem freq %d), " |
| 7233 | "disabling CxSR\n", |
| 7234 | (dev_priv->is_ddr3 == 1) ? "3" : "2", |
| 7235 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 7236 | /* Disable CxSR and never update its watermark again */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 7237 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7238 | dev_priv->display.update_wm = NULL; |
| 7239 | } else |
| 7240 | dev_priv->display.update_wm = pineview_update_wm; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7241 | } else if (IS_GEN(dev_priv, 4)) { |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7242 | dev_priv->display.update_wm = i965_update_wm; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7243 | } else if (IS_GEN(dev_priv, 3)) { |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7244 | dev_priv->display.update_wm = i9xx_update_wm; |
| 7245 | dev_priv->display.get_fifo_size = i9xx_get_fifo_size; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7246 | } else if (IS_GEN(dev_priv, 2)) { |
Jani Nikula | 2497787 | 2019-09-11 12:26:08 +0300 | [diff] [blame] | 7247 | if (INTEL_NUM_PIPES(dev_priv) == 1) { |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7248 | dev_priv->display.update_wm = i845_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7249 | dev_priv->display.get_fifo_size = i845_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7250 | } else { |
| 7251 | dev_priv->display.update_wm = i9xx_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7252 | dev_priv->display.get_fifo_size = i830_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7253 | } |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7254 | } else { |
| 7255 | DRM_ERROR("unexpected fall-through in intel_init_pm\n"); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7256 | } |
| 7257 | } |
| 7258 | |
Tvrtko Ursulin | 192aa18 | 2016-12-01 14:16:45 +0000 | [diff] [blame] | 7259 | void intel_pm_setup(struct drm_i915_private *dev_priv) |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7260 | { |
Sagar Arun Kamble | ad1443f | 2017-10-10 22:30:04 +0100 | [diff] [blame] | 7261 | dev_priv->runtime_pm.suspended = false; |
| 7262 | atomic_set(&dev_priv->runtime_pm.wakeref_count, 0); |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7263 | } |