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 | |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 143 | static void pnv_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 | |
Lucas De Marchi | 9eae5e2 | 2019-12-24 00:40:09 -0800 | [diff] [blame] | 181 | static void ilk_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: |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 202 | drm_dbg(&dev_priv->drm, "unknown memory frequency 0x%02x\n", |
| 203 | ddrpll & 0xff); |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 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: |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 231 | drm_dbg(&dev_priv->drm, "unknown fsb frequency 0x%04x\n", |
| 232 | csipll & 0x3ff); |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 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)) |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 317 | drm_err(&dev_priv->drm, |
| 318 | "timed out waiting for Punit DDR DVFS request\n"); |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 319 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 320 | vlv_punit_put(dev_priv); |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 321 | } |
| 322 | |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 323 | static void chv_set_memory_pm5(struct drm_i915_private *dev_priv, bool enable) |
| 324 | { |
| 325 | u32 val; |
| 326 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 327 | vlv_punit_get(dev_priv); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 328 | |
Ville Syrjälä | c11b813 | 2018-11-29 19:55:03 +0200 | [diff] [blame] | 329 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 330 | if (enable) |
| 331 | val |= DSP_MAXFIFO_PM5_ENABLE; |
| 332 | else |
| 333 | val &= ~DSP_MAXFIFO_PM5_ENABLE; |
Ville Syrjälä | c11b813 | 2018-11-29 19:55:03 +0200 | [diff] [blame] | 334 | vlv_punit_write(dev_priv, PUNIT_REG_DSPSSPM, val); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 335 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 336 | vlv_punit_put(dev_priv); |
Ville Syrjälä | cfb4141 | 2015-03-05 21:19:51 +0200 | [diff] [blame] | 337 | } |
| 338 | |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 339 | #define FW_WM(value, plane) \ |
| 340 | (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK) |
| 341 | |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 342 | 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] | 343 | { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 344 | bool was_enabled; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 345 | u32 val; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 346 | |
Tvrtko Ursulin | 920a14b | 2016-10-14 10:13:44 +0100 | [diff] [blame] | 347 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 348 | was_enabled = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 349 | I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 350 | POSTING_READ(FW_BLC_SELF_VLV); |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 351 | } else if (IS_G4X(dev_priv) || IS_I965GM(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 352 | was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 353 | I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 354 | POSTING_READ(FW_BLC_SELF); |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 355 | } else if (IS_PINEVIEW(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 356 | val = I915_READ(DSPFW3); |
| 357 | was_enabled = val & PINEVIEW_SELF_REFRESH_EN; |
| 358 | if (enable) |
| 359 | val |= PINEVIEW_SELF_REFRESH_EN; |
| 360 | else |
| 361 | val &= ~PINEVIEW_SELF_REFRESH_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 362 | I915_WRITE(DSPFW3, val); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 363 | POSTING_READ(DSPFW3); |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 364 | } else if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 365 | was_enabled = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 366 | val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) : |
| 367 | _MASKED_BIT_DISABLE(FW_BLC_SELF_EN); |
| 368 | I915_WRITE(FW_BLC_SELF, val); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 369 | POSTING_READ(FW_BLC_SELF); |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 370 | } else if (IS_I915GM(dev_priv)) { |
Ville Syrjälä | acb9135 | 2016-07-29 17:57:02 +0300 | [diff] [blame] | 371 | /* |
| 372 | * FIXME can't find a bit like this for 915G, and |
| 373 | * and yet it does have the related watermark in |
| 374 | * FW_BLC_SELF. What's going on? |
| 375 | */ |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 376 | was_enabled = I915_READ(INSTPM) & INSTPM_SELF_EN; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 377 | val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) : |
| 378 | _MASKED_BIT_DISABLE(INSTPM_SELF_EN); |
| 379 | I915_WRITE(INSTPM, val); |
Ville Syrjälä | a7a6c49 | 2015-06-24 22:00:01 +0300 | [diff] [blame] | 380 | POSTING_READ(INSTPM); |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 381 | } else { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 382 | return false; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 383 | } |
| 384 | |
Ville Syrjälä | 1489bba | 2017-03-02 19:15:07 +0200 | [diff] [blame] | 385 | trace_intel_memory_cxsr(dev_priv, was_enabled, enable); |
| 386 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 387 | drm_dbg_kms(&dev_priv->drm, "memory self-refresh is %s (was %s)\n", |
| 388 | enableddisabled(enable), |
| 389 | enableddisabled(was_enabled)); |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 390 | |
| 391 | return was_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 392 | } |
| 393 | |
Ville Syrjälä | 62571fc | 2017-04-21 21:14:23 +0300 | [diff] [blame] | 394 | /** |
| 395 | * intel_set_memory_cxsr - Configure CxSR state |
| 396 | * @dev_priv: i915 device |
| 397 | * @enable: Allow vs. disallow CxSR |
| 398 | * |
| 399 | * Allow or disallow the system to enter a special CxSR |
| 400 | * (C-state self refresh) state. What typically happens in CxSR mode |
| 401 | * is that several display FIFOs may get combined into a single larger |
| 402 | * FIFO for a particular plane (so called max FIFO mode) to allow the |
| 403 | * system to defer memory fetches longer, and the memory will enter |
| 404 | * self refresh. |
| 405 | * |
| 406 | * Note that enabling CxSR does not guarantee that the system enter |
| 407 | * this special mode, nor does it guarantee that the system stays |
| 408 | * in that mode once entered. So this just allows/disallows the system |
| 409 | * to autonomously utilize the CxSR mode. Other factors such as core |
| 410 | * C-states will affect when/if the system actually enters/exits the |
| 411 | * CxSR mode. |
| 412 | * |
| 413 | * Note that on VLV/CHV this actually only controls the max FIFO mode, |
| 414 | * and the system is free to enter/exit memory self refresh at any time |
| 415 | * even when the use of CxSR has been disallowed. |
| 416 | * |
| 417 | * While the system is actually in the CxSR/max FIFO mode, some plane |
| 418 | * control registers will not get latched on vblank. Thus in order to |
| 419 | * guarantee the system will respond to changes in the plane registers |
| 420 | * we must always disallow CxSR prior to making changes to those registers. |
| 421 | * Unfortunately the system will re-evaluate the CxSR conditions at |
| 422 | * frame start which happens after vblank start (which is when the plane |
| 423 | * registers would get latched), so we can't proceed with the plane update |
| 424 | * during the same frame where we disallowed CxSR. |
| 425 | * |
| 426 | * Certain platforms also have a deeper HPLL SR mode. Fortunately the |
| 427 | * HPLL SR mode depends on CxSR itself, so we don't have to hand hold |
| 428 | * the hardware w.r.t. HPLL SR when writing to plane registers. |
| 429 | * Disallowing just CxSR is sufficient. |
| 430 | */ |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 431 | 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] | 432 | { |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 433 | bool ret; |
| 434 | |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 435 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 436 | ret = _intel_set_memory_cxsr(dev_priv, enable); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 437 | if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) |
| 438 | dev_priv->wm.vlv.cxsr = enable; |
| 439 | else if (IS_G4X(dev_priv)) |
| 440 | dev_priv->wm.g4x.cxsr = enable; |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 441 | mutex_unlock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 11a85d6 | 2016-11-28 19:37:12 +0200 | [diff] [blame] | 442 | |
| 443 | return ret; |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 444 | } |
Ville Syrjälä | fc1ac8d | 2015-03-05 21:19:52 +0200 | [diff] [blame] | 445 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 446 | /* |
| 447 | * Latency for FIFO fetches is dependent on several factors: |
| 448 | * - memory configuration (speed, channels) |
| 449 | * - chipset |
| 450 | * - current MCH state |
| 451 | * It can be fairly high in some situations, so here we assume a fairly |
| 452 | * pessimal value. It's a tradeoff between extra memory fetches (if we |
| 453 | * set this value too high, the FIFO will fetch frequently to stay full) |
| 454 | * and power consumption (set it too low to save power and we might see |
| 455 | * FIFO underruns and display "flicker"). |
| 456 | * |
| 457 | * A value of 5us seems to be a good balance; safe for very low end |
| 458 | * platforms but not overly aggressive on lower latency configs. |
| 459 | */ |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 460 | static const int pessimal_latency_ns = 5000; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 461 | |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 462 | #define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \ |
| 463 | ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8)) |
| 464 | |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 465 | 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] | 466 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 467 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 468 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 469 | 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] | 470 | enum pipe pipe = crtc->pipe; |
| 471 | int sprite0_start, sprite1_start; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 472 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 473 | switch (pipe) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 474 | u32 dsparb, dsparb2, dsparb3; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 475 | case PIPE_A: |
| 476 | dsparb = I915_READ(DSPARB); |
| 477 | dsparb2 = I915_READ(DSPARB2); |
| 478 | sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0); |
| 479 | sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4); |
| 480 | break; |
| 481 | case PIPE_B: |
| 482 | dsparb = I915_READ(DSPARB); |
| 483 | dsparb2 = I915_READ(DSPARB2); |
| 484 | sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8); |
| 485 | sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12); |
| 486 | break; |
| 487 | case PIPE_C: |
| 488 | dsparb2 = I915_READ(DSPARB2); |
| 489 | dsparb3 = I915_READ(DSPARB3); |
| 490 | sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16); |
| 491 | sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20); |
| 492 | break; |
| 493 | default: |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 494 | MISSING_CASE(pipe); |
| 495 | return; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 496 | } |
| 497 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 498 | fifo_state->plane[PLANE_PRIMARY] = sprite0_start; |
| 499 | fifo_state->plane[PLANE_SPRITE0] = sprite1_start - sprite0_start; |
| 500 | fifo_state->plane[PLANE_SPRITE1] = 511 - sprite1_start; |
| 501 | fifo_state->plane[PLANE_CURSOR] = 63; |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame] | 502 | } |
| 503 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 504 | static int i9xx_get_fifo_size(struct drm_i915_private *dev_priv, |
| 505 | enum i9xx_plane_id i9xx_plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 506 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 507 | u32 dsparb = I915_READ(DSPARB); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 508 | int size; |
| 509 | |
| 510 | size = dsparb & 0x7f; |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 511 | if (i9xx_plane == PLANE_B) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 512 | size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size; |
| 513 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 514 | drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n", |
| 515 | dsparb, plane_name(i9xx_plane), size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 516 | |
| 517 | return size; |
| 518 | } |
| 519 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 520 | static int i830_get_fifo_size(struct drm_i915_private *dev_priv, |
| 521 | enum i9xx_plane_id i9xx_plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 522 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 523 | u32 dsparb = I915_READ(DSPARB); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 524 | int size; |
| 525 | |
| 526 | size = dsparb & 0x1ff; |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 527 | if (i9xx_plane == PLANE_B) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 528 | size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size; |
| 529 | size >>= 1; /* Convert to cachelines */ |
| 530 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 531 | drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n", |
| 532 | dsparb, plane_name(i9xx_plane), size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 533 | |
| 534 | return size; |
| 535 | } |
| 536 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 537 | static int i845_get_fifo_size(struct drm_i915_private *dev_priv, |
| 538 | enum i9xx_plane_id i9xx_plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 539 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 540 | u32 dsparb = I915_READ(DSPARB); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 541 | int size; |
| 542 | |
| 543 | size = dsparb & 0x7f; |
| 544 | size >>= 2; /* Convert to cachelines */ |
| 545 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 546 | drm_dbg_kms(&dev_priv->drm, "FIFO size - (0x%08x) %c: %d\n", |
| 547 | dsparb, plane_name(i9xx_plane), size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 548 | |
| 549 | return size; |
| 550 | } |
| 551 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 552 | /* Pineview has different values for various configs */ |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 553 | static const struct intel_watermark_params pnv_display_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 554 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 555 | .max_wm = PINEVIEW_MAX_WM, |
| 556 | .default_wm = PINEVIEW_DFT_WM, |
| 557 | .guard_size = PINEVIEW_GUARD_WM, |
| 558 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 559 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 560 | |
| 561 | static const struct intel_watermark_params pnv_display_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 562 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 563 | .max_wm = PINEVIEW_MAX_WM, |
| 564 | .default_wm = PINEVIEW_DFT_HPLLOFF_WM, |
| 565 | .guard_size = PINEVIEW_GUARD_WM, |
| 566 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 567 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 568 | |
| 569 | static const struct intel_watermark_params pnv_cursor_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 570 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 571 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 572 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 573 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 574 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 575 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 576 | |
| 577 | static const struct intel_watermark_params pnv_cursor_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 578 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 579 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 580 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 581 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 582 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 583 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 584 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 585 | static const struct intel_watermark_params i965_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 586 | .fifo_size = I965_CURSOR_FIFO, |
| 587 | .max_wm = I965_CURSOR_MAX_WM, |
| 588 | .default_wm = I965_CURSOR_DFT_WM, |
| 589 | .guard_size = 2, |
| 590 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 591 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 592 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 593 | static const struct intel_watermark_params i945_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 594 | .fifo_size = I945_FIFO_SIZE, |
| 595 | .max_wm = I915_MAX_WM, |
| 596 | .default_wm = 1, |
| 597 | .guard_size = 2, |
| 598 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 599 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 600 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 601 | static const struct intel_watermark_params i915_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 602 | .fifo_size = I915_FIFO_SIZE, |
| 603 | .max_wm = I915_MAX_WM, |
| 604 | .default_wm = 1, |
| 605 | .guard_size = 2, |
| 606 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 607 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 608 | |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 609 | static const struct intel_watermark_params i830_a_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 610 | .fifo_size = I855GM_FIFO_SIZE, |
| 611 | .max_wm = I915_MAX_WM, |
| 612 | .default_wm = 1, |
| 613 | .guard_size = 2, |
| 614 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 615 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 616 | |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 617 | static const struct intel_watermark_params i830_bc_wm_info = { |
| 618 | .fifo_size = I855GM_FIFO_SIZE, |
| 619 | .max_wm = I915_MAX_WM/2, |
| 620 | .default_wm = 1, |
| 621 | .guard_size = 2, |
| 622 | .cacheline_size = I830_FIFO_LINE_SIZE, |
| 623 | }; |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 624 | |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 625 | static const struct intel_watermark_params i845_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 626 | .fifo_size = I830_FIFO_SIZE, |
| 627 | .max_wm = I915_MAX_WM, |
| 628 | .default_wm = 1, |
| 629 | .guard_size = 2, |
| 630 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 631 | }; |
| 632 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 633 | /** |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 634 | * intel_wm_method1 - Method 1 / "small buffer" watermark formula |
| 635 | * @pixel_rate: Pipe pixel rate in kHz |
| 636 | * @cpp: Plane bytes per pixel |
| 637 | * @latency: Memory wakeup latency in 0.1us units |
| 638 | * |
| 639 | * Compute the watermark using the method 1 or "small buffer" |
| 640 | * formula. The caller may additonally add extra cachelines |
| 641 | * to account for TLB misses and clock crossings. |
| 642 | * |
| 643 | * This method is concerned with the short term drain rate |
| 644 | * of the FIFO, ie. it does not account for blanking periods |
| 645 | * which would effectively reduce the average drain rate across |
| 646 | * a longer period. The name "small" refers to the fact the |
| 647 | * FIFO is relatively small compared to the amount of data |
| 648 | * fetched. |
| 649 | * |
| 650 | * The FIFO level vs. time graph might look something like: |
| 651 | * |
| 652 | * |\ |\ |
| 653 | * | \ | \ |
| 654 | * __---__---__ (- plane active, _ blanking) |
| 655 | * -> time |
| 656 | * |
| 657 | * or perhaps like this: |
| 658 | * |
| 659 | * |\|\ |\|\ |
| 660 | * __----__----__ (- plane active, _ blanking) |
| 661 | * -> time |
| 662 | * |
| 663 | * Returns: |
| 664 | * The watermark in bytes |
| 665 | */ |
| 666 | static unsigned int intel_wm_method1(unsigned int pixel_rate, |
| 667 | unsigned int cpp, |
| 668 | unsigned int latency) |
| 669 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 670 | u64 ret; |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 671 | |
Ville Syrjälä | d492a29 | 2019-04-08 18:27:01 +0300 | [diff] [blame] | 672 | ret = mul_u32_u32(pixel_rate, cpp * latency); |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 673 | ret = DIV_ROUND_UP_ULL(ret, 10000); |
| 674 | |
| 675 | return ret; |
| 676 | } |
| 677 | |
| 678 | /** |
| 679 | * intel_wm_method2 - Method 2 / "large buffer" watermark formula |
| 680 | * @pixel_rate: Pipe pixel rate in kHz |
| 681 | * @htotal: Pipe horizontal total |
| 682 | * @width: Plane width in pixels |
| 683 | * @cpp: Plane bytes per pixel |
| 684 | * @latency: Memory wakeup latency in 0.1us units |
| 685 | * |
| 686 | * Compute the watermark using the method 2 or "large buffer" |
| 687 | * formula. The caller may additonally add extra cachelines |
| 688 | * to account for TLB misses and clock crossings. |
| 689 | * |
| 690 | * This method is concerned with the long term drain rate |
| 691 | * of the FIFO, ie. it does account for blanking periods |
| 692 | * which effectively reduce the average drain rate across |
| 693 | * a longer period. The name "large" refers to the fact the |
| 694 | * FIFO is relatively large compared to the amount of data |
| 695 | * fetched. |
| 696 | * |
| 697 | * The FIFO level vs. time graph might look something like: |
| 698 | * |
| 699 | * |\___ |\___ |
| 700 | * | \___ | \___ |
| 701 | * | \ | \ |
| 702 | * __ --__--__--__--__--__--__ (- plane active, _ blanking) |
| 703 | * -> time |
| 704 | * |
| 705 | * Returns: |
| 706 | * The watermark in bytes |
| 707 | */ |
| 708 | static unsigned int intel_wm_method2(unsigned int pixel_rate, |
| 709 | unsigned int htotal, |
| 710 | unsigned int width, |
| 711 | unsigned int cpp, |
| 712 | unsigned int latency) |
| 713 | { |
| 714 | unsigned int ret; |
| 715 | |
| 716 | /* |
| 717 | * FIXME remove once all users are computing |
| 718 | * watermarks in the correct place. |
| 719 | */ |
| 720 | if (WARN_ON_ONCE(htotal == 0)) |
| 721 | htotal = 1; |
| 722 | |
| 723 | ret = (latency * pixel_rate) / (htotal * 10000); |
| 724 | ret = (ret + 1) * width * cpp; |
| 725 | |
| 726 | return ret; |
| 727 | } |
| 728 | |
| 729 | /** |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 730 | * intel_calculate_wm - calculate watermark level |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 731 | * @pixel_rate: pixel clock |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 732 | * @wm: chip FIFO params |
Chris Wilson | 3138341 | 2018-02-14 14:03:03 +0000 | [diff] [blame] | 733 | * @fifo_size: size of the FIFO buffer |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 734 | * @cpp: bytes per pixel |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 735 | * @latency_ns: memory latency for the platform |
| 736 | * |
| 737 | * Calculate the watermark level (the level at which the display plane will |
| 738 | * start fetching from memory again). Each chip has a different display |
| 739 | * FIFO size and allocation, so the caller needs to figure that out and pass |
| 740 | * in the correct intel_watermark_params structure. |
| 741 | * |
| 742 | * As the pixel clock runs, the FIFO will be drained at a rate that depends |
| 743 | * on the pixel size. When it reaches the watermark level, it'll start |
| 744 | * fetching FIFO line sized based chunks from memory until the FIFO fills |
| 745 | * past the watermark point. If the FIFO drains completely, a FIFO underrun |
| 746 | * will occur, and a display engine hang could result. |
| 747 | */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 748 | static unsigned int intel_calculate_wm(int pixel_rate, |
| 749 | const struct intel_watermark_params *wm, |
| 750 | int fifo_size, int cpp, |
| 751 | unsigned int latency_ns) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 752 | { |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 753 | int entries, wm_size; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 754 | |
| 755 | /* |
| 756 | * Note: we need to make sure we don't overflow for various clock & |
| 757 | * latency values. |
| 758 | * clocks go from a few thousand to several hundred thousand. |
| 759 | * latency is usually a few thousand |
| 760 | */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 761 | entries = intel_wm_method1(pixel_rate, cpp, |
| 762 | latency_ns / 100); |
| 763 | entries = DIV_ROUND_UP(entries, wm->cacheline_size) + |
| 764 | wm->guard_size; |
| 765 | DRM_DEBUG_KMS("FIFO entries required for mode: %d\n", entries); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 766 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 767 | wm_size = fifo_size - entries; |
| 768 | DRM_DEBUG_KMS("FIFO watermark level: %d\n", wm_size); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 769 | |
| 770 | /* Don't promote wm_size to unsigned... */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 771 | if (wm_size > wm->max_wm) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 772 | wm_size = wm->max_wm; |
| 773 | if (wm_size <= 0) |
| 774 | wm_size = wm->default_wm; |
Ville Syrjälä | d6feb19 | 2014-09-05 21:54:13 +0300 | [diff] [blame] | 775 | |
| 776 | /* |
| 777 | * Bspec seems to indicate that the value shouldn't be lower than |
| 778 | * 'burst size + 1'. Certainly 830 is quite unhappy with low values. |
| 779 | * Lets go for 8 which is the burst size since certain platforms |
| 780 | * already use a hardcoded 8 (which is what the spec says should be |
| 781 | * done). |
| 782 | */ |
| 783 | if (wm_size <= 8) |
| 784 | wm_size = 8; |
| 785 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 786 | return wm_size; |
| 787 | } |
| 788 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 789 | static bool is_disabling(int old, int new, int threshold) |
| 790 | { |
| 791 | return old >= threshold && new < threshold; |
| 792 | } |
| 793 | |
| 794 | static bool is_enabling(int old, int new, int threshold) |
| 795 | { |
| 796 | return old < threshold && new >= threshold; |
| 797 | } |
| 798 | |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 799 | static int intel_wm_num_levels(struct drm_i915_private *dev_priv) |
| 800 | { |
| 801 | return dev_priv->wm.max_level + 1; |
| 802 | } |
| 803 | |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 804 | static bool intel_wm_plane_visible(const struct intel_crtc_state *crtc_state, |
| 805 | const struct intel_plane_state *plane_state) |
| 806 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 807 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 808 | |
| 809 | /* FIXME check the 'enable' instead */ |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 810 | if (!crtc_state->hw.active) |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 811 | return false; |
| 812 | |
| 813 | /* |
| 814 | * Treat cursor with fb as always visible since cursor updates |
| 815 | * can happen faster than the vrefresh rate, and the current |
| 816 | * watermark code doesn't handle that correctly. Cursor updates |
| 817 | * which set/clear the fb or change the cursor size are going |
| 818 | * to get throttled by intel_legacy_cursor_update() to work |
| 819 | * around this problem with the watermark code. |
| 820 | */ |
| 821 | if (plane->id == PLANE_CURSOR) |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 822 | return plane_state->hw.fb != NULL; |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 823 | else |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 824 | return plane_state->uapi.visible; |
Ville Syrjälä | 24304d81 | 2017-03-14 17:10:49 +0200 | [diff] [blame] | 825 | } |
| 826 | |
Ville Syrjälä | 04da7b9 | 2019-11-27 22:12:11 +0200 | [diff] [blame] | 827 | static bool intel_crtc_active(struct intel_crtc *crtc) |
| 828 | { |
| 829 | /* Be paranoid as we can arrive here with only partial |
| 830 | * state retrieved from the hardware during setup. |
| 831 | * |
| 832 | * We can ditch the adjusted_mode.crtc_clock check as soon |
| 833 | * as Haswell has gained clock readout/fastboot support. |
| 834 | * |
| 835 | * We can ditch the crtc->primary->state->fb check as soon as we can |
| 836 | * properly reconstruct framebuffers. |
| 837 | * |
| 838 | * FIXME: The intel_crtc->active here should be switched to |
| 839 | * crtc->state->active once we have proper CRTC states wired up |
| 840 | * for atomic. |
| 841 | */ |
| 842 | return crtc->active && crtc->base.primary->state->fb && |
| 843 | crtc->config->hw.adjusted_mode.crtc_clock; |
| 844 | } |
| 845 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 846 | 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] | 847 | { |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 848 | struct intel_crtc *crtc, *enabled = NULL; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 849 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 850 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 851 | if (intel_crtc_active(crtc)) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 852 | if (enabled) |
| 853 | return NULL; |
| 854 | enabled = crtc; |
| 855 | } |
| 856 | } |
| 857 | |
| 858 | return enabled; |
| 859 | } |
| 860 | |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 861 | static void pnv_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 862 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 863 | 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] | 864 | struct intel_crtc *crtc; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 865 | const struct cxsr_latency *latency; |
| 866 | u32 reg; |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 867 | unsigned int wm; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 868 | |
Tvrtko Ursulin | 86d35d4 | 2019-03-26 07:40:54 +0000 | [diff] [blame] | 869 | latency = intel_get_cxsr_latency(!IS_MOBILE(dev_priv), |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 870 | dev_priv->is_ddr3, |
| 871 | dev_priv->fsb_freq, |
| 872 | dev_priv->mem_freq); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 873 | if (!latency) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 874 | drm_dbg_kms(&dev_priv->drm, |
| 875 | "Unknown FSB/MEM found, disable CxSR\n"); |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 876 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 877 | return; |
| 878 | } |
| 879 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 880 | crtc = single_enabled_crtc(dev_priv); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 881 | if (crtc) { |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 882 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 883 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 884 | const struct drm_framebuffer *fb = |
| 885 | crtc->base.primary->state->fb; |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 886 | int cpp = fb->format->cpp[0]; |
Ville Syrjälä | 7c5f93b | 2015-09-08 13:40:49 +0300 | [diff] [blame] | 887 | int clock = adjusted_mode->crtc_clock; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 888 | |
| 889 | /* Display SR */ |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 890 | wm = intel_calculate_wm(clock, &pnv_display_wm, |
| 891 | pnv_display_wm.fifo_size, |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 892 | cpp, latency->display_sr); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 893 | reg = I915_READ(DSPFW1); |
| 894 | reg &= ~DSPFW_SR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 895 | reg |= FW_WM(wm, SR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 896 | I915_WRITE(DSPFW1, reg); |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 897 | drm_dbg_kms(&dev_priv->drm, "DSPFW1 register is %x\n", reg); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 898 | |
| 899 | /* cursor SR */ |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 900 | wm = intel_calculate_wm(clock, &pnv_cursor_wm, |
| 901 | pnv_display_wm.fifo_size, |
Ville Syrjälä | 99834b1 | 2017-04-21 21:14:24 +0300 | [diff] [blame] | 902 | 4, latency->cursor_sr); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 903 | reg = I915_READ(DSPFW3); |
| 904 | reg &= ~DSPFW_CURSOR_SR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 905 | reg |= FW_WM(wm, CURSOR_SR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 906 | I915_WRITE(DSPFW3, reg); |
| 907 | |
| 908 | /* Display HPLL off SR */ |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 909 | wm = intel_calculate_wm(clock, &pnv_display_hplloff_wm, |
| 910 | pnv_display_hplloff_wm.fifo_size, |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 911 | cpp, latency->display_hpll_disable); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 912 | reg = I915_READ(DSPFW3); |
| 913 | reg &= ~DSPFW_HPLL_SR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 914 | reg |= FW_WM(wm, HPLL_SR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 915 | I915_WRITE(DSPFW3, reg); |
| 916 | |
| 917 | /* cursor HPLL off SR */ |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 918 | wm = intel_calculate_wm(clock, &pnv_cursor_hplloff_wm, |
| 919 | pnv_display_hplloff_wm.fifo_size, |
Ville Syrjälä | 99834b1 | 2017-04-21 21:14:24 +0300 | [diff] [blame] | 920 | 4, latency->cursor_hpll_disable); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 921 | reg = I915_READ(DSPFW3); |
| 922 | reg &= ~DSPFW_HPLL_CURSOR_MASK; |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 923 | reg |= FW_WM(wm, HPLL_CURSOR); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 924 | I915_WRITE(DSPFW3, reg); |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 925 | drm_dbg_kms(&dev_priv->drm, "DSPFW3 register is %x\n", reg); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 926 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 927 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 928 | } else { |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 929 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 930 | } |
| 931 | } |
| 932 | |
Ville Syrjälä | 0f95ff8 | 2017-04-21 21:14:26 +0300 | [diff] [blame] | 933 | /* |
| 934 | * Documentation says: |
| 935 | * "If the line size is small, the TLB fetches can get in the way of the |
| 936 | * data fetches, causing some lag in the pixel data return which is not |
| 937 | * accounted for in the above formulas. The following adjustment only |
| 938 | * needs to be applied if eight whole lines fit in the buffer at once. |
| 939 | * The WM is adjusted upwards by the difference between the FIFO size |
| 940 | * and the size of 8 whole lines. This adjustment is always performed |
| 941 | * in the actual pixel depth regardless of whether FBC is enabled or not." |
| 942 | */ |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 943 | 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] | 944 | { |
| 945 | int tlb_miss = fifo_size * 64 - width * cpp * 8; |
| 946 | |
| 947 | return max(0, tlb_miss); |
| 948 | } |
| 949 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 950 | static void g4x_write_wm_values(struct drm_i915_private *dev_priv, |
| 951 | const struct g4x_wm_values *wm) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 952 | { |
Ville Syrjälä | e93329a | 2017-04-21 21:14:31 +0300 | [diff] [blame] | 953 | enum pipe pipe; |
| 954 | |
| 955 | for_each_pipe(dev_priv, pipe) |
| 956 | trace_g4x_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm); |
| 957 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 958 | I915_WRITE(DSPFW1, |
| 959 | FW_WM(wm->sr.plane, SR) | |
| 960 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) | |
| 961 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) | |
| 962 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA)); |
| 963 | I915_WRITE(DSPFW2, |
| 964 | (wm->fbc_en ? DSPFW_FBC_SR_EN : 0) | |
| 965 | FW_WM(wm->sr.fbc, FBC_SR) | |
| 966 | FW_WM(wm->hpll.fbc, FBC_HPLL_SR) | |
| 967 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEB) | |
| 968 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) | |
| 969 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA)); |
| 970 | I915_WRITE(DSPFW3, |
| 971 | (wm->hpll_en ? DSPFW_HPLL_SR_EN : 0) | |
| 972 | FW_WM(wm->sr.cursor, CURSOR_SR) | |
| 973 | FW_WM(wm->hpll.cursor, HPLL_CURSOR) | |
| 974 | FW_WM(wm->hpll.plane, HPLL_SR)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 975 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 976 | POSTING_READ(DSPFW1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 977 | } |
| 978 | |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 979 | #define FW_WM_VLV(value, plane) \ |
| 980 | (((value) << DSPFW_ ## plane ## _SHIFT) & DSPFW_ ## plane ## _MASK_VLV) |
| 981 | |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 982 | 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] | 983 | const struct vlv_wm_values *wm) |
| 984 | { |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 985 | enum pipe pipe; |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 986 | |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 987 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | c137d66 | 2017-03-02 19:15:06 +0200 | [diff] [blame] | 988 | trace_vlv_wm(intel_get_crtc_for_pipe(dev_priv, pipe), wm); |
| 989 | |
Ville Syrjälä | 50f4cae | 2016-11-28 19:37:15 +0200 | [diff] [blame] | 990 | I915_WRITE(VLV_DDL(pipe), |
| 991 | (wm->ddl[pipe].plane[PLANE_CURSOR] << DDL_CURSOR_SHIFT) | |
| 992 | (wm->ddl[pipe].plane[PLANE_SPRITE1] << DDL_SPRITE_SHIFT(1)) | |
| 993 | (wm->ddl[pipe].plane[PLANE_SPRITE0] << DDL_SPRITE_SHIFT(0)) | |
| 994 | (wm->ddl[pipe].plane[PLANE_PRIMARY] << DDL_PLANE_SHIFT)); |
| 995 | } |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 996 | |
Ville Syrjälä | 6fe6a7f | 2016-11-28 19:37:14 +0200 | [diff] [blame] | 997 | /* |
| 998 | * Zero the (unused) WM1 watermarks, and also clear all the |
| 999 | * high order bits so that there are no out of bounds values |
| 1000 | * present in the registers during the reprogramming. |
| 1001 | */ |
| 1002 | I915_WRITE(DSPHOWM, 0); |
| 1003 | I915_WRITE(DSPHOWM1, 0); |
| 1004 | I915_WRITE(DSPFW4, 0); |
| 1005 | I915_WRITE(DSPFW5, 0); |
| 1006 | I915_WRITE(DSPFW6, 0); |
| 1007 | |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1008 | I915_WRITE(DSPFW1, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1009 | FW_WM(wm->sr.plane, SR) | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1010 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_CURSOR], CURSORB) | |
| 1011 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_PRIMARY], PLANEB) | |
| 1012 | FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_PRIMARY], PLANEA)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1013 | I915_WRITE(DSPFW2, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1014 | FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE1], SPRITEB) | |
| 1015 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_CURSOR], CURSORA) | |
| 1016 | FW_WM_VLV(wm->pipe[PIPE_A].plane[PLANE_SPRITE0], SPRITEA)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1017 | I915_WRITE(DSPFW3, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1018 | FW_WM(wm->sr.cursor, CURSOR_SR)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1019 | |
| 1020 | if (IS_CHERRYVIEW(dev_priv)) { |
| 1021 | I915_WRITE(DSPFW7_CHV, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1022 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) | |
| 1023 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1024 | I915_WRITE(DSPFW8_CHV, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1025 | FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE1], SPRITEF) | |
| 1026 | FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_SPRITE0], SPRITEE)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1027 | I915_WRITE(DSPFW9_CHV, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1028 | FW_WM_VLV(wm->pipe[PIPE_C].plane[PLANE_PRIMARY], PLANEC) | |
| 1029 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_CURSOR], CURSORC)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1030 | I915_WRITE(DSPHOWM, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1031 | FW_WM(wm->sr.plane >> 9, SR_HI) | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1032 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE1] >> 8, SPRITEF_HI) | |
| 1033 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_SPRITE0] >> 8, SPRITEE_HI) | |
| 1034 | FW_WM(wm->pipe[PIPE_C].plane[PLANE_PRIMARY] >> 8, PLANEC_HI) | |
| 1035 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) | |
| 1036 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) | |
| 1037 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) | |
| 1038 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) | |
| 1039 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) | |
| 1040 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1041 | } else { |
| 1042 | I915_WRITE(DSPFW7, |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1043 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE1], SPRITED) | |
| 1044 | FW_WM_VLV(wm->pipe[PIPE_B].plane[PLANE_SPRITE0], SPRITEC)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1045 | I915_WRITE(DSPHOWM, |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1046 | FW_WM(wm->sr.plane >> 9, SR_HI) | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 1047 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE1] >> 8, SPRITED_HI) | |
| 1048 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_SPRITE0] >> 8, SPRITEC_HI) | |
| 1049 | FW_WM(wm->pipe[PIPE_B].plane[PLANE_PRIMARY] >> 8, PLANEB_HI) | |
| 1050 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE1] >> 8, SPRITEB_HI) | |
| 1051 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_SPRITE0] >> 8, SPRITEA_HI) | |
| 1052 | FW_WM(wm->pipe[PIPE_A].plane[PLANE_PRIMARY] >> 8, PLANEA_HI)); |
Ville Syrjälä | ae80152 | 2015-03-05 21:19:49 +0200 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | POSTING_READ(DSPFW1); |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1056 | } |
| 1057 | |
Ville Syrjälä | 1566597 | 2015-03-10 16:16:28 +0200 | [diff] [blame] | 1058 | #undef FW_WM_VLV |
| 1059 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1060 | static void g4x_setup_wm_latency(struct drm_i915_private *dev_priv) |
| 1061 | { |
| 1062 | /* all latencies in usec */ |
| 1063 | dev_priv->wm.pri_latency[G4X_WM_LEVEL_NORMAL] = 5; |
| 1064 | dev_priv->wm.pri_latency[G4X_WM_LEVEL_SR] = 12; |
Ville Syrjälä | 79d9430 | 2017-04-21 21:14:30 +0300 | [diff] [blame] | 1065 | dev_priv->wm.pri_latency[G4X_WM_LEVEL_HPLL] = 35; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1066 | |
Ville Syrjälä | 79d9430 | 2017-04-21 21:14:30 +0300 | [diff] [blame] | 1067 | dev_priv->wm.max_level = G4X_WM_LEVEL_HPLL; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1068 | } |
| 1069 | |
| 1070 | static int g4x_plane_fifo_size(enum plane_id plane_id, int level) |
| 1071 | { |
| 1072 | /* |
| 1073 | * DSPCNTR[13] supposedly controls whether the |
| 1074 | * primary plane can use the FIFO space otherwise |
| 1075 | * reserved for the sprite plane. It's not 100% clear |
| 1076 | * what the actual FIFO size is, but it looks like we |
| 1077 | * can happily set both primary and sprite watermarks |
| 1078 | * up to 127 cachelines. So that would seem to mean |
| 1079 | * that either DSPCNTR[13] doesn't do anything, or that |
| 1080 | * the total FIFO is >= 256 cachelines in size. Either |
| 1081 | * way, we don't seem to have to worry about this |
| 1082 | * repartitioning as the maximum watermark value the |
| 1083 | * register can hold for each plane is lower than the |
| 1084 | * minimum FIFO size. |
| 1085 | */ |
| 1086 | switch (plane_id) { |
| 1087 | case PLANE_CURSOR: |
| 1088 | return 63; |
| 1089 | case PLANE_PRIMARY: |
| 1090 | return level == G4X_WM_LEVEL_NORMAL ? 127 : 511; |
| 1091 | case PLANE_SPRITE0: |
| 1092 | return level == G4X_WM_LEVEL_NORMAL ? 127 : 0; |
| 1093 | default: |
| 1094 | MISSING_CASE(plane_id); |
| 1095 | return 0; |
| 1096 | } |
| 1097 | } |
| 1098 | |
| 1099 | static int g4x_fbc_fifo_size(int level) |
| 1100 | { |
| 1101 | switch (level) { |
| 1102 | case G4X_WM_LEVEL_SR: |
| 1103 | return 7; |
| 1104 | case G4X_WM_LEVEL_HPLL: |
| 1105 | return 15; |
| 1106 | default: |
| 1107 | MISSING_CASE(level); |
| 1108 | return 0; |
| 1109 | } |
| 1110 | } |
| 1111 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1112 | static u16 g4x_compute_wm(const struct intel_crtc_state *crtc_state, |
| 1113 | const struct intel_plane_state *plane_state, |
| 1114 | int level) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1115 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1116 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1117 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
| 1118 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 1119 | &crtc_state->hw.adjusted_mode; |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1120 | unsigned int latency = dev_priv->wm.pri_latency[level] * 10; |
| 1121 | unsigned int clock, htotal, cpp, width, wm; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1122 | |
| 1123 | if (latency == 0) |
| 1124 | return USHRT_MAX; |
| 1125 | |
| 1126 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
| 1127 | return 0; |
| 1128 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1129 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | d56e823 | 2019-07-03 23:08:22 +0300 | [diff] [blame] | 1130 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1131 | /* |
| 1132 | * Not 100% sure which way ELK should go here as the |
| 1133 | * spec only says CL/CTG should assume 32bpp and BW |
| 1134 | * doesn't need to. But as these things followed the |
| 1135 | * mobile vs. desktop lines on gen3 as well, let's |
| 1136 | * assume ELK doesn't need this. |
| 1137 | * |
| 1138 | * The spec also fails to list such a restriction for |
| 1139 | * the HPLL watermark, which seems a little strange. |
| 1140 | * Let's use 32bpp for the HPLL watermark as well. |
| 1141 | */ |
| 1142 | if (IS_GM45(dev_priv) && plane->id == PLANE_PRIMARY && |
| 1143 | level != G4X_WM_LEVEL_NORMAL) |
Ville Syrjälä | d56e823 | 2019-07-03 23:08:22 +0300 | [diff] [blame] | 1144 | cpp = max(cpp, 4u); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1145 | |
| 1146 | clock = adjusted_mode->crtc_clock; |
| 1147 | htotal = adjusted_mode->crtc_htotal; |
| 1148 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1149 | width = drm_rect_width(&plane_state->uapi.dst); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1150 | |
| 1151 | if (plane->id == PLANE_CURSOR) { |
| 1152 | wm = intel_wm_method2(clock, htotal, width, cpp, latency); |
| 1153 | } else if (plane->id == PLANE_PRIMARY && |
| 1154 | level == G4X_WM_LEVEL_NORMAL) { |
| 1155 | wm = intel_wm_method1(clock, cpp, latency); |
| 1156 | } else { |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1157 | unsigned int small, large; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1158 | |
| 1159 | small = intel_wm_method1(clock, cpp, latency); |
| 1160 | large = intel_wm_method2(clock, htotal, width, cpp, latency); |
| 1161 | |
| 1162 | wm = min(small, large); |
| 1163 | } |
| 1164 | |
| 1165 | wm += g4x_tlb_miss_wa(g4x_plane_fifo_size(plane->id, level), |
| 1166 | width, cpp); |
| 1167 | |
| 1168 | wm = DIV_ROUND_UP(wm, 64) + 2; |
| 1169 | |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1170 | return min_t(unsigned int, wm, USHRT_MAX); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1171 | } |
| 1172 | |
| 1173 | static bool g4x_raw_plane_wm_set(struct intel_crtc_state *crtc_state, |
| 1174 | int level, enum plane_id plane_id, u16 value) |
| 1175 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1176 | 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] | 1177 | bool dirty = false; |
| 1178 | |
| 1179 | for (; level < intel_wm_num_levels(dev_priv); level++) { |
| 1180 | struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1181 | |
| 1182 | dirty |= raw->plane[plane_id] != value; |
| 1183 | raw->plane[plane_id] = value; |
| 1184 | } |
| 1185 | |
| 1186 | return dirty; |
| 1187 | } |
| 1188 | |
| 1189 | static bool g4x_raw_fbc_wm_set(struct intel_crtc_state *crtc_state, |
| 1190 | int level, u16 value) |
| 1191 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1192 | 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] | 1193 | bool dirty = false; |
| 1194 | |
| 1195 | /* NORMAL level doesn't have an FBC watermark */ |
| 1196 | level = max(level, G4X_WM_LEVEL_SR); |
| 1197 | |
| 1198 | for (; level < intel_wm_num_levels(dev_priv); level++) { |
| 1199 | struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1200 | |
| 1201 | dirty |= raw->fbc != value; |
| 1202 | raw->fbc = value; |
| 1203 | } |
| 1204 | |
| 1205 | return dirty; |
| 1206 | } |
| 1207 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 1208 | static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state, |
| 1209 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1210 | u32 pri_val); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1211 | |
| 1212 | static bool g4x_raw_plane_wm_compute(struct intel_crtc_state *crtc_state, |
| 1213 | const struct intel_plane_state *plane_state) |
| 1214 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1215 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 1216 | 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] | 1217 | int num_levels = intel_wm_num_levels(to_i915(plane->base.dev)); |
| 1218 | enum plane_id plane_id = plane->id; |
| 1219 | bool dirty = false; |
| 1220 | int level; |
| 1221 | |
| 1222 | if (!intel_wm_plane_visible(crtc_state, plane_state)) { |
| 1223 | dirty |= g4x_raw_plane_wm_set(crtc_state, 0, plane_id, 0); |
| 1224 | if (plane_id == PLANE_PRIMARY) |
| 1225 | dirty |= g4x_raw_fbc_wm_set(crtc_state, 0, 0); |
| 1226 | goto out; |
| 1227 | } |
| 1228 | |
| 1229 | for (level = 0; level < num_levels; level++) { |
| 1230 | struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1231 | int wm, max_wm; |
| 1232 | |
| 1233 | wm = g4x_compute_wm(crtc_state, plane_state, level); |
| 1234 | max_wm = g4x_plane_fifo_size(plane_id, level); |
| 1235 | |
| 1236 | if (wm > max_wm) |
| 1237 | break; |
| 1238 | |
| 1239 | dirty |= raw->plane[plane_id] != wm; |
| 1240 | raw->plane[plane_id] = wm; |
| 1241 | |
| 1242 | if (plane_id != PLANE_PRIMARY || |
| 1243 | level == G4X_WM_LEVEL_NORMAL) |
| 1244 | continue; |
| 1245 | |
| 1246 | wm = ilk_compute_fbc_wm(crtc_state, plane_state, |
| 1247 | raw->plane[plane_id]); |
| 1248 | max_wm = g4x_fbc_fifo_size(level); |
| 1249 | |
| 1250 | /* |
| 1251 | * FBC wm is not mandatory as we |
| 1252 | * can always just disable its use. |
| 1253 | */ |
| 1254 | if (wm > max_wm) |
| 1255 | wm = USHRT_MAX; |
| 1256 | |
| 1257 | dirty |= raw->fbc != wm; |
| 1258 | raw->fbc = wm; |
| 1259 | } |
| 1260 | |
| 1261 | /* mark watermarks as invalid */ |
| 1262 | dirty |= g4x_raw_plane_wm_set(crtc_state, level, plane_id, USHRT_MAX); |
| 1263 | |
| 1264 | if (plane_id == PLANE_PRIMARY) |
| 1265 | dirty |= g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX); |
| 1266 | |
| 1267 | out: |
| 1268 | if (dirty) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 1269 | drm_dbg_kms(&dev_priv->drm, |
| 1270 | "%s watermarks: normal=%d, SR=%d, HPLL=%d\n", |
| 1271 | plane->base.name, |
| 1272 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_NORMAL].plane[plane_id], |
| 1273 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].plane[plane_id], |
| 1274 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].plane[plane_id]); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1275 | |
| 1276 | if (plane_id == PLANE_PRIMARY) |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 1277 | drm_dbg_kms(&dev_priv->drm, |
| 1278 | "FBC watermarks: SR=%d, HPLL=%d\n", |
| 1279 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_SR].fbc, |
| 1280 | crtc_state->wm.g4x.raw[G4X_WM_LEVEL_HPLL].fbc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | return dirty; |
| 1284 | } |
| 1285 | |
| 1286 | static bool g4x_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state, |
| 1287 | enum plane_id plane_id, int level) |
| 1288 | { |
| 1289 | const struct g4x_pipe_wm *raw = &crtc_state->wm.g4x.raw[level]; |
| 1290 | |
| 1291 | return raw->plane[plane_id] <= g4x_plane_fifo_size(plane_id, level); |
| 1292 | } |
| 1293 | |
| 1294 | static bool g4x_raw_crtc_wm_is_valid(const struct intel_crtc_state *crtc_state, |
| 1295 | int level) |
| 1296 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1297 | 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] | 1298 | |
| 1299 | if (level > dev_priv->wm.max_level) |
| 1300 | return false; |
| 1301 | |
| 1302 | return g4x_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) && |
| 1303 | g4x_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) && |
| 1304 | g4x_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level); |
| 1305 | } |
| 1306 | |
| 1307 | /* mark all levels starting from 'level' as invalid */ |
| 1308 | static void g4x_invalidate_wms(struct intel_crtc *crtc, |
| 1309 | struct g4x_wm_state *wm_state, int level) |
| 1310 | { |
| 1311 | if (level <= G4X_WM_LEVEL_NORMAL) { |
| 1312 | enum plane_id plane_id; |
| 1313 | |
| 1314 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 1315 | wm_state->wm.plane[plane_id] = USHRT_MAX; |
| 1316 | } |
| 1317 | |
| 1318 | if (level <= G4X_WM_LEVEL_SR) { |
| 1319 | wm_state->cxsr = false; |
| 1320 | wm_state->sr.cursor = USHRT_MAX; |
| 1321 | wm_state->sr.plane = USHRT_MAX; |
| 1322 | wm_state->sr.fbc = USHRT_MAX; |
| 1323 | } |
| 1324 | |
| 1325 | if (level <= G4X_WM_LEVEL_HPLL) { |
| 1326 | wm_state->hpll_en = false; |
| 1327 | wm_state->hpll.cursor = USHRT_MAX; |
| 1328 | wm_state->hpll.plane = USHRT_MAX; |
| 1329 | wm_state->hpll.fbc = USHRT_MAX; |
| 1330 | } |
| 1331 | } |
| 1332 | |
| 1333 | static int g4x_compute_pipe_wm(struct intel_crtc_state *crtc_state) |
| 1334 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1335 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1336 | struct intel_atomic_state *state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1337 | to_intel_atomic_state(crtc_state->uapi.state); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1338 | struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal; |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 1339 | int num_active_planes = hweight8(crtc_state->active_planes & |
| 1340 | ~BIT(PLANE_CURSOR)); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1341 | const struct g4x_pipe_wm *raw; |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1342 | const struct intel_plane_state *old_plane_state; |
| 1343 | const struct intel_plane_state *new_plane_state; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1344 | struct intel_plane *plane; |
| 1345 | enum plane_id plane_id; |
| 1346 | int i, level; |
| 1347 | unsigned int dirty = 0; |
| 1348 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1349 | for_each_oldnew_intel_plane_in_state(state, plane, |
| 1350 | old_plane_state, |
| 1351 | new_plane_state, i) { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1352 | if (new_plane_state->hw.crtc != &crtc->base && |
| 1353 | old_plane_state->hw.crtc != &crtc->base) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1354 | continue; |
| 1355 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1356 | if (g4x_raw_plane_wm_compute(crtc_state, new_plane_state)) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1357 | dirty |= BIT(plane->id); |
| 1358 | } |
| 1359 | |
| 1360 | if (!dirty) |
| 1361 | return 0; |
| 1362 | |
| 1363 | level = G4X_WM_LEVEL_NORMAL; |
| 1364 | if (!g4x_raw_crtc_wm_is_valid(crtc_state, level)) |
| 1365 | goto out; |
| 1366 | |
| 1367 | raw = &crtc_state->wm.g4x.raw[level]; |
| 1368 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 1369 | wm_state->wm.plane[plane_id] = raw->plane[plane_id]; |
| 1370 | |
| 1371 | level = G4X_WM_LEVEL_SR; |
| 1372 | |
| 1373 | if (!g4x_raw_crtc_wm_is_valid(crtc_state, level)) |
| 1374 | goto out; |
| 1375 | |
| 1376 | raw = &crtc_state->wm.g4x.raw[level]; |
| 1377 | wm_state->sr.plane = raw->plane[PLANE_PRIMARY]; |
| 1378 | wm_state->sr.cursor = raw->plane[PLANE_CURSOR]; |
| 1379 | wm_state->sr.fbc = raw->fbc; |
| 1380 | |
| 1381 | wm_state->cxsr = num_active_planes == BIT(PLANE_PRIMARY); |
| 1382 | |
| 1383 | level = G4X_WM_LEVEL_HPLL; |
| 1384 | |
| 1385 | if (!g4x_raw_crtc_wm_is_valid(crtc_state, level)) |
| 1386 | goto out; |
| 1387 | |
| 1388 | raw = &crtc_state->wm.g4x.raw[level]; |
| 1389 | wm_state->hpll.plane = raw->plane[PLANE_PRIMARY]; |
| 1390 | wm_state->hpll.cursor = raw->plane[PLANE_CURSOR]; |
| 1391 | wm_state->hpll.fbc = raw->fbc; |
| 1392 | |
| 1393 | wm_state->hpll_en = wm_state->cxsr; |
| 1394 | |
| 1395 | level++; |
| 1396 | |
| 1397 | out: |
| 1398 | if (level == G4X_WM_LEVEL_NORMAL) |
| 1399 | return -EINVAL; |
| 1400 | |
| 1401 | /* invalidate the higher levels */ |
| 1402 | g4x_invalidate_wms(crtc, wm_state, level); |
| 1403 | |
| 1404 | /* |
| 1405 | * Determine if the FBC watermark(s) can be used. IF |
| 1406 | * this isn't the case we prefer to disable the FBC |
| 1407 | ( watermark(s) rather than disable the SR/HPLL |
| 1408 | * level(s) entirely. |
| 1409 | */ |
| 1410 | wm_state->fbc_en = level > G4X_WM_LEVEL_NORMAL; |
| 1411 | |
| 1412 | if (level >= G4X_WM_LEVEL_SR && |
| 1413 | wm_state->sr.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_SR)) |
| 1414 | wm_state->fbc_en = false; |
| 1415 | else if (level >= G4X_WM_LEVEL_HPLL && |
| 1416 | wm_state->hpll.fbc > g4x_fbc_fifo_size(G4X_WM_LEVEL_HPLL)) |
| 1417 | wm_state->fbc_en = false; |
| 1418 | |
| 1419 | return 0; |
| 1420 | } |
| 1421 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 1422 | 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] | 1423 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1424 | struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1425 | struct g4x_wm_state *intermediate = &new_crtc_state->wm.g4x.intermediate; |
| 1426 | const struct g4x_wm_state *optimal = &new_crtc_state->wm.g4x.optimal; |
| 1427 | struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1428 | to_intel_atomic_state(new_crtc_state->uapi.state); |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1429 | const struct intel_crtc_state *old_crtc_state = |
| 1430 | intel_atomic_get_old_crtc_state(intel_state, crtc); |
| 1431 | const struct g4x_wm_state *active = &old_crtc_state->wm.g4x.optimal; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1432 | enum plane_id plane_id; |
| 1433 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1434 | 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] | 1435 | *intermediate = *optimal; |
| 1436 | |
| 1437 | intermediate->cxsr = false; |
| 1438 | intermediate->hpll_en = false; |
| 1439 | goto out; |
| 1440 | } |
| 1441 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1442 | intermediate->cxsr = optimal->cxsr && active->cxsr && |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1443 | !new_crtc_state->disable_cxsr; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1444 | intermediate->hpll_en = optimal->hpll_en && active->hpll_en && |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1445 | !new_crtc_state->disable_cxsr; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1446 | intermediate->fbc_en = optimal->fbc_en && active->fbc_en; |
| 1447 | |
| 1448 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 1449 | intermediate->wm.plane[plane_id] = |
| 1450 | max(optimal->wm.plane[plane_id], |
| 1451 | active->wm.plane[plane_id]); |
| 1452 | |
| 1453 | WARN_ON(intermediate->wm.plane[plane_id] > |
| 1454 | g4x_plane_fifo_size(plane_id, G4X_WM_LEVEL_NORMAL)); |
| 1455 | } |
| 1456 | |
| 1457 | intermediate->sr.plane = max(optimal->sr.plane, |
| 1458 | active->sr.plane); |
| 1459 | intermediate->sr.cursor = max(optimal->sr.cursor, |
| 1460 | active->sr.cursor); |
| 1461 | intermediate->sr.fbc = max(optimal->sr.fbc, |
| 1462 | active->sr.fbc); |
| 1463 | |
| 1464 | intermediate->hpll.plane = max(optimal->hpll.plane, |
| 1465 | active->hpll.plane); |
| 1466 | intermediate->hpll.cursor = max(optimal->hpll.cursor, |
| 1467 | active->hpll.cursor); |
| 1468 | intermediate->hpll.fbc = max(optimal->hpll.fbc, |
| 1469 | active->hpll.fbc); |
| 1470 | |
| 1471 | WARN_ON((intermediate->sr.plane > |
| 1472 | g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_SR) || |
| 1473 | intermediate->sr.cursor > |
| 1474 | g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_SR)) && |
| 1475 | intermediate->cxsr); |
| 1476 | WARN_ON((intermediate->sr.plane > |
| 1477 | g4x_plane_fifo_size(PLANE_PRIMARY, G4X_WM_LEVEL_HPLL) || |
| 1478 | intermediate->sr.cursor > |
| 1479 | g4x_plane_fifo_size(PLANE_CURSOR, G4X_WM_LEVEL_HPLL)) && |
| 1480 | intermediate->hpll_en); |
| 1481 | |
| 1482 | WARN_ON(intermediate->sr.fbc > g4x_fbc_fifo_size(1) && |
| 1483 | intermediate->fbc_en && intermediate->cxsr); |
| 1484 | WARN_ON(intermediate->hpll.fbc > g4x_fbc_fifo_size(2) && |
| 1485 | intermediate->fbc_en && intermediate->hpll_en); |
| 1486 | |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1487 | out: |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1488 | /* |
| 1489 | * If our intermediate WM are identical to the final WM, then we can |
| 1490 | * omit the post-vblank programming; only update if it's different. |
| 1491 | */ |
| 1492 | if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0) |
Maarten Lankhorst | 248c243 | 2017-11-15 17:31:57 +0100 | [diff] [blame] | 1493 | new_crtc_state->wm.need_postvbl_update = true; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1494 | |
| 1495 | return 0; |
| 1496 | } |
| 1497 | |
| 1498 | static void g4x_merge_wm(struct drm_i915_private *dev_priv, |
| 1499 | struct g4x_wm_values *wm) |
| 1500 | { |
| 1501 | struct intel_crtc *crtc; |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 1502 | int num_active_pipes = 0; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1503 | |
| 1504 | wm->cxsr = true; |
| 1505 | wm->hpll_en = true; |
| 1506 | wm->fbc_en = true; |
| 1507 | |
| 1508 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 1509 | const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x; |
| 1510 | |
| 1511 | if (!crtc->active) |
| 1512 | continue; |
| 1513 | |
| 1514 | if (!wm_state->cxsr) |
| 1515 | wm->cxsr = false; |
| 1516 | if (!wm_state->hpll_en) |
| 1517 | wm->hpll_en = false; |
| 1518 | if (!wm_state->fbc_en) |
| 1519 | wm->fbc_en = false; |
| 1520 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 1521 | num_active_pipes++; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1522 | } |
| 1523 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 1524 | if (num_active_pipes != 1) { |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1525 | wm->cxsr = false; |
| 1526 | wm->hpll_en = false; |
| 1527 | wm->fbc_en = false; |
| 1528 | } |
| 1529 | |
| 1530 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 1531 | const struct g4x_wm_state *wm_state = &crtc->wm.active.g4x; |
| 1532 | enum pipe pipe = crtc->pipe; |
| 1533 | |
| 1534 | wm->pipe[pipe] = wm_state->wm; |
| 1535 | if (crtc->active && wm->cxsr) |
| 1536 | wm->sr = wm_state->sr; |
| 1537 | if (crtc->active && wm->hpll_en) |
| 1538 | wm->hpll = wm_state->hpll; |
| 1539 | } |
| 1540 | } |
| 1541 | |
| 1542 | static void g4x_program_watermarks(struct drm_i915_private *dev_priv) |
| 1543 | { |
| 1544 | struct g4x_wm_values *old_wm = &dev_priv->wm.g4x; |
| 1545 | struct g4x_wm_values new_wm = {}; |
| 1546 | |
| 1547 | g4x_merge_wm(dev_priv, &new_wm); |
| 1548 | |
| 1549 | if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) |
| 1550 | return; |
| 1551 | |
| 1552 | if (is_disabling(old_wm->cxsr, new_wm.cxsr, true)) |
| 1553 | _intel_set_memory_cxsr(dev_priv, false); |
| 1554 | |
| 1555 | g4x_write_wm_values(dev_priv, &new_wm); |
| 1556 | |
| 1557 | if (is_enabling(old_wm->cxsr, new_wm.cxsr, true)) |
| 1558 | _intel_set_memory_cxsr(dev_priv, true); |
| 1559 | |
| 1560 | *old_wm = new_wm; |
| 1561 | } |
| 1562 | |
| 1563 | static void g4x_initial_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1564 | struct intel_crtc *crtc) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1565 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1566 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1567 | const struct intel_crtc_state *crtc_state = |
| 1568 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1569 | |
| 1570 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 1571 | crtc->wm.active.g4x = crtc_state->wm.g4x.intermediate; |
| 1572 | g4x_program_watermarks(dev_priv); |
| 1573 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 1574 | } |
| 1575 | |
| 1576 | static void g4x_optimize_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1577 | struct intel_crtc *crtc) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1578 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1579 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1580 | const struct intel_crtc_state *crtc_state = |
| 1581 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1582 | |
| 1583 | if (!crtc_state->wm.need_postvbl_update) |
| 1584 | return; |
| 1585 | |
| 1586 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 1587 | crtc->wm.active.g4x = crtc_state->wm.g4x.optimal; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 1588 | g4x_program_watermarks(dev_priv); |
| 1589 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 1590 | } |
| 1591 | |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1592 | /* latency must be in 0.1us units. */ |
| 1593 | static unsigned int vlv_wm_method2(unsigned int pixel_rate, |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 1594 | unsigned int htotal, |
| 1595 | unsigned int width, |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 1596 | unsigned int cpp, |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1597 | unsigned int latency) |
| 1598 | { |
| 1599 | unsigned int ret; |
| 1600 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 1601 | ret = intel_wm_method2(pixel_rate, htotal, |
| 1602 | width, cpp, latency); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1603 | ret = DIV_ROUND_UP(ret, 64); |
| 1604 | |
| 1605 | return ret; |
| 1606 | } |
| 1607 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 1608 | 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] | 1609 | { |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1610 | /* all latencies in usec */ |
| 1611 | dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM2] = 3; |
| 1612 | |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 1613 | dev_priv->wm.max_level = VLV_WM_LEVEL_PM2; |
| 1614 | |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1615 | if (IS_CHERRYVIEW(dev_priv)) { |
| 1616 | dev_priv->wm.pri_latency[VLV_WM_LEVEL_PM5] = 12; |
| 1617 | dev_priv->wm.pri_latency[VLV_WM_LEVEL_DDR_DVFS] = 33; |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 1618 | |
| 1619 | dev_priv->wm.max_level = VLV_WM_LEVEL_DDR_DVFS; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1620 | } |
| 1621 | } |
| 1622 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1623 | static u16 vlv_compute_wm_level(const struct intel_crtc_state *crtc_state, |
| 1624 | const struct intel_plane_state *plane_state, |
| 1625 | int level) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1626 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1627 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1628 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Ville Syrjälä | e339d67 | 2016-11-28 19:37:17 +0200 | [diff] [blame] | 1629 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 1630 | &crtc_state->hw.adjusted_mode; |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1631 | unsigned int clock, htotal, cpp, width, wm; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1632 | |
| 1633 | if (dev_priv->wm.pri_latency[level] == 0) |
| 1634 | return USHRT_MAX; |
| 1635 | |
Ville Syrjälä | a07102f | 2017-03-03 17:19:27 +0200 | [diff] [blame] | 1636 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1637 | return 0; |
| 1638 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1639 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | e339d67 | 2016-11-28 19:37:17 +0200 | [diff] [blame] | 1640 | clock = adjusted_mode->crtc_clock; |
| 1641 | htotal = adjusted_mode->crtc_htotal; |
| 1642 | width = crtc_state->pipe_src_w; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1643 | |
Ville Syrjälä | 709f3fc | 2017-03-03 17:19:26 +0200 | [diff] [blame] | 1644 | if (plane->id == PLANE_CURSOR) { |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1645 | /* |
| 1646 | * FIXME the formula gives values that are |
| 1647 | * too big for the cursor FIFO, and hence we |
| 1648 | * would never be able to use cursors. For |
| 1649 | * now just hardcode the watermark. |
| 1650 | */ |
| 1651 | wm = 63; |
| 1652 | } else { |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 1653 | wm = vlv_wm_method2(clock, htotal, width, cpp, |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1654 | dev_priv->wm.pri_latency[level] * 10); |
| 1655 | } |
| 1656 | |
Chris Wilson | 1a1f128 | 2017-11-07 14:03:38 +0000 | [diff] [blame] | 1657 | return min_t(unsigned int, wm, USHRT_MAX); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1658 | } |
| 1659 | |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1660 | static bool vlv_need_sprite0_fifo_workaround(unsigned int active_planes) |
| 1661 | { |
| 1662 | return (active_planes & (BIT(PLANE_SPRITE0) | |
| 1663 | BIT(PLANE_SPRITE1))) == BIT(PLANE_SPRITE1); |
| 1664 | } |
| 1665 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1666 | static int vlv_compute_fifo(struct intel_crtc_state *crtc_state) |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1667 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1668 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1669 | const struct g4x_pipe_wm *raw = |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1670 | &crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2]; |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 1671 | 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] | 1672 | unsigned int active_planes = crtc_state->active_planes & ~BIT(PLANE_CURSOR); |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 1673 | int num_active_planes = hweight8(active_planes); |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1674 | const int fifo_size = 511; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1675 | int fifo_extra, fifo_left = fifo_size; |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1676 | int sprite0_fifo_extra = 0; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1677 | unsigned int total_rate; |
| 1678 | enum plane_id plane_id; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1679 | |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1680 | /* |
| 1681 | * When enabling sprite0 after sprite1 has already been enabled |
| 1682 | * we tend to get an underrun unless sprite0 already has some |
| 1683 | * FIFO space allcoated. Hence we always allocate at least one |
| 1684 | * cacheline for sprite0 whenever sprite1 is enabled. |
| 1685 | * |
| 1686 | * All other plane enable sequences appear immune to this problem. |
| 1687 | */ |
| 1688 | if (vlv_need_sprite0_fifo_workaround(active_planes)) |
| 1689 | sprite0_fifo_extra = 1; |
| 1690 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1691 | total_rate = raw->plane[PLANE_PRIMARY] + |
| 1692 | raw->plane[PLANE_SPRITE0] + |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1693 | raw->plane[PLANE_SPRITE1] + |
| 1694 | sprite0_fifo_extra; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1695 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1696 | if (total_rate > fifo_size) |
| 1697 | return -EINVAL; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1698 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1699 | if (total_rate == 0) |
| 1700 | total_rate = 1; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1701 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1702 | for_each_plane_id_on_crtc(crtc, plane_id) { |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1703 | unsigned int rate; |
| 1704 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1705 | if ((active_planes & BIT(plane_id)) == 0) { |
| 1706 | fifo_state->plane[plane_id] = 0; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1707 | continue; |
| 1708 | } |
| 1709 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1710 | rate = raw->plane[plane_id]; |
| 1711 | fifo_state->plane[plane_id] = fifo_size * rate / total_rate; |
| 1712 | fifo_left -= fifo_state->plane[plane_id]; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1713 | } |
| 1714 | |
Ville Syrjälä | 1a10ae6 | 2017-03-02 19:15:03 +0200 | [diff] [blame] | 1715 | fifo_state->plane[PLANE_SPRITE0] += sprite0_fifo_extra; |
| 1716 | fifo_left -= sprite0_fifo_extra; |
| 1717 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1718 | fifo_state->plane[PLANE_CURSOR] = 63; |
| 1719 | |
| 1720 | fifo_extra = DIV_ROUND_UP(fifo_left, num_active_planes ?: 1); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1721 | |
| 1722 | /* spread the remainder evenly */ |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1723 | for_each_plane_id_on_crtc(crtc, plane_id) { |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1724 | int plane_extra; |
| 1725 | |
| 1726 | if (fifo_left == 0) |
| 1727 | break; |
| 1728 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1729 | if ((active_planes & BIT(plane_id)) == 0) |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1730 | continue; |
| 1731 | |
| 1732 | plane_extra = min(fifo_extra, fifo_left); |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1733 | fifo_state->plane[plane_id] += plane_extra; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1734 | fifo_left -= plane_extra; |
| 1735 | } |
| 1736 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1737 | WARN_ON(active_planes != 0 && fifo_left != 0); |
| 1738 | |
| 1739 | /* give it all to the first plane if none are active */ |
| 1740 | if (active_planes == 0) { |
| 1741 | WARN_ON(fifo_left != fifo_size); |
| 1742 | fifo_state->plane[PLANE_PRIMARY] = fifo_left; |
| 1743 | } |
| 1744 | |
| 1745 | return 0; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1746 | } |
| 1747 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1748 | /* mark all levels starting from 'level' as invalid */ |
| 1749 | static void vlv_invalidate_wms(struct intel_crtc *crtc, |
| 1750 | struct vlv_wm_state *wm_state, int level) |
| 1751 | { |
| 1752 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 1753 | |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1754 | for (; level < intel_wm_num_levels(dev_priv); level++) { |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1755 | enum plane_id plane_id; |
| 1756 | |
| 1757 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 1758 | wm_state->wm[level].plane[plane_id] = USHRT_MAX; |
| 1759 | |
| 1760 | wm_state->sr[level].cursor = USHRT_MAX; |
| 1761 | wm_state->sr[level].plane = USHRT_MAX; |
| 1762 | } |
| 1763 | } |
| 1764 | |
Ville Syrjälä | 26cca0e | 2016-11-28 19:37:09 +0200 | [diff] [blame] | 1765 | static u16 vlv_invert_wm_value(u16 wm, u16 fifo_size) |
| 1766 | { |
| 1767 | if (wm > fifo_size) |
| 1768 | return USHRT_MAX; |
| 1769 | else |
| 1770 | return fifo_size - wm; |
| 1771 | } |
| 1772 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1773 | /* |
| 1774 | * Starting from 'level' set all higher |
| 1775 | * levels to 'value' in the "raw" watermarks. |
| 1776 | */ |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1777 | 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] | 1778 | int level, enum plane_id plane_id, u16 value) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1779 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1780 | 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] | 1781 | int num_levels = intel_wm_num_levels(dev_priv); |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1782 | bool dirty = false; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1783 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1784 | for (; level < num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1785 | struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level]; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1786 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1787 | dirty |= raw->plane[plane_id] != value; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1788 | raw->plane[plane_id] = value; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1789 | } |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1790 | |
| 1791 | return dirty; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1792 | } |
| 1793 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1794 | static bool vlv_raw_plane_wm_compute(struct intel_crtc_state *crtc_state, |
| 1795 | const struct intel_plane_state *plane_state) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1796 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 1797 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 1798 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1799 | enum plane_id plane_id = plane->id; |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1800 | 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] | 1801 | int level; |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1802 | bool dirty = false; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1803 | |
Ville Syrjälä | a07102f | 2017-03-03 17:19:27 +0200 | [diff] [blame] | 1804 | if (!intel_wm_plane_visible(crtc_state, plane_state)) { |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1805 | dirty |= vlv_raw_plane_wm_set(crtc_state, 0, plane_id, 0); |
| 1806 | goto out; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1807 | } |
| 1808 | |
| 1809 | for (level = 0; level < num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1810 | struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level]; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1811 | int wm = vlv_compute_wm_level(crtc_state, plane_state, level); |
| 1812 | int max_wm = plane_id == PLANE_CURSOR ? 63 : 511; |
| 1813 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1814 | if (wm > max_wm) |
| 1815 | break; |
| 1816 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1817 | dirty |= raw->plane[plane_id] != wm; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1818 | raw->plane[plane_id] = wm; |
| 1819 | } |
| 1820 | |
| 1821 | /* mark all higher levels as invalid */ |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1822 | 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] | 1823 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1824 | out: |
| 1825 | if (dirty) |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 1826 | drm_dbg_kms(&dev_priv->drm, |
| 1827 | "%s watermarks: PM2=%d, PM5=%d, DDR DVFS=%d\n", |
| 1828 | plane->base.name, |
| 1829 | crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM2].plane[plane_id], |
| 1830 | crtc_state->wm.vlv.raw[VLV_WM_LEVEL_PM5].plane[plane_id], |
| 1831 | crtc_state->wm.vlv.raw[VLV_WM_LEVEL_DDR_DVFS].plane[plane_id]); |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1832 | |
| 1833 | return dirty; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1834 | } |
| 1835 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1836 | static bool vlv_raw_plane_wm_is_valid(const struct intel_crtc_state *crtc_state, |
| 1837 | enum plane_id plane_id, int level) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1838 | { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1839 | const struct g4x_pipe_wm *raw = |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1840 | &crtc_state->wm.vlv.raw[level]; |
| 1841 | const struct vlv_fifo_state *fifo_state = |
| 1842 | &crtc_state->wm.vlv.fifo_state; |
| 1843 | |
| 1844 | return raw->plane[plane_id] <= fifo_state->plane[plane_id]; |
| 1845 | } |
| 1846 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1847 | 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] | 1848 | { |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1849 | return vlv_raw_plane_wm_is_valid(crtc_state, PLANE_PRIMARY, level) && |
| 1850 | vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE0, level) && |
| 1851 | vlv_raw_plane_wm_is_valid(crtc_state, PLANE_SPRITE1, level) && |
| 1852 | vlv_raw_plane_wm_is_valid(crtc_state, PLANE_CURSOR, level); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1853 | } |
| 1854 | |
| 1855 | 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] | 1856 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1857 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 1858 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1859 | struct intel_atomic_state *state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1860 | to_intel_atomic_state(crtc_state->uapi.state); |
Ville Syrjälä | 855c79f | 2017-03-02 19:14:54 +0200 | [diff] [blame] | 1861 | struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1862 | const struct vlv_fifo_state *fifo_state = |
| 1863 | &crtc_state->wm.vlv.fifo_state; |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 1864 | int num_active_planes = hweight8(crtc_state->active_planes & |
| 1865 | ~BIT(PLANE_CURSOR)); |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 1866 | bool needs_modeset = drm_atomic_crtc_needs_modeset(&crtc_state->uapi); |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1867 | const struct intel_plane_state *old_plane_state; |
| 1868 | const struct intel_plane_state *new_plane_state; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1869 | struct intel_plane *plane; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1870 | enum plane_id plane_id; |
| 1871 | int level, ret, i; |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1872 | unsigned int dirty = 0; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1873 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1874 | for_each_oldnew_intel_plane_in_state(state, plane, |
| 1875 | old_plane_state, |
| 1876 | new_plane_state, i) { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 1877 | if (new_plane_state->hw.crtc != &crtc->base && |
| 1878 | old_plane_state->hw.crtc != &crtc->base) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1879 | continue; |
| 1880 | |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1881 | if (vlv_raw_plane_wm_compute(crtc_state, new_plane_state)) |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1882 | dirty |= BIT(plane->id); |
| 1883 | } |
| 1884 | |
| 1885 | /* |
| 1886 | * DSPARB registers may have been reset due to the |
| 1887 | * power well being turned off. Make sure we restore |
| 1888 | * them to a consistent state even if no primary/sprite |
| 1889 | * planes are initially active. |
| 1890 | */ |
| 1891 | if (needs_modeset) |
| 1892 | crtc_state->fifo_changed = true; |
| 1893 | |
| 1894 | if (!dirty) |
| 1895 | return 0; |
| 1896 | |
| 1897 | /* cursor changes don't warrant a FIFO recompute */ |
| 1898 | if (dirty & ~BIT(PLANE_CURSOR)) { |
| 1899 | const struct intel_crtc_state *old_crtc_state = |
Ville Syrjälä | 7b510451 | 2017-08-23 18:22:22 +0300 | [diff] [blame] | 1900 | intel_atomic_get_old_crtc_state(state, crtc); |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1901 | const struct vlv_fifo_state *old_fifo_state = |
| 1902 | &old_crtc_state->wm.vlv.fifo_state; |
| 1903 | |
| 1904 | ret = vlv_compute_fifo(crtc_state); |
| 1905 | if (ret) |
| 1906 | return ret; |
| 1907 | |
| 1908 | if (needs_modeset || |
| 1909 | memcmp(old_fifo_state, fifo_state, |
| 1910 | sizeof(*fifo_state)) != 0) |
| 1911 | crtc_state->fifo_changed = true; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1912 | } |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1913 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1914 | /* initially allow all levels */ |
Ville Syrjälä | 6d5019b | 2017-04-21 21:14:20 +0300 | [diff] [blame] | 1915 | wm_state->num_levels = intel_wm_num_levels(dev_priv); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1916 | /* |
| 1917 | * Note that enabling cxsr with no primary/sprite planes |
| 1918 | * enabled can wedge the pipe. Hence we only allow cxsr |
| 1919 | * with exactly one enabled primary/sprite plane. |
| 1920 | */ |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 1921 | wm_state->cxsr = crtc->pipe != PIPE_C && num_active_planes == 1; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1922 | |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1923 | for (level = 0; level < wm_state->num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 1924 | const struct g4x_pipe_wm *raw = &crtc_state->wm.vlv.raw[level]; |
Jani Nikula | 2497787 | 2019-09-11 12:26:08 +0300 | [diff] [blame] | 1925 | 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] | 1926 | |
Ville Syrjälä | 77d14ee | 2017-04-21 21:14:18 +0300 | [diff] [blame] | 1927 | if (!vlv_raw_crtc_wm_is_valid(crtc_state, level)) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1928 | break; |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1929 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1930 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 1931 | wm_state->wm[level].plane[plane_id] = |
| 1932 | vlv_invert_wm_value(raw->plane[plane_id], |
| 1933 | fifo_state->plane[plane_id]); |
| 1934 | } |
| 1935 | |
| 1936 | wm_state->sr[level].plane = |
| 1937 | vlv_invert_wm_value(max3(raw->plane[PLANE_PRIMARY], |
Ville Syrjälä | 5012e60 | 2017-03-02 19:14:56 +0200 | [diff] [blame] | 1938 | raw->plane[PLANE_SPRITE0], |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1939 | raw->plane[PLANE_SPRITE1]), |
| 1940 | sr_fifo_size); |
| 1941 | |
| 1942 | wm_state->sr[level].cursor = |
| 1943 | vlv_invert_wm_value(raw->plane[PLANE_CURSOR], |
| 1944 | 63); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1945 | } |
| 1946 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1947 | if (level == 0) |
| 1948 | return -EINVAL; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1949 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1950 | /* limit to only levels we can actually handle */ |
| 1951 | wm_state->num_levels = level; |
| 1952 | |
| 1953 | /* invalidate the higher levels */ |
| 1954 | vlv_invalidate_wms(crtc, wm_state, level); |
| 1955 | |
| 1956 | return 0; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 1957 | } |
| 1958 | |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1959 | #define VLV_FIFO(plane, value) \ |
| 1960 | (((value) << DSPARB_ ## plane ## _SHIFT_VLV) & DSPARB_ ## plane ## _MASK_VLV) |
| 1961 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 1962 | static void vlv_atomic_update_fifo(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1963 | struct intel_crtc *crtc) |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1964 | { |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1965 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1966 | struct intel_uncore *uncore = &dev_priv->uncore; |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 1967 | const struct intel_crtc_state *crtc_state = |
| 1968 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 814e7f0 | 2017-03-02 19:14:55 +0200 | [diff] [blame] | 1969 | const struct vlv_fifo_state *fifo_state = |
| 1970 | &crtc_state->wm.vlv.fifo_state; |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1971 | int sprite0_start, sprite1_start, fifo_size; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1972 | |
Ville Syrjälä | 236c48e | 2017-03-02 19:14:58 +0200 | [diff] [blame] | 1973 | if (!crtc_state->fifo_changed) |
| 1974 | return; |
| 1975 | |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 1976 | sprite0_start = fifo_state->plane[PLANE_PRIMARY]; |
| 1977 | sprite1_start = fifo_state->plane[PLANE_SPRITE0] + sprite0_start; |
| 1978 | fifo_size = fifo_state->plane[PLANE_SPRITE1] + sprite1_start; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1979 | |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 1980 | drm_WARN_ON(&dev_priv->drm, fifo_state->plane[PLANE_CURSOR] != 63); |
| 1981 | drm_WARN_ON(&dev_priv->drm, fifo_size != 511); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1982 | |
Ville Syrjälä | c137d66 | 2017-03-02 19:15:06 +0200 | [diff] [blame] | 1983 | trace_vlv_fifo_size(crtc, sprite0_start, sprite1_start, fifo_size); |
| 1984 | |
Ville Syrjälä | 44e921d | 2017-03-09 17:44:34 +0200 | [diff] [blame] | 1985 | /* |
| 1986 | * uncore.lock serves a double purpose here. It allows us to |
| 1987 | * use the less expensive I915_{READ,WRITE}_FW() functions, and |
| 1988 | * it protects the DSPARB registers from getting clobbered by |
| 1989 | * parallel updates from multiple pipes. |
| 1990 | * |
| 1991 | * intel_pipe_update_start() has already disabled interrupts |
| 1992 | * for us, so a plain spin_lock() is sufficient here. |
| 1993 | */ |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1994 | spin_lock(&uncore->lock); |
Ville Syrjälä | 467a14d | 2016-12-05 16:13:28 +0200 | [diff] [blame] | 1995 | |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1996 | switch (crtc->pipe) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 1997 | u32 dsparb, dsparb2, dsparb3; |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 1998 | case PIPE_A: |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 1999 | dsparb = intel_uncore_read_fw(uncore, DSPARB); |
| 2000 | dsparb2 = intel_uncore_read_fw(uncore, DSPARB2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2001 | |
| 2002 | dsparb &= ~(VLV_FIFO(SPRITEA, 0xff) | |
| 2003 | VLV_FIFO(SPRITEB, 0xff)); |
| 2004 | dsparb |= (VLV_FIFO(SPRITEA, sprite0_start) | |
| 2005 | VLV_FIFO(SPRITEB, sprite1_start)); |
| 2006 | |
| 2007 | dsparb2 &= ~(VLV_FIFO(SPRITEA_HI, 0x1) | |
| 2008 | VLV_FIFO(SPRITEB_HI, 0x1)); |
| 2009 | dsparb2 |= (VLV_FIFO(SPRITEA_HI, sprite0_start >> 8) | |
| 2010 | VLV_FIFO(SPRITEB_HI, sprite1_start >> 8)); |
| 2011 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2012 | intel_uncore_write_fw(uncore, DSPARB, dsparb); |
| 2013 | intel_uncore_write_fw(uncore, DSPARB2, dsparb2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2014 | break; |
| 2015 | case PIPE_B: |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2016 | dsparb = intel_uncore_read_fw(uncore, DSPARB); |
| 2017 | dsparb2 = intel_uncore_read_fw(uncore, DSPARB2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2018 | |
| 2019 | dsparb &= ~(VLV_FIFO(SPRITEC, 0xff) | |
| 2020 | VLV_FIFO(SPRITED, 0xff)); |
| 2021 | dsparb |= (VLV_FIFO(SPRITEC, sprite0_start) | |
| 2022 | VLV_FIFO(SPRITED, sprite1_start)); |
| 2023 | |
| 2024 | dsparb2 &= ~(VLV_FIFO(SPRITEC_HI, 0xff) | |
| 2025 | VLV_FIFO(SPRITED_HI, 0xff)); |
| 2026 | dsparb2 |= (VLV_FIFO(SPRITEC_HI, sprite0_start >> 8) | |
| 2027 | VLV_FIFO(SPRITED_HI, sprite1_start >> 8)); |
| 2028 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2029 | intel_uncore_write_fw(uncore, DSPARB, dsparb); |
| 2030 | intel_uncore_write_fw(uncore, DSPARB2, dsparb2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2031 | break; |
| 2032 | case PIPE_C: |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2033 | dsparb3 = intel_uncore_read_fw(uncore, DSPARB3); |
| 2034 | dsparb2 = intel_uncore_read_fw(uncore, DSPARB2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2035 | |
| 2036 | dsparb3 &= ~(VLV_FIFO(SPRITEE, 0xff) | |
| 2037 | VLV_FIFO(SPRITEF, 0xff)); |
| 2038 | dsparb3 |= (VLV_FIFO(SPRITEE, sprite0_start) | |
| 2039 | VLV_FIFO(SPRITEF, sprite1_start)); |
| 2040 | |
| 2041 | dsparb2 &= ~(VLV_FIFO(SPRITEE_HI, 0xff) | |
| 2042 | VLV_FIFO(SPRITEF_HI, 0xff)); |
| 2043 | dsparb2 |= (VLV_FIFO(SPRITEE_HI, sprite0_start >> 8) | |
| 2044 | VLV_FIFO(SPRITEF_HI, sprite1_start >> 8)); |
| 2045 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2046 | intel_uncore_write_fw(uncore, DSPARB3, dsparb3); |
| 2047 | intel_uncore_write_fw(uncore, DSPARB2, dsparb2); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2048 | break; |
| 2049 | default: |
| 2050 | break; |
| 2051 | } |
Ville Syrjälä | 467a14d | 2016-12-05 16:13:28 +0200 | [diff] [blame] | 2052 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2053 | intel_uncore_posting_read_fw(uncore, DSPARB); |
Ville Syrjälä | 467a14d | 2016-12-05 16:13:28 +0200 | [diff] [blame] | 2054 | |
Tvrtko Ursulin | e33a4be | 2019-06-11 11:45:44 +0100 | [diff] [blame] | 2055 | spin_unlock(&uncore->lock); |
Ville Syrjälä | 54f1b6e | 2015-06-24 22:00:05 +0300 | [diff] [blame] | 2056 | } |
| 2057 | |
| 2058 | #undef VLV_FIFO |
| 2059 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2060 | 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] | 2061 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2062 | struct intel_crtc *crtc = to_intel_crtc(new_crtc_state->uapi.crtc); |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2063 | struct vlv_wm_state *intermediate = &new_crtc_state->wm.vlv.intermediate; |
| 2064 | const struct vlv_wm_state *optimal = &new_crtc_state->wm.vlv.optimal; |
| 2065 | struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2066 | to_intel_atomic_state(new_crtc_state->uapi.state); |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2067 | const struct intel_crtc_state *old_crtc_state = |
| 2068 | intel_atomic_get_old_crtc_state(intel_state, crtc); |
| 2069 | const struct vlv_wm_state *active = &old_crtc_state->wm.vlv.optimal; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2070 | int level; |
| 2071 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2072 | 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] | 2073 | *intermediate = *optimal; |
| 2074 | |
| 2075 | intermediate->cxsr = false; |
| 2076 | goto out; |
| 2077 | } |
| 2078 | |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2079 | intermediate->num_levels = min(optimal->num_levels, active->num_levels); |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 2080 | intermediate->cxsr = optimal->cxsr && active->cxsr && |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2081 | !new_crtc_state->disable_cxsr; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2082 | |
| 2083 | for (level = 0; level < intermediate->num_levels; level++) { |
| 2084 | enum plane_id plane_id; |
| 2085 | |
| 2086 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 2087 | intermediate->wm[level].plane[plane_id] = |
| 2088 | min(optimal->wm[level].plane[plane_id], |
| 2089 | active->wm[level].plane[plane_id]); |
| 2090 | } |
| 2091 | |
| 2092 | intermediate->sr[level].plane = min(optimal->sr[level].plane, |
| 2093 | active->sr[level].plane); |
| 2094 | intermediate->sr[level].cursor = min(optimal->sr[level].cursor, |
| 2095 | active->sr[level].cursor); |
| 2096 | } |
| 2097 | |
| 2098 | vlv_invalidate_wms(crtc, intermediate, level); |
| 2099 | |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2100 | out: |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2101 | /* |
| 2102 | * If our intermediate WM are identical to the final WM, then we can |
| 2103 | * omit the post-vblank programming; only update if it's different. |
| 2104 | */ |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 2105 | if (memcmp(intermediate, optimal, sizeof(*intermediate)) != 0) |
Maarten Lankhorst | 5b9489c | 2017-11-15 17:31:56 +0100 | [diff] [blame] | 2106 | new_crtc_state->wm.need_postvbl_update = true; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2107 | |
| 2108 | return 0; |
| 2109 | } |
| 2110 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2111 | static void vlv_merge_wm(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2112 | struct vlv_wm_values *wm) |
| 2113 | { |
| 2114 | struct intel_crtc *crtc; |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2115 | int num_active_pipes = 0; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2116 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2117 | wm->level = dev_priv->wm.max_level; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2118 | wm->cxsr = true; |
| 2119 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2120 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | 7eb4941 | 2017-03-02 19:14:53 +0200 | [diff] [blame] | 2121 | const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2122 | |
| 2123 | if (!crtc->active) |
| 2124 | continue; |
| 2125 | |
| 2126 | if (!wm_state->cxsr) |
| 2127 | wm->cxsr = false; |
| 2128 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2129 | num_active_pipes++; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2130 | wm->level = min_t(int, wm->level, wm_state->num_levels - 1); |
| 2131 | } |
| 2132 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2133 | if (num_active_pipes != 1) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2134 | wm->cxsr = false; |
| 2135 | |
Ville Syrjälä | c08e913 | 2019-08-21 20:30:32 +0300 | [diff] [blame] | 2136 | if (num_active_pipes > 1) |
Ville Syrjälä | 6f9c784 | 2015-06-24 22:00:08 +0300 | [diff] [blame] | 2137 | wm->level = VLV_WM_LEVEL_PM2; |
| 2138 | |
Ville Syrjälä | 7c951c0 | 2016-11-28 19:37:10 +0200 | [diff] [blame] | 2139 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | 7eb4941 | 2017-03-02 19:14:53 +0200 | [diff] [blame] | 2140 | const struct vlv_wm_state *wm_state = &crtc->wm.active.vlv; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2141 | enum pipe pipe = crtc->pipe; |
| 2142 | |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2143 | wm->pipe[pipe] = wm_state->wm[wm->level]; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2144 | if (crtc->active && wm->cxsr) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2145 | wm->sr = wm_state->sr[wm->level]; |
| 2146 | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 2147 | wm->ddl[pipe].plane[PLANE_PRIMARY] = DDL_PRECISION_HIGH | 2; |
| 2148 | wm->ddl[pipe].plane[PLANE_SPRITE0] = DDL_PRECISION_HIGH | 2; |
| 2149 | wm->ddl[pipe].plane[PLANE_SPRITE1] = DDL_PRECISION_HIGH | 2; |
| 2150 | wm->ddl[pipe].plane[PLANE_CURSOR] = DDL_PRECISION_HIGH | 2; |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2151 | } |
| 2152 | } |
| 2153 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2154 | static void vlv_program_watermarks(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2155 | { |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2156 | struct vlv_wm_values *old_wm = &dev_priv->wm.vlv; |
| 2157 | struct vlv_wm_values 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 | vlv_merge_wm(dev_priv, &new_wm); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2160 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2161 | if (memcmp(old_wm, &new_wm, sizeof(new_wm)) == 0) |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2162 | return; |
| 2163 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2164 | 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] | 2165 | chv_set_memory_dvfs(dev_priv, false); |
| 2166 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2167 | 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] | 2168 | chv_set_memory_pm5(dev_priv, false); |
| 2169 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2170 | if (is_disabling(old_wm->cxsr, new_wm.cxsr, true)) |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 2171 | _intel_set_memory_cxsr(dev_priv, false); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2172 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2173 | vlv_write_wm_values(dev_priv, &new_wm); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2174 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2175 | if (is_enabling(old_wm->cxsr, new_wm.cxsr, true)) |
Ville Syrjälä | 3d90e64 | 2016-11-28 19:37:11 +0200 | [diff] [blame] | 2176 | _intel_set_memory_cxsr(dev_priv, true); |
Ville Syrjälä | 262cd2e | 2015-06-24 22:00:04 +0300 | [diff] [blame] | 2177 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2178 | 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] | 2179 | chv_set_memory_pm5(dev_priv, true); |
| 2180 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2181 | 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] | 2182 | chv_set_memory_dvfs(dev_priv, true); |
| 2183 | |
Ville Syrjälä | fa292a4 | 2016-11-28 19:37:16 +0200 | [diff] [blame] | 2184 | *old_wm = new_wm; |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 2185 | } |
| 2186 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2187 | static void vlv_initial_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2188 | struct intel_crtc *crtc) |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2189 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2190 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 2191 | const struct intel_crtc_state *crtc_state = |
| 2192 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2193 | |
| 2194 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2195 | crtc->wm.active.vlv = crtc_state->wm.vlv.intermediate; |
| 2196 | vlv_program_watermarks(dev_priv); |
| 2197 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 2198 | } |
| 2199 | |
| 2200 | static void vlv_optimize_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2201 | struct intel_crtc *crtc) |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2202 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 2203 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 2204 | const struct intel_crtc_state *crtc_state = |
| 2205 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 2206 | |
| 2207 | if (!crtc_state->wm.need_postvbl_update) |
| 2208 | return; |
| 2209 | |
| 2210 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 2211 | crtc->wm.active.vlv = crtc_state->wm.vlv.optimal; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 2212 | vlv_program_watermarks(dev_priv); |
| 2213 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 2214 | } |
| 2215 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 2216 | static void i965_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2217 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2218 | 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] | 2219 | struct intel_crtc *crtc; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2220 | int srwm = 1; |
| 2221 | int cursor_sr = 16; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2222 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2223 | |
| 2224 | /* Calc sr entries for one plane configs */ |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2225 | crtc = single_enabled_crtc(dev_priv); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2226 | if (crtc) { |
| 2227 | /* self-refresh has much higher latency */ |
| 2228 | static const int sr_latency_ns = 12000; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2229 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2230 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2231 | const struct drm_framebuffer *fb = |
| 2232 | crtc->base.primary->state->fb; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2233 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 2234 | int htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2235 | int hdisplay = crtc->config->pipe_src_w; |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2236 | int cpp = fb->format->cpp[0]; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2237 | int entries; |
| 2238 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2239 | entries = intel_wm_method2(clock, htotal, |
| 2240 | hdisplay, cpp, sr_latency_ns / 100); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2241 | entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE); |
| 2242 | srwm = I965_FIFO_SIZE - entries; |
| 2243 | if (srwm < 0) |
| 2244 | srwm = 1; |
| 2245 | srwm &= 0x1ff; |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2246 | drm_dbg_kms(&dev_priv->drm, |
| 2247 | "self-refresh entries: %d, wm: %d\n", |
| 2248 | entries, srwm); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2249 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2250 | entries = intel_wm_method2(clock, htotal, |
| 2251 | crtc->base.cursor->state->crtc_w, 4, |
| 2252 | sr_latency_ns / 100); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2253 | entries = DIV_ROUND_UP(entries, |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2254 | i965_cursor_wm_info.cacheline_size) + |
| 2255 | i965_cursor_wm_info.guard_size; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2256 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2257 | cursor_sr = i965_cursor_wm_info.fifo_size - entries; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2258 | if (cursor_sr > i965_cursor_wm_info.max_wm) |
| 2259 | cursor_sr = i965_cursor_wm_info.max_wm; |
| 2260 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2261 | drm_dbg_kms(&dev_priv->drm, |
| 2262 | "self-refresh watermark: display plane %d " |
| 2263 | "cursor %d\n", srwm, cursor_sr); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2264 | |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2265 | cxsr_enabled = true; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2266 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2267 | cxsr_enabled = false; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2268 | /* Turn off self refresh if both pipes are enabled */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 2269 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2270 | } |
| 2271 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2272 | drm_dbg_kms(&dev_priv->drm, |
| 2273 | "Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", |
| 2274 | srwm); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2275 | |
| 2276 | /* 965 has limitations... */ |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 2277 | I915_WRITE(DSPFW1, FW_WM(srwm, SR) | |
| 2278 | FW_WM(8, CURSORB) | |
| 2279 | FW_WM(8, PLANEB) | |
| 2280 | FW_WM(8, PLANEA)); |
| 2281 | I915_WRITE(DSPFW2, FW_WM(8, CURSORA) | |
| 2282 | FW_WM(8, PLANEC_OLD)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2283 | /* update cursor SR watermark */ |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 2284 | I915_WRITE(DSPFW3, FW_WM(cursor_sr, CURSOR_SR)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 2285 | |
| 2286 | if (cxsr_enabled) |
| 2287 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2288 | } |
| 2289 | |
Ville Syrjälä | f499896 | 2015-03-10 17:02:21 +0200 | [diff] [blame] | 2290 | #undef FW_WM |
| 2291 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 2292 | static void i9xx_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2293 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2294 | struct drm_i915_private *dev_priv = to_i915(unused_crtc->base.dev); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2295 | const struct intel_watermark_params *wm_info; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2296 | u32 fwater_lo; |
| 2297 | u32 fwater_hi; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2298 | int cwm, srwm = 1; |
| 2299 | int fifo_size; |
| 2300 | int planea_wm, planeb_wm; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2301 | struct intel_crtc *crtc, *enabled = NULL; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2302 | |
Ville Syrjälä | a9097be | 2016-10-31 22:37:20 +0200 | [diff] [blame] | 2303 | if (IS_I945GM(dev_priv)) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2304 | wm_info = &i945_wm_info; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2305 | else if (!IS_GEN(dev_priv, 2)) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2306 | wm_info = &i915_wm_info; |
| 2307 | else |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2308 | wm_info = &i830_a_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2309 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 2310 | fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_A); |
| 2311 | crtc = intel_get_crtc_for_plane(dev_priv, PLANE_A); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2312 | if (intel_crtc_active(crtc)) { |
| 2313 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2314 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2315 | const struct drm_framebuffer *fb = |
| 2316 | crtc->base.primary->state->fb; |
| 2317 | int cpp; |
| 2318 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2319 | if (IS_GEN(dev_priv, 2)) |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2320 | cpp = 4; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2321 | else |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2322 | cpp = fb->format->cpp[0]; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2323 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2324 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2325 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 2326 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2327 | enabled = crtc; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2328 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2329 | planea_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2330 | if (planea_wm > (long)wm_info->max_wm) |
| 2331 | planea_wm = wm_info->max_wm; |
| 2332 | } |
| 2333 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2334 | if (IS_GEN(dev_priv, 2)) |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2335 | wm_info = &i830_bc_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2336 | |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 2337 | fifo_size = dev_priv->display.get_fifo_size(dev_priv, PLANE_B); |
| 2338 | crtc = intel_get_crtc_for_plane(dev_priv, PLANE_B); |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2339 | if (intel_crtc_active(crtc)) { |
| 2340 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2341 | &crtc->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2342 | const struct drm_framebuffer *fb = |
| 2343 | crtc->base.primary->state->fb; |
| 2344 | int cpp; |
| 2345 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2346 | if (IS_GEN(dev_priv, 2)) |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2347 | cpp = 4; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2348 | else |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2349 | cpp = fb->format->cpp[0]; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2350 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2351 | planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 2352 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 2353 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2354 | if (enabled == NULL) |
| 2355 | enabled = crtc; |
| 2356 | else |
| 2357 | enabled = NULL; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2358 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2359 | planeb_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 2360 | if (planeb_wm > (long)wm_info->max_wm) |
| 2361 | planeb_wm = wm_info->max_wm; |
| 2362 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2363 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2364 | drm_dbg_kms(&dev_priv->drm, |
| 2365 | "FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2366 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 2367 | if (IS_I915GM(dev_priv) && enabled) { |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 2368 | struct drm_i915_gem_object *obj; |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 2369 | |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2370 | obj = intel_fb_obj(enabled->base.primary->state->fb); |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 2371 | |
| 2372 | /* self-refresh seems busted with untiled */ |
Chris Wilson | 3e510a8 | 2016-08-05 10:14:23 +0100 | [diff] [blame] | 2373 | if (!i915_gem_object_is_tiled(obj)) |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 2374 | enabled = NULL; |
| 2375 | } |
| 2376 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2377 | /* |
| 2378 | * Overlay gets an aggressive default since video jitter is bad. |
| 2379 | */ |
| 2380 | cwm = 2; |
| 2381 | |
| 2382 | /* Play safe and disable self-refresh before adjusting watermarks. */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 2383 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2384 | |
| 2385 | /* Calc sr entries for one plane configs */ |
Ville Syrjälä | 03427fc | 2016-10-31 22:37:18 +0200 | [diff] [blame] | 2386 | if (HAS_FW_BLC(dev_priv) && enabled) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2387 | /* self-refresh has much higher latency */ |
| 2388 | static const int sr_latency_ns = 6000; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2389 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2390 | &enabled->config->hw.adjusted_mode; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2391 | const struct drm_framebuffer *fb = |
| 2392 | enabled->base.primary->state->fb; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2393 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 2394 | int htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2395 | int hdisplay = enabled->config->pipe_src_w; |
| 2396 | int cpp; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2397 | int entries; |
| 2398 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 2399 | if (IS_I915GM(dev_priv) || IS_I945GM(dev_priv)) |
Ville Syrjälä | 2d1b505 | 2016-07-29 17:57:01 +0300 | [diff] [blame] | 2400 | cpp = 4; |
Ville Syrjälä | efc2611 | 2016-10-31 22:37:04 +0200 | [diff] [blame] | 2401 | else |
Ville Syrjälä | 353c859 | 2016-12-14 23:30:57 +0200 | [diff] [blame] | 2402 | cpp = fb->format->cpp[0]; |
Ville Syrjälä | 2d1b505 | 2016-07-29 17:57:01 +0300 | [diff] [blame] | 2403 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2404 | entries = intel_wm_method2(clock, htotal, hdisplay, cpp, |
| 2405 | sr_latency_ns / 100); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2406 | entries = DIV_ROUND_UP(entries, wm_info->cacheline_size); |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2407 | drm_dbg_kms(&dev_priv->drm, |
| 2408 | "self-refresh entries: %d\n", entries); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2409 | srwm = wm_info->fifo_size - entries; |
| 2410 | if (srwm < 0) |
| 2411 | srwm = 1; |
| 2412 | |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 2413 | if (IS_I945G(dev_priv) || IS_I945GM(dev_priv)) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2414 | I915_WRITE(FW_BLC_SELF, |
| 2415 | FW_BLC_SELF_FIFO_MASK | (srwm & 0xff)); |
Ville Syrjälä | acb9135 | 2016-07-29 17:57:02 +0300 | [diff] [blame] | 2416 | else |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2417 | I915_WRITE(FW_BLC_SELF, srwm & 0x3f); |
| 2418 | } |
| 2419 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2420 | drm_dbg_kms(&dev_priv->drm, |
| 2421 | "Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", |
| 2422 | planea_wm, planeb_wm, cwm, srwm); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2423 | |
| 2424 | fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f); |
| 2425 | fwater_hi = (cwm & 0x1f); |
| 2426 | |
| 2427 | /* Set request length to 8 cachelines per fetch */ |
| 2428 | fwater_lo = fwater_lo | (1 << 24) | (1 << 8); |
| 2429 | fwater_hi = fwater_hi | (1 << 8); |
| 2430 | |
| 2431 | I915_WRITE(FW_BLC, fwater_lo); |
| 2432 | I915_WRITE(FW_BLC2, fwater_hi); |
| 2433 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 2434 | if (enabled) |
| 2435 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2436 | } |
| 2437 | |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 2438 | static void i845_update_wm(struct intel_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2439 | { |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2440 | 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] | 2441 | struct intel_crtc *crtc; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2442 | const struct drm_display_mode *adjusted_mode; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2443 | u32 fwater_lo; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2444 | int planea_wm; |
| 2445 | |
Ville Syrjälä | ffc7a76 | 2016-10-31 22:37:21 +0200 | [diff] [blame] | 2446 | crtc = single_enabled_crtc(dev_priv); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2447 | if (crtc == NULL) |
| 2448 | return; |
| 2449 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2450 | adjusted_mode = &crtc->config->hw.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 2451 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 2452 | &i845_wm_info, |
Ville Syrjälä | bdaf843 | 2017-11-17 21:19:11 +0200 | [diff] [blame] | 2453 | dev_priv->display.get_fifo_size(dev_priv, PLANE_A), |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 2454 | 4, pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2455 | fwater_lo = I915_READ(FW_BLC) & ~0xfff; |
| 2456 | fwater_lo |= (3<<8) | planea_wm; |
| 2457 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2458 | drm_dbg_kms(&dev_priv->drm, |
| 2459 | "Setting FIFO watermarks - A: %d\n", planea_wm); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 2460 | |
| 2461 | I915_WRITE(FW_BLC, fwater_lo); |
| 2462 | } |
| 2463 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2464 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2465 | static unsigned int ilk_wm_method1(unsigned int pixel_rate, |
| 2466 | unsigned int cpp, |
| 2467 | unsigned int latency) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2468 | { |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2469 | unsigned int ret; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2470 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2471 | ret = intel_wm_method1(pixel_rate, cpp, latency); |
| 2472 | ret = DIV_ROUND_UP(ret, 64) + 2; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2473 | |
| 2474 | return ret; |
| 2475 | } |
| 2476 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2477 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2478 | static unsigned int ilk_wm_method2(unsigned int pixel_rate, |
| 2479 | unsigned int htotal, |
| 2480 | unsigned int width, |
| 2481 | unsigned int cpp, |
| 2482 | unsigned int latency) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2483 | { |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2484 | unsigned int ret; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2485 | |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2486 | ret = intel_wm_method2(pixel_rate, htotal, |
| 2487 | width, cpp, latency); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2488 | ret = DIV_ROUND_UP(ret, 64) + 2; |
Ville Syrjälä | baf69ca | 2017-04-21 21:14:27 +0300 | [diff] [blame] | 2489 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2490 | return ret; |
| 2491 | } |
| 2492 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2493 | 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] | 2494 | { |
Matt Roper | 1512688 | 2015-12-03 11:37:40 -0800 | [diff] [blame] | 2495 | /* |
| 2496 | * Neither of these should be possible since this function shouldn't be |
| 2497 | * called if the CRTC is off or the plane is invisible. But let's be |
| 2498 | * extra paranoid to avoid a potential divide-by-zero if we screw up |
| 2499 | * elsewhere in the driver. |
| 2500 | */ |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2501 | if (WARN_ON(!cpp)) |
Matt Roper | 1512688 | 2015-12-03 11:37:40 -0800 | [diff] [blame] | 2502 | return 0; |
| 2503 | if (WARN_ON(!horiz_pixels)) |
| 2504 | return 0; |
| 2505 | |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2506 | return DIV_ROUND_UP(pri_val * 64, horiz_pixels * cpp) + 2; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2507 | } |
| 2508 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2509 | struct ilk_wm_maximums { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2510 | u16 pri; |
| 2511 | u16 spr; |
| 2512 | u16 cur; |
| 2513 | u16 fbc; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2514 | }; |
| 2515 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2516 | /* |
| 2517 | * For both WM_PIPE and WM_LP. |
| 2518 | * mem_value must be in 0.1us units. |
| 2519 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2520 | static u32 ilk_compute_pri_wm(const struct intel_crtc_state *crtc_state, |
| 2521 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2522 | u32 mem_value, bool is_lp) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2523 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2524 | u32 method1, method2; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2525 | int cpp; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2526 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 2527 | if (mem_value == 0) |
| 2528 | return U32_MAX; |
| 2529 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2530 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2531 | return 0; |
| 2532 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2533 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2534 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2535 | method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2536 | |
| 2537 | if (!is_lp) |
| 2538 | return method1; |
| 2539 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2540 | method2 = ilk_wm_method2(crtc_state->pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2541 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2542 | drm_rect_width(&plane_state->uapi.dst), |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2543 | cpp, mem_value); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2544 | |
| 2545 | return min(method1, method2); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2546 | } |
| 2547 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2548 | /* |
| 2549 | * For both WM_PIPE and WM_LP. |
| 2550 | * mem_value must be in 0.1us units. |
| 2551 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2552 | static u32 ilk_compute_spr_wm(const struct intel_crtc_state *crtc_state, |
| 2553 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2554 | u32 mem_value) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2555 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2556 | u32 method1, method2; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2557 | int cpp; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2558 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 2559 | if (mem_value == 0) |
| 2560 | return U32_MAX; |
| 2561 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2562 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2563 | return 0; |
| 2564 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2565 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2566 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2567 | method1 = ilk_wm_method1(crtc_state->pixel_rate, cpp, mem_value); |
| 2568 | method2 = ilk_wm_method2(crtc_state->pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2569 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2570 | drm_rect_width(&plane_state->uapi.dst), |
Ville Syrjälä | ac48496 | 2016-01-20 21:05:26 +0200 | [diff] [blame] | 2571 | cpp, mem_value); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2572 | return min(method1, method2); |
| 2573 | } |
| 2574 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2575 | /* |
| 2576 | * For both WM_PIPE and WM_LP. |
| 2577 | * mem_value must be in 0.1us units. |
| 2578 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2579 | static u32 ilk_compute_cur_wm(const struct intel_crtc_state *crtc_state, |
| 2580 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2581 | u32 mem_value) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2582 | { |
Ville Syrjälä | a5509ab | 2017-02-17 17:01:59 +0200 | [diff] [blame] | 2583 | int cpp; |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 2584 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 2585 | if (mem_value == 0) |
| 2586 | return U32_MAX; |
| 2587 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2588 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2589 | return 0; |
| 2590 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2591 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | a5509ab | 2017-02-17 17:01:59 +0200 | [diff] [blame] | 2592 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2593 | return ilk_wm_method2(crtc_state->pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2594 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2595 | drm_rect_width(&plane_state->uapi.dst), |
Maarten Lankhorst | 3a61276 | 2019-10-04 13:34:54 +0200 | [diff] [blame] | 2596 | cpp, mem_value); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2597 | } |
| 2598 | |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2599 | /* Only for WM_LP. */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2600 | static u32 ilk_compute_fbc_wm(const struct intel_crtc_state *crtc_state, |
| 2601 | const struct intel_plane_state *plane_state, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2602 | u32 pri_val) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2603 | { |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2604 | int cpp; |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 2605 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2606 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2607 | return 0; |
| 2608 | |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 2609 | cpp = plane_state->hw.fb->format->cpp[0]; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 2610 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 2611 | return ilk_wm_fbc(pri_val, drm_rect_width(&plane_state->uapi.dst), |
| 2612 | cpp); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2613 | } |
| 2614 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2615 | static unsigned int |
| 2616 | ilk_display_fifo_size(const struct drm_i915_private *dev_priv) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2617 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2618 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2619 | return 3072; |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2620 | else if (INTEL_GEN(dev_priv) >= 7) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2621 | return 768; |
| 2622 | else |
| 2623 | return 512; |
| 2624 | } |
| 2625 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2626 | static unsigned int |
| 2627 | ilk_plane_wm_reg_max(const struct drm_i915_private *dev_priv, |
| 2628 | int level, bool is_sprite) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2629 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2630 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2631 | /* BDW primary/sprite plane watermarks */ |
| 2632 | return level == 0 ? 255 : 2047; |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2633 | else if (INTEL_GEN(dev_priv) >= 7) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2634 | /* IVB/HSW primary/sprite plane watermarks */ |
| 2635 | return level == 0 ? 127 : 1023; |
| 2636 | else if (!is_sprite) |
| 2637 | /* ILK/SNB primary plane watermarks */ |
| 2638 | return level == 0 ? 127 : 511; |
| 2639 | else |
| 2640 | /* ILK/SNB sprite plane watermarks */ |
| 2641 | return level == 0 ? 63 : 255; |
| 2642 | } |
| 2643 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2644 | static unsigned int |
| 2645 | 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] | 2646 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2647 | if (INTEL_GEN(dev_priv) >= 7) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2648 | return level == 0 ? 63 : 255; |
| 2649 | else |
| 2650 | return level == 0 ? 31 : 63; |
| 2651 | } |
| 2652 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2653 | 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] | 2654 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2655 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2656 | return 31; |
| 2657 | else |
| 2658 | return 15; |
| 2659 | } |
| 2660 | |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2661 | /* Calculate the maximum primary/sprite plane watermark */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2662 | 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] | 2663 | int level, |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2664 | const struct intel_wm_config *config, |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2665 | enum intel_ddb_partitioning ddb_partitioning, |
| 2666 | bool is_sprite) |
| 2667 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2668 | unsigned int fifo_size = ilk_display_fifo_size(dev_priv); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2669 | |
| 2670 | /* if sprites aren't enabled, sprites get nothing */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2671 | if (is_sprite && !config->sprites_enabled) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2672 | return 0; |
| 2673 | |
| 2674 | /* HSW allows LP1+ watermarks even with multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2675 | if (level == 0 || config->num_pipes_active > 1) { |
Jani Nikula | 2497787 | 2019-09-11 12:26:08 +0300 | [diff] [blame] | 2676 | fifo_size /= INTEL_NUM_PIPES(dev_priv); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2677 | |
| 2678 | /* |
| 2679 | * For some reason the non self refresh |
| 2680 | * FIFO size is only half of the self |
| 2681 | * refresh FIFO size on ILK/SNB. |
| 2682 | */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2683 | if (INTEL_GEN(dev_priv) <= 6) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2684 | fifo_size /= 2; |
| 2685 | } |
| 2686 | |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2687 | if (config->sprites_enabled) { |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2688 | /* level 0 is always calculated with 1:1 split */ |
| 2689 | if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) { |
| 2690 | if (is_sprite) |
| 2691 | fifo_size *= 5; |
| 2692 | fifo_size /= 6; |
| 2693 | } else { |
| 2694 | fifo_size /= 2; |
| 2695 | } |
| 2696 | } |
| 2697 | |
| 2698 | /* clamp to max that the registers can hold */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2699 | 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] | 2700 | } |
| 2701 | |
| 2702 | /* Calculate the maximum cursor plane watermark */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2703 | 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] | 2704 | int level, |
| 2705 | const struct intel_wm_config *config) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2706 | { |
| 2707 | /* HSW LP1+ watermarks w/ multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2708 | if (level > 0 && config->num_pipes_active > 1) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2709 | return 64; |
| 2710 | |
| 2711 | /* otherwise just report max that registers can hold */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2712 | return ilk_cursor_wm_reg_max(dev_priv, level); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2713 | } |
| 2714 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2715 | 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] | 2716 | int level, |
| 2717 | const struct intel_wm_config *config, |
| 2718 | enum intel_ddb_partitioning ddb_partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2719 | struct ilk_wm_maximums *max) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2720 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 2721 | max->pri = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, false); |
| 2722 | max->spr = ilk_plane_wm_max(dev_priv, level, config, ddb_partitioning, true); |
| 2723 | max->cur = ilk_cursor_wm_max(dev_priv, level, config); |
| 2724 | max->fbc = ilk_fbc_wm_reg_max(dev_priv); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2725 | } |
| 2726 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2727 | 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] | 2728 | int level, |
| 2729 | struct ilk_wm_maximums *max) |
| 2730 | { |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 2731 | max->pri = ilk_plane_wm_reg_max(dev_priv, level, false); |
| 2732 | max->spr = ilk_plane_wm_reg_max(dev_priv, level, true); |
| 2733 | max->cur = ilk_cursor_wm_reg_max(dev_priv, level); |
| 2734 | max->fbc = ilk_fbc_wm_reg_max(dev_priv); |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2735 | } |
| 2736 | |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 2737 | static bool ilk_validate_wm_level(int level, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2738 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 2739 | struct intel_wm_level *result) |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2740 | { |
| 2741 | bool ret; |
| 2742 | |
| 2743 | /* already determined to be invalid? */ |
| 2744 | if (!result->enable) |
| 2745 | return false; |
| 2746 | |
| 2747 | result->enable = result->pri_val <= max->pri && |
| 2748 | result->spr_val <= max->spr && |
| 2749 | result->cur_val <= max->cur; |
| 2750 | |
| 2751 | ret = result->enable; |
| 2752 | |
| 2753 | /* |
| 2754 | * HACK until we can pre-compute everything, |
| 2755 | * and thus fail gracefully if LP0 watermarks |
| 2756 | * are exceeded... |
| 2757 | */ |
| 2758 | if (level == 0 && !result->enable) { |
| 2759 | if (result->pri_val > max->pri) |
| 2760 | DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n", |
| 2761 | level, result->pri_val, max->pri); |
| 2762 | if (result->spr_val > max->spr) |
| 2763 | DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n", |
| 2764 | level, result->spr_val, max->spr); |
| 2765 | if (result->cur_val > max->cur) |
| 2766 | DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n", |
| 2767 | level, result->cur_val, max->cur); |
| 2768 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2769 | result->pri_val = min_t(u32, result->pri_val, max->pri); |
| 2770 | result->spr_val = min_t(u32, result->spr_val, max->spr); |
| 2771 | result->cur_val = min_t(u32, result->cur_val, max->cur); |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2772 | result->enable = true; |
| 2773 | } |
| 2774 | |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2775 | return ret; |
| 2776 | } |
| 2777 | |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 2778 | 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] | 2779 | const struct intel_crtc *intel_crtc, |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2780 | int level, |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2781 | struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 2782 | const struct intel_plane_state *pristate, |
| 2783 | const struct intel_plane_state *sprstate, |
| 2784 | const struct intel_plane_state *curstate, |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 2785 | struct intel_wm_level *result) |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2786 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2787 | u16 pri_latency = dev_priv->wm.pri_latency[level]; |
| 2788 | u16 spr_latency = dev_priv->wm.spr_latency[level]; |
| 2789 | u16 cur_latency = dev_priv->wm.cur_latency[level]; |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2790 | |
| 2791 | /* WM1+ latency values stored in 0.5us units */ |
| 2792 | if (level > 0) { |
| 2793 | pri_latency *= 5; |
| 2794 | spr_latency *= 5; |
| 2795 | cur_latency *= 5; |
| 2796 | } |
| 2797 | |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2798 | if (pristate) { |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2799 | result->pri_val = ilk_compute_pri_wm(crtc_state, pristate, |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2800 | pri_latency, level); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2801 | 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] | 2802 | } |
| 2803 | |
| 2804 | if (sprstate) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2805 | result->spr_val = ilk_compute_spr_wm(crtc_state, sprstate, spr_latency); |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2806 | |
| 2807 | if (curstate) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2808 | result->cur_val = ilk_compute_cur_wm(crtc_state, curstate, cur_latency); |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 2809 | |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2810 | result->enable = true; |
| 2811 | } |
| 2812 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2813 | static u32 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 2814 | hsw_compute_linetime_wm(const struct intel_crtc_state *crtc_state) |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2815 | { |
Ville Syrjälä | 532f7a7 | 2016-04-29 17:31:17 +0300 | [diff] [blame] | 2816 | const struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 2817 | to_intel_atomic_state(crtc_state->uapi.state); |
Matt Roper | ee91a15 | 2015-12-03 11:37:39 -0800 | [diff] [blame] | 2818 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2819 | &crtc_state->hw.adjusted_mode; |
Paulo Zanoni | 85a02de | 2013-05-03 17:23:43 -0300 | [diff] [blame] | 2820 | u32 linetime, ips_linetime; |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2821 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 2822 | if (!crtc_state->hw.active) |
Matt Roper | ee91a15 | 2015-12-03 11:37:39 -0800 | [diff] [blame] | 2823 | return 0; |
| 2824 | if (WARN_ON(adjusted_mode->crtc_clock == 0)) |
| 2825 | return 0; |
Ville Syrjälä | bb0f4aa | 2017-01-20 20:21:59 +0200 | [diff] [blame] | 2826 | if (WARN_ON(intel_state->cdclk.logical.cdclk == 0)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2827 | return 0; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2828 | |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2829 | /* The WM are computed with base on how long it takes to fill a single |
| 2830 | * row at the given clock rate, multiplied by 8. |
| 2831 | * */ |
Ville Syrjälä | 124abe0 | 2015-09-08 13:40:45 +0300 | [diff] [blame] | 2832 | linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8, |
| 2833 | adjusted_mode->crtc_clock); |
| 2834 | ips_linetime = DIV_ROUND_CLOSEST(adjusted_mode->crtc_htotal * 1000 * 8, |
Ville Syrjälä | bb0f4aa | 2017-01-20 20:21:59 +0200 | [diff] [blame] | 2835 | intel_state->cdclk.logical.cdclk); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2836 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2837 | return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) | |
| 2838 | PIPE_WM_LINETIME_TIME(linetime); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2839 | } |
| 2840 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 2841 | static void intel_read_wm_latency(struct drm_i915_private *dev_priv, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2842 | u16 wm[8]) |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2843 | { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2844 | struct intel_uncore *uncore = &dev_priv->uncore; |
| 2845 | |
Paulo Zanoni | 50682ee | 2017-08-09 13:52:43 -0700 | [diff] [blame] | 2846 | if (INTEL_GEN(dev_priv) >= 9) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2847 | u32 val; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2848 | int ret, i; |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2849 | int level, max_level = ilk_wm_max_level(dev_priv); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2850 | |
| 2851 | /* read the first set of memory latencies[0:3] */ |
| 2852 | val = 0; /* data0 to be programmed to 0 for first set */ |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2853 | ret = sandybridge_pcode_read(dev_priv, |
| 2854 | GEN9_PCODE_READ_MEM_LATENCY, |
Ville Syrjälä | d284d51 | 2019-05-21 19:40:24 +0300 | [diff] [blame] | 2855 | &val, NULL); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2856 | |
| 2857 | if (ret) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2858 | drm_err(&dev_priv->drm, |
| 2859 | "SKL Mailbox read error = %d\n", ret); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2860 | return; |
| 2861 | } |
| 2862 | |
| 2863 | wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2864 | wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 2865 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2866 | wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 2867 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2868 | wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 2869 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2870 | |
| 2871 | /* read the second set of memory latencies[4:7] */ |
| 2872 | val = 1; /* data0 to be programmed to 1 for second set */ |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2873 | ret = sandybridge_pcode_read(dev_priv, |
| 2874 | GEN9_PCODE_READ_MEM_LATENCY, |
Ville Syrjälä | d284d51 | 2019-05-21 19:40:24 +0300 | [diff] [blame] | 2875 | &val, NULL); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2876 | if (ret) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2877 | drm_err(&dev_priv->drm, |
| 2878 | "SKL Mailbox read error = %d\n", ret); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2879 | return; |
| 2880 | } |
| 2881 | |
| 2882 | wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2883 | wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 2884 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2885 | wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 2886 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2887 | wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 2888 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2889 | |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2890 | /* |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2891 | * If a level n (n > 1) has a 0us latency, all levels m (m >= n) |
| 2892 | * need to be disabled. We make sure to sanitize the values out |
| 2893 | * of the punit to satisfy this requirement. |
| 2894 | */ |
| 2895 | for (level = 1; level <= max_level; level++) { |
| 2896 | if (wm[level] == 0) { |
| 2897 | for (i = level + 1; i <= max_level; i++) |
| 2898 | wm[i] = 0; |
| 2899 | break; |
| 2900 | } |
| 2901 | } |
| 2902 | |
| 2903 | /* |
Paulo Zanoni | 50682ee | 2017-08-09 13:52:43 -0700 | [diff] [blame] | 2904 | * WaWmMemoryReadLatency:skl+,glk |
Damien Lespiau | 6f97235 | 2015-02-09 19:33:07 +0000 | [diff] [blame] | 2905 | * |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2906 | * punit doesn't take into account the read latency so we need |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2907 | * to add 2us to the various latency levels we retrieve from the |
| 2908 | * punit when level 0 response data us 0us. |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2909 | */ |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2910 | if (wm[0] == 0) { |
| 2911 | wm[0] += 2; |
| 2912 | for (level = 1; level <= max_level; level++) { |
| 2913 | if (wm[level] == 0) |
| 2914 | break; |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2915 | wm[level] += 2; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2916 | } |
Paulo Zanoni | 0727e40 | 2016-09-22 18:00:30 -0300 | [diff] [blame] | 2917 | } |
| 2918 | |
Mahesh Kumar | 86b5928 | 2018-08-31 16:39:42 +0530 | [diff] [blame] | 2919 | /* |
| 2920 | * WA Level-0 adjustment for 16GB DIMMs: SKL+ |
| 2921 | * If we could not get dimm info enable this WA to prevent from |
| 2922 | * any underrun. If not able to get Dimm info assume 16GB dimm |
| 2923 | * to avoid any underrun. |
| 2924 | */ |
Ville Syrjälä | 5d6f36b | 2018-10-23 21:21:02 +0300 | [diff] [blame] | 2925 | if (dev_priv->dram_info.is_16gb_dimm) |
Mahesh Kumar | 86b5928 | 2018-08-31 16:39:42 +0530 | [diff] [blame] | 2926 | wm[0] += 1; |
| 2927 | |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2928 | } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2929 | u64 sskpd = intel_uncore_read64(uncore, MCH_SSKPD); |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2930 | |
| 2931 | wm[0] = (sskpd >> 56) & 0xFF; |
| 2932 | if (wm[0] == 0) |
| 2933 | wm[0] = sskpd & 0xF; |
Ville Syrjälä | e5d5019 | 2013-07-05 11:57:22 +0300 | [diff] [blame] | 2934 | wm[1] = (sskpd >> 4) & 0xFF; |
| 2935 | wm[2] = (sskpd >> 12) & 0xFF; |
| 2936 | wm[3] = (sskpd >> 20) & 0x1FF; |
| 2937 | wm[4] = (sskpd >> 32) & 0x1FF; |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 2938 | } else if (INTEL_GEN(dev_priv) >= 6) { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2939 | u32 sskpd = intel_uncore_read(uncore, MCH_SSKPD); |
Ville Syrjälä | 63cf9a1 | 2013-07-05 11:57:23 +0300 | [diff] [blame] | 2940 | |
| 2941 | wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK; |
| 2942 | wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK; |
| 2943 | wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK; |
| 2944 | wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK; |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 2945 | } else if (INTEL_GEN(dev_priv) >= 5) { |
Tvrtko Ursulin | 1cea02d | 2019-06-10 13:06:07 +0100 | [diff] [blame] | 2946 | u32 mltr = intel_uncore_read(uncore, MLTR_ILK); |
Ville Syrjälä | 3a88d0a | 2013-08-01 16:18:49 +0300 | [diff] [blame] | 2947 | |
| 2948 | /* ILK primary LP0 latency is 700 ns */ |
| 2949 | wm[0] = 7; |
| 2950 | wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK; |
| 2951 | wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK; |
Paulo Zanoni | 50682ee | 2017-08-09 13:52:43 -0700 | [diff] [blame] | 2952 | } else { |
| 2953 | MISSING_CASE(INTEL_DEVID(dev_priv)); |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2954 | } |
| 2955 | } |
| 2956 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2957 | 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] | 2958 | u16 wm[5]) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2959 | { |
| 2960 | /* ILK sprite LP0 latency is 1300 ns */ |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2961 | if (IS_GEN(dev_priv, 5)) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2962 | wm[0] = 13; |
| 2963 | } |
| 2964 | |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 2965 | 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] | 2966 | u16 wm[5]) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2967 | { |
| 2968 | /* ILK cursor LP0 latency is 1300 ns */ |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 2969 | if (IS_GEN(dev_priv, 5)) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2970 | wm[0] = 13; |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2971 | } |
| 2972 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2973 | 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] | 2974 | { |
| 2975 | /* how many WM levels are we expecting */ |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2976 | if (INTEL_GEN(dev_priv) >= 9) |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2977 | return 7; |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2978 | else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2979 | return 4; |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 2980 | else if (INTEL_GEN(dev_priv) >= 6) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2981 | return 3; |
| 2982 | else |
| 2983 | return 2; |
| 2984 | } |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 2985 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2986 | 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] | 2987 | const char *name, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 2988 | const u16 wm[8]) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2989 | { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 2990 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2991 | |
| 2992 | for (level = 0; level <= max_level; level++) { |
| 2993 | unsigned int latency = wm[level]; |
| 2994 | |
| 2995 | if (latency == 0) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 2996 | drm_dbg_kms(&dev_priv->drm, |
| 2997 | "%s WM%d latency not provided\n", |
| 2998 | name, level); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2999 | continue; |
| 3000 | } |
| 3001 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 3002 | /* |
| 3003 | * - latencies are in us on gen9. |
| 3004 | * - before then, WM1+ latency values are in 0.5us units |
| 3005 | */ |
Paulo Zanoni | dfc267a | 2017-08-09 13:52:46 -0700 | [diff] [blame] | 3006 | if (INTEL_GEN(dev_priv) >= 9) |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 3007 | latency *= 10; |
| 3008 | else if (level > 0) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 3009 | latency *= 5; |
| 3010 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3011 | drm_dbg_kms(&dev_priv->drm, |
| 3012 | "%s WM%d latency %u (%u.%u usec)\n", name, level, |
| 3013 | wm[level], latency / 10, latency % 10); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 3014 | } |
| 3015 | } |
| 3016 | |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3017 | static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv, |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 3018 | u16 wm[5], u16 min) |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3019 | { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3020 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3021 | |
| 3022 | if (wm[0] >= min) |
| 3023 | return false; |
| 3024 | |
| 3025 | wm[0] = max(wm[0], min); |
| 3026 | for (level = 1; level <= max_level; level++) |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 3027 | 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] | 3028 | |
| 3029 | return true; |
| 3030 | } |
| 3031 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3032 | 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] | 3033 | { |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 3034 | bool changed; |
| 3035 | |
| 3036 | /* |
| 3037 | * The BIOS provided WM memory latency values are often |
| 3038 | * inadequate for high resolution displays. Adjust them. |
| 3039 | */ |
| 3040 | changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | |
| 3041 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) | |
| 3042 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12); |
| 3043 | |
| 3044 | if (!changed) |
| 3045 | return; |
| 3046 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3047 | drm_dbg_kms(&dev_priv->drm, |
| 3048 | "WM latency values increased to avoid potential underruns\n"); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3049 | intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency); |
| 3050 | intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency); |
| 3051 | 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] | 3052 | } |
| 3053 | |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 3054 | static void snb_wm_lp3_irq_quirk(struct drm_i915_private *dev_priv) |
| 3055 | { |
| 3056 | /* |
| 3057 | * On some SNB machines (Thinkpad X220 Tablet at least) |
| 3058 | * LP3 usage can cause vblank interrupts to be lost. |
| 3059 | * The DEIIR bit will go high but it looks like the CPU |
| 3060 | * never gets interrupted. |
| 3061 | * |
| 3062 | * It's not clear whether other interrupt source could |
| 3063 | * be affected or if this is somehow limited to vblank |
| 3064 | * interrupts only. To play it safe we disable LP3 |
| 3065 | * watermarks entirely. |
| 3066 | */ |
| 3067 | if (dev_priv->wm.pri_latency[3] == 0 && |
| 3068 | dev_priv->wm.spr_latency[3] == 0 && |
| 3069 | dev_priv->wm.cur_latency[3] == 0) |
| 3070 | return; |
| 3071 | |
| 3072 | dev_priv->wm.pri_latency[3] = 0; |
| 3073 | dev_priv->wm.spr_latency[3] = 0; |
| 3074 | dev_priv->wm.cur_latency[3] = 0; |
| 3075 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3076 | drm_dbg_kms(&dev_priv->drm, |
| 3077 | "LP3 watermarks disabled due to potential for lost interrupts\n"); |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 3078 | intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency); |
| 3079 | intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency); |
| 3080 | intel_print_wm_latency(dev_priv, "Cursor", dev_priv->wm.cur_latency); |
| 3081 | } |
| 3082 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3083 | 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] | 3084 | { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3085 | intel_read_wm_latency(dev_priv, dev_priv->wm.pri_latency); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 3086 | |
| 3087 | memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency, |
| 3088 | sizeof(dev_priv->wm.pri_latency)); |
| 3089 | memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency, |
| 3090 | sizeof(dev_priv->wm.pri_latency)); |
| 3091 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3092 | intel_fixup_spr_wm_latency(dev_priv, dev_priv->wm.spr_latency); |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 3093 | 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] | 3094 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3095 | intel_print_wm_latency(dev_priv, "Primary", dev_priv->wm.pri_latency); |
| 3096 | intel_print_wm_latency(dev_priv, "Sprite", dev_priv->wm.spr_latency); |
| 3097 | 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] | 3098 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 3099 | if (IS_GEN(dev_priv, 6)) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3100 | snb_wm_latency_quirk(dev_priv); |
Ville Syrjälä | 03981c6 | 2018-11-14 19:34:40 +0200 | [diff] [blame] | 3101 | snb_wm_lp3_irq_quirk(dev_priv); |
| 3102 | } |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 3103 | } |
| 3104 | |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3105 | static void skl_setup_wm_latency(struct drm_i915_private *dev_priv) |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 3106 | { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 3107 | intel_read_wm_latency(dev_priv, dev_priv->wm.skl_latency); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3108 | 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] | 3109 | } |
| 3110 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3111 | 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] | 3112 | struct intel_pipe_wm *pipe_wm) |
| 3113 | { |
| 3114 | /* LP0 watermark maximums depend on this pipe alone */ |
| 3115 | const struct intel_wm_config config = { |
| 3116 | .num_pipes_active = 1, |
| 3117 | .sprites_enabled = pipe_wm->sprites_enabled, |
| 3118 | .sprites_scaled = pipe_wm->sprites_scaled, |
| 3119 | }; |
| 3120 | struct ilk_wm_maximums max; |
| 3121 | |
| 3122 | /* LP0 watermarks always use 1/2 DDB partitioning */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3123 | 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] | 3124 | |
| 3125 | /* At least LP0 must be valid */ |
| 3126 | if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3127 | drm_dbg_kms(&dev_priv->drm, "LP0 watermark invalid\n"); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3128 | return false; |
| 3129 | } |
| 3130 | |
| 3131 | return true; |
| 3132 | } |
| 3133 | |
Matt Roper | 261a27d | 2015-10-08 15:28:25 -0700 | [diff] [blame] | 3134 | /* Compute new watermarks for the pipe */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3135 | static int ilk_compute_pipe_wm(struct intel_crtc_state *crtc_state) |
Matt Roper | 261a27d | 2015-10-08 15:28:25 -0700 | [diff] [blame] | 3136 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3137 | struct drm_i915_private *dev_priv = to_i915(crtc_state->uapi.crtc->dev); |
| 3138 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 3139 | struct intel_pipe_wm *pipe_wm; |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 3140 | struct intel_plane *plane; |
| 3141 | const struct intel_plane_state *plane_state; |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3142 | const struct intel_plane_state *pristate = NULL; |
| 3143 | const struct intel_plane_state *sprstate = NULL; |
| 3144 | const struct intel_plane_state *curstate = NULL; |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3145 | int level, max_level = ilk_wm_max_level(dev_priv), usable_level; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3146 | struct ilk_wm_maximums max; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3147 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3148 | pipe_wm = &crtc_state->wm.ilk.optimal; |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 3149 | |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 3150 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) { |
| 3151 | if (plane->base.type == DRM_PLANE_TYPE_PRIMARY) |
| 3152 | pristate = plane_state; |
| 3153 | else if (plane->base.type == DRM_PLANE_TYPE_OVERLAY) |
| 3154 | sprstate = plane_state; |
| 3155 | else if (plane->base.type == DRM_PLANE_TYPE_CURSOR) |
| 3156 | curstate = plane_state; |
Matt Roper | 43d59ed | 2015-09-24 15:53:07 -0700 | [diff] [blame] | 3157 | } |
| 3158 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3159 | pipe_wm->pipe_enabled = crtc_state->hw.active; |
Maarten Lankhorst | e3bddde | 2016-03-01 11:07:22 +0100 | [diff] [blame] | 3160 | if (sprstate) { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 3161 | pipe_wm->sprites_enabled = sprstate->uapi.visible; |
| 3162 | pipe_wm->sprites_scaled = sprstate->uapi.visible && |
| 3163 | (drm_rect_width(&sprstate->uapi.dst) != drm_rect_width(&sprstate->uapi.src) >> 16 || |
| 3164 | 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] | 3165 | } |
| 3166 | |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3167 | usable_level = max_level; |
| 3168 | |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 3169 | /* ILK/SNB: LP2+ watermarks only w/o sprites */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3170 | if (INTEL_GEN(dev_priv) <= 6 && pipe_wm->sprites_enabled) |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3171 | usable_level = 1; |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 3172 | |
| 3173 | /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */ |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3174 | if (pipe_wm->sprites_scaled) |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3175 | usable_level = 0; |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 3176 | |
Maarten Lankhorst | 71f0a62 | 2016-03-08 10:57:16 +0100 | [diff] [blame] | 3177 | memset(&pipe_wm->wm, 0, sizeof(pipe_wm->wm)); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3178 | ilk_compute_wm_level(dev_priv, intel_crtc, 0, crtc_state, |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3179 | pristate, sprstate, curstate, &pipe_wm->wm[0]); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3180 | |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3181 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3182 | pipe_wm->linetime = hsw_compute_linetime_wm(crtc_state); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3183 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3184 | if (!ilk_validate_pipe_wm(dev_priv, pipe_wm)) |
Maarten Lankhorst | 1a426d6 | 2016-03-02 12:36:03 +0100 | [diff] [blame] | 3185 | return -EINVAL; |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3186 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3187 | ilk_compute_wm_reg_maximums(dev_priv, 1, &max); |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3188 | |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3189 | for (level = 1; level <= usable_level; level++) { |
| 3190 | struct intel_wm_level *wm = &pipe_wm->wm[level]; |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3191 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3192 | ilk_compute_wm_level(dev_priv, intel_crtc, level, crtc_state, |
Maarten Lankhorst | d81f04c | 2016-03-02 12:38:06 +0100 | [diff] [blame] | 3193 | pristate, sprstate, curstate, wm); |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3194 | |
| 3195 | /* |
| 3196 | * Disable any watermark level that exceeds the |
| 3197 | * register maximums since such watermarks are |
| 3198 | * always invalid. |
| 3199 | */ |
Maarten Lankhorst | 28283f4 | 2017-10-19 17:13:40 +0200 | [diff] [blame] | 3200 | if (!ilk_validate_wm_level(level, &max, wm)) { |
| 3201 | memset(wm, 0, sizeof(*wm)); |
| 3202 | break; |
| 3203 | } |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 3204 | } |
| 3205 | |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 3206 | return 0; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3207 | } |
| 3208 | |
| 3209 | /* |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3210 | * Build a set of 'intermediate' watermark values that satisfy both the old |
| 3211 | * state and the new state. These can be programmed to the hardware |
| 3212 | * immediately. |
| 3213 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3214 | static int ilk_compute_intermediate_wm(struct intel_crtc_state *newstate) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3215 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3216 | struct intel_crtc *intel_crtc = to_intel_crtc(newstate->uapi.crtc); |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3217 | struct drm_i915_private *dev_priv = to_i915(intel_crtc->base.dev); |
Matt Roper | e8f1f02 | 2016-05-12 07:05:55 -0700 | [diff] [blame] | 3218 | struct intel_pipe_wm *a = &newstate->wm.ilk.intermediate; |
Maarten Lankhorst | b6b178a | 2017-10-19 17:13:41 +0200 | [diff] [blame] | 3219 | struct intel_atomic_state *intel_state = |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3220 | to_intel_atomic_state(newstate->uapi.state); |
Maarten Lankhorst | b6b178a | 2017-10-19 17:13:41 +0200 | [diff] [blame] | 3221 | const struct intel_crtc_state *oldstate = |
| 3222 | intel_atomic_get_old_crtc_state(intel_state, intel_crtc); |
| 3223 | const struct intel_pipe_wm *b = &oldstate->wm.ilk.optimal; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3224 | int level, max_level = ilk_wm_max_level(dev_priv); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3225 | |
| 3226 | /* |
| 3227 | * Start with the final, target watermarks, then combine with the |
| 3228 | * currently active watermarks to get values that are safe both before |
| 3229 | * and after the vblank. |
| 3230 | */ |
Matt Roper | e8f1f02 | 2016-05-12 07:05:55 -0700 | [diff] [blame] | 3231 | *a = newstate->wm.ilk.optimal; |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3232 | if (!newstate->hw.active || drm_atomic_crtc_needs_modeset(&newstate->uapi) || |
Ville Syrjälä | f255c62 | 2018-11-08 17:10:13 +0200 | [diff] [blame] | 3233 | intel_state->skip_intermediate_wm) |
Maarten Lankhorst | b6b178a | 2017-10-19 17:13:41 +0200 | [diff] [blame] | 3234 | return 0; |
| 3235 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3236 | a->pipe_enabled |= b->pipe_enabled; |
| 3237 | a->sprites_enabled |= b->sprites_enabled; |
| 3238 | a->sprites_scaled |= b->sprites_scaled; |
| 3239 | |
| 3240 | for (level = 0; level <= max_level; level++) { |
| 3241 | struct intel_wm_level *a_wm = &a->wm[level]; |
| 3242 | const struct intel_wm_level *b_wm = &b->wm[level]; |
| 3243 | |
| 3244 | a_wm->enable &= b_wm->enable; |
| 3245 | a_wm->pri_val = max(a_wm->pri_val, b_wm->pri_val); |
| 3246 | a_wm->spr_val = max(a_wm->spr_val, b_wm->spr_val); |
| 3247 | a_wm->cur_val = max(a_wm->cur_val, b_wm->cur_val); |
| 3248 | a_wm->fbc_val = max(a_wm->fbc_val, b_wm->fbc_val); |
| 3249 | } |
| 3250 | |
| 3251 | /* |
| 3252 | * We need to make sure that these merged watermark values are |
| 3253 | * actually a valid configuration themselves. If they're not, |
| 3254 | * there's no safe way to transition from the old state to |
| 3255 | * the new state, so we need to fail the atomic transaction. |
| 3256 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3257 | if (!ilk_validate_pipe_wm(dev_priv, a)) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3258 | return -EINVAL; |
| 3259 | |
| 3260 | /* |
| 3261 | * If our intermediate WM are identical to the final WM, then we can |
| 3262 | * omit the post-vblank programming; only update if it's different. |
| 3263 | */ |
Ville Syrjälä | 5eeb798 | 2017-03-02 19:15:00 +0200 | [diff] [blame] | 3264 | if (memcmp(a, &newstate->wm.ilk.optimal, sizeof(*a)) != 0) |
| 3265 | newstate->wm.need_postvbl_update = true; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3266 | |
| 3267 | return 0; |
| 3268 | } |
| 3269 | |
| 3270 | /* |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3271 | * Merge the watermarks from all active pipes for a specific level. |
| 3272 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3273 | 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] | 3274 | int level, |
| 3275 | struct intel_wm_level *ret_wm) |
| 3276 | { |
| 3277 | const struct intel_crtc *intel_crtc; |
| 3278 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3279 | ret_wm->enable = true; |
| 3280 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3281 | for_each_intel_crtc(&dev_priv->drm, intel_crtc) { |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3282 | const struct intel_pipe_wm *active = &intel_crtc->wm.active.ilk; |
Ville Syrjälä | fe392ef | 2014-03-07 18:32:10 +0200 | [diff] [blame] | 3283 | const struct intel_wm_level *wm = &active->wm[level]; |
| 3284 | |
| 3285 | if (!active->pipe_enabled) |
| 3286 | continue; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3287 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3288 | /* |
| 3289 | * The watermark values may have been used in the past, |
| 3290 | * so we must maintain them in the registers for some |
| 3291 | * time even if the level is now disabled. |
| 3292 | */ |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3293 | if (!wm->enable) |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3294 | ret_wm->enable = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3295 | |
| 3296 | ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val); |
| 3297 | ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val); |
| 3298 | ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val); |
| 3299 | ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val); |
| 3300 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3301 | } |
| 3302 | |
| 3303 | /* |
| 3304 | * Merge all low power watermarks for all active pipes. |
| 3305 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3306 | static void ilk_wm_merge(struct drm_i915_private *dev_priv, |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3307 | const struct intel_wm_config *config, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3308 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3309 | struct intel_pipe_wm *merged) |
| 3310 | { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3311 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3312 | int last_enabled_level = max_level; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3313 | |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3314 | /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */ |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 3315 | if ((INTEL_GEN(dev_priv) <= 6 || IS_IVYBRIDGE(dev_priv)) && |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3316 | config->num_pipes_active > 1) |
Ville Syrjälä | 1204d5b | 2016-04-01 21:53:18 +0300 | [diff] [blame] | 3317 | last_enabled_level = 0; |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3318 | |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 3319 | /* ILK: FBC WM must be disabled always */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3320 | merged->fbc_wm_enabled = INTEL_GEN(dev_priv) >= 6; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3321 | |
| 3322 | /* merge each WM1+ level */ |
| 3323 | for (level = 1; level <= max_level; level++) { |
| 3324 | struct intel_wm_level *wm = &merged->wm[level]; |
| 3325 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3326 | ilk_merge_wm_level(dev_priv, level, wm); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3327 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3328 | if (level > last_enabled_level) |
| 3329 | wm->enable = false; |
| 3330 | else if (!ilk_validate_wm_level(level, max, wm)) |
| 3331 | /* make sure all following levels get disabled */ |
| 3332 | last_enabled_level = level - 1; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3333 | |
| 3334 | /* |
| 3335 | * The spec says it is preferred to disable |
| 3336 | * FBC WMs instead of disabling a WM level. |
| 3337 | */ |
| 3338 | if (wm->fbc_val > max->fbc) { |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3339 | if (wm->enable) |
| 3340 | merged->fbc_wm_enabled = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3341 | wm->fbc_val = 0; |
| 3342 | } |
| 3343 | } |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 3344 | |
| 3345 | /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */ |
| 3346 | /* |
| 3347 | * FIXME this is racy. FBC might get enabled later. |
| 3348 | * What we should check here is whether FBC can be |
| 3349 | * enabled sometime later. |
| 3350 | */ |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 3351 | if (IS_GEN(dev_priv, 5) && !merged->fbc_wm_enabled && |
Paulo Zanoni | 0e631ad | 2015-10-14 17:45:36 -0300 | [diff] [blame] | 3352 | intel_fbc_is_active(dev_priv)) { |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 3353 | for (level = 2; level <= max_level; level++) { |
| 3354 | struct intel_wm_level *wm = &merged->wm[level]; |
| 3355 | |
| 3356 | wm->enable = false; |
| 3357 | } |
| 3358 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3359 | } |
| 3360 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 3361 | static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm) |
| 3362 | { |
| 3363 | /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */ |
| 3364 | return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable); |
| 3365 | } |
| 3366 | |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 3367 | /* The value we need to program into the WM_LPx latency field */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3368 | static unsigned int ilk_wm_lp_latency(struct drm_i915_private *dev_priv, |
| 3369 | int level) |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 3370 | { |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3371 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 3372 | return 2 * level; |
| 3373 | else |
| 3374 | return dev_priv->wm.pri_latency[level]; |
| 3375 | } |
| 3376 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3377 | 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] | 3378 | const struct intel_pipe_wm *merged, |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3379 | enum intel_ddb_partitioning partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3380 | struct ilk_wm_values *results) |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3381 | { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3382 | struct intel_crtc *intel_crtc; |
| 3383 | int level, wm_lp; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3384 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3385 | results->enable_fbc_wm = merged->fbc_wm_enabled; |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3386 | results->partitioning = partitioning; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3387 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3388 | /* LP1+ register values */ |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3389 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 3390 | const struct intel_wm_level *r; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3391 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 3392 | level = ilk_wm_lp_to_level(wm_lp, merged); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3393 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3394 | r = &merged->wm[level]; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3395 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3396 | /* |
| 3397 | * Maintain the watermark values even if the level is |
| 3398 | * disabled. Doing otherwise could cause underruns. |
| 3399 | */ |
| 3400 | results->wm_lp[wm_lp - 1] = |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3401 | (ilk_wm_lp_latency(dev_priv, level) << WM1_LP_LATENCY_SHIFT) | |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 3402 | (r->pri_val << WM1_LP_SR_SHIFT) | |
| 3403 | r->cur_val; |
| 3404 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3405 | if (r->enable) |
| 3406 | results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN; |
| 3407 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3408 | if (INTEL_GEN(dev_priv) >= 8) |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 3409 | results->wm_lp[wm_lp - 1] |= |
| 3410 | r->fbc_val << WM1_LP_FBC_SHIFT_BDW; |
| 3411 | else |
| 3412 | results->wm_lp[wm_lp - 1] |= |
| 3413 | r->fbc_val << WM1_LP_FBC_SHIFT; |
| 3414 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 3415 | /* |
| 3416 | * Always set WM1S_LP_EN when spr_val != 0, even if the |
| 3417 | * level is disabled. Doing otherwise could cause underruns. |
| 3418 | */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3419 | if (INTEL_GEN(dev_priv) <= 6 && r->spr_val) { |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 3420 | drm_WARN_ON(&dev_priv->drm, wm_lp != 1); |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 3421 | results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val; |
| 3422 | } else |
| 3423 | results->wm_lp_spr[wm_lp - 1] = r->spr_val; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3424 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3425 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3426 | /* LP0 register values */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3427 | for_each_intel_crtc(&dev_priv->drm, intel_crtc) { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3428 | enum pipe pipe = intel_crtc->pipe; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3429 | const struct intel_wm_level *r = |
| 3430 | &intel_crtc->wm.active.ilk.wm[0]; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3431 | |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 3432 | if (drm_WARN_ON(&dev_priv->drm, !r->enable)) |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3433 | continue; |
| 3434 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 3435 | results->wm_linetime[pipe] = intel_crtc->wm.active.ilk.linetime; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 3436 | |
| 3437 | results->wm_pipe[pipe] = |
| 3438 | (r->pri_val << WM0_PIPE_PLANE_SHIFT) | |
| 3439 | (r->spr_val << WM0_PIPE_SPRITE_SHIFT) | |
| 3440 | r->cur_val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3441 | } |
| 3442 | } |
| 3443 | |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3444 | /* Find the result with the highest level enabled. Check for enable_fbc_wm in |
| 3445 | * 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] | 3446 | static struct intel_pipe_wm * |
| 3447 | ilk_find_best_result(struct drm_i915_private *dev_priv, |
| 3448 | struct intel_pipe_wm *r1, |
| 3449 | struct intel_pipe_wm *r2) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3450 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 3451 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3452 | int level1 = 0, level2 = 0; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3453 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3454 | for (level = 1; level <= max_level; level++) { |
| 3455 | if (r1->wm[level].enable) |
| 3456 | level1 = level; |
| 3457 | if (r2->wm[level].enable) |
| 3458 | level2 = level; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3459 | } |
| 3460 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3461 | if (level1 == level2) { |
| 3462 | if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3463 | return r2; |
| 3464 | else |
| 3465 | return r1; |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3466 | } else if (level1 > level2) { |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3467 | return r1; |
| 3468 | } else { |
| 3469 | return r2; |
| 3470 | } |
| 3471 | } |
| 3472 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3473 | /* dirty bits used to track which watermarks need changes */ |
| 3474 | #define WM_DIRTY_PIPE(pipe) (1 << (pipe)) |
| 3475 | #define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe))) |
| 3476 | #define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp))) |
| 3477 | #define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3)) |
| 3478 | #define WM_DIRTY_FBC (1 << 24) |
| 3479 | #define WM_DIRTY_DDB (1 << 25) |
| 3480 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3481 | 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] | 3482 | const struct ilk_wm_values *old, |
| 3483 | const struct ilk_wm_values *new) |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3484 | { |
| 3485 | unsigned int dirty = 0; |
| 3486 | enum pipe pipe; |
| 3487 | int wm_lp; |
| 3488 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3489 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3490 | if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) { |
| 3491 | dirty |= WM_DIRTY_LINETIME(pipe); |
| 3492 | /* Must disable LP1+ watermarks too */ |
| 3493 | dirty |= WM_DIRTY_LP_ALL; |
| 3494 | } |
| 3495 | |
| 3496 | if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) { |
| 3497 | dirty |= WM_DIRTY_PIPE(pipe); |
| 3498 | /* Must disable LP1+ watermarks too */ |
| 3499 | dirty |= WM_DIRTY_LP_ALL; |
| 3500 | } |
| 3501 | } |
| 3502 | |
| 3503 | if (old->enable_fbc_wm != new->enable_fbc_wm) { |
| 3504 | dirty |= WM_DIRTY_FBC; |
| 3505 | /* Must disable LP1+ watermarks too */ |
| 3506 | dirty |= WM_DIRTY_LP_ALL; |
| 3507 | } |
| 3508 | |
| 3509 | if (old->partitioning != new->partitioning) { |
| 3510 | dirty |= WM_DIRTY_DDB; |
| 3511 | /* Must disable LP1+ watermarks too */ |
| 3512 | dirty |= WM_DIRTY_LP_ALL; |
| 3513 | } |
| 3514 | |
| 3515 | /* LP1+ watermarks already deemed dirty, no need to continue */ |
| 3516 | if (dirty & WM_DIRTY_LP_ALL) |
| 3517 | return dirty; |
| 3518 | |
| 3519 | /* Find the lowest numbered LP1+ watermark in need of an update... */ |
| 3520 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
| 3521 | if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] || |
| 3522 | old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1]) |
| 3523 | break; |
| 3524 | } |
| 3525 | |
| 3526 | /* ...and mark it and all higher numbered LP1+ watermarks as dirty */ |
| 3527 | for (; wm_lp <= 3; wm_lp++) |
| 3528 | dirty |= WM_DIRTY_LP(wm_lp); |
| 3529 | |
| 3530 | return dirty; |
| 3531 | } |
| 3532 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3533 | static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv, |
| 3534 | unsigned int dirty) |
| 3535 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3536 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3537 | bool changed = false; |
| 3538 | |
| 3539 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) { |
| 3540 | previous->wm_lp[2] &= ~WM1_LP_SR_EN; |
| 3541 | I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]); |
| 3542 | changed = true; |
| 3543 | } |
| 3544 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) { |
| 3545 | previous->wm_lp[1] &= ~WM1_LP_SR_EN; |
| 3546 | I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]); |
| 3547 | changed = true; |
| 3548 | } |
| 3549 | if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) { |
| 3550 | previous->wm_lp[0] &= ~WM1_LP_SR_EN; |
| 3551 | I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]); |
| 3552 | changed = true; |
| 3553 | } |
| 3554 | |
| 3555 | /* |
| 3556 | * Don't touch WM1S_LP_EN here. |
| 3557 | * Doing so could cause underruns. |
| 3558 | */ |
| 3559 | |
| 3560 | return changed; |
| 3561 | } |
| 3562 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3563 | /* |
| 3564 | * The spec says we shouldn't write when we don't need, because every write |
| 3565 | * causes WMs to be re-evaluated, expending some power. |
| 3566 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3567 | static void ilk_write_wm_values(struct drm_i915_private *dev_priv, |
| 3568 | struct ilk_wm_values *results) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3569 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3570 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3571 | unsigned int dirty; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 3572 | u32 val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3573 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 3574 | dirty = ilk_compute_wm_dirty(dev_priv, previous, results); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3575 | if (!dirty) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3576 | return; |
| 3577 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3578 | _ilk_disable_lp_wm(dev_priv, dirty); |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 3579 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3580 | if (dirty & WM_DIRTY_PIPE(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3581 | I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3582 | if (dirty & WM_DIRTY_PIPE(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3583 | I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3584 | if (dirty & WM_DIRTY_PIPE(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3585 | I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]); |
| 3586 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3587 | if (dirty & WM_DIRTY_LINETIME(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3588 | I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3589 | if (dirty & WM_DIRTY_LINETIME(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3590 | I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3591 | if (dirty & WM_DIRTY_LINETIME(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3592 | I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]); |
| 3593 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3594 | if (dirty & WM_DIRTY_DDB) { |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 3595 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 3596 | val = I915_READ(WM_MISC); |
| 3597 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 3598 | val &= ~WM_MISC_DATA_PARTITION_5_6; |
| 3599 | else |
| 3600 | val |= WM_MISC_DATA_PARTITION_5_6; |
| 3601 | I915_WRITE(WM_MISC, val); |
| 3602 | } else { |
| 3603 | val = I915_READ(DISP_ARB_CTL2); |
| 3604 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 3605 | val &= ~DISP_DATA_PARTITION_5_6; |
| 3606 | else |
| 3607 | val |= DISP_DATA_PARTITION_5_6; |
| 3608 | I915_WRITE(DISP_ARB_CTL2, val); |
| 3609 | } |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3610 | } |
| 3611 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 3612 | if (dirty & WM_DIRTY_FBC) { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 3613 | val = I915_READ(DISP_ARB_CTL); |
| 3614 | if (results->enable_fbc_wm) |
| 3615 | val &= ~DISP_FBC_WM_DIS; |
| 3616 | else |
| 3617 | val |= DISP_FBC_WM_DIS; |
| 3618 | I915_WRITE(DISP_ARB_CTL, val); |
| 3619 | } |
| 3620 | |
Imre Deak | 954911e | 2013-12-17 14:46:34 +0200 | [diff] [blame] | 3621 | if (dirty & WM_DIRTY_LP(1) && |
| 3622 | previous->wm_lp_spr[0] != results->wm_lp_spr[0]) |
| 3623 | I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]); |
| 3624 | |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 3625 | if (INTEL_GEN(dev_priv) >= 7) { |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 3626 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1]) |
| 3627 | I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]); |
| 3628 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2]) |
| 3629 | I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]); |
| 3630 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3631 | |
Ville Syrjälä | facd619b | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 3632 | 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] | 3633 | I915_WRITE(WM1_LP_ILK, results->wm_lp[0]); |
Ville Syrjälä | facd619b | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 3634 | 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] | 3635 | I915_WRITE(WM2_LP_ILK, results->wm_lp[1]); |
Ville Syrjälä | facd619b | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 3636 | 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] | 3637 | I915_WRITE(WM3_LP_ILK, results->wm_lp[2]); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3638 | |
| 3639 | dev_priv->wm.hw = *results; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3640 | } |
| 3641 | |
Ville Syrjälä | 60aca57 | 2019-11-27 21:05:51 +0200 | [diff] [blame] | 3642 | bool ilk_disable_lp_wm(struct drm_i915_private *dev_priv) |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3643 | { |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3644 | return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL); |
| 3645 | } |
| 3646 | |
Mahesh Kumar | 74bd800 | 2018-04-26 19:55:15 +0530 | [diff] [blame] | 3647 | static u8 intel_enabled_dbuf_slices_num(struct drm_i915_private *dev_priv) |
| 3648 | { |
| 3649 | u8 enabled_slices; |
| 3650 | |
| 3651 | /* Slice 1 will always be enabled */ |
| 3652 | enabled_slices = 1; |
| 3653 | |
| 3654 | /* Gen prior to GEN11 have only one DBuf slice */ |
| 3655 | if (INTEL_GEN(dev_priv) < 11) |
| 3656 | return enabled_slices; |
| 3657 | |
Imre Deak | 209d735 | 2019-03-07 12:32:35 +0200 | [diff] [blame] | 3658 | /* |
| 3659 | * FIXME: for now we'll only ever use 1 slice; pretend that we have |
| 3660 | * only that 1 slice enabled until we have a proper way for on-demand |
| 3661 | * toggling of the second slice. |
| 3662 | */ |
| 3663 | if (0 && I915_READ(DBUF_CTL_S2) & DBUF_POWER_STATE) |
Mahesh Kumar | 74bd800 | 2018-04-26 19:55:15 +0530 | [diff] [blame] | 3664 | enabled_slices++; |
| 3665 | |
| 3666 | return enabled_slices; |
| 3667 | } |
| 3668 | |
Matt Roper | 024c904 | 2015-09-24 15:53:11 -0700 | [diff] [blame] | 3669 | /* |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3670 | * FIXME: We still don't have the proper code detect if we need to apply the WA, |
| 3671 | * so assume we'll always need it in order to avoid underruns. |
| 3672 | */ |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 3673 | 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] | 3674 | { |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 3675 | return IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv); |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3676 | } |
| 3677 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3678 | static bool |
| 3679 | intel_has_sagv(struct drm_i915_private *dev_priv) |
| 3680 | { |
Lucas De Marchi | 8ffa439 | 2019-09-04 14:34:18 -0700 | [diff] [blame] | 3681 | /* HACK! */ |
| 3682 | if (IS_GEN(dev_priv, 12)) |
| 3683 | return false; |
| 3684 | |
Rodrigo Vivi | 1ca2b06 | 2018-10-26 13:03:17 -0700 | [diff] [blame] | 3685 | return (IS_GEN9_BC(dev_priv) || INTEL_GEN(dev_priv) >= 10) && |
| 3686 | dev_priv->sagv_status != I915_SAGV_NOT_CONTROLLED; |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3687 | } |
| 3688 | |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 3689 | static void |
| 3690 | skl_setup_sagv_block_time(struct drm_i915_private *dev_priv) |
| 3691 | { |
James Ausmus | da80f04 | 2019-10-09 10:23:15 -0700 | [diff] [blame] | 3692 | if (INTEL_GEN(dev_priv) >= 12) { |
| 3693 | u32 val = 0; |
| 3694 | int ret; |
| 3695 | |
| 3696 | ret = sandybridge_pcode_read(dev_priv, |
| 3697 | GEN12_PCODE_READ_SAGV_BLOCK_TIME_US, |
| 3698 | &val, NULL); |
| 3699 | if (!ret) { |
| 3700 | dev_priv->sagv_block_time_us = val; |
| 3701 | return; |
| 3702 | } |
| 3703 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3704 | drm_dbg(&dev_priv->drm, "Couldn't read SAGV block time!\n"); |
James Ausmus | da80f04 | 2019-10-09 10:23:15 -0700 | [diff] [blame] | 3705 | } else if (IS_GEN(dev_priv, 11)) { |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 3706 | dev_priv->sagv_block_time_us = 10; |
| 3707 | return; |
| 3708 | } else if (IS_GEN(dev_priv, 10)) { |
| 3709 | dev_priv->sagv_block_time_us = 20; |
| 3710 | return; |
| 3711 | } else if (IS_GEN(dev_priv, 9)) { |
| 3712 | dev_priv->sagv_block_time_us = 30; |
| 3713 | return; |
| 3714 | } else { |
| 3715 | MISSING_CASE(INTEL_GEN(dev_priv)); |
| 3716 | } |
| 3717 | |
| 3718 | /* Default to an unusable block time */ |
| 3719 | dev_priv->sagv_block_time_us = -1; |
| 3720 | } |
| 3721 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3722 | /* |
| 3723 | * SAGV dynamically adjusts the system agent voltage and clock frequencies |
| 3724 | * depending on power and performance requirements. The display engine access |
| 3725 | * to system memory is blocked during the adjustment time. Because of the |
| 3726 | * blocking time, having this enabled can cause full system hangs and/or pipe |
| 3727 | * underruns if we don't meet all of the following requirements: |
| 3728 | * |
| 3729 | * - <= 1 pipe enabled |
| 3730 | * - All planes can enable watermarks for latencies >= SAGV engine block time |
| 3731 | * - We're not using an interlaced display configuration |
| 3732 | */ |
| 3733 | int |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3734 | intel_enable_sagv(struct drm_i915_private *dev_priv) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3735 | { |
| 3736 | int ret; |
| 3737 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3738 | if (!intel_has_sagv(dev_priv)) |
| 3739 | return 0; |
| 3740 | |
| 3741 | if (dev_priv->sagv_status == I915_SAGV_ENABLED) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3742 | return 0; |
| 3743 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3744 | drm_dbg_kms(&dev_priv->drm, "Enabling SAGV\n"); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3745 | ret = sandybridge_pcode_write(dev_priv, GEN9_PCODE_SAGV_CONTROL, |
| 3746 | GEN9_SAGV_ENABLE); |
| 3747 | |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3748 | /* We don't need to wait for SAGV when enabling */ |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3749 | |
| 3750 | /* |
| 3751 | * Some skl systems, pre-release machines in particular, |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3752 | * don't actually have SAGV. |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3753 | */ |
Paulo Zanoni | 6e3100e | 2016-09-22 18:00:29 -0300 | [diff] [blame] | 3754 | if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3755 | drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n"); |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3756 | dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3757 | return 0; |
| 3758 | } else if (ret < 0) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3759 | drm_err(&dev_priv->drm, "Failed to enable SAGV\n"); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3760 | return ret; |
| 3761 | } |
| 3762 | |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3763 | dev_priv->sagv_status = I915_SAGV_ENABLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3764 | return 0; |
| 3765 | } |
| 3766 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3767 | int |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3768 | intel_disable_sagv(struct drm_i915_private *dev_priv) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3769 | { |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3770 | int ret; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3771 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3772 | if (!intel_has_sagv(dev_priv)) |
| 3773 | return 0; |
| 3774 | |
| 3775 | if (dev_priv->sagv_status == I915_SAGV_DISABLED) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3776 | return 0; |
| 3777 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3778 | drm_dbg_kms(&dev_priv->drm, "Disabling SAGV\n"); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3779 | /* bspec says to keep retrying for at least 1 ms */ |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3780 | ret = skl_pcode_request(dev_priv, GEN9_PCODE_SAGV_CONTROL, |
| 3781 | GEN9_SAGV_DISABLE, |
| 3782 | GEN9_SAGV_IS_DISABLED, GEN9_SAGV_IS_DISABLED, |
| 3783 | 1); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3784 | /* |
| 3785 | * Some skl systems, pre-release machines in particular, |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3786 | * don't actually have SAGV. |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3787 | */ |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3788 | if (IS_SKYLAKE(dev_priv) && ret == -ENXIO) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3789 | drm_dbg(&dev_priv->drm, "No SAGV found on system, ignoring\n"); |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3790 | dev_priv->sagv_status = I915_SAGV_NOT_CONTROLLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3791 | return 0; |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3792 | } else if (ret < 0) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 3793 | drm_err(&dev_priv->drm, "Failed to disable SAGV (%d)\n", ret); |
Imre Deak | b3b8e99 | 2016-12-05 18:27:38 +0200 | [diff] [blame] | 3794 | return ret; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3795 | } |
| 3796 | |
Paulo Zanoni | 16dcdc4 | 2016-09-22 18:00:27 -0300 | [diff] [blame] | 3797 | dev_priv->sagv_status = I915_SAGV_DISABLED; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3798 | return 0; |
| 3799 | } |
| 3800 | |
Maarten Lankhorst | 855e0d6 | 2019-06-28 10:55:13 +0200 | [diff] [blame] | 3801 | bool intel_can_enable_sagv(struct intel_atomic_state *state) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3802 | { |
Maarten Lankhorst | 855e0d6 | 2019-06-28 10:55:13 +0200 | [diff] [blame] | 3803 | struct drm_device *dev = state->base.dev; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3804 | struct drm_i915_private *dev_priv = to_i915(dev); |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3805 | struct intel_crtc *crtc; |
| 3806 | struct intel_plane *plane; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3807 | struct intel_crtc_state *crtc_state; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3808 | enum pipe pipe; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 3809 | int level, latency; |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3810 | |
Paulo Zanoni | 56feca9 | 2016-09-22 18:00:28 -0300 | [diff] [blame] | 3811 | if (!intel_has_sagv(dev_priv)) |
| 3812 | return false; |
| 3813 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3814 | /* |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3815 | * If there are no active CRTCs, no additional checks need be performed |
| 3816 | */ |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3817 | if (hweight8(state->active_pipes) == 0) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3818 | return true; |
Lucas De Marchi | da17223 | 2019-04-04 16:04:26 -0700 | [diff] [blame] | 3819 | |
| 3820 | /* |
| 3821 | * SKL+ workaround: bspec recommends we disable SAGV when we have |
| 3822 | * more then one pipe enabled |
| 3823 | */ |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3824 | if (hweight8(state->active_pipes) > 1) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3825 | return false; |
| 3826 | |
| 3827 | /* Since we're now guaranteed to only have one active CRTC... */ |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 3828 | pipe = ffs(state->active_pipes) - 1; |
Ville Syrjälä | 9818783 | 2016-10-31 22:37:10 +0200 | [diff] [blame] | 3829 | crtc = intel_get_crtc_for_pipe(dev_priv, pipe); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3830 | crtc_state = to_intel_crtc_state(crtc->base.state); |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3831 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3832 | if (crtc_state->hw.adjusted_mode.flags & DRM_MODE_FLAG_INTERLACE) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3833 | return false; |
| 3834 | |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3835 | for_each_intel_plane_on_crtc(dev, crtc, plane) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 3836 | struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3837 | &crtc_state->wm.skl.optimal.planes[plane->id]; |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3838 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3839 | /* Skip this plane if it's not enabled */ |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 3840 | if (!wm->wm[0].plane_en) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3841 | continue; |
| 3842 | |
| 3843 | /* Find the highest enabled wm level for this plane */ |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 3844 | for (level = ilk_wm_max_level(dev_priv); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 3845 | !wm->wm[level].plane_en; --level) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3846 | { } |
| 3847 | |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3848 | latency = dev_priv->wm.skl_latency[level]; |
| 3849 | |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 3850 | if (skl_needs_memory_bw_wa(dev_priv) && |
Ville Syrjälä | bae781b | 2016-11-16 13:33:16 +0200 | [diff] [blame] | 3851 | plane->base.state->fb->modifier == |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 3852 | I915_FORMAT_MOD_X_TILED) |
| 3853 | latency += 15; |
| 3854 | |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3855 | /* |
Paulo Zanoni | fdd11c2 | 2017-08-09 13:52:45 -0700 | [diff] [blame] | 3856 | * If any of the planes on this pipe don't enable wm levels that |
| 3857 | * incur memory latencies higher than sagv_block_time_us we |
Ville Syrjälä | ff61a97 | 2018-12-21 19:14:34 +0200 | [diff] [blame] | 3858 | * can't enable SAGV. |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3859 | */ |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 3860 | if (latency < dev_priv->sagv_block_time_us) |
Lyude | 656d1b8 | 2016-08-17 15:55:54 -0400 | [diff] [blame] | 3861 | return false; |
| 3862 | } |
| 3863 | |
| 3864 | return true; |
| 3865 | } |
| 3866 | |
Mahesh Kumar | aaa0237 | 2018-07-31 19:54:44 +0530 | [diff] [blame] | 3867 | static u16 intel_get_ddb_size(struct drm_i915_private *dev_priv, |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3868 | const struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 3869 | const u64 total_data_rate, |
Mahesh Kumar | aaa0237 | 2018-07-31 19:54:44 +0530 | [diff] [blame] | 3870 | const int num_active, |
| 3871 | struct skl_ddb_allocation *ddb) |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3872 | { |
| 3873 | const struct drm_display_mode *adjusted_mode; |
| 3874 | u64 total_data_bw; |
| 3875 | u16 ddb_size = INTEL_INFO(dev_priv)->ddb_size; |
| 3876 | |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 3877 | drm_WARN_ON(&dev_priv->drm, ddb_size == 0); |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3878 | |
| 3879 | if (INTEL_GEN(dev_priv) < 11) |
| 3880 | return ddb_size - 4; /* 4 blocks for bypass path allocation */ |
| 3881 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3882 | adjusted_mode = &crtc_state->hw.adjusted_mode; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 3883 | total_data_bw = total_data_rate * drm_mode_vrefresh(adjusted_mode); |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3884 | |
| 3885 | /* |
| 3886 | * 12GB/s is maximum BW supported by single DBuf slice. |
Ville Syrjälä | ad3e7b8 | 2019-01-30 17:51:10 +0200 | [diff] [blame] | 3887 | * |
| 3888 | * FIXME dbuf slice code is broken: |
| 3889 | * - must wait for planes to stop using the slice before powering it off |
| 3890 | * - plane straddling both slices is illegal in multi-pipe scenarios |
| 3891 | * - should validate we stay within the hw bandwidth limits |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3892 | */ |
Ville Syrjälä | ad3e7b8 | 2019-01-30 17:51:10 +0200 | [diff] [blame] | 3893 | if (0 && (num_active > 1 || total_data_bw >= GBps(12))) { |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3894 | ddb->enabled_slices = 2; |
| 3895 | } else { |
| 3896 | ddb->enabled_slices = 1; |
| 3897 | ddb_size /= 2; |
| 3898 | } |
| 3899 | |
| 3900 | return ddb_size; |
| 3901 | } |
| 3902 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3903 | static void |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 3904 | skl_ddb_get_pipe_allocation_limits(struct drm_i915_private *dev_priv, |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3905 | const struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 3906 | const u64 total_data_rate, |
Mahesh Kumar | aa9664f | 2018-04-26 19:55:16 +0530 | [diff] [blame] | 3907 | struct skl_ddb_allocation *ddb, |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3908 | struct skl_ddb_entry *alloc, /* out */ |
| 3909 | int *num_active /* out */) |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3910 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3911 | struct drm_atomic_state *state = crtc_state->uapi.state; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3912 | struct intel_atomic_state *intel_state = to_intel_atomic_state(state); |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3913 | struct drm_crtc *for_crtc = crtc_state->uapi.crtc; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3914 | const struct intel_crtc *crtc; |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3915 | u32 pipe_width = 0, total_width = 0, width_before_pipe = 0; |
| 3916 | enum pipe for_pipe = to_intel_crtc(for_crtc)->pipe; |
| 3917 | u16 ddb_size; |
| 3918 | u32 i; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3919 | |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 3920 | if (drm_WARN_ON(&dev_priv->drm, !state) || !crtc_state->hw.active) { |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3921 | alloc->start = 0; |
| 3922 | alloc->end = 0; |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3923 | *num_active = hweight8(dev_priv->active_pipes); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3924 | return; |
| 3925 | } |
| 3926 | |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3927 | if (intel_state->active_pipe_changes) |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3928 | *num_active = hweight8(intel_state->active_pipes); |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3929 | else |
Ville Syrjälä | 0b14d96 | 2019-08-21 20:30:33 +0300 | [diff] [blame] | 3930 | *num_active = hweight8(dev_priv->active_pipes); |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3931 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3932 | 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] | 3933 | *num_active, ddb); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3934 | |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3935 | /* |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3936 | * If the state doesn't change the active CRTC's or there is no |
| 3937 | * modeset request, then there's no need to recalculate; |
| 3938 | * the existing pipe allocation limits should remain unchanged. |
| 3939 | * Note that we're safe from racing commits since any racing commit |
| 3940 | * that changes the active CRTC list or do modeset would need to |
| 3941 | * grab _all_ crtc locks, including the one we currently hold. |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 3942 | */ |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3943 | if (!intel_state->active_pipe_changes && !intel_state->modeset) { |
Maarten Lankhorst | 512b552 | 2016-11-08 13:55:34 +0100 | [diff] [blame] | 3944 | /* |
| 3945 | * alloc may be cleared by clear_intel_crtc_state, |
| 3946 | * copy from old state to be sure |
| 3947 | */ |
| 3948 | *alloc = to_intel_crtc_state(for_crtc->state)->wm.skl.ddb; |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3949 | return; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3950 | } |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 3951 | |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3952 | /* |
| 3953 | * Watermark/ddb requirement highly depends upon width of the |
| 3954 | * framebuffer, So instead of allocating DDB equally among pipes |
| 3955 | * distribute DDB based on resolution/width of the display. |
| 3956 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3957 | for_each_new_intel_crtc_in_state(intel_state, crtc, crtc_state, i) { |
| 3958 | const struct drm_display_mode *adjusted_mode = |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3959 | &crtc_state->hw.adjusted_mode; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3960 | enum pipe pipe = crtc->pipe; |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3961 | int hdisplay, vdisplay; |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3962 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 3963 | if (!crtc_state->hw.enable) |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3964 | continue; |
| 3965 | |
Mahesh Kumar | cf1f697 | 2018-08-01 20:41:13 +0530 | [diff] [blame] | 3966 | drm_mode_get_hv_timing(adjusted_mode, &hdisplay, &vdisplay); |
| 3967 | total_width += hdisplay; |
| 3968 | |
| 3969 | if (pipe < for_pipe) |
| 3970 | width_before_pipe += hdisplay; |
| 3971 | else if (pipe == for_pipe) |
| 3972 | pipe_width = hdisplay; |
| 3973 | } |
| 3974 | |
| 3975 | alloc->start = ddb_size * width_before_pipe / total_width; |
| 3976 | alloc->end = ddb_size * (width_before_pipe + pipe_width) / total_width; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3977 | } |
| 3978 | |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3979 | static int skl_compute_wm_params(const struct intel_crtc_state *crtc_state, |
| 3980 | int width, const struct drm_format_info *format, |
| 3981 | u64 modifier, unsigned int rotation, |
| 3982 | u32 plane_pixel_rate, struct skl_wm_params *wp, |
| 3983 | int color_plane); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 3984 | 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] | 3985 | int level, |
| 3986 | const struct skl_wm_params *wp, |
| 3987 | const struct skl_wm_level *result_prev, |
| 3988 | struct skl_wm_level *result /* out */); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3989 | |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 3990 | static unsigned int |
| 3991 | skl_cursor_allocation(const struct intel_crtc_state *crtc_state, |
| 3992 | int num_active) |
| 3993 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 3994 | 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] | 3995 | int level, max_level = ilk_wm_max_level(dev_priv); |
| 3996 | struct skl_wm_level wm = {}; |
| 3997 | int ret, min_ddb_alloc = 0; |
| 3998 | struct skl_wm_params wp; |
| 3999 | |
| 4000 | ret = skl_compute_wm_params(crtc_state, 256, |
| 4001 | drm_format_info(DRM_FORMAT_ARGB8888), |
| 4002 | DRM_FORMAT_MOD_LINEAR, |
| 4003 | DRM_MODE_ROTATE_0, |
| 4004 | crtc_state->pixel_rate, &wp, 0); |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 4005 | drm_WARN_ON(&dev_priv->drm, ret); |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 4006 | |
| 4007 | for (level = 0; level <= max_level; level++) { |
Ville Syrjälä | 6086e47 | 2019-03-21 19:51:28 +0200 | [diff] [blame] | 4008 | skl_compute_plane_wm(crtc_state, level, &wp, &wm, &wm); |
Ville Syrjälä | df331de | 2019-03-19 18:03:11 +0200 | [diff] [blame] | 4009 | if (wm.min_ddb_alloc == U16_MAX) |
| 4010 | break; |
| 4011 | |
| 4012 | min_ddb_alloc = wm.min_ddb_alloc; |
| 4013 | } |
| 4014 | |
| 4015 | return max(num_active == 1 ? 32 : 8, min_ddb_alloc); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4016 | } |
| 4017 | |
Mahesh Kumar | 37cde11 | 2018-04-26 19:55:17 +0530 | [diff] [blame] | 4018 | static void skl_ddb_entry_init_from_hw(struct drm_i915_private *dev_priv, |
| 4019 | struct skl_ddb_entry *entry, u32 reg) |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 4020 | { |
Mahesh Kumar | 37cde11 | 2018-04-26 19:55:17 +0530 | [diff] [blame] | 4021 | |
Ville Syrjälä | d7e449a | 2019-02-05 22:50:56 +0200 | [diff] [blame] | 4022 | entry->start = reg & DDB_ENTRY_MASK; |
| 4023 | entry->end = (reg >> DDB_ENTRY_END_SHIFT) & DDB_ENTRY_MASK; |
Mahesh Kumar | 37cde11 | 2018-04-26 19:55:17 +0530 | [diff] [blame] | 4024 | |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 4025 | if (entry->end) |
| 4026 | entry->end += 1; |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 4027 | } |
| 4028 | |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4029 | static void |
| 4030 | skl_ddb_get_hw_plane_state(struct drm_i915_private *dev_priv, |
| 4031 | const enum pipe pipe, |
| 4032 | const enum plane_id plane_id, |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4033 | struct skl_ddb_entry *ddb_y, |
| 4034 | struct skl_ddb_entry *ddb_uv) |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4035 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4036 | u32 val, val2; |
| 4037 | u32 fourcc = 0; |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4038 | |
| 4039 | /* Cursor doesn't support NV12/planar, so no extra calculation needed */ |
| 4040 | if (plane_id == PLANE_CURSOR) { |
| 4041 | val = I915_READ(CUR_BUF_CFG(pipe)); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4042 | skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4043 | return; |
| 4044 | } |
| 4045 | |
| 4046 | val = I915_READ(PLANE_CTL(pipe, plane_id)); |
| 4047 | |
| 4048 | /* No DDB allocated for disabled planes */ |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4049 | if (val & PLANE_CTL_ENABLE) |
| 4050 | fourcc = skl_format_to_fourcc(val & PLANE_CTL_FORMAT_MASK, |
| 4051 | val & PLANE_CTL_ORDER_RGBX, |
| 4052 | val & PLANE_CTL_ALPHA_MASK); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4053 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4054 | if (INTEL_GEN(dev_priv) >= 11) { |
| 4055 | val = I915_READ(PLANE_BUF_CFG(pipe, plane_id)); |
| 4056 | skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val); |
| 4057 | } else { |
| 4058 | val = I915_READ(PLANE_BUF_CFG(pipe, plane_id)); |
Paulo Zanoni | 12a6c93 | 2018-07-31 17:46:14 -0700 | [diff] [blame] | 4059 | val2 = I915_READ(PLANE_NV12_BUF_CFG(pipe, plane_id)); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4060 | |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4061 | if (fourcc && |
| 4062 | drm_format_info_is_yuv_semiplanar(drm_format_info(fourcc))) |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4063 | swap(val, val2); |
| 4064 | |
| 4065 | skl_ddb_entry_init_from_hw(dev_priv, ddb_y, val); |
| 4066 | skl_ddb_entry_init_from_hw(dev_priv, ddb_uv, val2); |
Mahesh Kumar | ddf3431 | 2018-04-09 09:11:03 +0530 | [diff] [blame] | 4067 | } |
| 4068 | } |
| 4069 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4070 | void skl_pipe_ddb_get_hw_state(struct intel_crtc *crtc, |
| 4071 | struct skl_ddb_entry *ddb_y, |
| 4072 | struct skl_ddb_entry *ddb_uv) |
| 4073 | { |
| 4074 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 4075 | enum intel_display_power_domain power_domain; |
| 4076 | enum pipe pipe = crtc->pipe; |
Chris Wilson | 0e6e0be | 2019-01-14 14:21:24 +0000 | [diff] [blame] | 4077 | intel_wakeref_t wakeref; |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4078 | enum plane_id plane_id; |
| 4079 | |
| 4080 | power_domain = POWER_DOMAIN_PIPE(pipe); |
Chris Wilson | 0e6e0be | 2019-01-14 14:21:24 +0000 | [diff] [blame] | 4081 | wakeref = intel_display_power_get_if_enabled(dev_priv, power_domain); |
| 4082 | if (!wakeref) |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4083 | return; |
| 4084 | |
| 4085 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 4086 | skl_ddb_get_hw_plane_state(dev_priv, pipe, |
| 4087 | plane_id, |
| 4088 | &ddb_y[plane_id], |
| 4089 | &ddb_uv[plane_id]); |
| 4090 | |
Chris Wilson | 0e6e0be | 2019-01-14 14:21:24 +0000 | [diff] [blame] | 4091 | intel_display_power_put(dev_priv, power_domain, wakeref); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4092 | } |
| 4093 | |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 4094 | void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv, |
| 4095 | struct skl_ddb_allocation *ddb /* out */) |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 4096 | { |
Mahesh Kumar | 74bd800 | 2018-04-26 19:55:15 +0530 | [diff] [blame] | 4097 | ddb->enabled_slices = intel_enabled_dbuf_slices_num(dev_priv); |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 4098 | } |
| 4099 | |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4100 | /* |
| 4101 | * Determines the downscale amount of a plane for the purposes of watermark calculations. |
| 4102 | * The bspec defines downscale amount as: |
| 4103 | * |
| 4104 | * """ |
| 4105 | * Horizontal down scale amount = maximum[1, Horizontal source size / |
| 4106 | * Horizontal destination size] |
| 4107 | * Vertical down scale amount = maximum[1, Vertical source size / |
| 4108 | * Vertical destination size] |
| 4109 | * Total down scale amount = Horizontal down scale amount * |
| 4110 | * Vertical down scale amount |
| 4111 | * """ |
| 4112 | * |
| 4113 | * Return value is provided in 16.16 fixed point form to retain fractional part. |
| 4114 | * Caller should take care of dividing & rounding off the value. |
| 4115 | */ |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4116 | static uint_fixed_16_16_t |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4117 | skl_plane_downscale_amount(const struct intel_crtc_state *crtc_state, |
| 4118 | const struct intel_plane_state *plane_state) |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4119 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4120 | u32 src_w, src_h, dst_w, dst_h; |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4121 | uint_fixed_16_16_t fp_w_ratio, fp_h_ratio; |
| 4122 | uint_fixed_16_16_t downscale_h, downscale_w; |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4123 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4124 | if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state))) |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4125 | return u32_to_fixed16(0); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4126 | |
Maarten Lankhorst | 3a61276 | 2019-10-04 13:34:54 +0200 | [diff] [blame] | 4127 | /* |
| 4128 | * Src coordinates are already rotated by 270 degrees for |
| 4129 | * the 90/270 degree plane rotation cases (to match the |
| 4130 | * GTT mapping), hence no need to account for rotation here. |
| 4131 | * |
| 4132 | * n.b., src is 16.16 fixed point, dst is whole integer. |
| 4133 | */ |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4134 | src_w = drm_rect_width(&plane_state->uapi.src) >> 16; |
| 4135 | src_h = drm_rect_height(&plane_state->uapi.src) >> 16; |
| 4136 | dst_w = drm_rect_width(&plane_state->uapi.dst); |
| 4137 | dst_h = drm_rect_height(&plane_state->uapi.dst); |
Ville Syrjälä | 93aa2a1 | 2017-03-14 17:10:50 +0200 | [diff] [blame] | 4138 | |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4139 | fp_w_ratio = div_fixed16(src_w, dst_w); |
| 4140 | fp_h_ratio = div_fixed16(src_h, dst_h); |
| 4141 | downscale_w = max_fixed16(fp_w_ratio, u32_to_fixed16(1)); |
| 4142 | downscale_h = max_fixed16(fp_h_ratio, u32_to_fixed16(1)); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4143 | |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4144 | return mul_fixed16(downscale_w, downscale_h); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4145 | } |
| 4146 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4147 | static u64 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4148 | skl_plane_relative_data_rate(const struct intel_crtc_state *crtc_state, |
| 4149 | const struct intel_plane_state *plane_state, |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4150 | int color_plane) |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4151 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4152 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4153 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4154 | u32 data_rate; |
| 4155 | u32 width = 0, height = 0; |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4156 | uint_fixed_16_16_t down_scale_amount; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4157 | u64 rate; |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4158 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4159 | if (!plane_state->uapi.visible) |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4160 | return 0; |
Ville Syrjälä | 8305494 | 2016-11-18 21:53:00 +0200 | [diff] [blame] | 4161 | |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4162 | if (plane->id == PLANE_CURSOR) |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4163 | return 0; |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4164 | |
| 4165 | if (color_plane == 1 && |
Imre Deak | 4941f35 | 2019-12-21 14:05:43 +0200 | [diff] [blame] | 4166 | !intel_format_info_is_yuv_semiplanar(fb->format, fb->modifier)) |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4167 | return 0; |
Kumar, Mahesh | a280f7d | 2016-04-06 08:26:39 -0700 | [diff] [blame] | 4168 | |
Ville Syrjälä | fce5adf | 2017-03-31 21:00:55 +0300 | [diff] [blame] | 4169 | /* |
| 4170 | * Src coordinates are already rotated by 270 degrees for |
| 4171 | * the 90/270 degree plane rotation cases (to match the |
| 4172 | * GTT mapping), hence no need to account for rotation here. |
| 4173 | */ |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4174 | width = drm_rect_width(&plane_state->uapi.src) >> 16; |
| 4175 | height = drm_rect_height(&plane_state->uapi.src) >> 16; |
Kumar, Mahesh | a280f7d | 2016-04-06 08:26:39 -0700 | [diff] [blame] | 4176 | |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4177 | /* UV plane does 1/2 pixel sub-sampling */ |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4178 | if (color_plane == 1) { |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4179 | width /= 2; |
| 4180 | height /= 2; |
Chandra Konduru | 2cd601c | 2015-04-27 15:47:37 -0700 | [diff] [blame] | 4181 | } |
| 4182 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4183 | data_rate = width * height; |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4184 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4185 | down_scale_amount = skl_plane_downscale_amount(crtc_state, plane_state); |
Kumar, Mahesh | 8d19d7d | 2016-05-19 15:03:01 -0700 | [diff] [blame] | 4186 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4187 | rate = mul_round_up_u32_fixed16(data_rate, down_scale_amount); |
| 4188 | |
Ville Syrjälä | d1d23d7 | 2019-09-13 22:31:54 +0300 | [diff] [blame] | 4189 | rate *= fb->format->cpp[color_plane]; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4190 | return rate; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4191 | } |
| 4192 | |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4193 | static u64 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4194 | skl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4195 | u64 *plane_data_rate, |
| 4196 | u64 *uv_plane_data_rate) |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4197 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4198 | struct drm_atomic_state *state = crtc_state->uapi.state; |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4199 | struct intel_plane *plane; |
| 4200 | const struct intel_plane_state *plane_state; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4201 | u64 total_data_rate = 0; |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 4202 | |
| 4203 | if (WARN_ON(!state)) |
| 4204 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4205 | |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4206 | /* Calculate and cache data rate for each plane */ |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4207 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) { |
| 4208 | enum plane_id plane_id = plane->id; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4209 | u64 rate; |
Matt Roper | 024c904 | 2015-09-24 15:53:11 -0700 | [diff] [blame] | 4210 | |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4211 | /* packed/y */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4212 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0); |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4213 | plane_data_rate[plane_id] = rate; |
Maarten Lankhorst | 1e6ee54 | 2016-10-26 15:41:32 +0200 | [diff] [blame] | 4214 | total_data_rate += rate; |
Matt Roper | 9c74d82 | 2016-05-12 07:05:58 -0700 | [diff] [blame] | 4215 | |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4216 | /* uv-plane */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4217 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1); |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 4218 | uv_plane_data_rate[plane_id] = rate; |
Maarten Lankhorst | 1e6ee54 | 2016-10-26 15:41:32 +0200 | [diff] [blame] | 4219 | total_data_rate += rate; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4220 | } |
| 4221 | |
| 4222 | return total_data_rate; |
| 4223 | } |
| 4224 | |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4225 | static u64 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4226 | icl_get_total_relative_data_rate(struct intel_crtc_state *crtc_state, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4227 | u64 *plane_data_rate) |
| 4228 | { |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4229 | struct intel_plane *plane; |
| 4230 | const struct intel_plane_state *plane_state; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4231 | u64 total_data_rate = 0; |
| 4232 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4233 | if (WARN_ON(!crtc_state->uapi.state)) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4234 | return 0; |
| 4235 | |
| 4236 | /* Calculate and cache data rate for each plane */ |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4237 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) { |
| 4238 | enum plane_id plane_id = plane->id; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4239 | u64 rate; |
| 4240 | |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4241 | if (!plane_state->planar_linked_plane) { |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4242 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4243 | plane_data_rate[plane_id] = rate; |
| 4244 | total_data_rate += rate; |
| 4245 | } else { |
| 4246 | enum plane_id y_plane_id; |
| 4247 | |
| 4248 | /* |
| 4249 | * The slave plane might not iterate in |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 4250 | * intel_atomic_crtc_state_for_each_plane_state(), |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4251 | * and needs the master plane state which may be |
| 4252 | * NULL if we try get_new_plane_state(), so we |
| 4253 | * always calculate from the master. |
| 4254 | */ |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4255 | if (plane_state->planar_slave) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4256 | continue; |
| 4257 | |
| 4258 | /* Y plane rate is calculated on the slave */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4259 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 0); |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4260 | y_plane_id = plane_state->planar_linked_plane->id; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4261 | plane_data_rate[y_plane_id] = rate; |
| 4262 | total_data_rate += rate; |
| 4263 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4264 | rate = skl_plane_relative_data_rate(crtc_state, plane_state, 1); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4265 | plane_data_rate[plane_id] = rate; |
| 4266 | total_data_rate += rate; |
| 4267 | } |
| 4268 | } |
| 4269 | |
| 4270 | return total_data_rate; |
| 4271 | } |
| 4272 | |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4273 | static int |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4274 | skl_allocate_pipe_ddb(struct intel_crtc_state *crtc_state, |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4275 | struct skl_ddb_allocation *ddb /* out */) |
| 4276 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4277 | struct drm_atomic_state *state = crtc_state->uapi.state; |
| 4278 | struct drm_crtc *crtc = crtc_state->uapi.crtc; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4279 | struct drm_i915_private *dev_priv = to_i915(crtc->dev); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4280 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4281 | struct skl_ddb_entry *alloc = &crtc_state->wm.skl.ddb; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4282 | u16 alloc_size, start = 0; |
| 4283 | u16 total[I915_MAX_PLANES] = {}; |
| 4284 | u16 uv_total[I915_MAX_PLANES] = {}; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4285 | u64 total_data_rate; |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4286 | enum plane_id plane_id; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4287 | int num_active; |
Maarten Lankhorst | 24719e9 | 2018-10-22 12:20:00 +0200 | [diff] [blame] | 4288 | u64 plane_data_rate[I915_MAX_PLANES] = {}; |
| 4289 | u64 uv_plane_data_rate[I915_MAX_PLANES] = {}; |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4290 | u32 blocks; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4291 | int level; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4292 | |
Paulo Zanoni | 5a920b8 | 2016-10-04 14:37:32 -0300 | [diff] [blame] | 4293 | /* Clear the partitioning for disabled planes. */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4294 | memset(crtc_state->wm.skl.plane_ddb_y, 0, sizeof(crtc_state->wm.skl.plane_ddb_y)); |
| 4295 | 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] | 4296 | |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 4297 | if (drm_WARN_ON(&dev_priv->drm, !state)) |
Matt Roper | a6d3460e | 2016-05-12 07:06:04 -0700 | [diff] [blame] | 4298 | return 0; |
| 4299 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4300 | if (!crtc_state->hw.active) { |
Lyude | ce0ba28 | 2016-09-15 10:46:35 -0400 | [diff] [blame] | 4301 | alloc->start = alloc->end = 0; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4302 | return 0; |
| 4303 | } |
| 4304 | |
Lucas De Marchi | 323b0a8 | 2019-04-04 16:04:25 -0700 | [diff] [blame] | 4305 | if (INTEL_GEN(dev_priv) >= 11) |
| 4306 | total_data_rate = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4307 | icl_get_total_relative_data_rate(crtc_state, |
Lucas De Marchi | 323b0a8 | 2019-04-04 16:04:25 -0700 | [diff] [blame] | 4308 | plane_data_rate); |
| 4309 | else |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4310 | total_data_rate = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4311 | skl_get_total_relative_data_rate(crtc_state, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4312 | plane_data_rate, |
| 4313 | uv_plane_data_rate); |
Lucas De Marchi | 323b0a8 | 2019-04-04 16:04:25 -0700 | [diff] [blame] | 4314 | |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4315 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4316 | 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] | 4317 | ddb, alloc, &num_active); |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 4318 | alloc_size = skl_ddb_entry_size(alloc); |
Kumar, Mahesh | 336031e | 2017-05-17 17:28:25 +0530 | [diff] [blame] | 4319 | if (alloc_size == 0) |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4320 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4321 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4322 | /* Allocate fixed number of blocks for cursor. */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4323 | total[PLANE_CURSOR] = skl_cursor_allocation(crtc_state, num_active); |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4324 | alloc_size -= total[PLANE_CURSOR]; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4325 | crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].start = |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4326 | alloc->end - total[PLANE_CURSOR]; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4327 | crtc_state->wm.skl.plane_ddb_y[PLANE_CURSOR].end = alloc->end; |
Maarten Lankhorst | 49845a7 | 2016-10-26 15:41:34 +0200 | [diff] [blame] | 4328 | |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 4329 | if (total_data_rate == 0) |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4330 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4331 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4332 | /* |
| 4333 | * Find the highest watermark level for which we can satisfy the block |
| 4334 | * requirement of active planes. |
| 4335 | */ |
| 4336 | for (level = ilk_wm_max_level(dev_priv); level >= 0; level--) { |
Matt Roper | 25db2ea | 2018-12-12 11:17:20 -0800 | [diff] [blame] | 4337 | blocks = 0; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4338 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4339 | const struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4340 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Ville Syrjälä | 10a7e07 | 2019-03-12 22:58:40 +0200 | [diff] [blame] | 4341 | |
| 4342 | if (plane_id == PLANE_CURSOR) { |
Vandita Kulkarni | 4ba4870 | 2019-12-16 13:36:19 +0530 | [diff] [blame] | 4343 | if (wm->wm[level].min_ddb_alloc > total[PLANE_CURSOR]) { |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 4344 | drm_WARN_ON(&dev_priv->drm, |
| 4345 | wm->wm[level].min_ddb_alloc != U16_MAX); |
Ville Syrjälä | 10a7e07 | 2019-03-12 22:58:40 +0200 | [diff] [blame] | 4346 | blocks = U32_MAX; |
| 4347 | break; |
| 4348 | } |
| 4349 | continue; |
| 4350 | } |
| 4351 | |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4352 | blocks += wm->wm[level].min_ddb_alloc; |
| 4353 | blocks += wm->uv_wm[level].min_ddb_alloc; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4354 | } |
| 4355 | |
Ville Syrjälä | 3cf963c | 2019-03-12 22:58:36 +0200 | [diff] [blame] | 4356 | if (blocks <= alloc_size) { |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4357 | alloc_size -= blocks; |
| 4358 | break; |
| 4359 | } |
| 4360 | } |
| 4361 | |
| 4362 | if (level < 0) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 4363 | drm_dbg_kms(&dev_priv->drm, |
| 4364 | "Requested display configuration exceeds system DDB limitations"); |
| 4365 | drm_dbg_kms(&dev_priv->drm, "minimum required %d/%d\n", |
| 4366 | blocks, alloc_size); |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4367 | return -EINVAL; |
| 4368 | } |
| 4369 | |
| 4370 | /* |
| 4371 | * Grant each plane the blocks it requires at the highest achievable |
| 4372 | * watermark level, plus an extra share of the leftover blocks |
| 4373 | * proportional to its relative data rate. |
| 4374 | */ |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4375 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4376 | const struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4377 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4378 | u64 rate; |
| 4379 | u16 extra; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4380 | |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 4381 | if (plane_id == PLANE_CURSOR) |
Maarten Lankhorst | 49845a7 | 2016-10-26 15:41:34 +0200 | [diff] [blame] | 4382 | continue; |
| 4383 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4384 | /* |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4385 | * We've accounted for all active planes; remaining planes are |
| 4386 | * all disabled. |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4387 | */ |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4388 | if (total_data_rate == 0) |
| 4389 | break; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4390 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4391 | rate = plane_data_rate[plane_id]; |
| 4392 | extra = min_t(u16, alloc_size, |
| 4393 | DIV64_U64_ROUND_UP(alloc_size * rate, |
| 4394 | total_data_rate)); |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4395 | total[plane_id] = wm->wm[level].min_ddb_alloc + extra; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4396 | alloc_size -= extra; |
| 4397 | total_data_rate -= rate; |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 4398 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4399 | if (total_data_rate == 0) |
| 4400 | break; |
Chandra Konduru | 2cd601c | 2015-04-27 15:47:37 -0700 | [diff] [blame] | 4401 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4402 | rate = uv_plane_data_rate[plane_id]; |
| 4403 | extra = min_t(u16, alloc_size, |
| 4404 | DIV64_U64_ROUND_UP(alloc_size * rate, |
| 4405 | total_data_rate)); |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4406 | uv_total[plane_id] = wm->uv_wm[level].min_ddb_alloc + extra; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4407 | alloc_size -= extra; |
| 4408 | total_data_rate -= rate; |
| 4409 | } |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 4410 | drm_WARN_ON(&dev_priv->drm, alloc_size != 0 || total_data_rate != 0); |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4411 | |
| 4412 | /* Set the actual DDB start/end points for each plane */ |
| 4413 | start = alloc->start; |
| 4414 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4415 | struct skl_ddb_entry *plane_alloc = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4416 | &crtc_state->wm.skl.plane_ddb_y[plane_id]; |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4417 | struct skl_ddb_entry *uv_plane_alloc = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4418 | &crtc_state->wm.skl.plane_ddb_uv[plane_id]; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4419 | |
| 4420 | if (plane_id == PLANE_CURSOR) |
| 4421 | continue; |
| 4422 | |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4423 | /* Gen11+ uses a separate plane for UV watermarks */ |
Pankaj Bharadiya | 48a1b8d | 2020-01-15 09:14:53 +0530 | [diff] [blame] | 4424 | drm_WARN_ON(&dev_priv->drm, |
| 4425 | INTEL_GEN(dev_priv) >= 11 && uv_total[plane_id]); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4426 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4427 | /* Leave disabled planes at (0,0) */ |
| 4428 | if (total[plane_id]) { |
| 4429 | plane_alloc->start = start; |
| 4430 | start += total[plane_id]; |
| 4431 | plane_alloc->end = start; |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4432 | } |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 4433 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4434 | if (uv_total[plane_id]) { |
| 4435 | uv_plane_alloc->start = start; |
| 4436 | start += uv_total[plane_id]; |
| 4437 | uv_plane_alloc->end = start; |
| 4438 | } |
| 4439 | } |
| 4440 | |
| 4441 | /* |
| 4442 | * When we calculated watermark values we didn't know how high |
| 4443 | * of a level we'd actually be able to hit, so we just marked |
| 4444 | * all levels as "enabled." Go back now and disable the ones |
| 4445 | * that aren't actually possible. |
| 4446 | */ |
| 4447 | for (level++; level <= ilk_wm_max_level(dev_priv); level++) { |
| 4448 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4449 | struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4450 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Ville Syrjälä | a301cb0 | 2019-03-12 22:58:41 +0200 | [diff] [blame] | 4451 | |
| 4452 | /* |
| 4453 | * We only disable the watermarks for each plane if |
| 4454 | * they exceed the ddb allocation of said plane. This |
| 4455 | * is done so that we don't end up touching cursor |
| 4456 | * watermarks needlessly when some other plane reduces |
| 4457 | * our max possible watermark level. |
| 4458 | * |
| 4459 | * Bspec has this to say about the PLANE_WM enable bit: |
| 4460 | * "All the watermarks at this level for all enabled |
| 4461 | * planes must be enabled before the level will be used." |
| 4462 | * So this is actually safe to do. |
| 4463 | */ |
| 4464 | if (wm->wm[level].min_ddb_alloc > total[plane_id] || |
| 4465 | wm->uv_wm[level].min_ddb_alloc > uv_total[plane_id]) |
| 4466 | memset(&wm->wm[level], 0, sizeof(wm->wm[level])); |
Ville Syrjälä | 290248c | 2019-02-13 18:54:24 +0200 | [diff] [blame] | 4467 | |
Ville Syrjälä | c384afe | 2019-02-28 19:36:39 +0200 | [diff] [blame] | 4468 | /* |
Bob Paauwe | 39564ae | 2019-04-12 11:09:20 -0700 | [diff] [blame] | 4469 | * Wa_1408961008:icl, ehl |
Ville Syrjälä | c384afe | 2019-02-28 19:36:39 +0200 | [diff] [blame] | 4470 | * Underruns with WM1+ disabled |
| 4471 | */ |
Bob Paauwe | 39564ae | 2019-04-12 11:09:20 -0700 | [diff] [blame] | 4472 | if (IS_GEN(dev_priv, 11) && |
Ville Syrjälä | 290248c | 2019-02-13 18:54:24 +0200 | [diff] [blame] | 4473 | level == 1 && wm->wm[0].plane_en) { |
| 4474 | 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] | 4475 | wm->wm[level].plane_res_l = wm->wm[0].plane_res_l; |
| 4476 | wm->wm[level].ignore_lines = wm->wm[0].ignore_lines; |
Ville Syrjälä | 290248c | 2019-02-13 18:54:24 +0200 | [diff] [blame] | 4477 | } |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4478 | } |
| 4479 | } |
| 4480 | |
| 4481 | /* |
| 4482 | * Go back and disable the transition watermark if it turns out we |
| 4483 | * don't have enough DDB blocks for it. |
| 4484 | */ |
| 4485 | for_each_plane_id_on_crtc(intel_crtc, plane_id) { |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4486 | struct skl_plane_wm *wm = |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4487 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
Ville Syrjälä | 5e6037c | 2019-03-12 22:58:42 +0200 | [diff] [blame] | 4488 | |
Ville Syrjälä | b19c9bc | 2018-12-21 19:14:31 +0200 | [diff] [blame] | 4489 | if (wm->trans_wm.plane_res_b >= total[plane_id]) |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4490 | memset(&wm->trans_wm, 0, sizeof(wm->trans_wm)); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4491 | } |
| 4492 | |
Matt Roper | c107acf | 2016-05-12 07:06:01 -0700 | [diff] [blame] | 4493 | return 0; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 4494 | } |
| 4495 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4496 | /* |
| 4497 | * 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] | 4498 | * for the read latency) and cpp should always be <= 8, so that |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4499 | * should allow pixel_rate up to ~2 GHz which seems sufficient since max |
| 4500 | * 2xcdclk is 1350 MHz and the pixel rate should never exceed that. |
| 4501 | */ |
Paulo Zanoni | 6c64dd3 | 2017-08-11 16:38:25 -0700 | [diff] [blame] | 4502 | static uint_fixed_16_16_t |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4503 | skl_wm_method1(const struct drm_i915_private *dev_priv, u32 pixel_rate, |
| 4504 | u8 cpp, u32 latency, u32 dbuf_block_size) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4505 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4506 | u32 wm_intermediate_val; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4507 | uint_fixed_16_16_t ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4508 | |
| 4509 | if (latency == 0) |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4510 | return FP_16_16_MAX; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4511 | |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4512 | wm_intermediate_val = latency * pixel_rate * cpp; |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4513 | ret = div_fixed16(wm_intermediate_val, 1000 * dbuf_block_size); |
Paulo Zanoni | 6c64dd3 | 2017-08-11 16:38:25 -0700 | [diff] [blame] | 4514 | |
| 4515 | if (INTEL_GEN(dev_priv) >= 10) |
| 4516 | ret = add_fixed16_u32(ret, 1); |
| 4517 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4518 | return ret; |
| 4519 | } |
| 4520 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4521 | static uint_fixed_16_16_t |
| 4522 | skl_wm_method2(u32 pixel_rate, u32 pipe_htotal, u32 latency, |
| 4523 | uint_fixed_16_16_t plane_blocks_per_line) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4524 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4525 | u32 wm_intermediate_val; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4526 | uint_fixed_16_16_t ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4527 | |
| 4528 | if (latency == 0) |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4529 | return FP_16_16_MAX; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4530 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4531 | wm_intermediate_val = latency * pixel_rate; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4532 | wm_intermediate_val = DIV_ROUND_UP(wm_intermediate_val, |
| 4533 | pipe_htotal * 1000); |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4534 | ret = mul_u32_fixed16(wm_intermediate_val, plane_blocks_per_line); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4535 | return ret; |
| 4536 | } |
| 4537 | |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4538 | static uint_fixed_16_16_t |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4539 | intel_get_linetime_us(const struct intel_crtc_state *crtc_state) |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4540 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4541 | u32 pixel_rate; |
| 4542 | u32 crtc_htotal; |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4543 | uint_fixed_16_16_t linetime_us; |
| 4544 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4545 | if (!crtc_state->hw.active) |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4546 | return u32_to_fixed16(0); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4547 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4548 | pixel_rate = crtc_state->pixel_rate; |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4549 | |
| 4550 | if (WARN_ON(pixel_rate == 0)) |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4551 | return u32_to_fixed16(0); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4552 | |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4553 | crtc_htotal = crtc_state->hw.adjusted_mode.crtc_htotal; |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4554 | linetime_us = div_fixed16(crtc_htotal * 1000, pixel_rate); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4555 | |
| 4556 | return linetime_us; |
| 4557 | } |
| 4558 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4559 | static u32 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4560 | skl_adjusted_plane_pixel_rate(const struct intel_crtc_state *crtc_state, |
| 4561 | const struct intel_plane_state *plane_state) |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4562 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4563 | u64 adjusted_pixel_rate; |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4564 | uint_fixed_16_16_t downscale_amount; |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4565 | |
| 4566 | /* Shouldn't reach here on disabled planes... */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4567 | if (WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state))) |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4568 | return 0; |
| 4569 | |
| 4570 | /* |
| 4571 | * Adjusted plane pixel rate is just the pipe's adjusted pixel rate |
| 4572 | * with additional adjustments for plane-specific scaling. |
| 4573 | */ |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4574 | adjusted_pixel_rate = crtc_state->pixel_rate; |
| 4575 | downscale_amount = skl_plane_downscale_amount(crtc_state, plane_state); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4576 | |
Kumar, Mahesh | 7084b50 | 2017-05-17 17:28:23 +0530 | [diff] [blame] | 4577 | return mul_round_up_u32_fixed16(adjusted_pixel_rate, |
| 4578 | downscale_amount); |
Kumar, Mahesh | 9c2f7a9 | 2016-05-16 15:52:00 -0700 | [diff] [blame] | 4579 | } |
| 4580 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4581 | static int |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4582 | skl_compute_wm_params(const struct intel_crtc_state *crtc_state, |
| 4583 | int width, const struct drm_format_info *format, |
| 4584 | u64 modifier, unsigned int rotation, |
| 4585 | u32 plane_pixel_rate, struct skl_wm_params *wp, |
| 4586 | int color_plane) |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4587 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4588 | struct intel_crtc *crtc = to_intel_crtc(crtc_state->uapi.crtc); |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4589 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4590 | u32 interm_pbpl; |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4591 | |
Juha-Pekka Heikkila | df7d415 | 2019-03-04 17:26:31 +0530 | [diff] [blame] | 4592 | /* only planar format has two planes */ |
Imre Deak | 4941f35 | 2019-12-21 14:05:43 +0200 | [diff] [blame] | 4593 | if (color_plane == 1 && |
| 4594 | !intel_format_info_is_yuv_semiplanar(format, modifier)) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 4595 | drm_dbg_kms(&dev_priv->drm, |
| 4596 | "Non planar format have single plane\n"); |
Mahesh Kumar | 942aa2d | 2018-04-09 09:11:04 +0530 | [diff] [blame] | 4597 | return -EINVAL; |
| 4598 | } |
| 4599 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4600 | wp->y_tiled = modifier == I915_FORMAT_MOD_Y_TILED || |
| 4601 | modifier == I915_FORMAT_MOD_Yf_TILED || |
| 4602 | modifier == I915_FORMAT_MOD_Y_TILED_CCS || |
| 4603 | modifier == I915_FORMAT_MOD_Yf_TILED_CCS; |
| 4604 | wp->x_tiled = modifier == I915_FORMAT_MOD_X_TILED; |
| 4605 | wp->rc_surface = modifier == I915_FORMAT_MOD_Y_TILED_CCS || |
| 4606 | modifier == I915_FORMAT_MOD_Yf_TILED_CCS; |
Imre Deak | 4941f35 | 2019-12-21 14:05:43 +0200 | [diff] [blame] | 4607 | wp->is_planar = intel_format_info_is_yuv_semiplanar(format, modifier); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4608 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4609 | wp->width = width; |
Ville Syrjälä | 45bee43 | 2018-11-14 23:07:28 +0200 | [diff] [blame] | 4610 | if (color_plane == 1 && wp->is_planar) |
Mahesh Kumar | 942aa2d | 2018-04-09 09:11:04 +0530 | [diff] [blame] | 4611 | wp->width /= 2; |
| 4612 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4613 | wp->cpp = format->cpp[color_plane]; |
| 4614 | wp->plane_pixel_rate = plane_pixel_rate; |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4615 | |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4616 | if (INTEL_GEN(dev_priv) >= 11 && |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4617 | modifier == I915_FORMAT_MOD_Yf_TILED && wp->cpp == 1) |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4618 | wp->dbuf_block_size = 256; |
| 4619 | else |
| 4620 | wp->dbuf_block_size = 512; |
| 4621 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4622 | if (drm_rotation_90_or_270(rotation)) { |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4623 | switch (wp->cpp) { |
| 4624 | case 1: |
| 4625 | wp->y_min_scanlines = 16; |
| 4626 | break; |
| 4627 | case 2: |
| 4628 | wp->y_min_scanlines = 8; |
| 4629 | break; |
| 4630 | case 4: |
| 4631 | wp->y_min_scanlines = 4; |
| 4632 | break; |
| 4633 | default: |
| 4634 | MISSING_CASE(wp->cpp); |
| 4635 | return -EINVAL; |
| 4636 | } |
| 4637 | } else { |
| 4638 | wp->y_min_scanlines = 4; |
| 4639 | } |
| 4640 | |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 4641 | if (skl_needs_memory_bw_wa(dev_priv)) |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4642 | wp->y_min_scanlines *= 2; |
| 4643 | |
| 4644 | wp->plane_bytes_per_line = wp->width * wp->cpp; |
| 4645 | if (wp->y_tiled) { |
| 4646 | interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line * |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4647 | wp->y_min_scanlines, |
| 4648 | wp->dbuf_block_size); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4649 | |
| 4650 | if (INTEL_GEN(dev_priv) >= 10) |
| 4651 | interm_pbpl++; |
| 4652 | |
| 4653 | wp->plane_blocks_per_line = div_fixed16(interm_pbpl, |
| 4654 | wp->y_min_scanlines); |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 4655 | } else if (wp->x_tiled && IS_GEN(dev_priv, 9)) { |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4656 | interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, |
| 4657 | wp->dbuf_block_size); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4658 | wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl); |
| 4659 | } else { |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4660 | interm_pbpl = DIV_ROUND_UP(wp->plane_bytes_per_line, |
| 4661 | wp->dbuf_block_size) + 1; |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4662 | wp->plane_blocks_per_line = u32_to_fixed16(interm_pbpl); |
| 4663 | } |
| 4664 | |
| 4665 | wp->y_tile_minimum = mul_u32_fixed16(wp->y_min_scanlines, |
| 4666 | wp->plane_blocks_per_line); |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4667 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4668 | wp->linetime_us = fixed16_to_u32_round_up( |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4669 | intel_get_linetime_us(crtc_state)); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4670 | |
| 4671 | return 0; |
| 4672 | } |
| 4673 | |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4674 | static int |
| 4675 | skl_compute_plane_wm_params(const struct intel_crtc_state *crtc_state, |
| 4676 | const struct intel_plane_state *plane_state, |
| 4677 | struct skl_wm_params *wp, int color_plane) |
| 4678 | { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4679 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4680 | int width; |
| 4681 | |
Maarten Lankhorst | 3a61276 | 2019-10-04 13:34:54 +0200 | [diff] [blame] | 4682 | /* |
| 4683 | * Src coordinates are already rotated by 270 degrees for |
| 4684 | * the 90/270 degree plane rotation cases (to match the |
| 4685 | * GTT mapping), hence no need to account for rotation here. |
| 4686 | */ |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4687 | width = drm_rect_width(&plane_state->uapi.src) >> 16; |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4688 | |
| 4689 | return skl_compute_wm_params(crtc_state, width, |
| 4690 | fb->format, fb->modifier, |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4691 | plane_state->hw.rotation, |
Ville Syrjälä | c92558a | 2019-03-12 22:58:38 +0200 | [diff] [blame] | 4692 | skl_adjusted_plane_pixel_rate(crtc_state, plane_state), |
| 4693 | wp, color_plane); |
| 4694 | } |
| 4695 | |
Ville Syrjälä | b52c273 | 2018-12-21 19:14:28 +0200 | [diff] [blame] | 4696 | static bool skl_wm_has_lines(struct drm_i915_private *dev_priv, int level) |
| 4697 | { |
| 4698 | if (INTEL_GEN(dev_priv) >= 10 || IS_GEMINILAKE(dev_priv)) |
| 4699 | return true; |
| 4700 | |
| 4701 | /* The number of lines are ignored for the level 0 watermark. */ |
| 4702 | return level > 0; |
| 4703 | } |
| 4704 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4705 | 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] | 4706 | int level, |
| 4707 | const struct skl_wm_params *wp, |
| 4708 | const struct skl_wm_level *result_prev, |
| 4709 | struct skl_wm_level *result /* out */) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4710 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4711 | 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] | 4712 | u32 latency = dev_priv->wm.skl_latency[level]; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4713 | uint_fixed_16_16_t method1, method2; |
Mahesh Kumar | b95320b | 2016-12-01 21:19:37 +0530 | [diff] [blame] | 4714 | uint_fixed_16_16_t selected_result; |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4715 | u32 res_blocks, res_lines, min_ddb_alloc = 0; |
Ville Syrjälä | ce110ec | 2018-11-14 23:07:21 +0200 | [diff] [blame] | 4716 | |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4717 | if (latency == 0) { |
| 4718 | /* reject it */ |
| 4719 | result->min_ddb_alloc = U16_MAX; |
Ville Syrjälä | 692927f | 2018-12-21 19:14:29 +0200 | [diff] [blame] | 4720 | return; |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4721 | } |
Ville Syrjälä | 692927f | 2018-12-21 19:14:29 +0200 | [diff] [blame] | 4722 | |
Ville Syrjälä | 25312ef | 2019-05-03 20:38:05 +0300 | [diff] [blame] | 4723 | /* |
| 4724 | * WaIncreaseLatencyIPCEnabled: kbl,cfl |
| 4725 | * Display WA #1141: kbl,cfl |
| 4726 | */ |
Ville Syrjälä | 5a7d202 | 2019-05-03 20:38:06 +0300 | [diff] [blame] | 4727 | if ((IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) || |
Rodrigo Vivi | 82525c1 | 2017-06-08 08:50:00 -0700 | [diff] [blame] | 4728 | dev_priv->ipc_enabled) |
Mahesh Kumar | 4b7b233 | 2016-12-01 21:19:35 +0530 | [diff] [blame] | 4729 | latency += 4; |
| 4730 | |
Ville Syrjälä | 60e983f | 2018-12-21 19:14:33 +0200 | [diff] [blame] | 4731 | if (skl_needs_memory_bw_wa(dev_priv) && wp->x_tiled) |
Paulo Zanoni | ee3d532 | 2016-10-11 15:25:38 -0300 | [diff] [blame] | 4732 | latency += 15; |
| 4733 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4734 | method1 = skl_wm_method1(dev_priv, wp->plane_pixel_rate, |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4735 | wp->cpp, latency, wp->dbuf_block_size); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4736 | method2 = skl_wm_method2(wp->plane_pixel_rate, |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4737 | crtc_state->hw.adjusted_mode.crtc_htotal, |
Paulo Zanoni | 1186fa8 | 2016-09-22 18:00:31 -0300 | [diff] [blame] | 4738 | latency, |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4739 | wp->plane_blocks_per_line); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4740 | |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4741 | if (wp->y_tiled) { |
| 4742 | selected_result = max_fixed16(method2, wp->y_tile_minimum); |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4743 | } else { |
Maarten Lankhorst | 1326a92 | 2019-10-31 12:26:02 +0100 | [diff] [blame] | 4744 | if ((wp->cpp * crtc_state->hw.adjusted_mode.crtc_htotal / |
Mahesh Kumar | df8ee19 | 2018-01-30 11:49:11 -0200 | [diff] [blame] | 4745 | wp->dbuf_block_size < 1) && |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4746 | (wp->plane_bytes_per_line / wp->dbuf_block_size < 1)) { |
Paulo Zanoni | f1db3ea | 2016-09-22 18:00:34 -0300 | [diff] [blame] | 4747 | selected_result = method2; |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4748 | } else if (latency >= wp->linetime_us) { |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 4749 | if (IS_GEN(dev_priv, 9) && |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4750 | !IS_GEMINILAKE(dev_priv)) |
| 4751 | selected_result = min_fixed16(method1, method2); |
| 4752 | else |
| 4753 | selected_result = method2; |
| 4754 | } else { |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4755 | selected_result = method1; |
Paulo Zanoni | 077b582 | 2018-10-04 16:15:57 -0700 | [diff] [blame] | 4756 | } |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4757 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4758 | |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4759 | res_blocks = fixed16_to_u32_round_up(selected_result) + 1; |
Kumar, Mahesh | d273ecc | 2017-05-17 17:28:22 +0530 | [diff] [blame] | 4760 | res_lines = div_round_up_fixed16(selected_result, |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4761 | wp->plane_blocks_per_line); |
Damien Lespiau | e6d6617 | 2014-11-04 17:06:55 +0000 | [diff] [blame] | 4762 | |
Paulo Zanoni | a5b79d3 | 2018-11-13 17:24:32 -0800 | [diff] [blame] | 4763 | if (IS_GEN9_BC(dev_priv) || IS_BROXTON(dev_priv)) { |
| 4764 | /* Display WA #1125: skl,bxt,kbl */ |
| 4765 | if (level == 0 && wp->rc_surface) |
| 4766 | res_blocks += |
| 4767 | fixed16_to_u32_round_up(wp->y_tile_minimum); |
Ville Syrjälä | 2e2adb0 | 2017-08-01 09:58:13 -0700 | [diff] [blame] | 4768 | |
Paulo Zanoni | a5b79d3 | 2018-11-13 17:24:32 -0800 | [diff] [blame] | 4769 | /* Display WA #1126: skl,bxt,kbl */ |
| 4770 | if (level >= 1 && level <= 7) { |
| 4771 | if (wp->y_tiled) { |
| 4772 | res_blocks += |
| 4773 | fixed16_to_u32_round_up(wp->y_tile_minimum); |
| 4774 | res_lines += wp->y_min_scanlines; |
| 4775 | } else { |
| 4776 | res_blocks++; |
| 4777 | } |
| 4778 | |
| 4779 | /* |
| 4780 | * Make sure result blocks for higher latency levels are |
| 4781 | * atleast as high as level below the current level. |
| 4782 | * Assumption in DDB algorithm optimization for special |
| 4783 | * cases. Also covers Display WA #1125 for RC. |
| 4784 | */ |
| 4785 | if (result_prev->plane_res_b > res_blocks) |
| 4786 | res_blocks = result_prev->plane_res_b; |
Paulo Zanoni | 75676ed | 2016-09-22 18:00:33 -0300 | [diff] [blame] | 4787 | } |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 4788 | } |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 4789 | |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4790 | if (INTEL_GEN(dev_priv) >= 11) { |
| 4791 | if (wp->y_tiled) { |
| 4792 | int extra_lines; |
| 4793 | |
| 4794 | if (res_lines % wp->y_min_scanlines == 0) |
| 4795 | extra_lines = wp->y_min_scanlines; |
| 4796 | else |
| 4797 | extra_lines = wp->y_min_scanlines * 2 - |
| 4798 | res_lines % wp->y_min_scanlines; |
| 4799 | |
| 4800 | min_ddb_alloc = mul_round_up_u32_fixed16(res_lines + extra_lines, |
| 4801 | wp->plane_blocks_per_line); |
| 4802 | } else { |
| 4803 | min_ddb_alloc = res_blocks + |
| 4804 | DIV_ROUND_UP(res_blocks, 10); |
| 4805 | } |
| 4806 | } |
| 4807 | |
Ville Syrjälä | b52c273 | 2018-12-21 19:14:28 +0200 | [diff] [blame] | 4808 | if (!skl_wm_has_lines(dev_priv, level)) |
| 4809 | res_lines = 0; |
| 4810 | |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4811 | if (res_lines > 31) { |
| 4812 | /* reject it */ |
| 4813 | result->min_ddb_alloc = U16_MAX; |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4814 | return; |
Ville Syrjälä | 0aded17 | 2019-02-05 17:50:53 +0200 | [diff] [blame] | 4815 | } |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4816 | |
| 4817 | /* |
| 4818 | * If res_lines is valid, assume we can use this watermark level |
| 4819 | * for now. We'll come back and disable it after we calculate the |
| 4820 | * DDB allocation if it turns out we don't actually have enough |
| 4821 | * blocks to satisfy it. |
| 4822 | */ |
Mahesh Kumar | 62027b7 | 2018-04-09 09:11:05 +0530 | [diff] [blame] | 4823 | result->plane_res_b = res_blocks; |
| 4824 | result->plane_res_l = res_lines; |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 4825 | /* Bspec says: value >= plane ddb allocation -> invalid, hence the +1 here */ |
| 4826 | result->min_ddb_alloc = max(min_ddb_alloc, res_blocks) + 1; |
Mahesh Kumar | 62027b7 | 2018-04-09 09:11:05 +0530 | [diff] [blame] | 4827 | result->plane_en = true; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4828 | } |
| 4829 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4830 | static void |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4831 | skl_compute_wm_levels(const struct intel_crtc_state *crtc_state, |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 4832 | const struct skl_wm_params *wm_params, |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4833 | struct skl_wm_level *levels) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4834 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4835 | 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] | 4836 | int level, max_level = ilk_wm_max_level(dev_priv); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4837 | struct skl_wm_level *result_prev = &levels[0]; |
Lyude | a62163e | 2016-10-04 14:28:20 -0400 | [diff] [blame] | 4838 | |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4839 | for (level = 0; level <= max_level; level++) { |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4840 | struct skl_wm_level *result = &levels[level]; |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4841 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4842 | skl_compute_plane_wm(crtc_state, level, wm_params, |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4843 | result_prev, result); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4844 | |
| 4845 | result_prev = result; |
Kumar, Mahesh | d2f5e36 | 2017-05-17 17:28:28 +0530 | [diff] [blame] | 4846 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 4847 | } |
| 4848 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4849 | static u32 |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4850 | skl_compute_linetime_wm(const struct intel_crtc_state *crtc_state) |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4851 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4852 | struct drm_atomic_state *state = crtc_state->uapi.state; |
Mahesh Kumar | a3a8986 | 2016-12-01 21:19:34 +0530 | [diff] [blame] | 4853 | struct drm_i915_private *dev_priv = to_i915(state->dev); |
Kumar, Mahesh | d555cb5 | 2017-05-17 17:28:29 +0530 | [diff] [blame] | 4854 | uint_fixed_16_16_t linetime_us; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4855 | u32 linetime_wm; |
Paulo Zanoni | 30d1b5f | 2016-10-07 17:28:58 -0300 | [diff] [blame] | 4856 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4857 | linetime_us = intel_get_linetime_us(crtc_state); |
Kumar, Mahesh | eac2cb8 | 2017-07-05 20:01:46 +0530 | [diff] [blame] | 4858 | 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] | 4859 | |
Ville Syrjälä | 717671c | 2018-12-21 19:14:36 +0200 | [diff] [blame] | 4860 | /* Display WA #1135: BXT:ALL GLK:ALL */ |
| 4861 | if (IS_GEN9_LP(dev_priv) && dev_priv->ipc_enabled) |
Kumar, Mahesh | 446e850 | 2017-08-17 19:15:25 +0530 | [diff] [blame] | 4862 | linetime_wm /= 2; |
Mahesh Kumar | a3a8986 | 2016-12-01 21:19:34 +0530 | [diff] [blame] | 4863 | |
| 4864 | return linetime_wm; |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4865 | } |
| 4866 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 4867 | 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] | 4868 | const struct skl_wm_params *wp, |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4869 | struct skl_plane_wm *wm) |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4870 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 4871 | struct drm_device *dev = crtc_state->uapi.crtc->dev; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4872 | const struct drm_i915_private *dev_priv = to_i915(dev); |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4873 | u16 trans_min, trans_y_tile_min; |
| 4874 | const u16 trans_amount = 10; /* This is configurable amount */ |
| 4875 | u16 wm0_sel_res_b, trans_offset_b, res_blocks; |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 4876 | |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4877 | /* Transition WM are not recommended by HW team for GEN9 */ |
| 4878 | if (INTEL_GEN(dev_priv) <= 9) |
Ville Syrjälä | 14a4306 | 2018-11-14 23:07:22 +0200 | [diff] [blame] | 4879 | return; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4880 | |
| 4881 | /* Transition WM don't make any sense if ipc is disabled */ |
| 4882 | if (!dev_priv->ipc_enabled) |
Ville Syrjälä | 14a4306 | 2018-11-14 23:07:22 +0200 | [diff] [blame] | 4883 | return; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4884 | |
Paulo Zanoni | 91961a8 | 2018-10-04 16:15:56 -0700 | [diff] [blame] | 4885 | trans_min = 14; |
| 4886 | if (INTEL_GEN(dev_priv) >= 11) |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4887 | trans_min = 4; |
| 4888 | |
| 4889 | trans_offset_b = trans_min + trans_amount; |
| 4890 | |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4891 | /* |
| 4892 | * The spec asks for Selected Result Blocks for wm0 (the real value), |
| 4893 | * not Result Blocks (the integer value). Pay attention to the capital |
| 4894 | * letters. The value wm_l0->plane_res_b is actually Result Blocks, but |
| 4895 | * since Result Blocks is the ceiling of Selected Result Blocks plus 1, |
| 4896 | * and since we later will have to get the ceiling of the sum in the |
| 4897 | * transition watermarks calculation, we can just pretend Selected |
| 4898 | * Result Blocks is Result Blocks minus 1 and it should work for the |
| 4899 | * current platforms. |
| 4900 | */ |
Ville Syrjälä | 6a3c910b | 2018-11-14 23:07:23 +0200 | [diff] [blame] | 4901 | wm0_sel_res_b = wm->wm[0].plane_res_b - 1; |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4902 | |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4903 | if (wp->y_tiled) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 4904 | trans_y_tile_min = |
| 4905 | (u16)mul_round_up_u32_fixed16(2, wp->y_tile_minimum); |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4906 | res_blocks = max(wm0_sel_res_b, trans_y_tile_min) + |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4907 | trans_offset_b; |
| 4908 | } else { |
Paulo Zanoni | cbacc79 | 2018-10-04 16:15:58 -0700 | [diff] [blame] | 4909 | res_blocks = wm0_sel_res_b + trans_offset_b; |
Kumar, Mahesh | ca47667 | 2017-08-17 19:15:24 +0530 | [diff] [blame] | 4910 | |
| 4911 | /* WA BUG:1938466 add one block for non y-tile planes */ |
| 4912 | if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_A0)) |
| 4913 | res_blocks += 1; |
| 4914 | |
| 4915 | } |
| 4916 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4917 | /* |
| 4918 | * Just assume we can enable the transition watermark. After |
| 4919 | * computing the DDB we'll come back and disable it if that |
| 4920 | * assumption turns out to be false. |
| 4921 | */ |
| 4922 | wm->trans_wm.plane_res_b = res_blocks + 1; |
| 4923 | wm->trans_wm.plane_en = true; |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 4924 | } |
| 4925 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4926 | 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] | 4927 | const struct intel_plane_state *plane_state, |
| 4928 | enum plane_id plane_id, int color_plane) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4929 | { |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4930 | 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] | 4931 | struct skl_wm_params wm_params; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4932 | int ret; |
| 4933 | |
Ville Syrjälä | 51de9c6 | 2018-11-14 23:07:25 +0200 | [diff] [blame] | 4934 | ret = skl_compute_plane_wm_params(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4935 | &wm_params, color_plane); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4936 | if (ret) |
| 4937 | return ret; |
| 4938 | |
Ville Syrjälä | 67155a6 | 2019-03-12 22:58:37 +0200 | [diff] [blame] | 4939 | skl_compute_wm_levels(crtc_state, &wm_params, wm->wm); |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 4940 | skl_compute_transition_wm(crtc_state, &wm_params, wm); |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4941 | |
| 4942 | return 0; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4943 | } |
| 4944 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4945 | 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] | 4946 | const struct intel_plane_state *plane_state, |
| 4947 | enum plane_id plane_id) |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4948 | { |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4949 | struct skl_plane_wm *wm = &crtc_state->wm.skl.optimal.planes[plane_id]; |
| 4950 | struct skl_wm_params wm_params; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4951 | int ret; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4952 | |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4953 | wm->is_planar = true; |
| 4954 | |
| 4955 | /* uv plane watermarks must also be validated for NV12/Planar */ |
Ville Syrjälä | 51de9c6 | 2018-11-14 23:07:25 +0200 | [diff] [blame] | 4956 | ret = skl_compute_plane_wm_params(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4957 | &wm_params, 1); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 4958 | if (ret) |
| 4959 | return ret; |
| 4960 | |
Ville Syrjälä | 67155a6 | 2019-03-12 22:58:37 +0200 | [diff] [blame] | 4961 | skl_compute_wm_levels(crtc_state, &wm_params, wm->uv_wm); |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4962 | |
| 4963 | return 0; |
| 4964 | } |
| 4965 | |
Ville Syrjälä | 96cb7cd | 2019-03-12 22:58:43 +0200 | [diff] [blame] | 4966 | 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] | 4967 | const struct intel_plane_state *plane_state) |
| 4968 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4969 | struct intel_plane *plane = to_intel_plane(plane_state->uapi.plane); |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 4970 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4971 | enum plane_id plane_id = plane->id; |
| 4972 | int ret; |
| 4973 | |
| 4974 | if (!intel_wm_plane_visible(crtc_state, plane_state)) |
| 4975 | return 0; |
| 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 | plane_id, 0); |
| 4979 | if (ret) |
| 4980 | return ret; |
| 4981 | |
| 4982 | if (fb->format->is_yuv && fb->format->num_planes > 1) { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 4983 | ret = skl_build_plane_wm_uv(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 4984 | plane_id); |
| 4985 | if (ret) |
| 4986 | return ret; |
| 4987 | } |
| 4988 | |
| 4989 | return 0; |
| 4990 | } |
| 4991 | |
Ville Syrjälä | 96cb7cd | 2019-03-12 22:58:43 +0200 | [diff] [blame] | 4992 | 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] | 4993 | const struct intel_plane_state *plane_state) |
| 4994 | { |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 4995 | 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] | 4996 | int ret; |
| 4997 | |
| 4998 | /* Watermarks calculated in master */ |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 4999 | if (plane_state->planar_slave) |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 5000 | return 0; |
| 5001 | |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 5002 | if (plane_state->planar_linked_plane) { |
Maarten Lankhorst | 7b3cb17 | 2019-10-31 12:26:07 +0100 | [diff] [blame] | 5003 | const struct drm_framebuffer *fb = plane_state->hw.fb; |
Maarten Lankhorst | c47b7dd | 2019-09-20 13:42:20 +0200 | [diff] [blame] | 5004 | 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] | 5005 | |
| 5006 | WARN_ON(!intel_wm_plane_visible(crtc_state, plane_state)); |
| 5007 | WARN_ON(!fb->format->is_yuv || |
| 5008 | fb->format->num_planes == 1); |
| 5009 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5010 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 5011 | y_plane_id, 0); |
| 5012 | if (ret) |
| 5013 | return ret; |
| 5014 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5015 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 5016 | plane_id, 1); |
| 5017 | if (ret) |
| 5018 | return ret; |
| 5019 | } else if (intel_wm_plane_visible(crtc_state, plane_state)) { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5020 | ret = skl_build_plane_wm_single(crtc_state, plane_state, |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 5021 | plane_id, 0); |
| 5022 | if (ret) |
| 5023 | return ret; |
| 5024 | } |
| 5025 | |
| 5026 | return 0; |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 5027 | } |
| 5028 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5029 | static int skl_build_pipe_wm(struct intel_crtc_state *crtc_state) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5030 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5031 | 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] | 5032 | struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal; |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 5033 | struct intel_plane *plane; |
| 5034 | const struct intel_plane_state *plane_state; |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 5035 | int ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5036 | |
Lyude | a62163e | 2016-10-04 14:28:20 -0400 | [diff] [blame] | 5037 | /* |
| 5038 | * We'll only calculate watermarks for planes that are actually |
| 5039 | * enabled, so make sure all other planes are set as disabled. |
| 5040 | */ |
| 5041 | memset(pipe_wm->planes, 0, sizeof(pipe_wm->planes)); |
| 5042 | |
Maarten Lankhorst | af9fbfa | 2019-10-04 13:34:53 +0200 | [diff] [blame] | 5043 | intel_atomic_crtc_state_for_each_plane_state(plane, plane_state, |
| 5044 | crtc_state) { |
Kumar, Mahesh | eb2fdcd | 2017-05-17 17:28:27 +0530 | [diff] [blame] | 5045 | |
Ville Syrjälä | 8315847 | 2018-11-27 18:57:26 +0200 | [diff] [blame] | 5046 | if (INTEL_GEN(dev_priv) >= 11) |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5047 | ret = icl_build_plane_wm(crtc_state, plane_state); |
Maarten Lankhorst | b048a00 | 2018-10-18 13:51:30 +0200 | [diff] [blame] | 5048 | else |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5049 | ret = skl_build_plane_wm(crtc_state, plane_state); |
Kumar, Mahesh | 7e452fd | 2017-08-17 19:15:23 +0530 | [diff] [blame] | 5050 | if (ret) |
| 5051 | return ret; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5052 | } |
Mahesh Kumar | 942aa2d | 2018-04-09 09:11:04 +0530 | [diff] [blame] | 5053 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5054 | pipe_wm->linetime = skl_compute_linetime_wm(crtc_state); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5055 | |
Matt Roper | 55994c2 | 2016-05-12 07:06:08 -0700 | [diff] [blame] | 5056 | return 0; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5057 | } |
| 5058 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 5059 | static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, |
| 5060 | i915_reg_t reg, |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 5061 | const struct skl_ddb_entry *entry) |
| 5062 | { |
| 5063 | if (entry->end) |
Jani Nikula | 9b6320a | 2020-01-23 16:00:04 +0200 | [diff] [blame] | 5064 | intel_de_write_fw(dev_priv, reg, |
| 5065 | (entry->end - 1) << 16 | entry->start); |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 5066 | else |
Jani Nikula | 9b6320a | 2020-01-23 16:00:04 +0200 | [diff] [blame] | 5067 | intel_de_write_fw(dev_priv, reg, 0); |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 5068 | } |
| 5069 | |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5070 | static void skl_write_wm_level(struct drm_i915_private *dev_priv, |
| 5071 | i915_reg_t reg, |
| 5072 | const struct skl_wm_level *level) |
| 5073 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5074 | u32 val = 0; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5075 | |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5076 | if (level->plane_en) |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5077 | val |= PLANE_WM_EN; |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5078 | if (level->ignore_lines) |
| 5079 | val |= PLANE_WM_IGNORE_LINES; |
| 5080 | val |= level->plane_res_b; |
| 5081 | val |= level->plane_res_l << PLANE_WM_LINES_SHIFT; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5082 | |
Jani Nikula | 9b6320a | 2020-01-23 16:00:04 +0200 | [diff] [blame] | 5083 | intel_de_write_fw(dev_priv, reg, val); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5084 | } |
| 5085 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5086 | void skl_write_plane_wm(struct intel_plane *plane, |
| 5087 | const struct intel_crtc_state *crtc_state) |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5088 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5089 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5090 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5091 | enum plane_id plane_id = plane->id; |
| 5092 | enum pipe pipe = plane->pipe; |
| 5093 | const struct skl_plane_wm *wm = |
| 5094 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
| 5095 | const struct skl_ddb_entry *ddb_y = |
| 5096 | &crtc_state->wm.skl.plane_ddb_y[plane_id]; |
| 5097 | const struct skl_ddb_entry *ddb_uv = |
| 5098 | &crtc_state->wm.skl.plane_ddb_uv[plane_id]; |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5099 | |
| 5100 | for (level = 0; level <= max_level; level++) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5101 | 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] | 5102 | &wm->wm[level]); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5103 | } |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5104 | 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] | 5105 | &wm->trans_wm); |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5106 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5107 | if (INTEL_GEN(dev_priv) >= 11) { |
Mahesh Kumar | 234059d | 2018-01-30 11:49:13 -0200 | [diff] [blame] | 5108 | skl_ddb_entry_write(dev_priv, |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5109 | PLANE_BUF_CFG(pipe, plane_id), ddb_y); |
| 5110 | return; |
Mahesh Kumar | b879d58 | 2018-04-09 09:11:01 +0530 | [diff] [blame] | 5111 | } |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5112 | |
| 5113 | if (wm->is_planar) |
| 5114 | swap(ddb_y, ddb_uv); |
| 5115 | |
| 5116 | skl_ddb_entry_write(dev_priv, |
| 5117 | PLANE_BUF_CFG(pipe, plane_id), ddb_y); |
| 5118 | skl_ddb_entry_write(dev_priv, |
| 5119 | PLANE_NV12_BUF_CFG(pipe, plane_id), ddb_uv); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5120 | } |
| 5121 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5122 | void skl_write_cursor_wm(struct intel_plane *plane, |
| 5123 | const struct intel_crtc_state *crtc_state) |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5124 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5125 | struct drm_i915_private *dev_priv = to_i915(plane->base.dev); |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5126 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5127 | enum plane_id plane_id = plane->id; |
| 5128 | enum pipe pipe = plane->pipe; |
| 5129 | const struct skl_plane_wm *wm = |
| 5130 | &crtc_state->wm.skl.optimal.planes[plane_id]; |
| 5131 | const struct skl_ddb_entry *ddb = |
| 5132 | &crtc_state->wm.skl.plane_ddb_y[plane_id]; |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5133 | |
| 5134 | for (level = 0; level <= max_level; level++) { |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5135 | skl_write_wm_level(dev_priv, CUR_WM(pipe, level), |
| 5136 | &wm->wm[level]); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5137 | } |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5138 | skl_write_wm_level(dev_priv, CUR_WM_TRANS(pipe), &wm->trans_wm); |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5139 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5140 | skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), ddb); |
Lyude | 62e0fb8 | 2016-08-22 12:50:08 -0400 | [diff] [blame] | 5141 | } |
| 5142 | |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5143 | bool skl_wm_level_equals(const struct skl_wm_level *l1, |
| 5144 | const struct skl_wm_level *l2) |
| 5145 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5146 | return l1->plane_en == l2->plane_en && |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5147 | l1->ignore_lines == l2->ignore_lines && |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5148 | l1->plane_res_l == l2->plane_res_l && |
| 5149 | l1->plane_res_b == l2->plane_res_b; |
| 5150 | } |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5151 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5152 | static bool skl_plane_wm_equals(struct drm_i915_private *dev_priv, |
| 5153 | const struct skl_plane_wm *wm1, |
| 5154 | const struct skl_plane_wm *wm2) |
| 5155 | { |
| 5156 | int level, max_level = ilk_wm_max_level(dev_priv); |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5157 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5158 | for (level = 0; level <= max_level; level++) { |
| 5159 | if (!skl_wm_level_equals(&wm1->wm[level], &wm2->wm[level]) || |
| 5160 | !skl_wm_level_equals(&wm1->uv_wm[level], &wm2->uv_wm[level])) |
| 5161 | return false; |
| 5162 | } |
| 5163 | |
| 5164 | return skl_wm_level_equals(&wm1->trans_wm, &wm2->trans_wm); |
cpaul@redhat.com | 45ece23 | 2016-10-14 17:31:56 -0400 | [diff] [blame] | 5165 | } |
| 5166 | |
Ville Syrjälä | 961d95e | 2018-12-21 19:14:32 +0200 | [diff] [blame] | 5167 | static bool skl_pipe_wm_equals(struct intel_crtc *crtc, |
| 5168 | const struct skl_pipe_wm *wm1, |
| 5169 | const struct skl_pipe_wm *wm2) |
| 5170 | { |
| 5171 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5172 | enum plane_id plane_id; |
| 5173 | |
| 5174 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 5175 | if (!skl_plane_wm_equals(dev_priv, |
| 5176 | &wm1->planes[plane_id], |
| 5177 | &wm2->planes[plane_id])) |
| 5178 | return false; |
| 5179 | } |
| 5180 | |
| 5181 | return wm1->linetime == wm2->linetime; |
| 5182 | } |
| 5183 | |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5184 | static inline bool skl_ddb_entries_overlap(const struct skl_ddb_entry *a, |
| 5185 | const struct skl_ddb_entry *b) |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5186 | { |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5187 | return a->start < b->end && b->start < a->end; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5188 | } |
| 5189 | |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5190 | bool skl_ddb_allocation_overlaps(const struct skl_ddb_entry *ddb, |
Jani Nikula | 696173b | 2019-04-05 14:00:15 +0300 | [diff] [blame] | 5191 | const struct skl_ddb_entry *entries, |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5192 | int num_entries, int ignore_idx) |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5193 | { |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5194 | int i; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5195 | |
Ville Syrjälä | 53cc6880 | 2018-11-01 17:05:59 +0200 | [diff] [blame] | 5196 | for (i = 0; i < num_entries; i++) { |
| 5197 | if (i != ignore_idx && |
| 5198 | skl_ddb_entries_overlap(ddb, &entries[i])) |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5199 | return true; |
Mika Kahola | 2b68504 | 2017-10-10 13:17:03 +0300 | [diff] [blame] | 5200 | } |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5201 | |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5202 | return false; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 5203 | } |
| 5204 | |
Jani Nikula | bb7791b | 2016-10-04 12:29:17 +0300 | [diff] [blame] | 5205 | static int |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5206 | skl_ddb_add_affected_planes(const struct intel_crtc_state *old_crtc_state, |
| 5207 | struct intel_crtc_state *new_crtc_state) |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5208 | { |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5209 | struct intel_atomic_state *state = to_intel_atomic_state(new_crtc_state->uapi.state); |
| 5210 | 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] | 5211 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5212 | struct intel_plane *plane; |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5213 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5214 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5215 | struct intel_plane_state *plane_state; |
| 5216 | enum plane_id plane_id = plane->id; |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5217 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5218 | if (skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_y[plane_id], |
| 5219 | &new_crtc_state->wm.skl.plane_ddb_y[plane_id]) && |
| 5220 | skl_ddb_entry_equal(&old_crtc_state->wm.skl.plane_ddb_uv[plane_id], |
| 5221 | &new_crtc_state->wm.skl.plane_ddb_uv[plane_id])) |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5222 | continue; |
| 5223 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5224 | plane_state = intel_atomic_get_plane_state(state, plane); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5225 | if (IS_ERR(plane_state)) |
| 5226 | return PTR_ERR(plane_state); |
Maarten Lankhorst | 1ab554b | 2018-10-22 15:51:52 +0200 | [diff] [blame] | 5227 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5228 | new_crtc_state->update_planes |= BIT(plane_id); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5229 | } |
| 5230 | |
| 5231 | return 0; |
| 5232 | } |
| 5233 | |
| 5234 | static int |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5235 | skl_compute_ddb(struct intel_atomic_state *state) |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5236 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5237 | const struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
| 5238 | struct skl_ddb_allocation *ddb = &state->wm_results.ddb; |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5239 | struct intel_crtc_state *old_crtc_state; |
| 5240 | struct intel_crtc_state *new_crtc_state; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5241 | struct intel_crtc *crtc; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5242 | int ret, i; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5243 | |
Paulo Zanoni | 5a920b8 | 2016-10-04 14:37:32 -0300 | [diff] [blame] | 5244 | memcpy(ddb, &dev_priv->wm.skl_hw.ddb, sizeof(*ddb)); |
| 5245 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5246 | 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] | 5247 | new_crtc_state, i) { |
| 5248 | ret = skl_allocate_pipe_ddb(new_crtc_state, ddb); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5249 | if (ret) |
| 5250 | return ret; |
| 5251 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5252 | ret = skl_ddb_add_affected_planes(old_crtc_state, |
| 5253 | new_crtc_state); |
Rodrigo Vivi | 9a30a26 | 2017-06-13 10:52:30 -0700 | [diff] [blame] | 5254 | if (ret) |
| 5255 | return ret; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5256 | } |
| 5257 | |
| 5258 | return 0; |
| 5259 | } |
| 5260 | |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5261 | static char enast(bool enable) |
| 5262 | { |
| 5263 | return enable ? '*' : ' '; |
| 5264 | } |
| 5265 | |
Matt Roper | 2722efb | 2016-08-17 15:55:55 -0400 | [diff] [blame] | 5266 | static void |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5267 | skl_print_wm_changes(struct intel_atomic_state *state) |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5268 | { |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5269 | struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
| 5270 | const struct intel_crtc_state *old_crtc_state; |
| 5271 | const struct intel_crtc_state *new_crtc_state; |
| 5272 | struct intel_plane *plane; |
| 5273 | struct intel_crtc *crtc; |
Maarten Lankhorst | 7570498 | 2016-11-01 12:04:10 +0100 | [diff] [blame] | 5274 | int i; |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5275 | |
Jani Nikula | bdbf43d | 2019-10-28 12:38:15 +0200 | [diff] [blame] | 5276 | if (!drm_debug_enabled(DRM_UT_KMS)) |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5277 | return; |
| 5278 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5279 | for_each_oldnew_intel_crtc_in_state(state, crtc, old_crtc_state, |
| 5280 | new_crtc_state, i) { |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5281 | const struct skl_pipe_wm *old_pipe_wm, *new_pipe_wm; |
| 5282 | |
| 5283 | old_pipe_wm = &old_crtc_state->wm.skl.optimal; |
| 5284 | new_pipe_wm = &new_crtc_state->wm.skl.optimal; |
| 5285 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5286 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5287 | enum plane_id plane_id = plane->id; |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5288 | const struct skl_ddb_entry *old, *new; |
| 5289 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5290 | old = &old_crtc_state->wm.skl.plane_ddb_y[plane_id]; |
| 5291 | new = &new_crtc_state->wm.skl.plane_ddb_y[plane_id]; |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5292 | |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5293 | if (skl_ddb_entry_equal(old, new)) |
| 5294 | continue; |
| 5295 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5296 | drm_dbg_kms(&dev_priv->drm, |
| 5297 | "[PLANE:%d:%s] ddb (%4d - %4d) -> (%4d - %4d), size %4d -> %4d\n", |
| 5298 | plane->base.base.id, plane->base.name, |
| 5299 | old->start, old->end, new->start, new->end, |
| 5300 | skl_ddb_entry_size(old), skl_ddb_entry_size(new)); |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5301 | } |
| 5302 | |
| 5303 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5304 | enum plane_id plane_id = plane->id; |
| 5305 | const struct skl_plane_wm *old_wm, *new_wm; |
| 5306 | |
| 5307 | old_wm = &old_pipe_wm->planes[plane_id]; |
| 5308 | new_wm = &new_pipe_wm->planes[plane_id]; |
| 5309 | |
| 5310 | if (skl_plane_wm_equals(dev_priv, old_wm, new_wm)) |
| 5311 | continue; |
| 5312 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5313 | drm_dbg_kms(&dev_priv->drm, |
| 5314 | "[PLANE:%d:%s] level %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm" |
| 5315 | " -> %cwm0,%cwm1,%cwm2,%cwm3,%cwm4,%cwm5,%cwm6,%cwm7,%ctwm\n", |
| 5316 | plane->base.base.id, plane->base.name, |
| 5317 | enast(old_wm->wm[0].plane_en), enast(old_wm->wm[1].plane_en), |
| 5318 | enast(old_wm->wm[2].plane_en), enast(old_wm->wm[3].plane_en), |
| 5319 | enast(old_wm->wm[4].plane_en), enast(old_wm->wm[5].plane_en), |
| 5320 | enast(old_wm->wm[6].plane_en), enast(old_wm->wm[7].plane_en), |
| 5321 | enast(old_wm->trans_wm.plane_en), |
| 5322 | enast(new_wm->wm[0].plane_en), enast(new_wm->wm[1].plane_en), |
| 5323 | enast(new_wm->wm[2].plane_en), enast(new_wm->wm[3].plane_en), |
| 5324 | enast(new_wm->wm[4].plane_en), enast(new_wm->wm[5].plane_en), |
| 5325 | enast(new_wm->wm[6].plane_en), enast(new_wm->wm[7].plane_en), |
| 5326 | enast(new_wm->trans_wm.plane_en)); |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5327 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5328 | drm_dbg_kms(&dev_priv->drm, |
| 5329 | "[PLANE:%d:%s] lines %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d" |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5330 | " -> %c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d,%c%3d\n", |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5331 | plane->base.base.id, plane->base.name, |
| 5332 | enast(old_wm->wm[0].ignore_lines), old_wm->wm[0].plane_res_l, |
| 5333 | enast(old_wm->wm[1].ignore_lines), old_wm->wm[1].plane_res_l, |
| 5334 | enast(old_wm->wm[2].ignore_lines), old_wm->wm[2].plane_res_l, |
| 5335 | enast(old_wm->wm[3].ignore_lines), old_wm->wm[3].plane_res_l, |
| 5336 | enast(old_wm->wm[4].ignore_lines), old_wm->wm[4].plane_res_l, |
| 5337 | enast(old_wm->wm[5].ignore_lines), old_wm->wm[5].plane_res_l, |
| 5338 | enast(old_wm->wm[6].ignore_lines), old_wm->wm[6].plane_res_l, |
| 5339 | enast(old_wm->wm[7].ignore_lines), old_wm->wm[7].plane_res_l, |
| 5340 | enast(old_wm->trans_wm.ignore_lines), old_wm->trans_wm.plane_res_l, |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5341 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5342 | enast(new_wm->wm[0].ignore_lines), new_wm->wm[0].plane_res_l, |
| 5343 | enast(new_wm->wm[1].ignore_lines), new_wm->wm[1].plane_res_l, |
| 5344 | enast(new_wm->wm[2].ignore_lines), new_wm->wm[2].plane_res_l, |
| 5345 | enast(new_wm->wm[3].ignore_lines), new_wm->wm[3].plane_res_l, |
| 5346 | enast(new_wm->wm[4].ignore_lines), new_wm->wm[4].plane_res_l, |
| 5347 | enast(new_wm->wm[5].ignore_lines), new_wm->wm[5].plane_res_l, |
| 5348 | enast(new_wm->wm[6].ignore_lines), new_wm->wm[6].plane_res_l, |
| 5349 | enast(new_wm->wm[7].ignore_lines), new_wm->wm[7].plane_res_l, |
| 5350 | 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] | 5351 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5352 | drm_dbg_kms(&dev_priv->drm, |
| 5353 | "[PLANE:%d:%s] blocks %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d" |
| 5354 | " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n", |
| 5355 | plane->base.base.id, plane->base.name, |
| 5356 | old_wm->wm[0].plane_res_b, old_wm->wm[1].plane_res_b, |
| 5357 | old_wm->wm[2].plane_res_b, old_wm->wm[3].plane_res_b, |
| 5358 | old_wm->wm[4].plane_res_b, old_wm->wm[5].plane_res_b, |
| 5359 | old_wm->wm[6].plane_res_b, old_wm->wm[7].plane_res_b, |
| 5360 | old_wm->trans_wm.plane_res_b, |
| 5361 | new_wm->wm[0].plane_res_b, new_wm->wm[1].plane_res_b, |
| 5362 | new_wm->wm[2].plane_res_b, new_wm->wm[3].plane_res_b, |
| 5363 | new_wm->wm[4].plane_res_b, new_wm->wm[5].plane_res_b, |
| 5364 | new_wm->wm[6].plane_res_b, new_wm->wm[7].plane_res_b, |
| 5365 | new_wm->trans_wm.plane_res_b); |
Ville Syrjälä | ab98e94 | 2019-02-08 22:05:27 +0200 | [diff] [blame] | 5366 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5367 | drm_dbg_kms(&dev_priv->drm, |
| 5368 | "[PLANE:%d:%s] min_ddb %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d" |
| 5369 | " -> %4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d,%4d\n", |
| 5370 | plane->base.base.id, plane->base.name, |
| 5371 | old_wm->wm[0].min_ddb_alloc, old_wm->wm[1].min_ddb_alloc, |
| 5372 | old_wm->wm[2].min_ddb_alloc, old_wm->wm[3].min_ddb_alloc, |
| 5373 | old_wm->wm[4].min_ddb_alloc, old_wm->wm[5].min_ddb_alloc, |
| 5374 | old_wm->wm[6].min_ddb_alloc, old_wm->wm[7].min_ddb_alloc, |
| 5375 | old_wm->trans_wm.min_ddb_alloc, |
| 5376 | new_wm->wm[0].min_ddb_alloc, new_wm->wm[1].min_ddb_alloc, |
| 5377 | new_wm->wm[2].min_ddb_alloc, new_wm->wm[3].min_ddb_alloc, |
| 5378 | new_wm->wm[4].min_ddb_alloc, new_wm->wm[5].min_ddb_alloc, |
| 5379 | new_wm->wm[6].min_ddb_alloc, new_wm->wm[7].min_ddb_alloc, |
| 5380 | new_wm->trans_wm.min_ddb_alloc); |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5381 | } |
| 5382 | } |
| 5383 | } |
| 5384 | |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5385 | static int intel_add_all_pipes(struct intel_atomic_state *state) |
| 5386 | { |
| 5387 | struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
| 5388 | struct intel_crtc *crtc; |
| 5389 | |
| 5390 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 5391 | struct intel_crtc_state *crtc_state; |
| 5392 | |
| 5393 | crtc_state = intel_atomic_get_crtc_state(&state->base, crtc); |
| 5394 | if (IS_ERR(crtc_state)) |
| 5395 | return PTR_ERR(crtc_state); |
| 5396 | } |
| 5397 | |
| 5398 | return 0; |
| 5399 | } |
| 5400 | |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5401 | static int |
Ville Syrjälä | d7a1458 | 2019-10-11 23:09:42 +0300 | [diff] [blame] | 5402 | skl_ddb_add_affected_pipes(struct intel_atomic_state *state) |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5403 | { |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5404 | struct drm_i915_private *dev_priv = to_i915(state->base.dev); |
Ville Syrjälä | d7a1458 | 2019-10-11 23:09:42 +0300 | [diff] [blame] | 5405 | int ret; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5406 | |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5407 | /* |
| 5408 | * If this is our first atomic update following hardware readout, |
| 5409 | * we can't trust the DDB that the BIOS programmed for us. Let's |
| 5410 | * pretend that all pipes switched active status so that we'll |
| 5411 | * ensure a full DDB recompute. |
| 5412 | */ |
| 5413 | if (dev_priv->wm.distrust_bios_wm) { |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5414 | ret = drm_modeset_lock(&dev_priv->drm.mode_config.connection_mutex, |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5415 | state->base.acquire_ctx); |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5416 | if (ret) |
| 5417 | return ret; |
| 5418 | |
Ville Syrjälä | 8d9875b | 2019-10-11 23:09:45 +0300 | [diff] [blame] | 5419 | state->active_pipe_changes = INTEL_INFO(dev_priv)->pipe_mask; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5420 | |
| 5421 | /* |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 5422 | * We usually only initialize state->active_pipes if we |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5423 | * we're doing a modeset; make sure this field is always |
| 5424 | * initialized during the sanitization process that happens |
| 5425 | * on the first commit too. |
| 5426 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5427 | if (!state->modeset) |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 5428 | state->active_pipes = dev_priv->active_pipes; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5429 | } |
| 5430 | |
| 5431 | /* |
| 5432 | * If the modeset changes which CRTC's are active, we need to |
| 5433 | * recompute the DDB allocation for *all* active pipes, even |
| 5434 | * those that weren't otherwise being modified in any way by this |
| 5435 | * atomic commit. Due to the shrinking of the per-pipe allocations |
| 5436 | * when new active CRTC's are added, it's possible for a pipe that |
| 5437 | * we were already using and aren't changing at all here to suddenly |
| 5438 | * become invalid if its DDB needs exceeds its new allocation. |
| 5439 | * |
| 5440 | * Note that if we wind up doing a full DDB recompute, we can't let |
| 5441 | * any other display updates race with this transaction, so we need |
| 5442 | * to grab the lock on *all* CRTC's. |
| 5443 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5444 | if (state->active_pipe_changes || state->modeset) { |
Ville Syrjälä | 8d9875b | 2019-10-11 23:09:45 +0300 | [diff] [blame] | 5445 | state->wm_results.dirty_pipes = INTEL_INFO(dev_priv)->pipe_mask; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5446 | |
Ville Syrjälä | 49e0ed3 | 2019-10-11 23:09:43 +0300 | [diff] [blame] | 5447 | ret = intel_add_all_pipes(state); |
| 5448 | if (ret) |
| 5449 | return ret; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5450 | } |
| 5451 | |
| 5452 | return 0; |
| 5453 | } |
| 5454 | |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5455 | /* |
| 5456 | * To make sure the cursor watermark registers are always consistent |
| 5457 | * with our computed state the following scenario needs special |
| 5458 | * treatment: |
| 5459 | * |
| 5460 | * 1. enable cursor |
| 5461 | * 2. move cursor entirely offscreen |
| 5462 | * 3. disable cursor |
| 5463 | * |
| 5464 | * Step 2. does call .disable_plane() but does not zero the watermarks |
| 5465 | * (since we consider an offscreen cursor still active for the purposes |
| 5466 | * of watermarks). Step 3. would not normally call .disable_plane() |
| 5467 | * because the actual plane visibility isn't changing, and we don't |
| 5468 | * deallocate the cursor ddb until the pipe gets disabled. So we must |
| 5469 | * force step 3. to call .disable_plane() to update the watermark |
| 5470 | * registers properly. |
| 5471 | * |
| 5472 | * Other planes do not suffer from this issues as their watermarks are |
| 5473 | * calculated based on the actual plane visibility. The only time this |
| 5474 | * can trigger for the other planes is during the initial readout as the |
| 5475 | * default value of the watermarks registers is not zero. |
| 5476 | */ |
| 5477 | static int skl_wm_add_affected_planes(struct intel_atomic_state *state, |
| 5478 | struct intel_crtc *crtc) |
| 5479 | { |
| 5480 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5481 | const struct intel_crtc_state *old_crtc_state = |
| 5482 | intel_atomic_get_old_crtc_state(state, crtc); |
| 5483 | struct intel_crtc_state *new_crtc_state = |
| 5484 | intel_atomic_get_new_crtc_state(state, crtc); |
| 5485 | struct intel_plane *plane; |
| 5486 | |
| 5487 | for_each_intel_plane_on_crtc(&dev_priv->drm, crtc, plane) { |
| 5488 | struct intel_plane_state *plane_state; |
| 5489 | enum plane_id plane_id = plane->id; |
| 5490 | |
| 5491 | /* |
| 5492 | * Force a full wm update for every plane on modeset. |
| 5493 | * Required because the reset value of the wm registers |
| 5494 | * is non-zero, whereas we want all disabled planes to |
| 5495 | * have zero watermarks. So if we turn off the relevant |
| 5496 | * power well the hardware state will go out of sync |
| 5497 | * with the software state. |
| 5498 | */ |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5499 | if (!drm_atomic_crtc_needs_modeset(&new_crtc_state->uapi) && |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5500 | skl_plane_wm_equals(dev_priv, |
| 5501 | &old_crtc_state->wm.skl.optimal.planes[plane_id], |
| 5502 | &new_crtc_state->wm.skl.optimal.planes[plane_id])) |
| 5503 | continue; |
| 5504 | |
| 5505 | plane_state = intel_atomic_get_plane_state(state, plane); |
| 5506 | if (IS_ERR(plane_state)) |
| 5507 | return PTR_ERR(plane_state); |
| 5508 | |
| 5509 | new_crtc_state->update_planes |= BIT(plane_id); |
| 5510 | } |
| 5511 | |
| 5512 | return 0; |
| 5513 | } |
| 5514 | |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5515 | static int |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5516 | skl_compute_wm(struct intel_atomic_state *state) |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5517 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5518 | struct intel_crtc *crtc; |
Ville Syrjälä | 8cac9fd | 2019-03-12 22:58:44 +0200 | [diff] [blame] | 5519 | struct intel_crtc_state *new_crtc_state; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5520 | struct intel_crtc_state *old_crtc_state; |
| 5521 | struct skl_ddb_values *results = &state->wm_results; |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5522 | int ret, i; |
| 5523 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5524 | /* Clear all dirty flags */ |
| 5525 | results->dirty_pipes = 0; |
| 5526 | |
Ville Syrjälä | d7a1458 | 2019-10-11 23:09:42 +0300 | [diff] [blame] | 5527 | ret = skl_ddb_add_affected_pipes(state); |
| 5528 | if (ret) |
Mahesh Kumar | e1f96a6 | 2018-04-09 09:11:08 +0530 | [diff] [blame] | 5529 | return ret; |
| 5530 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5531 | /* |
| 5532 | * Calculate WM's for all pipes that are part of this transaction. |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 5533 | * 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] | 5534 | * weren't otherwise being modified (and set bits in dirty_pipes) if |
| 5535 | * pipe allocations had to change. |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5536 | */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5537 | 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] | 5538 | new_crtc_state, i) { |
| 5539 | ret = skl_build_pipe_wm(new_crtc_state); |
Ville Syrjälä | ff43bc3 | 2018-11-27 18:59:00 +0200 | [diff] [blame] | 5540 | if (ret) |
| 5541 | return ret; |
| 5542 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5543 | ret = skl_wm_add_affected_planes(state, crtc); |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5544 | if (ret) |
| 5545 | return ret; |
| 5546 | |
Ville Syrjälä | 8cac9fd | 2019-03-12 22:58:44 +0200 | [diff] [blame] | 5547 | if (!skl_pipe_wm_equals(crtc, |
| 5548 | &old_crtc_state->wm.skl.optimal, |
| 5549 | &new_crtc_state->wm.skl.optimal)) |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5550 | results->dirty_pipes |= BIT(crtc->pipe); |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5551 | } |
| 5552 | |
Matt Roper | d8e8749 | 2018-12-11 09:31:07 -0800 | [diff] [blame] | 5553 | ret = skl_compute_ddb(state); |
| 5554 | if (ret) |
| 5555 | return ret; |
| 5556 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5557 | skl_print_wm_changes(state); |
cpaul@redhat.com | 413fc53 | 2016-10-14 17:31:54 -0400 | [diff] [blame] | 5558 | |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 5559 | return 0; |
| 5560 | } |
| 5561 | |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5562 | 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] | 5563 | struct intel_crtc *crtc) |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5564 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5565 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5566 | const struct intel_crtc_state *crtc_state = |
| 5567 | intel_atomic_get_new_crtc_state(state, crtc); |
| 5568 | const struct skl_pipe_wm *pipe_wm = &crtc_state->wm.skl.optimal; |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5569 | enum pipe pipe = crtc->pipe; |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 5570 | |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5571 | if ((state->wm_results.dirty_pipes & BIT(crtc->pipe)) == 0) |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 5572 | return; |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5573 | |
| 5574 | I915_WRITE(PIPE_WM_LINETIME(pipe), pipe_wm->linetime); |
| 5575 | } |
| 5576 | |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 5577 | static void skl_initial_wm(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5578 | struct intel_crtc *crtc) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5579 | { |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5580 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5581 | const struct intel_crtc_state *crtc_state = |
| 5582 | intel_atomic_get_new_crtc_state(state, crtc); |
Mahesh Kumar | 60f8e87 | 2018-04-09 09:11:00 +0530 | [diff] [blame] | 5583 | struct skl_ddb_values *results = &state->wm_results; |
Bob Paauwe | adda50b | 2015-07-21 10:42:53 -0700 | [diff] [blame] | 5584 | |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5585 | if ((results->dirty_pipes & BIT(crtc->pipe)) == 0) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5586 | return; |
| 5587 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5588 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 5589 | |
Maarten Lankhorst | 2225f3c | 2019-10-31 12:26:03 +0100 | [diff] [blame] | 5590 | if (crtc_state->uapi.active_changed) |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5591 | skl_atomic_update_crtc_wm(state, crtc); |
Lyude | 2708249 | 2016-08-24 07:48:10 +0200 | [diff] [blame] | 5592 | |
Matt Roper | 734fa01 | 2016-05-12 15:11:40 -0700 | [diff] [blame] | 5593 | mutex_unlock(&dev_priv->wm.wm_mutex); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 5594 | } |
| 5595 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5596 | 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] | 5597 | struct intel_wm_config *config) |
| 5598 | { |
| 5599 | struct intel_crtc *crtc; |
| 5600 | |
| 5601 | /* Compute the currently _active_ config */ |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5602 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5603 | const struct intel_pipe_wm *wm = &crtc->wm.active.ilk; |
| 5604 | |
| 5605 | if (!wm->pipe_enabled) |
| 5606 | continue; |
| 5607 | |
| 5608 | config->sprites_enabled |= wm->sprites_enabled; |
| 5609 | config->sprites_scaled |= wm->sprites_scaled; |
| 5610 | config->num_pipes_active++; |
| 5611 | } |
| 5612 | } |
| 5613 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5614 | static void ilk_program_watermarks(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 5615 | { |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5616 | 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] | 5617 | struct ilk_wm_maximums max; |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5618 | struct intel_wm_config config = {}; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5619 | struct ilk_wm_values results = {}; |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 5620 | enum intel_ddb_partitioning partitioning; |
Matt Roper | 261a27d | 2015-10-08 15:28:25 -0700 | [diff] [blame] | 5621 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5622 | ilk_compute_wm_config(dev_priv, &config); |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5623 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5624 | ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_1_2, &max); |
| 5625 | ilk_wm_merge(dev_priv, &config, &max, &lp_wm_1_2); |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 5626 | |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 5627 | /* 5/6 split only in single pipe config on IVB+ */ |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 5628 | if (INTEL_GEN(dev_priv) >= 7 && |
Ville Syrjälä | d890565 | 2016-01-14 14:53:35 +0200 | [diff] [blame] | 5629 | config.num_pipes_active == 1 && config.sprites_enabled) { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5630 | ilk_compute_wm_maximums(dev_priv, 1, &config, INTEL_DDB_PART_5_6, &max); |
| 5631 | ilk_wm_merge(dev_priv, &config, &max, &lp_wm_5_6); |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 5632 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5633 | 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] | 5634 | } else { |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 5635 | best_lp_wm = &lp_wm_1_2; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 5636 | } |
| 5637 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 5638 | partitioning = (best_lp_wm == &lp_wm_1_2) ? |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 5639 | INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 5640 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5641 | ilk_compute_wm_results(dev_priv, best_lp_wm, partitioning, &results); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 5642 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5643 | ilk_write_wm_values(dev_priv, &results); |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 5644 | } |
| 5645 | |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5646 | static void ilk_initial_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5647 | struct intel_crtc *crtc) |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5648 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5649 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5650 | const struct intel_crtc_state *crtc_state = |
| 5651 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5652 | |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5653 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 5654 | crtc->wm.active.ilk = crtc_state->wm.ilk.intermediate; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5655 | ilk_program_watermarks(dev_priv); |
| 5656 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 5657 | } |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5658 | |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 5659 | static void ilk_optimize_watermarks(struct intel_atomic_state *state, |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5660 | struct intel_crtc *crtc) |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5661 | { |
Ville Syrjälä | 7a8fdb1f | 2019-11-18 18:44:26 +0200 | [diff] [blame] | 5662 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5663 | const struct intel_crtc_state *crtc_state = |
| 5664 | intel_atomic_get_new_crtc_state(state, crtc); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 5665 | |
| 5666 | if (!crtc_state->wm.need_postvbl_update) |
| 5667 | return; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5668 | |
| 5669 | mutex_lock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | 88016a9 | 2019-07-01 19:05:45 +0300 | [diff] [blame] | 5670 | crtc->wm.active.ilk = crtc_state->wm.ilk.optimal; |
| 5671 | ilk_program_watermarks(dev_priv); |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 5672 | mutex_unlock(&dev_priv->wm.wm_mutex); |
Ville Syrjälä | b9d5c83 | 2015-09-24 15:53:14 -0700 | [diff] [blame] | 5673 | } |
| 5674 | |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5675 | static inline void skl_wm_level_from_reg_val(u32 val, |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5676 | struct skl_wm_level *level) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5677 | { |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5678 | level->plane_en = val & PLANE_WM_EN; |
Ville Syrjälä | 2ed8e1f | 2019-02-13 18:54:23 +0200 | [diff] [blame] | 5679 | level->ignore_lines = val & PLANE_WM_IGNORE_LINES; |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5680 | level->plane_res_b = val & PLANE_WM_BLOCKS_MASK; |
| 5681 | level->plane_res_l = (val >> PLANE_WM_LINES_SHIFT) & |
| 5682 | PLANE_WM_LINES_MASK; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5683 | } |
| 5684 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5685 | void skl_pipe_wm_get_hw_state(struct intel_crtc *crtc, |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5686 | struct skl_pipe_wm *out) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5687 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5688 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 5689 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5690 | int level, max_level; |
| 5691 | enum plane_id plane_id; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5692 | u32 val; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5693 | |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5694 | max_level = ilk_wm_max_level(dev_priv); |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5695 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5696 | for_each_plane_id_on_crtc(crtc, plane_id) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5697 | struct skl_plane_wm *wm = &out->planes[plane_id]; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5698 | |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5699 | for (level = 0; level <= max_level; level++) { |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5700 | if (plane_id != PLANE_CURSOR) |
| 5701 | val = I915_READ(PLANE_WM(pipe, plane_id, level)); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5702 | else |
| 5703 | val = I915_READ(CUR_WM(pipe, level)); |
| 5704 | |
| 5705 | skl_wm_level_from_reg_val(val, &wm->wm[level]); |
| 5706 | } |
| 5707 | |
Ville Syrjälä | d5cdfdf5 | 2016-11-22 18:01:58 +0200 | [diff] [blame] | 5708 | if (plane_id != PLANE_CURSOR) |
| 5709 | val = I915_READ(PLANE_WM_TRANS(pipe, plane_id)); |
cpaul@redhat.com | d8c0faf | 2016-10-18 16:09:49 -0200 | [diff] [blame] | 5710 | else |
| 5711 | val = I915_READ(CUR_WM_TRANS(pipe)); |
| 5712 | |
| 5713 | skl_wm_level_from_reg_val(val, &wm->trans_wm); |
| 5714 | } |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5715 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5716 | if (!crtc->active) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5717 | return; |
| 5718 | |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5719 | out->linetime = I915_READ(PIPE_WM_LINETIME(pipe)); |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5720 | } |
| 5721 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5722 | void skl_wm_get_hw_state(struct drm_i915_private *dev_priv) |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5723 | { |
Mahesh Kumar | 60f8e87 | 2018-04-09 09:11:00 +0530 | [diff] [blame] | 5724 | struct skl_ddb_values *hw = &dev_priv->wm.skl_hw; |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 5725 | struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5726 | struct intel_crtc *crtc; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5727 | struct intel_crtc_state *crtc_state; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5728 | |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 5729 | skl_ddb_get_hw_state(dev_priv, ddb); |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5730 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5731 | crtc_state = to_intel_crtc_state(crtc->base.state); |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5732 | |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5733 | 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] | 5734 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5735 | if (crtc->active) |
Ville Syrjälä | 36b53a2 | 2019-10-11 23:09:44 +0300 | [diff] [blame] | 5736 | hw->dirty_pipes |= BIT(crtc->pipe); |
cpaul@redhat.com | bf9d99a | 2016-10-14 17:31:55 -0400 | [diff] [blame] | 5737 | } |
Matt Roper | a1de91e | 2016-05-12 07:05:57 -0700 | [diff] [blame] | 5738 | |
Ville Syrjälä | d06a79d | 2019-08-21 20:30:29 +0300 | [diff] [blame] | 5739 | if (dev_priv->active_pipes) { |
Matt Roper | 279e99d | 2016-05-12 07:06:02 -0700 | [diff] [blame] | 5740 | /* Fully recompute DDB on first atomic commit */ |
| 5741 | dev_priv->wm.distrust_bios_wm = true; |
Matt Roper | 279e99d | 2016-05-12 07:06:02 -0700 | [diff] [blame] | 5742 | } |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 5743 | } |
| 5744 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5745 | 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] | 5746 | { |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5747 | struct drm_device *dev = crtc->base.dev; |
Chris Wilson | fac5e23 | 2016-07-04 11:34:36 +0100 | [diff] [blame] | 5748 | struct drm_i915_private *dev_priv = to_i915(dev); |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 5749 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Maarten Lankhorst | ec19364 | 2019-06-28 10:55:17 +0200 | [diff] [blame] | 5750 | struct intel_crtc_state *crtc_state = to_intel_crtc_state(crtc->base.state); |
| 5751 | struct intel_pipe_wm *active = &crtc_state->wm.ilk.optimal; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5752 | enum pipe pipe = crtc->pipe; |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 5753 | static const i915_reg_t wm0_pipe_reg[] = { |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5754 | [PIPE_A] = WM0_PIPEA_ILK, |
| 5755 | [PIPE_B] = WM0_PIPEB_ILK, |
| 5756 | [PIPE_C] = WM0_PIPEC_IVB, |
| 5757 | }; |
| 5758 | |
| 5759 | hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]); |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 5760 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | ce0e071 | 2013-12-05 15:51:36 +0200 | [diff] [blame] | 5761 | hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe)); |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5762 | |
Ville Syrjälä | 1560653 | 2016-05-13 17:55:17 +0300 | [diff] [blame] | 5763 | memset(active, 0, sizeof(*active)); |
| 5764 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5765 | active->pipe_enabled = crtc->active; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 5766 | |
| 5767 | if (active->pipe_enabled) { |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5768 | u32 tmp = hw->wm_pipe[pipe]; |
| 5769 | |
| 5770 | /* |
| 5771 | * For active pipes LP0 watermark is marked as |
| 5772 | * enabled, and LP1+ watermaks as disabled since |
| 5773 | * we can't really reverse compute them in case |
| 5774 | * multiple pipes are active. |
| 5775 | */ |
| 5776 | active->wm[0].enable = true; |
| 5777 | active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT; |
| 5778 | active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT; |
| 5779 | active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK; |
| 5780 | active->linetime = hw->wm_linetime[pipe]; |
| 5781 | } else { |
Tvrtko Ursulin | 5db9401 | 2016-10-13 11:03:10 +0100 | [diff] [blame] | 5782 | int level, max_level = ilk_wm_max_level(dev_priv); |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5783 | |
| 5784 | /* |
| 5785 | * For inactive pipes, all watermark levels |
| 5786 | * should be marked as enabled but zeroed, |
| 5787 | * which is what we'd compute them to. |
| 5788 | */ |
| 5789 | for (level = 0; level <= max_level; level++) |
| 5790 | active->wm[level].enable = true; |
| 5791 | } |
Matt Roper | 4e0963c | 2015-09-24 15:53:15 -0700 | [diff] [blame] | 5792 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5793 | crtc->wm.active.ilk = *active; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 5794 | } |
| 5795 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5796 | #define _FW_WM(value, plane) \ |
| 5797 | (((value) & DSPFW_ ## plane ## _MASK) >> DSPFW_ ## plane ## _SHIFT) |
| 5798 | #define _FW_WM_VLV(value, plane) \ |
| 5799 | (((value) & DSPFW_ ## plane ## _MASK_VLV) >> DSPFW_ ## plane ## _SHIFT) |
| 5800 | |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5801 | static void g4x_read_wm_values(struct drm_i915_private *dev_priv, |
| 5802 | struct g4x_wm_values *wm) |
| 5803 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5804 | u32 tmp; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5805 | |
| 5806 | tmp = I915_READ(DSPFW1); |
| 5807 | wm->sr.plane = _FW_WM(tmp, SR); |
| 5808 | wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB); |
| 5809 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEB); |
| 5810 | wm->pipe[PIPE_A].plane[PLANE_PRIMARY] = _FW_WM(tmp, PLANEA); |
| 5811 | |
| 5812 | tmp = I915_READ(DSPFW2); |
| 5813 | wm->fbc_en = tmp & DSPFW_FBC_SR_EN; |
| 5814 | wm->sr.fbc = _FW_WM(tmp, FBC_SR); |
| 5815 | wm->hpll.fbc = _FW_WM(tmp, FBC_HPLL_SR); |
| 5816 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEB); |
| 5817 | wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA); |
| 5818 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] = _FW_WM(tmp, SPRITEA); |
| 5819 | |
| 5820 | tmp = I915_READ(DSPFW3); |
| 5821 | wm->hpll_en = tmp & DSPFW_HPLL_SR_EN; |
| 5822 | wm->sr.cursor = _FW_WM(tmp, CURSOR_SR); |
| 5823 | wm->hpll.cursor = _FW_WM(tmp, HPLL_CURSOR); |
| 5824 | wm->hpll.plane = _FW_WM(tmp, HPLL_SR); |
| 5825 | } |
| 5826 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5827 | static void vlv_read_wm_values(struct drm_i915_private *dev_priv, |
| 5828 | struct vlv_wm_values *wm) |
| 5829 | { |
| 5830 | enum pipe pipe; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 5831 | u32 tmp; |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5832 | |
| 5833 | for_each_pipe(dev_priv, pipe) { |
| 5834 | tmp = I915_READ(VLV_DDL(pipe)); |
| 5835 | |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5836 | wm->ddl[pipe].plane[PLANE_PRIMARY] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5837 | (tmp >> DDL_PLANE_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5838 | wm->ddl[pipe].plane[PLANE_CURSOR] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5839 | (tmp >> DDL_CURSOR_SHIFT) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5840 | wm->ddl[pipe].plane[PLANE_SPRITE0] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5841 | (tmp >> DDL_SPRITE_SHIFT(0)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5842 | wm->ddl[pipe].plane[PLANE_SPRITE1] = |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5843 | (tmp >> DDL_SPRITE_SHIFT(1)) & (DDL_PRECISION_HIGH | DRAIN_LATENCY_MASK); |
| 5844 | } |
| 5845 | |
| 5846 | tmp = I915_READ(DSPFW1); |
| 5847 | wm->sr.plane = _FW_WM(tmp, SR); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5848 | wm->pipe[PIPE_B].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORB); |
| 5849 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEB); |
| 5850 | 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] | 5851 | |
| 5852 | tmp = I915_READ(DSPFW2); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5853 | wm->pipe[PIPE_A].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEB); |
| 5854 | wm->pipe[PIPE_A].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORA); |
| 5855 | 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] | 5856 | |
| 5857 | tmp = I915_READ(DSPFW3); |
| 5858 | wm->sr.cursor = _FW_WM(tmp, CURSOR_SR); |
| 5859 | |
| 5860 | if (IS_CHERRYVIEW(dev_priv)) { |
| 5861 | tmp = I915_READ(DSPFW7_CHV); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5862 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED); |
| 5863 | 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] | 5864 | |
| 5865 | tmp = I915_READ(DSPFW8_CHV); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5866 | wm->pipe[PIPE_C].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITEF); |
| 5867 | 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] | 5868 | |
| 5869 | tmp = I915_READ(DSPFW9_CHV); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5870 | wm->pipe[PIPE_C].plane[PLANE_PRIMARY] = _FW_WM_VLV(tmp, PLANEC); |
| 5871 | wm->pipe[PIPE_C].plane[PLANE_CURSOR] = _FW_WM(tmp, CURSORC); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 5872 | |
| 5873 | tmp = I915_READ(DSPHOWM); |
| 5874 | wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9; |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5875 | wm->pipe[PIPE_C].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEF_HI) << 8; |
| 5876 | wm->pipe[PIPE_C].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEE_HI) << 8; |
| 5877 | wm->pipe[PIPE_C].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEC_HI) << 8; |
| 5878 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8; |
| 5879 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8; |
| 5880 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8; |
| 5881 | wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8; |
| 5882 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8; |
| 5883 | 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] | 5884 | } else { |
| 5885 | tmp = I915_READ(DSPFW7); |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5886 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] = _FW_WM_VLV(tmp, SPRITED); |
| 5887 | 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] | 5888 | |
| 5889 | tmp = I915_READ(DSPHOWM); |
| 5890 | wm->sr.plane |= _FW_WM(tmp, SR_HI) << 9; |
Ville Syrjälä | 1b31389 | 2016-11-28 19:37:08 +0200 | [diff] [blame] | 5891 | wm->pipe[PIPE_B].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITED_HI) << 8; |
| 5892 | wm->pipe[PIPE_B].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEC_HI) << 8; |
| 5893 | wm->pipe[PIPE_B].plane[PLANE_PRIMARY] |= _FW_WM(tmp, PLANEB_HI) << 8; |
| 5894 | wm->pipe[PIPE_A].plane[PLANE_SPRITE1] |= _FW_WM(tmp, SPRITEB_HI) << 8; |
| 5895 | wm->pipe[PIPE_A].plane[PLANE_SPRITE0] |= _FW_WM(tmp, SPRITEA_HI) << 8; |
| 5896 | 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] | 5897 | } |
| 5898 | } |
| 5899 | |
| 5900 | #undef _FW_WM |
| 5901 | #undef _FW_WM_VLV |
| 5902 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5903 | 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] | 5904 | { |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5905 | struct g4x_wm_values *wm = &dev_priv->wm.g4x; |
| 5906 | struct intel_crtc *crtc; |
| 5907 | |
| 5908 | g4x_read_wm_values(dev_priv, wm); |
| 5909 | |
| 5910 | wm->cxsr = I915_READ(FW_BLC_SELF) & FW_BLC_SELF_EN; |
| 5911 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 5912 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5913 | struct intel_crtc_state *crtc_state = |
| 5914 | to_intel_crtc_state(crtc->base.state); |
| 5915 | struct g4x_wm_state *active = &crtc->wm.active.g4x; |
| 5916 | struct g4x_pipe_wm *raw; |
| 5917 | enum pipe pipe = crtc->pipe; |
| 5918 | enum plane_id plane_id; |
| 5919 | int level, max_level; |
| 5920 | |
| 5921 | active->cxsr = wm->cxsr; |
| 5922 | active->hpll_en = wm->hpll_en; |
| 5923 | active->fbc_en = wm->fbc_en; |
| 5924 | |
| 5925 | active->sr = wm->sr; |
| 5926 | active->hpll = wm->hpll; |
| 5927 | |
| 5928 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 5929 | active->wm.plane[plane_id] = |
| 5930 | wm->pipe[pipe].plane[plane_id]; |
| 5931 | } |
| 5932 | |
| 5933 | if (wm->cxsr && wm->hpll_en) |
| 5934 | max_level = G4X_WM_LEVEL_HPLL; |
| 5935 | else if (wm->cxsr) |
| 5936 | max_level = G4X_WM_LEVEL_SR; |
| 5937 | else |
| 5938 | max_level = G4X_WM_LEVEL_NORMAL; |
| 5939 | |
| 5940 | level = G4X_WM_LEVEL_NORMAL; |
| 5941 | raw = &crtc_state->wm.g4x.raw[level]; |
| 5942 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 5943 | raw->plane[plane_id] = active->wm.plane[plane_id]; |
| 5944 | |
| 5945 | if (++level > max_level) |
| 5946 | goto out; |
| 5947 | |
| 5948 | raw = &crtc_state->wm.g4x.raw[level]; |
| 5949 | raw->plane[PLANE_PRIMARY] = active->sr.plane; |
| 5950 | raw->plane[PLANE_CURSOR] = active->sr.cursor; |
| 5951 | raw->plane[PLANE_SPRITE0] = 0; |
| 5952 | raw->fbc = active->sr.fbc; |
| 5953 | |
| 5954 | if (++level > max_level) |
| 5955 | goto out; |
| 5956 | |
| 5957 | raw = &crtc_state->wm.g4x.raw[level]; |
| 5958 | raw->plane[PLANE_PRIMARY] = active->hpll.plane; |
| 5959 | raw->plane[PLANE_CURSOR] = active->hpll.cursor; |
| 5960 | raw->plane[PLANE_SPRITE0] = 0; |
| 5961 | raw->fbc = active->hpll.fbc; |
| 5962 | |
| 5963 | out: |
| 5964 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 5965 | g4x_raw_plane_wm_set(crtc_state, level, |
| 5966 | plane_id, USHRT_MAX); |
| 5967 | g4x_raw_fbc_wm_set(crtc_state, level, USHRT_MAX); |
| 5968 | |
| 5969 | crtc_state->wm.g4x.optimal = *active; |
| 5970 | crtc_state->wm.g4x.intermediate = *active; |
| 5971 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5972 | drm_dbg_kms(&dev_priv->drm, |
| 5973 | "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite=%d\n", |
| 5974 | pipe_name(pipe), |
| 5975 | wm->pipe[pipe].plane[PLANE_PRIMARY], |
| 5976 | wm->pipe[pipe].plane[PLANE_CURSOR], |
| 5977 | wm->pipe[pipe].plane[PLANE_SPRITE0]); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5978 | } |
| 5979 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 5980 | drm_dbg_kms(&dev_priv->drm, |
| 5981 | "Initial SR watermarks: plane=%d, cursor=%d fbc=%d\n", |
| 5982 | wm->sr.plane, wm->sr.cursor, wm->sr.fbc); |
| 5983 | drm_dbg_kms(&dev_priv->drm, |
| 5984 | "Initial HPLL watermarks: plane=%d, SR cursor=%d fbc=%d\n", |
| 5985 | wm->hpll.plane, wm->hpll.cursor, wm->hpll.fbc); |
| 5986 | drm_dbg_kms(&dev_priv->drm, "Initial SR=%s HPLL=%s FBC=%s\n", |
| 5987 | yesno(wm->cxsr), yesno(wm->hpll_en), yesno(wm->fbc_en)); |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 5988 | } |
| 5989 | |
| 5990 | void g4x_wm_sanitize(struct drm_i915_private *dev_priv) |
| 5991 | { |
| 5992 | struct intel_plane *plane; |
| 5993 | struct intel_crtc *crtc; |
| 5994 | |
| 5995 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 5996 | |
| 5997 | for_each_intel_plane(&dev_priv->drm, plane) { |
| 5998 | struct intel_crtc *crtc = |
| 5999 | intel_get_crtc_for_pipe(dev_priv, plane->pipe); |
| 6000 | struct intel_crtc_state *crtc_state = |
| 6001 | to_intel_crtc_state(crtc->base.state); |
| 6002 | struct intel_plane_state *plane_state = |
| 6003 | to_intel_plane_state(plane->base.state); |
| 6004 | struct g4x_wm_state *wm_state = &crtc_state->wm.g4x.optimal; |
| 6005 | enum plane_id plane_id = plane->id; |
| 6006 | int level; |
| 6007 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 6008 | if (plane_state->uapi.visible) |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 6009 | continue; |
| 6010 | |
| 6011 | for (level = 0; level < 3; level++) { |
| 6012 | struct g4x_pipe_wm *raw = |
| 6013 | &crtc_state->wm.g4x.raw[level]; |
| 6014 | |
| 6015 | raw->plane[plane_id] = 0; |
| 6016 | wm_state->wm.plane[plane_id] = 0; |
| 6017 | } |
| 6018 | |
| 6019 | if (plane_id == PLANE_PRIMARY) { |
| 6020 | for (level = 0; level < 3; level++) { |
| 6021 | struct g4x_pipe_wm *raw = |
| 6022 | &crtc_state->wm.g4x.raw[level]; |
| 6023 | raw->fbc = 0; |
| 6024 | } |
| 6025 | |
| 6026 | wm_state->sr.fbc = 0; |
| 6027 | wm_state->hpll.fbc = 0; |
| 6028 | wm_state->fbc_en = false; |
| 6029 | } |
| 6030 | } |
| 6031 | |
| 6032 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 6033 | struct intel_crtc_state *crtc_state = |
| 6034 | to_intel_crtc_state(crtc->base.state); |
| 6035 | |
| 6036 | crtc_state->wm.g4x.intermediate = |
| 6037 | crtc_state->wm.g4x.optimal; |
| 6038 | crtc->wm.active.g4x = crtc_state->wm.g4x.optimal; |
| 6039 | } |
| 6040 | |
| 6041 | g4x_program_watermarks(dev_priv); |
| 6042 | |
| 6043 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 6044 | } |
| 6045 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6046 | 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] | 6047 | { |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6048 | struct vlv_wm_values *wm = &dev_priv->wm.vlv; |
Ville Syrjälä | f07d43d | 2017-03-02 19:14:52 +0200 | [diff] [blame] | 6049 | struct intel_crtc *crtc; |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6050 | u32 val; |
| 6051 | |
| 6052 | vlv_read_wm_values(dev_priv, wm); |
| 6053 | |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6054 | wm->cxsr = I915_READ(FW_BLC_SELF_VLV) & FW_CSPWRDWNEN; |
| 6055 | wm->level = VLV_WM_LEVEL_PM2; |
| 6056 | |
| 6057 | if (IS_CHERRYVIEW(dev_priv)) { |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 6058 | vlv_punit_get(dev_priv); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6059 | |
Ville Syrjälä | c11b813 | 2018-11-29 19:55:03 +0200 | [diff] [blame] | 6060 | val = vlv_punit_read(dev_priv, PUNIT_REG_DSPSSPM); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6061 | if (val & DSP_MAXFIFO_PM5_ENABLE) |
| 6062 | wm->level = VLV_WM_LEVEL_PM5; |
| 6063 | |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 6064 | /* |
| 6065 | * If DDR DVFS is disabled in the BIOS, Punit |
| 6066 | * will never ack the request. So if that happens |
| 6067 | * assume we don't have to enable/disable DDR DVFS |
| 6068 | * dynamically. To test that just set the REQ_ACK |
| 6069 | * bit to poke the Punit, but don't change the |
| 6070 | * HIGH/LOW bits so that we don't actually change |
| 6071 | * the current state. |
| 6072 | */ |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6073 | val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2); |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 6074 | val |= FORCE_DDR_FREQ_REQ_ACK; |
| 6075 | vlv_punit_write(dev_priv, PUNIT_REG_DDR_SETUP2, val); |
| 6076 | |
| 6077 | if (wait_for((vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2) & |
| 6078 | FORCE_DDR_FREQ_REQ_ACK) == 0, 3)) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 6079 | drm_dbg_kms(&dev_priv->drm, |
| 6080 | "Punit not acking DDR DVFS request, " |
| 6081 | "assuming DDR DVFS is disabled\n"); |
Ville Syrjälä | 58590c1 | 2015-09-08 21:05:12 +0300 | [diff] [blame] | 6082 | dev_priv->wm.max_level = VLV_WM_LEVEL_PM5; |
| 6083 | } else { |
| 6084 | val = vlv_punit_read(dev_priv, PUNIT_REG_DDR_SETUP2); |
| 6085 | if ((val & FORCE_DDR_HIGH_FREQ) == 0) |
| 6086 | wm->level = VLV_WM_LEVEL_DDR_DVFS; |
| 6087 | } |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6088 | |
Chris Wilson | 337fa6e | 2019-04-26 09:17:20 +0100 | [diff] [blame] | 6089 | vlv_punit_put(dev_priv); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6090 | } |
| 6091 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6092 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6093 | struct intel_crtc_state *crtc_state = |
| 6094 | to_intel_crtc_state(crtc->base.state); |
| 6095 | struct vlv_wm_state *active = &crtc->wm.active.vlv; |
| 6096 | const struct vlv_fifo_state *fifo_state = |
| 6097 | &crtc_state->wm.vlv.fifo_state; |
| 6098 | enum pipe pipe = crtc->pipe; |
| 6099 | enum plane_id plane_id; |
| 6100 | int level; |
| 6101 | |
| 6102 | vlv_get_fifo_size(crtc_state); |
| 6103 | |
| 6104 | active->num_levels = wm->level + 1; |
| 6105 | active->cxsr = wm->cxsr; |
| 6106 | |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6107 | for (level = 0; level < active->num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 6108 | struct g4x_pipe_wm *raw = |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6109 | &crtc_state->wm.vlv.raw[level]; |
| 6110 | |
| 6111 | active->sr[level].plane = wm->sr.plane; |
| 6112 | active->sr[level].cursor = wm->sr.cursor; |
| 6113 | |
| 6114 | for_each_plane_id_on_crtc(crtc, plane_id) { |
| 6115 | active->wm[level].plane[plane_id] = |
| 6116 | wm->pipe[pipe].plane[plane_id]; |
| 6117 | |
| 6118 | raw->plane[plane_id] = |
| 6119 | vlv_invert_wm_value(active->wm[level].plane[plane_id], |
| 6120 | fifo_state->plane[plane_id]); |
| 6121 | } |
| 6122 | } |
| 6123 | |
| 6124 | for_each_plane_id_on_crtc(crtc, plane_id) |
| 6125 | vlv_raw_plane_wm_set(crtc_state, level, |
| 6126 | plane_id, USHRT_MAX); |
| 6127 | vlv_invalidate_wms(crtc, active, level); |
| 6128 | |
| 6129 | crtc_state->wm.vlv.optimal = *active; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 6130 | crtc_state->wm.vlv.intermediate = *active; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6131 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 6132 | drm_dbg_kms(&dev_priv->drm, |
| 6133 | "Initial watermarks: pipe %c, plane=%d, cursor=%d, sprite0=%d, sprite1=%d\n", |
| 6134 | pipe_name(pipe), |
| 6135 | wm->pipe[pipe].plane[PLANE_PRIMARY], |
| 6136 | wm->pipe[pipe].plane[PLANE_CURSOR], |
| 6137 | wm->pipe[pipe].plane[PLANE_SPRITE0], |
| 6138 | wm->pipe[pipe].plane[PLANE_SPRITE1]); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 6139 | } |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6140 | |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 6141 | drm_dbg_kms(&dev_priv->drm, |
| 6142 | "Initial watermarks: SR plane=%d, SR cursor=%d level=%d cxsr=%d\n", |
| 6143 | wm->sr.plane, wm->sr.cursor, wm->level, wm->cxsr); |
Ville Syrjälä | 6eb1a68 | 2015-06-24 22:00:03 +0300 | [diff] [blame] | 6144 | } |
| 6145 | |
Ville Syrjälä | 602ae83 | 2017-03-02 19:15:02 +0200 | [diff] [blame] | 6146 | void vlv_wm_sanitize(struct drm_i915_private *dev_priv) |
| 6147 | { |
| 6148 | struct intel_plane *plane; |
| 6149 | struct intel_crtc *crtc; |
| 6150 | |
| 6151 | mutex_lock(&dev_priv->wm.wm_mutex); |
| 6152 | |
| 6153 | for_each_intel_plane(&dev_priv->drm, plane) { |
| 6154 | struct intel_crtc *crtc = |
| 6155 | intel_get_crtc_for_pipe(dev_priv, plane->pipe); |
| 6156 | struct intel_crtc_state *crtc_state = |
| 6157 | to_intel_crtc_state(crtc->base.state); |
| 6158 | struct intel_plane_state *plane_state = |
| 6159 | to_intel_plane_state(plane->base.state); |
| 6160 | struct vlv_wm_state *wm_state = &crtc_state->wm.vlv.optimal; |
| 6161 | const struct vlv_fifo_state *fifo_state = |
| 6162 | &crtc_state->wm.vlv.fifo_state; |
| 6163 | enum plane_id plane_id = plane->id; |
| 6164 | int level; |
| 6165 | |
Maarten Lankhorst | f90a85e | 2019-10-31 12:26:08 +0100 | [diff] [blame] | 6166 | if (plane_state->uapi.visible) |
Ville Syrjälä | 602ae83 | 2017-03-02 19:15:02 +0200 | [diff] [blame] | 6167 | continue; |
| 6168 | |
| 6169 | for (level = 0; level < wm_state->num_levels; level++) { |
Ville Syrjälä | 114d7dc | 2017-04-21 21:14:21 +0300 | [diff] [blame] | 6170 | struct g4x_pipe_wm *raw = |
Ville Syrjälä | 602ae83 | 2017-03-02 19:15:02 +0200 | [diff] [blame] | 6171 | &crtc_state->wm.vlv.raw[level]; |
| 6172 | |
| 6173 | raw->plane[plane_id] = 0; |
| 6174 | |
| 6175 | wm_state->wm[level].plane[plane_id] = |
| 6176 | vlv_invert_wm_value(raw->plane[plane_id], |
| 6177 | fifo_state->plane[plane_id]); |
| 6178 | } |
| 6179 | } |
| 6180 | |
| 6181 | for_each_intel_crtc(&dev_priv->drm, crtc) { |
| 6182 | struct intel_crtc_state *crtc_state = |
| 6183 | to_intel_crtc_state(crtc->base.state); |
| 6184 | |
| 6185 | crtc_state->wm.vlv.intermediate = |
| 6186 | crtc_state->wm.vlv.optimal; |
| 6187 | crtc->wm.active.vlv = crtc_state->wm.vlv.optimal; |
| 6188 | } |
| 6189 | |
| 6190 | vlv_program_watermarks(dev_priv); |
| 6191 | |
| 6192 | mutex_unlock(&dev_priv->wm.wm_mutex); |
| 6193 | } |
| 6194 | |
Ville Syrjälä | f72b84c | 2017-11-08 15:35:55 +0200 | [diff] [blame] | 6195 | /* |
| 6196 | * FIXME should probably kill this and improve |
| 6197 | * the real watermark readout/sanitation instead |
| 6198 | */ |
| 6199 | static void ilk_init_lp_watermarks(struct drm_i915_private *dev_priv) |
| 6200 | { |
| 6201 | I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN); |
| 6202 | I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN); |
| 6203 | I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN); |
| 6204 | |
| 6205 | /* |
| 6206 | * Don't touch WM1S_LP_EN here. |
| 6207 | * Doing so could cause underruns. |
| 6208 | */ |
| 6209 | } |
| 6210 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6211 | 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] | 6212 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 6213 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6214 | struct intel_crtc *crtc; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6215 | |
Ville Syrjälä | f72b84c | 2017-11-08 15:35:55 +0200 | [diff] [blame] | 6216 | ilk_init_lp_watermarks(dev_priv); |
| 6217 | |
Matt Roper | cd1d3ee | 2018-12-10 13:54:14 -0800 | [diff] [blame] | 6218 | for_each_intel_crtc(&dev_priv->drm, crtc) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6219 | ilk_pipe_wm_get_hw_state(crtc); |
| 6220 | |
| 6221 | hw->wm_lp[0] = I915_READ(WM1_LP_ILK); |
| 6222 | hw->wm_lp[1] = I915_READ(WM2_LP_ILK); |
| 6223 | hw->wm_lp[2] = I915_READ(WM3_LP_ILK); |
| 6224 | |
| 6225 | hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK); |
Tvrtko Ursulin | 175fded | 2016-11-16 08:55:42 +0000 | [diff] [blame] | 6226 | if (INTEL_GEN(dev_priv) >= 7) { |
Ville Syrjälä | cfa7698 | 2014-03-07 18:32:08 +0200 | [diff] [blame] | 6227 | hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB); |
| 6228 | hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB); |
| 6229 | } |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6230 | |
Tvrtko Ursulin | 8652744 | 2016-10-13 11:03:00 +0100 | [diff] [blame] | 6231 | if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 6232 | hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ? |
| 6233 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
Tvrtko Ursulin | fd6b8f4 | 2016-10-14 10:13:06 +0100 | [diff] [blame] | 6234 | else if (IS_IVYBRIDGE(dev_priv)) |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 6235 | hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ? |
| 6236 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 6237 | |
| 6238 | hw->enable_fbc_wm = |
| 6239 | !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS); |
| 6240 | } |
| 6241 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6242 | /** |
| 6243 | * intel_update_watermarks - update FIFO watermark values based on current modes |
Chris Wilson | 3138341 | 2018-02-14 14:03:03 +0000 | [diff] [blame] | 6244 | * @crtc: the #intel_crtc on which to compute the WM |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6245 | * |
| 6246 | * Calculate watermark values for the various WM regs based on current mode |
| 6247 | * and plane configuration. |
| 6248 | * |
| 6249 | * There are several cases to deal with here: |
| 6250 | * - normal (i.e. non-self-refresh) |
| 6251 | * - self-refresh (SR) mode |
| 6252 | * - lines are large relative to FIFO size (buffer can hold up to 2) |
| 6253 | * - lines are small relative to FIFO size (buffer can hold more than 2 |
| 6254 | * lines), so need to account for TLB latency |
| 6255 | * |
| 6256 | * The normal calculation is: |
| 6257 | * watermark = dotclock * bytes per pixel * latency |
| 6258 | * where latency is platform & configuration dependent (we assume pessimal |
| 6259 | * values here). |
| 6260 | * |
| 6261 | * The SR calculation is: |
| 6262 | * watermark = (trunc(latency/line time)+1) * surface width * |
| 6263 | * bytes per pixel |
| 6264 | * where |
| 6265 | * line time = htotal / dotclock |
| 6266 | * surface width = hdisplay for normal plane and 64 for cursor |
| 6267 | * and latency is assumed to be high, as above. |
| 6268 | * |
| 6269 | * The final value programmed to the register should always be rounded up, |
| 6270 | * and include an extra 2 entries to account for clock crossings. |
| 6271 | * |
| 6272 | * We don't use the sprite, so we can ignore that. And on Crestline we have |
| 6273 | * to set the non-SR watermarks to 8. |
| 6274 | */ |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 6275 | void intel_update_watermarks(struct intel_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6276 | { |
Ville Syrjälä | 432081b | 2016-10-31 22:37:03 +0200 | [diff] [blame] | 6277 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6278 | |
| 6279 | if (dev_priv->display.update_wm) |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 6280 | dev_priv->display.update_wm(crtc); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 6281 | } |
| 6282 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6283 | void intel_enable_ipc(struct drm_i915_private *dev_priv) |
| 6284 | { |
| 6285 | u32 val; |
| 6286 | |
José Roberto de Souza | fd847b8 | 2018-09-18 13:47:11 -0700 | [diff] [blame] | 6287 | if (!HAS_IPC(dev_priv)) |
| 6288 | return; |
| 6289 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6290 | val = I915_READ(DISP_ARB_CTL2); |
| 6291 | |
| 6292 | if (dev_priv->ipc_enabled) |
| 6293 | val |= DISP_IPC_ENABLE; |
| 6294 | else |
| 6295 | val &= ~DISP_IPC_ENABLE; |
| 6296 | |
| 6297 | I915_WRITE(DISP_ARB_CTL2, val); |
| 6298 | } |
| 6299 | |
Ville Syrjälä | c91a45f | 2019-05-03 20:38:07 +0300 | [diff] [blame] | 6300 | static bool intel_can_enable_ipc(struct drm_i915_private *dev_priv) |
| 6301 | { |
| 6302 | /* Display WA #0477 WaDisableIPC: skl */ |
| 6303 | if (IS_SKYLAKE(dev_priv)) |
| 6304 | return false; |
| 6305 | |
| 6306 | /* Display WA #1141: SKL:all KBL:all CFL */ |
| 6307 | if (IS_KABYLAKE(dev_priv) || IS_COFFEELAKE(dev_priv)) |
| 6308 | return dev_priv->dram_info.symmetric_memory; |
| 6309 | |
| 6310 | return true; |
| 6311 | } |
| 6312 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6313 | void intel_init_ipc(struct drm_i915_private *dev_priv) |
| 6314 | { |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6315 | if (!HAS_IPC(dev_priv)) |
| 6316 | return; |
| 6317 | |
Ville Syrjälä | c91a45f | 2019-05-03 20:38:07 +0300 | [diff] [blame] | 6318 | dev_priv->ipc_enabled = intel_can_enable_ipc(dev_priv); |
José Roberto de Souza | c9b818d | 2018-09-18 13:47:13 -0700 | [diff] [blame] | 6319 | |
Kumar, Mahesh | 2503a0f | 2017-08-17 19:15:28 +0530 | [diff] [blame] | 6320 | intel_enable_ipc(dev_priv); |
| 6321 | } |
| 6322 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6323 | static void ibx_init_clock_gating(struct drm_i915_private *dev_priv) |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6324 | { |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6325 | /* |
| 6326 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 6327 | * gating for the panel power sequencer or it will fail to |
| 6328 | * start up when no ports are active. |
| 6329 | */ |
| 6330 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE); |
| 6331 | } |
| 6332 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6333 | 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] | 6334 | { |
Ville Syrjälä | b12ce1d | 2015-05-26 20:27:23 +0300 | [diff] [blame] | 6335 | enum pipe pipe; |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6336 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6337 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6338 | I915_WRITE(DSPCNTR(pipe), |
| 6339 | I915_READ(DSPCNTR(pipe)) | |
| 6340 | DISPPLANE_TRICKLE_FEED_DISABLE); |
Ville Syrjälä | b12ce1d | 2015-05-26 20:27:23 +0300 | [diff] [blame] | 6341 | |
| 6342 | I915_WRITE(DSPSURF(pipe), I915_READ(DSPSURF(pipe))); |
| 6343 | POSTING_READ(DSPSURF(pipe)); |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6344 | } |
| 6345 | } |
| 6346 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6347 | static void ilk_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6348 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6349 | u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6350 | |
Damien Lespiau | f1e8fa5 | 2013-06-07 17:41:09 +0100 | [diff] [blame] | 6351 | /* |
| 6352 | * Required for FBC |
| 6353 | * WaFbcDisableDpfcClockGating:ilk |
| 6354 | */ |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6355 | dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE | |
| 6356 | ILK_DPFCUNIT_CLOCK_GATE_DISABLE | |
| 6357 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6358 | |
| 6359 | I915_WRITE(PCH_3DCGDIS0, |
| 6360 | MARIUNIT_CLOCK_GATE_DISABLE | |
| 6361 | SVSMUNIT_CLOCK_GATE_DISABLE); |
| 6362 | I915_WRITE(PCH_3DCGDIS1, |
| 6363 | VFMUNIT_CLOCK_GATE_DISABLE); |
| 6364 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6365 | /* |
| 6366 | * According to the spec the following bits should be set in |
| 6367 | * order to enable memory self-refresh |
| 6368 | * The bit 22/21 of 0x42004 |
| 6369 | * The bit 5 of 0x42020 |
| 6370 | * The bit 15 of 0x45000 |
| 6371 | */ |
| 6372 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6373 | (I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6374 | ILK_DPARB_GATE | ILK_VSDPFD_FULL)); |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6375 | dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6376 | I915_WRITE(DISP_ARB_CTL, |
| 6377 | (I915_READ(DISP_ARB_CTL) | |
| 6378 | DISP_FBC_WM_DIS)); |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6379 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6380 | /* |
| 6381 | * Based on the document from hardware guys the following bits |
| 6382 | * should be set unconditionally in order to enable FBC. |
| 6383 | * The bit 22 of 0x42000 |
| 6384 | * The bit 22 of 0x42004 |
| 6385 | * The bit 7,8,9 of 0x42020. |
| 6386 | */ |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 6387 | if (IS_IRONLAKE_M(dev_priv)) { |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 6388 | /* WaFbcAsynchFlipDisableFbcQueue:ilk */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6389 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 6390 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 6391 | ILK_FBCQ_DIS); |
| 6392 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6393 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6394 | ILK_DPARB_GATE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6395 | } |
| 6396 | |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6397 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
| 6398 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6399 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6400 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6401 | ILK_ELPIN_409_SELECT); |
| 6402 | I915_WRITE(_3D_CHICKEN2, |
| 6403 | _3D_CHICKEN2_WM_READ_PIPELINED << 16 | |
| 6404 | _3D_CHICKEN2_WM_READ_PIPELINED); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6405 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6406 | /* WaDisableRenderCachePipelinedFlush:ilk */ |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6407 | I915_WRITE(CACHE_MODE_0, |
| 6408 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6409 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6410 | /* WaDisable_RenderCache_OperationalFlush:ilk */ |
| 6411 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6412 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6413 | g4x_disable_trickle_feed(dev_priv); |
Ville Syrjälä | bdad2b2 | 2013-06-07 10:47:03 +0300 | [diff] [blame] | 6414 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6415 | ibx_init_clock_gating(dev_priv); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6416 | } |
| 6417 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6418 | static void cpt_init_clock_gating(struct drm_i915_private *dev_priv) |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6419 | { |
Ville Syrjälä | d048a26 | 2019-08-21 20:30:31 +0300 | [diff] [blame] | 6420 | enum pipe pipe; |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6421 | u32 val; |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6422 | |
| 6423 | /* |
| 6424 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 6425 | * gating for the panel power sequencer or it will fail to |
| 6426 | * start up when no ports are active. |
| 6427 | */ |
Jesse Barnes | cd66407 | 2013-10-02 10:34:19 -0700 | [diff] [blame] | 6428 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE | |
| 6429 | PCH_DPLUNIT_CLOCK_GATE_DISABLE | |
| 6430 | PCH_CPUNIT_CLOCK_GATE_DISABLE); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6431 | I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) | |
| 6432 | DPLS_EDP_PPS_FIX_DIS); |
Takashi Iwai | 335c07b | 2012-12-11 11:46:29 +0100 | [diff] [blame] | 6433 | /* The below fixes the weird display corruption, a few pixels shifted |
| 6434 | * downward, on (only) LVDS of some HP laptops with IVY. |
| 6435 | */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6436 | for_each_pipe(dev_priv, pipe) { |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 6437 | val = I915_READ(TRANS_CHICKEN2(pipe)); |
| 6438 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 6439 | val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 6440 | if (dev_priv->vbt.fdi_rx_polarity_inverted) |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6441 | val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 6442 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER; |
| 6443 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH; |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6444 | I915_WRITE(TRANS_CHICKEN2(pipe), val); |
| 6445 | } |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6446 | /* WADP0ClockGatingDisable */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6447 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6448 | I915_WRITE(TRANS_CHICKEN1(pipe), |
| 6449 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
| 6450 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6451 | } |
| 6452 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6453 | static void gen6_check_mch_setup(struct drm_i915_private *dev_priv) |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6454 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6455 | u32 tmp; |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6456 | |
| 6457 | tmp = I915_READ(MCH_SSKPD); |
Daniel Vetter | df662a2 | 2014-08-04 11:17:25 +0200 | [diff] [blame] | 6458 | if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 6459 | drm_dbg_kms(&dev_priv->drm, |
| 6460 | "Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n", |
| 6461 | tmp); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6462 | } |
| 6463 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6464 | static void gen6_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6465 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6466 | u32 dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6467 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6468 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6469 | |
| 6470 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6471 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6472 | ILK_ELPIN_409_SELECT); |
| 6473 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6474 | /* WaDisableHiZPlanesWhenMSAAEnabled:snb */ |
Daniel Vetter | 4283908 | 2012-12-14 23:38:28 +0100 | [diff] [blame] | 6475 | I915_WRITE(_3D_CHICKEN, |
| 6476 | _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB)); |
| 6477 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6478 | /* WaDisable_RenderCache_OperationalFlush:snb */ |
| 6479 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6480 | |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6481 | /* |
| 6482 | * BSpec recoomends 8x4 when MSAA is used, |
| 6483 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6484 | * |
| 6485 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6486 | * disable bit, which we don't touch here, but it's good |
| 6487 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6488 | */ |
| 6489 | I915_WRITE(GEN6_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6490 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6491 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6492 | I915_WRITE(CACHE_MODE_0, |
Daniel Vetter | 5074329 | 2012-04-26 22:02:54 +0200 | [diff] [blame] | 6493 | _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6494 | |
| 6495 | I915_WRITE(GEN6_UCGCTL1, |
| 6496 | I915_READ(GEN6_UCGCTL1) | |
| 6497 | GEN6_BLBUNIT_CLOCK_GATE_DISABLE | |
| 6498 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
| 6499 | |
| 6500 | /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock |
| 6501 | * gating disable must be set. Failure to set it results in |
| 6502 | * flickering pixels due to Z write ordering failures after |
| 6503 | * some amount of runtime in the Mesa "fire" demo, and Unigine |
| 6504 | * Sanctuary and Tropics, and apparently anything else with |
| 6505 | * alpha test or pixel discard. |
| 6506 | * |
| 6507 | * According to the spec, bit 11 (RCCUNIT) must also be set, |
| 6508 | * but we didn't debug actual testcases to find it out. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6509 | * |
Ville Syrjälä | ef59318 | 2014-01-22 21:32:47 +0200 | [diff] [blame] | 6510 | * WaDisableRCCUnitClockGating:snb |
| 6511 | * WaDisableRCPBUnitClockGating:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6512 | */ |
| 6513 | I915_WRITE(GEN6_UCGCTL2, |
| 6514 | GEN6_RCPBUNIT_CLOCK_GATE_DISABLE | |
| 6515 | GEN6_RCCUNIT_CLOCK_GATE_DISABLE); |
| 6516 | |
Ville Syrjälä | 5eb146d | 2014-02-04 21:59:16 +0200 | [diff] [blame] | 6517 | /* WaStripsFansDisableFastClipPerformanceFix:snb */ |
Ville Syrjälä | 743b57d | 2014-02-04 21:59:17 +0200 | [diff] [blame] | 6518 | I915_WRITE(_3D_CHICKEN3, |
| 6519 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6520 | |
| 6521 | /* |
Ville Syrjälä | e927ecd | 2014-02-04 21:59:18 +0200 | [diff] [blame] | 6522 | * Bspec says: |
| 6523 | * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and |
| 6524 | * 3DSTATE_SF number of SF output attributes is more than 16." |
| 6525 | */ |
| 6526 | I915_WRITE(_3D_CHICKEN3, |
| 6527 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH)); |
| 6528 | |
| 6529 | /* |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6530 | * According to the spec the following bits should be |
| 6531 | * set in order to enable memory self-refresh and fbc: |
| 6532 | * The bit21 and bit22 of 0x42000 |
| 6533 | * The bit21 and bit22 of 0x42004 |
| 6534 | * The bit5 and bit7 of 0x42020 |
| 6535 | * The bit14 of 0x70180 |
| 6536 | * The bit14 of 0x71180 |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 6537 | * |
| 6538 | * WaFbcAsynchFlipDisableFbcQueue:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6539 | */ |
| 6540 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 6541 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 6542 | ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS); |
| 6543 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6544 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6545 | ILK_DPARB_GATE | ILK_VSDPFD_FULL); |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6546 | I915_WRITE(ILK_DSPCLK_GATE_D, |
| 6547 | I915_READ(ILK_DSPCLK_GATE_D) | |
| 6548 | ILK_DPARBUNIT_CLOCK_GATE_ENABLE | |
| 6549 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6550 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6551 | g4x_disable_trickle_feed(dev_priv); |
Ben Widawsky | f8f2ac9 | 2012-10-03 19:34:24 -0700 | [diff] [blame] | 6552 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6553 | cpt_init_clock_gating(dev_priv); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6554 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6555 | gen6_check_mch_setup(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6556 | } |
| 6557 | |
| 6558 | static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv) |
| 6559 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6560 | u32 reg = I915_READ(GEN7_FF_THREAD_MODE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6561 | |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 6562 | /* |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6563 | * WaVSThreadDispatchOverride:ivb,vlv |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 6564 | * |
| 6565 | * This actually overrides the dispatch |
| 6566 | * mode for all thread types. |
| 6567 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6568 | reg &= ~GEN7_FF_SCHED_MASK; |
| 6569 | reg |= GEN7_FF_TS_SCHED_HW; |
| 6570 | reg |= GEN7_FF_VS_SCHED_HW; |
| 6571 | reg |= GEN7_FF_DS_SCHED_HW; |
| 6572 | |
| 6573 | I915_WRITE(GEN7_FF_THREAD_MODE, reg); |
| 6574 | } |
| 6575 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6576 | static void lpt_init_clock_gating(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6577 | { |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6578 | /* |
| 6579 | * TODO: this bit should only be enabled when really needed, then |
| 6580 | * disabled when not needed anymore in order to save power. |
| 6581 | */ |
Tvrtko Ursulin | 4f8036a | 2016-10-13 11:02:52 +0100 | [diff] [blame] | 6582 | if (HAS_PCH_LPT_LP(dev_priv)) |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6583 | I915_WRITE(SOUTH_DSPCLK_GATE_D, |
| 6584 | I915_READ(SOUTH_DSPCLK_GATE_D) | |
| 6585 | PCH_LP_PARTITION_LEVEL_DISABLE); |
Paulo Zanoni | 0a790cd | 2013-04-17 18:15:49 -0300 | [diff] [blame] | 6586 | |
| 6587 | /* WADPOClockGatingDisable:hsw */ |
Ville Syrjälä | 36c0d0c | 2015-09-18 20:03:31 +0300 | [diff] [blame] | 6588 | I915_WRITE(TRANS_CHICKEN1(PIPE_A), |
| 6589 | I915_READ(TRANS_CHICKEN1(PIPE_A)) | |
Paulo Zanoni | 0a790cd | 2013-04-17 18:15:49 -0300 | [diff] [blame] | 6590 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6591 | } |
| 6592 | |
Ville Syrjälä | 712bf36 | 2016-10-31 22:37:23 +0200 | [diff] [blame] | 6593 | static void lpt_suspend_hw(struct drm_i915_private *dev_priv) |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 6594 | { |
Tvrtko Ursulin | 4f8036a | 2016-10-13 11:02:52 +0100 | [diff] [blame] | 6595 | if (HAS_PCH_LPT_LP(dev_priv)) { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6596 | u32 val = I915_READ(SOUTH_DSPCLK_GATE_D); |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 6597 | |
| 6598 | val &= ~PCH_LP_PARTITION_LEVEL_DISABLE; |
| 6599 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); |
| 6600 | } |
| 6601 | } |
| 6602 | |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6603 | static void gen8_set_l3sqc_credits(struct drm_i915_private *dev_priv, |
| 6604 | int general_prio_credits, |
| 6605 | int high_prio_credits) |
| 6606 | { |
| 6607 | u32 misccpctl; |
Oscar Mateo | 930a784 | 2017-10-17 13:25:45 -0700 | [diff] [blame] | 6608 | u32 val; |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6609 | |
| 6610 | /* WaTempDisableDOPClkGating:bdw */ |
| 6611 | misccpctl = I915_READ(GEN7_MISCCPCTL); |
| 6612 | I915_WRITE(GEN7_MISCCPCTL, misccpctl & ~GEN7_DOP_CLOCK_GATE_ENABLE); |
| 6613 | |
Oscar Mateo | 930a784 | 2017-10-17 13:25:45 -0700 | [diff] [blame] | 6614 | val = I915_READ(GEN8_L3SQCREG1); |
| 6615 | val &= ~L3_PRIO_CREDITS_MASK; |
| 6616 | val |= L3_GENERAL_PRIO_CREDITS(general_prio_credits); |
| 6617 | val |= L3_HIGH_PRIO_CREDITS(high_prio_credits); |
| 6618 | I915_WRITE(GEN8_L3SQCREG1, val); |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6619 | |
| 6620 | /* |
| 6621 | * Wait at least 100 clocks before re-enabling clock gating. |
| 6622 | * See the definition of L3SQCREG1 in BSpec. |
| 6623 | */ |
| 6624 | POSTING_READ(GEN8_L3SQCREG1); |
| 6625 | udelay(1); |
| 6626 | I915_WRITE(GEN7_MISCCPCTL, misccpctl); |
| 6627 | } |
| 6628 | |
Oscar Mateo | d65dc3e | 2018-05-08 14:29:24 -0700 | [diff] [blame] | 6629 | static void icl_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6630 | { |
| 6631 | /* This is not an Wa. Enable to reduce Sampler power */ |
| 6632 | I915_WRITE(GEN10_DFR_RATIO_EN_AND_CHICKEN, |
| 6633 | I915_READ(GEN10_DFR_RATIO_EN_AND_CHICKEN) & ~DFR_DISABLE); |
Radhakrishna Sripada | 622b3f6 | 2018-10-30 01:45:01 -0700 | [diff] [blame] | 6634 | |
| 6635 | /* WaEnable32PlaneMode:icl */ |
| 6636 | I915_WRITE(GEN9_CSFE_CHICKEN1_RCS, |
| 6637 | _MASKED_BIT_ENABLE(GEN11_ENABLE_32_PLANE_MODE)); |
Matt Roper | b9cf9da | 2019-12-23 17:20:25 -0800 | [diff] [blame] | 6638 | |
| 6639 | /* |
| 6640 | * Wa_1408615072:icl,ehl (vsunit) |
| 6641 | * Wa_1407596294:icl,ehl (hsunit) |
| 6642 | */ |
| 6643 | intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE, |
| 6644 | 0, VSUNIT_CLKGATE_DIS | HSUNIT_CLKGATE_DIS); |
| 6645 | |
Matt Roper | 1cd21a7 | 2019-12-31 11:07:13 -0800 | [diff] [blame] | 6646 | /* Wa_1407352427:icl,ehl */ |
| 6647 | intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE2, |
| 6648 | 0, PSDUNIT_CLKGATE_DIS); |
Matt Atwood | 6f4194c | 2020-01-13 23:11:28 -0500 | [diff] [blame] | 6649 | |
| 6650 | /*Wa_14010594013:icl, ehl */ |
| 6651 | intel_uncore_rmw(&dev_priv->uncore, GEN8_CHICKEN_DCPR_1, |
| 6652 | 0, CNL_DELAY_PMRSP); |
Oscar Mateo | d65dc3e | 2018-05-08 14:29:24 -0700 | [diff] [blame] | 6653 | } |
| 6654 | |
Michel Thierry | 5d86923 | 2019-08-23 01:20:34 -0700 | [diff] [blame] | 6655 | static void tgl_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6656 | { |
| 6657 | u32 vd_pg_enable = 0; |
| 6658 | unsigned int i; |
| 6659 | |
Matt Roper | 4ca1538 | 2019-12-23 17:20:26 -0800 | [diff] [blame] | 6660 | /* Wa_1408615072:tgl */ |
| 6661 | intel_uncore_rmw(&dev_priv->uncore, UNSLICE_UNIT_LEVEL_CLKGATE2, |
| 6662 | 0, VSUNIT_CLKGATE_DIS_TGL); |
| 6663 | |
Michel Thierry | 5d86923 | 2019-08-23 01:20:34 -0700 | [diff] [blame] | 6664 | /* This is not a WA. Enable VD HCP & MFX_ENC powergate */ |
| 6665 | for (i = 0; i < I915_MAX_VCS; i++) { |
| 6666 | if (HAS_ENGINE(dev_priv, _VCS(i))) |
| 6667 | vd_pg_enable |= VDN_HCP_POWERGATE_ENABLE(i) | |
| 6668 | VDN_MFX_POWERGATE_ENABLE(i); |
| 6669 | } |
| 6670 | |
| 6671 | I915_WRITE(POWERGATE_ENABLE, |
| 6672 | I915_READ(POWERGATE_ENABLE) | vd_pg_enable); |
Radhakrishna Sripada | f78d5da | 2020-01-09 14:37:27 -0800 | [diff] [blame] | 6673 | |
| 6674 | /* Wa_1409825376:tgl (pre-prod)*/ |
| 6675 | if (IS_TGL_REVID(dev_priv, TGL_REVID_A0, TGL_REVID_A0)) |
| 6676 | I915_WRITE(GEN9_CLKGATE_DIS_3, I915_READ(GEN9_CLKGATE_DIS_3) | |
| 6677 | TGL_VRH_GATING_DIS); |
Michel Thierry | 5d86923 | 2019-08-23 01:20:34 -0700 | [diff] [blame] | 6678 | } |
| 6679 | |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6680 | static void cnp_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6681 | { |
| 6682 | if (!HAS_PCH_CNP(dev_priv)) |
| 6683 | return; |
| 6684 | |
Rodrigo Vivi | 470e7c6 | 2018-03-05 17:28:12 -0800 | [diff] [blame] | 6685 | /* Display WA #1181 WaSouthDisplayDisablePWMCGEGating: cnp */ |
Rodrigo Vivi | 4cc6feb | 2017-09-08 16:45:33 -0700 | [diff] [blame] | 6686 | I915_WRITE(SOUTH_DSPCLK_GATE_D, I915_READ(SOUTH_DSPCLK_GATE_D) | |
| 6687 | CNP_PWM_CGE_GATING_DISABLE); |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6688 | } |
| 6689 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6690 | static void cnl_init_clock_gating(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6691 | { |
Rodrigo Vivi | 8f06783 | 2017-09-05 12:30:13 -0700 | [diff] [blame] | 6692 | u32 val; |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6693 | cnp_init_clock_gating(dev_priv); |
| 6694 | |
Rodrigo Vivi | 1a25db6 | 2017-08-15 16:16:51 -0700 | [diff] [blame] | 6695 | /* This is not an Wa. Enable for better image quality */ |
| 6696 | I915_WRITE(_3D_CHICKEN3, |
| 6697 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_AA_LINE_QUALITY_FIX_ENABLE)); |
| 6698 | |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6699 | /* WaEnableChickenDCPR:cnl */ |
| 6700 | I915_WRITE(GEN8_CHICKEN_DCPR_1, |
| 6701 | I915_READ(GEN8_CHICKEN_DCPR_1) | MASK_WAKEMEM); |
| 6702 | |
| 6703 | /* WaFbcWakeMemOn:cnl */ |
| 6704 | I915_WRITE(DISP_ARB_CTL, I915_READ(DISP_ARB_CTL) | |
| 6705 | DISP_FBC_MEMORY_WAKE); |
| 6706 | |
Chris Wilson | 34991bd | 2017-11-11 10:03:36 +0000 | [diff] [blame] | 6707 | val = I915_READ(SLICE_UNIT_LEVEL_CLKGATE); |
| 6708 | /* ReadHitWriteOnlyDisable:cnl */ |
| 6709 | val |= RCCUNIT_CLKGATE_DIS; |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6710 | /* WaSarbUnitClockGatingDisable:cnl (pre-prod) */ |
| 6711 | if (IS_CNL_REVID(dev_priv, CNL_REVID_A0, CNL_REVID_B0)) |
Chris Wilson | 34991bd | 2017-11-11 10:03:36 +0000 | [diff] [blame] | 6712 | val |= SARBUNIT_CLKGATE_DIS; |
| 6713 | I915_WRITE(SLICE_UNIT_LEVEL_CLKGATE, val); |
Rafael Antognolli | 01ab0f9 | 2017-12-15 16:11:16 -0800 | [diff] [blame] | 6714 | |
Rodrigo Vivi | a4713c5 | 2018-03-07 14:09:12 -0800 | [diff] [blame] | 6715 | /* Wa_2201832410:cnl */ |
| 6716 | val = I915_READ(SUBSLICE_UNIT_LEVEL_CLKGATE); |
| 6717 | val |= GWUNIT_CLKGATE_DIS; |
| 6718 | I915_WRITE(SUBSLICE_UNIT_LEVEL_CLKGATE, val); |
| 6719 | |
Rafael Antognolli | 01ab0f9 | 2017-12-15 16:11:16 -0800 | [diff] [blame] | 6720 | /* WaDisableVFclkgate:cnl */ |
Rodrigo Vivi | 14941b6 | 2018-03-05 17:20:00 -0800 | [diff] [blame] | 6721 | /* WaVFUnitClockGatingDisable:cnl */ |
Rafael Antognolli | 01ab0f9 | 2017-12-15 16:11:16 -0800 | [diff] [blame] | 6722 | val = I915_READ(UNSLICE_UNIT_LEVEL_CLKGATE); |
| 6723 | val |= VFUNIT_CLKGATE_DIS; |
| 6724 | I915_WRITE(UNSLICE_UNIT_LEVEL_CLKGATE, val); |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 6725 | } |
| 6726 | |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6727 | static void cfl_init_clock_gating(struct drm_i915_private *dev_priv) |
| 6728 | { |
| 6729 | cnp_init_clock_gating(dev_priv); |
| 6730 | gen9_init_clock_gating(dev_priv); |
| 6731 | |
| 6732 | /* WaFbcNukeOnHostModify:cfl */ |
| 6733 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 6734 | ILK_DPFC_NUKE_ON_ANY_MODIFICATION); |
| 6735 | } |
| 6736 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6737 | static void kbl_init_clock_gating(struct drm_i915_private *dev_priv) |
Mika Kuoppala | 9498dba | 2016-06-07 17:19:01 +0300 | [diff] [blame] | 6738 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6739 | gen9_init_clock_gating(dev_priv); |
Mika Kuoppala | 9498dba | 2016-06-07 17:19:01 +0300 | [diff] [blame] | 6740 | |
| 6741 | /* WaDisableSDEUnitClockGating:kbl */ |
| 6742 | if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0)) |
| 6743 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6744 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Mika Kuoppala | 8aeb7f6 | 2016-06-07 17:19:05 +0300 | [diff] [blame] | 6745 | |
| 6746 | /* WaDisableGamClockGating:kbl */ |
| 6747 | if (IS_KBL_REVID(dev_priv, 0, KBL_REVID_B0)) |
| 6748 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 6749 | GEN6_GAMUNIT_CLOCK_GATE_DISABLE); |
Mika Kuoppala | 031cd8c | 2016-06-07 17:19:18 +0300 | [diff] [blame] | 6750 | |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 6751 | /* WaFbcNukeOnHostModify:kbl */ |
Mika Kuoppala | 031cd8c | 2016-06-07 17:19:18 +0300 | [diff] [blame] | 6752 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 6753 | ILK_DPFC_NUKE_ON_ANY_MODIFICATION); |
Mika Kuoppala | 9498dba | 2016-06-07 17:19:01 +0300 | [diff] [blame] | 6754 | } |
| 6755 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6756 | static void skl_init_clock_gating(struct drm_i915_private *dev_priv) |
Daniel Vetter | dc00b6a | 2016-05-19 09:14:20 +0200 | [diff] [blame] | 6757 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6758 | gen9_init_clock_gating(dev_priv); |
Mika Kuoppala | 44fff99 | 2016-06-07 17:19:09 +0300 | [diff] [blame] | 6759 | |
| 6760 | /* WAC6entrylatency:skl */ |
| 6761 | I915_WRITE(FBC_LLC_READ_CTRL, I915_READ(FBC_LLC_READ_CTRL) | |
| 6762 | FBC_LLC_FULLY_OPEN); |
Mika Kuoppala | 031cd8c | 2016-06-07 17:19:18 +0300 | [diff] [blame] | 6763 | |
| 6764 | /* WaFbcNukeOnHostModify:skl */ |
| 6765 | I915_WRITE(ILK_DPFC_CHICKEN, I915_READ(ILK_DPFC_CHICKEN) | |
| 6766 | ILK_DPFC_NUKE_ON_ANY_MODIFICATION); |
Daniel Vetter | dc00b6a | 2016-05-19 09:14:20 +0200 | [diff] [blame] | 6767 | } |
| 6768 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6769 | static void bdw_init_clock_gating(struct drm_i915_private *dev_priv) |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6770 | { |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 6771 | enum pipe pipe; |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6772 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6773 | /* WaSwitchSolVfFArbitrationPriority:bdw */ |
Ben Widawsky | 50ed5fb | 2013-11-02 21:07:40 -0700 | [diff] [blame] | 6774 | 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] | 6775 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6776 | /* WaPsrDPAMaskVBlankInSRD:bdw */ |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6777 | I915_WRITE(CHICKEN_PAR1_1, |
| 6778 | I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD); |
| 6779 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6780 | /* WaPsrDPRSUnmaskVBlankInSRD:bdw */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6781 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 6782 | I915_WRITE(CHICKEN_PIPESL_1(pipe), |
Ville Syrjälä | c7c6562 | 2014-03-05 13:05:45 +0200 | [diff] [blame] | 6783 | I915_READ(CHICKEN_PIPESL_1(pipe)) | |
Ville Syrjälä | 8f670bb | 2014-03-05 13:05:47 +0200 | [diff] [blame] | 6784 | BDW_DPRS_MASK_VBLANK_SRD); |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6785 | } |
Ben Widawsky | 63801f2 | 2013-12-12 17:26:03 -0800 | [diff] [blame] | 6786 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6787 | /* WaVSRefCountFullforceMissDisable:bdw */ |
| 6788 | /* WaDSRefCountFullforceMissDisable:bdw */ |
| 6789 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6790 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 6791 | ~(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] | 6792 | |
Ville Syrjälä | 295e8bb | 2014-02-27 21:59:01 +0200 | [diff] [blame] | 6793 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6794 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 4f1ca9e | 2014-02-27 21:59:02 +0200 | [diff] [blame] | 6795 | |
| 6796 | /* WaDisableSDEUnitClockGating:bdw */ |
| 6797 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6798 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Damien Lespiau | 5d70868 | 2014-03-26 18:41:51 +0000 | [diff] [blame] | 6799 | |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 6800 | /* WaProgramL3SqcReg1Default:bdw */ |
| 6801 | gen8_set_l3sqc_credits(dev_priv, 30, 2); |
Ville Syrjälä | 4d487cf | 2015-05-19 20:32:56 +0300 | [diff] [blame] | 6802 | |
Mika Kuoppala | 17e0adf | 2016-06-07 17:19:02 +0300 | [diff] [blame] | 6803 | /* WaKVMNotificationOnConfigChange:bdw */ |
| 6804 | I915_WRITE(CHICKEN_PAR2_1, I915_READ(CHICKEN_PAR2_1) |
| 6805 | | KVM_CONFIG_CHANGE_NOTIFICATION_SELECT); |
| 6806 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6807 | lpt_init_clock_gating(dev_priv); |
Robert Bragg | 9cc1973 | 2017-02-12 13:32:52 +0000 | [diff] [blame] | 6808 | |
| 6809 | /* WaDisableDopClockGating:bdw |
| 6810 | * |
| 6811 | * Also see the CHICKEN2 write in bdw_init_workarounds() to disable DOP |
| 6812 | * clock gating. |
| 6813 | */ |
| 6814 | I915_WRITE(GEN6_UCGCTL1, |
| 6815 | I915_READ(GEN6_UCGCTL1) | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE); |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6816 | } |
| 6817 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6818 | static void hsw_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6819 | { |
Francisco Jerez | f3fc488 | 2013-10-02 15:53:16 -0700 | [diff] [blame] | 6820 | /* L3 caching of data atomics doesn't work -- disable it. */ |
| 6821 | I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE); |
| 6822 | I915_WRITE(HSW_ROW_CHICKEN3, |
| 6823 | _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE)); |
| 6824 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6825 | /* This is required by WaCatErrorRejectionIssue:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6826 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6827 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6828 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6829 | |
Ville Syrjälä | e36ea7f | 2014-01-22 21:33:00 +0200 | [diff] [blame] | 6830 | /* WaVSRefCountFullforceMissDisable:hsw */ |
| 6831 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6832 | I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6833 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6834 | /* WaDisable_RenderCache_OperationalFlush:hsw */ |
| 6835 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6836 | |
Chia-I Wu | fe27c60 | 2014-01-28 13:29:33 +0800 | [diff] [blame] | 6837 | /* enable HiZ Raw Stall Optimization */ |
| 6838 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6839 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6840 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6841 | /* WaDisable4x2SubspanOptimization:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6842 | I915_WRITE(CACHE_MODE_1, |
| 6843 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Eugeni Dodonov | 1544d9d | 2012-07-02 11:51:10 -0300 | [diff] [blame] | 6844 | |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6845 | /* |
| 6846 | * BSpec recommends 8x4 when MSAA is used, |
| 6847 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6848 | * |
| 6849 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6850 | * disable bit, which we don't touch here, but it's good |
| 6851 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6852 | */ |
| 6853 | I915_WRITE(GEN7_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6854 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6855 | |
Kenneth Graunke | 9441159 | 2014-12-31 16:23:00 -0800 | [diff] [blame] | 6856 | /* WaSampleCChickenBitEnable:hsw */ |
| 6857 | I915_WRITE(HALF_SLICE_CHICKEN3, |
| 6858 | _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE)); |
| 6859 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6860 | /* WaSwitchSolVfFArbitrationPriority:hsw */ |
Ben Widawsky | e3dff58 | 2013-03-20 14:49:14 -0700 | [diff] [blame] | 6861 | I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL); |
| 6862 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6863 | lpt_init_clock_gating(dev_priv); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6864 | } |
| 6865 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6866 | static void ivb_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6867 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 6868 | u32 snpcr; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6869 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6870 | I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6871 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6872 | /* WaDisableEarlyCull:ivb */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6873 | I915_WRITE(_3D_CHICKEN3, |
| 6874 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6875 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6876 | /* WaDisableBackToBackFlipFix:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6877 | I915_WRITE(IVB_CHICKEN3, |
| 6878 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6879 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6880 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6881 | /* WaDisablePSDDualDispatchEnable:ivb */ |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 6882 | if (IS_IVB_GT1(dev_priv)) |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6883 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
| 6884 | _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6885 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6886 | /* WaDisable_RenderCache_OperationalFlush:ivb */ |
| 6887 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6888 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6889 | /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6890 | I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1, |
| 6891 | GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC); |
| 6892 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6893 | /* WaApplyL3ControlAndL3ChickenMode:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6894 | I915_WRITE(GEN7_L3CNTLREG1, |
| 6895 | GEN7_WA_FOR_GEN7_L3_CONTROL); |
| 6896 | I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6897 | GEN7_WA_L3_CHICKEN_MODE); |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 6898 | if (IS_IVB_GT1(dev_priv)) |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6899 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6900 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6901 | else { |
| 6902 | /* must write both registers */ |
| 6903 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6904 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6905 | I915_WRITE(GEN7_ROW_CHICKEN2_GT2, |
| 6906 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6907 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6908 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6909 | /* WaForceL3Serialization:ivb */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6910 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6911 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6912 | |
Ville Syrjälä | 1b80a19a | 2014-01-22 21:32:53 +0200 | [diff] [blame] | 6913 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6914 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6915 | * This implements the WaDisableRCZUnitClockGating:ivb workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6916 | */ |
| 6917 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 28acf3b | 2014-01-22 21:32:48 +0200 | [diff] [blame] | 6918 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6919 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6920 | /* This is required by WaCatErrorRejectionIssue:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6921 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6922 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6923 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6924 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6925 | g4x_disable_trickle_feed(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6926 | |
| 6927 | gen7_setup_fixed_func_scheduler(dev_priv); |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6928 | |
Chris Wilson | 2272134 | 2014-03-04 09:41:43 +0000 | [diff] [blame] | 6929 | if (0) { /* causes HiZ corruption on ivb:gt1 */ |
| 6930 | /* enable HiZ Raw Stall Optimization */ |
| 6931 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6932 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6933 | } |
Chia-I Wu | 116f2b6 | 2014-01-28 13:29:34 +0800 | [diff] [blame] | 6934 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6935 | /* WaDisable4x2SubspanOptimization:ivb */ |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6936 | I915_WRITE(CACHE_MODE_1, |
| 6937 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6938 | |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6939 | /* |
| 6940 | * BSpec recommends 8x4 when MSAA is used, |
| 6941 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6942 | * |
| 6943 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6944 | * disable bit, which we don't touch here, but it's good |
| 6945 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6946 | */ |
| 6947 | I915_WRITE(GEN7_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6948 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6949 | |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6950 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 6951 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 6952 | snpcr |= GEN6_MBC_SNPCR_MED; |
| 6953 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6954 | |
Tvrtko Ursulin | 6e26695 | 2016-10-13 11:02:53 +0100 | [diff] [blame] | 6955 | if (!HAS_PCH_NOP(dev_priv)) |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6956 | cpt_init_clock_gating(dev_priv); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6957 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 6958 | gen6_check_mch_setup(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6959 | } |
| 6960 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 6961 | static void vlv_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6962 | { |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6963 | /* WaDisableEarlyCull:vlv */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6964 | I915_WRITE(_3D_CHICKEN3, |
| 6965 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6966 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6967 | /* WaDisableBackToBackFlipFix:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6968 | I915_WRITE(IVB_CHICKEN3, |
| 6969 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6970 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6971 | |
Ville Syrjälä | fad7d36 | 2014-01-22 21:32:39 +0200 | [diff] [blame] | 6972 | /* WaPsdDispatchEnable:vlv */ |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6973 | /* WaDisablePSDDualDispatchEnable:vlv */ |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6974 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
Jesse Barnes | d3bc030 | 2013-03-08 10:45:51 -0800 | [diff] [blame] | 6975 | _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP | |
| 6976 | GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6977 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6978 | /* WaDisable_RenderCache_OperationalFlush:vlv */ |
| 6979 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6980 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6981 | /* WaForceL3Serialization:vlv */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6982 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6983 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6984 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6985 | /* WaDisableDopClockGating:vlv */ |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6986 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6987 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
| 6988 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6989 | /* This is required by WaCatErrorRejectionIssue:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6990 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6991 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6992 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6993 | |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6994 | gen7_setup_fixed_func_scheduler(dev_priv); |
| 6995 | |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6996 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6997 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6998 | * This implements the WaDisableRCZUnitClockGating:vlv workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6999 | */ |
| 7000 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 7001 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 7002 | |
Akash Goel | c98f506 | 2014-03-24 23:00:07 +0530 | [diff] [blame] | 7003 | /* WaDisableL3Bank2xClockGate:vlv |
| 7004 | * Disabling L3 clock gating- MMIO 940c[25] = 1 |
| 7005 | * Set bit 25, to disable L3_BANK_2x_CLK_GATING */ |
| 7006 | I915_WRITE(GEN7_UCGCTL4, |
| 7007 | I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE); |
Jesse Barnes | e3f33d4 | 2012-06-14 11:04:50 -0700 | [diff] [blame] | 7008 | |
Ville Syrjälä | afd58e7 | 2014-01-22 21:33:03 +0200 | [diff] [blame] | 7009 | /* |
| 7010 | * BSpec says this must be set, even though |
| 7011 | * WaDisable4x2SubspanOptimization isn't listed for VLV. |
| 7012 | */ |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 7013 | I915_WRITE(CACHE_MODE_1, |
| 7014 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Jesse Barnes | 7983117 | 2012-06-20 10:53:12 -0700 | [diff] [blame] | 7015 | |
| 7016 | /* |
Ville Syrjälä | da2518f | 2015-01-21 19:38:01 +0200 | [diff] [blame] | 7017 | * BSpec recommends 8x4 when MSAA is used, |
| 7018 | * however in practice 16x4 seems fastest. |
| 7019 | * |
| 7020 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 7021 | * disable bit, which we don't touch here, but it's good |
| 7022 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
| 7023 | */ |
| 7024 | I915_WRITE(GEN7_GT_MODE, |
| 7025 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
| 7026 | |
| 7027 | /* |
Ville Syrjälä | 031994e | 2014-01-22 21:32:46 +0200 | [diff] [blame] | 7028 | * WaIncreaseL3CreditsForVLVB0:vlv |
| 7029 | * This is the hardware default actually. |
| 7030 | */ |
| 7031 | I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE); |
| 7032 | |
| 7033 | /* |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 7034 | * WaDisableVLVClockGating_VBIIssue:vlv |
Jesse Barnes | 2d80957 | 2012-10-25 12:15:44 -0700 | [diff] [blame] | 7035 | * Disable clock gating on th GCFG unit to prevent a delay |
| 7036 | * in the reporting of vblank events. |
| 7037 | */ |
Ville Syrjälä | 7a0d1ee | 2014-01-22 21:33:04 +0200 | [diff] [blame] | 7038 | I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7039 | } |
| 7040 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7041 | 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] | 7042 | { |
Ville Syrjälä | 232ce33 | 2014-04-09 13:28:35 +0300 | [diff] [blame] | 7043 | /* WaVSRefCountFullforceMissDisable:chv */ |
| 7044 | /* WaDSRefCountFullforceMissDisable:chv */ |
| 7045 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 7046 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 7047 | ~(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] | 7048 | |
| 7049 | /* WaDisableSemaphoreAndSyncFlipWait:chv */ |
| 7050 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 7051 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 0846697 | 2014-04-09 13:28:37 +0300 | [diff] [blame] | 7052 | |
| 7053 | /* WaDisableCSUnitClockGating:chv */ |
| 7054 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 7055 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | c631780 | 2014-04-09 13:28:38 +0300 | [diff] [blame] | 7056 | |
| 7057 | /* WaDisableSDEUnitClockGating:chv */ |
| 7058 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 7059 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 6d50b06 | 2015-05-19 20:32:57 +0300 | [diff] [blame] | 7060 | |
| 7061 | /* |
Imre Deak | 450174f | 2016-05-03 15:54:21 +0300 | [diff] [blame] | 7062 | * WaProgramL3SqcReg1Default:chv |
| 7063 | * See gfxspecs/Related Documents/Performance Guide/ |
| 7064 | * LSQC Setting Recommendations. |
| 7065 | */ |
| 7066 | gen8_set_l3sqc_credits(dev_priv, 38, 2); |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 7067 | } |
| 7068 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7069 | static void g4x_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7070 | { |
Jani Nikula | 5ce9a649 | 2019-01-18 14:01:20 +0200 | [diff] [blame] | 7071 | u32 dspclk_gate; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7072 | |
| 7073 | I915_WRITE(RENCLK_GATE_D1, 0); |
| 7074 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | |
| 7075 | GS_UNIT_CLOCK_GATE_DISABLE | |
| 7076 | CL_UNIT_CLOCK_GATE_DISABLE); |
| 7077 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 7078 | dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE | |
| 7079 | OVRUNIT_CLOCK_GATE_DISABLE | |
| 7080 | OVCUNIT_CLOCK_GATE_DISABLE; |
Tvrtko Ursulin | 50a0bc9 | 2016-10-13 11:02:58 +0100 | [diff] [blame] | 7081 | if (IS_GM45(dev_priv)) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7082 | dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE; |
| 7083 | I915_WRITE(DSPCLK_GATE_D, dspclk_gate); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 7084 | |
| 7085 | /* WaDisableRenderCachePipelinedFlush */ |
| 7086 | I915_WRITE(CACHE_MODE_0, |
| 7087 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Ville Syrjälä | de1aa62 | 2013-06-07 10:47:01 +0300 | [diff] [blame] | 7088 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 7089 | /* WaDisable_RenderCache_OperationalFlush:g4x */ |
| 7090 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 7091 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7092 | g4x_disable_trickle_feed(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7093 | } |
| 7094 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7095 | static void i965gm_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7096 | { |
Tvrtko Ursulin | 4f5fd91 | 2019-06-11 11:45:48 +0100 | [diff] [blame] | 7097 | struct intel_uncore *uncore = &dev_priv->uncore; |
| 7098 | |
| 7099 | intel_uncore_write(uncore, RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE); |
| 7100 | intel_uncore_write(uncore, RENCLK_GATE_D2, 0); |
| 7101 | intel_uncore_write(uncore, DSPCLK_GATE_D, 0); |
| 7102 | intel_uncore_write(uncore, RAMCLK_GATE_D, 0); |
| 7103 | intel_uncore_write16(uncore, DEUC, 0); |
| 7104 | intel_uncore_write(uncore, |
| 7105 | MI_ARB_STATE, |
| 7106 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 7107 | |
| 7108 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
Tvrtko Ursulin | 4f5fd91 | 2019-06-11 11:45:48 +0100 | [diff] [blame] | 7109 | intel_uncore_write(uncore, |
| 7110 | CACHE_MODE_0, |
| 7111 | _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7112 | } |
| 7113 | |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7114 | static void i965g_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7115 | { |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7116 | I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE | |
| 7117 | I965_RCC_CLOCK_GATE_DISABLE | |
| 7118 | I965_RCPB_CLOCK_GATE_DISABLE | |
| 7119 | I965_ISC_CLOCK_GATE_DISABLE | |
| 7120 | I965_FBC_CLOCK_GATE_DISABLE); |
| 7121 | I915_WRITE(RENCLK_GATE_D2, 0); |
Ville Syrjälä | 20f9496 | 2013-06-07 10:47:02 +0300 | [diff] [blame] | 7122 | I915_WRITE(MI_ARB_STATE, |
| 7123 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 7124 | |
| 7125 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
| 7126 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7127 | } |
| 7128 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7129 | static void gen3_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7130 | { |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7131 | u32 dstate = I915_READ(D_STATE); |
| 7132 | |
| 7133 | dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING | |
| 7134 | DSTATE_DOT_CLOCK_GATING; |
| 7135 | I915_WRITE(D_STATE, dstate); |
Chris Wilson | 13a86b8 | 2012-04-24 14:51:43 +0100 | [diff] [blame] | 7136 | |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 7137 | if (IS_PINEVIEW(dev_priv)) |
Chris Wilson | 13a86b8 | 2012-04-24 14:51:43 +0100 | [diff] [blame] | 7138 | I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY)); |
Daniel Vetter | 974a3b0 | 2012-09-09 11:54:16 +0200 | [diff] [blame] | 7139 | |
| 7140 | /* IIR "flip pending" means done if this bit is set */ |
| 7141 | I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE)); |
Ville Syrjälä | 12fabbcb9 | 2014-02-25 15:13:38 +0200 | [diff] [blame] | 7142 | |
| 7143 | /* interrupts should cause a wake up from C3 */ |
Ville Syrjälä | 3299254 | 2014-02-25 15:13:39 +0200 | [diff] [blame] | 7144 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN)); |
Ville Syrjälä | dbb4274 | 2014-02-25 15:13:41 +0200 | [diff] [blame] | 7145 | |
| 7146 | /* On GEN3 we really need to make sure the ARB C3 LP bit is set */ |
| 7147 | 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] | 7148 | |
| 7149 | I915_WRITE(MI_ARB_STATE, |
| 7150 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7151 | } |
| 7152 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7153 | static void i85x_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7154 | { |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7155 | I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 54e472a | 2014-02-25 15:13:40 +0200 | [diff] [blame] | 7156 | |
| 7157 | /* interrupts should cause a wake up from C3 */ |
| 7158 | I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) | |
| 7159 | _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE)); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7160 | |
| 7161 | I915_WRITE(MEM_MODE, |
| 7162 | _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7163 | } |
| 7164 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7165 | static void i830_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7166 | { |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7167 | I915_WRITE(MEM_MODE, |
| 7168 | _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) | |
| 7169 | _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7170 | } |
| 7171 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7172 | void intel_init_clock_gating(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7173 | { |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7174 | dev_priv->display.init_clock_gating(dev_priv); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7175 | } |
| 7176 | |
Ville Syrjälä | 712bf36 | 2016-10-31 22:37:23 +0200 | [diff] [blame] | 7177 | void intel_suspend_hw(struct drm_i915_private *dev_priv) |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 7178 | { |
Ville Syrjälä | 712bf36 | 2016-10-31 22:37:23 +0200 | [diff] [blame] | 7179 | if (HAS_PCH_LPT(dev_priv)) |
| 7180 | lpt_suspend_hw(dev_priv); |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 7181 | } |
| 7182 | |
Ville Syrjälä | 46f16e6 | 2016-10-31 22:37:22 +0200 | [diff] [blame] | 7183 | static void nop_init_clock_gating(struct drm_i915_private *dev_priv) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7184 | { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 7185 | drm_dbg_kms(&dev_priv->drm, |
| 7186 | "No clock gating settings or workarounds applied.\n"); |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7187 | } |
| 7188 | |
| 7189 | /** |
| 7190 | * intel_init_clock_gating_hooks - setup the clock gating hooks |
| 7191 | * @dev_priv: device private |
| 7192 | * |
| 7193 | * Setup the hooks that configure which clocks of a given platform can be |
| 7194 | * gated and also apply various GT and display specific workarounds for these |
| 7195 | * platforms. Note that some GT specific workarounds are applied separately |
| 7196 | * when GPU contexts or batchbuffers start their execution. |
| 7197 | */ |
| 7198 | void intel_init_clock_gating_hooks(struct drm_i915_private *dev_priv) |
| 7199 | { |
Lucas De Marchi | 13e53c5 | 2019-08-17 02:38:42 -0700 | [diff] [blame] | 7200 | if (IS_GEN(dev_priv, 12)) |
Michel Thierry | 5d86923 | 2019-08-23 01:20:34 -0700 | [diff] [blame] | 7201 | dev_priv->display.init_clock_gating = tgl_init_clock_gating; |
Lucas De Marchi | 13e53c5 | 2019-08-17 02:38:42 -0700 | [diff] [blame] | 7202 | else if (IS_GEN(dev_priv, 11)) |
Oscar Mateo | d65dc3e | 2018-05-08 14:29:24 -0700 | [diff] [blame] | 7203 | dev_priv->display.init_clock_gating = icl_init_clock_gating; |
Oscar Mateo | cc38cae | 2018-05-08 14:29:23 -0700 | [diff] [blame] | 7204 | else if (IS_CANNONLAKE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7205 | dev_priv->display.init_clock_gating = cnl_init_clock_gating; |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 7206 | else if (IS_COFFEELAKE(dev_priv)) |
| 7207 | dev_priv->display.init_clock_gating = cfl_init_clock_gating; |
Rodrigo Vivi | 90007bc | 2017-08-15 16:16:48 -0700 | [diff] [blame] | 7208 | else if (IS_SKYLAKE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7209 | dev_priv->display.init_clock_gating = skl_init_clock_gating; |
Rodrigo Vivi | 0a46ddd | 2017-08-30 21:52:23 -0700 | [diff] [blame] | 7210 | else if (IS_KABYLAKE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7211 | dev_priv->display.init_clock_gating = kbl_init_clock_gating; |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 7212 | else if (IS_BROXTON(dev_priv)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7213 | dev_priv->display.init_clock_gating = bxt_init_clock_gating; |
Ander Conselvan de Oliveira | 9fb5026 | 2017-01-26 11:16:58 +0200 | [diff] [blame] | 7214 | else if (IS_GEMINILAKE(dev_priv)) |
| 7215 | dev_priv->display.init_clock_gating = glk_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7216 | else if (IS_BROADWELL(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7217 | dev_priv->display.init_clock_gating = bdw_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7218 | else if (IS_CHERRYVIEW(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7219 | dev_priv->display.init_clock_gating = chv_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7220 | else if (IS_HASWELL(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7221 | dev_priv->display.init_clock_gating = hsw_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7222 | else if (IS_IVYBRIDGE(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7223 | dev_priv->display.init_clock_gating = ivb_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7224 | else if (IS_VALLEYVIEW(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7225 | dev_priv->display.init_clock_gating = vlv_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7226 | else if (IS_GEN(dev_priv, 6)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7227 | dev_priv->display.init_clock_gating = gen6_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7228 | else if (IS_GEN(dev_priv, 5)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7229 | dev_priv->display.init_clock_gating = ilk_init_clock_gating; |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7230 | else if (IS_G4X(dev_priv)) |
| 7231 | dev_priv->display.init_clock_gating = g4x_init_clock_gating; |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 7232 | else if (IS_I965GM(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7233 | dev_priv->display.init_clock_gating = i965gm_init_clock_gating; |
Jani Nikula | c0f8683 | 2016-12-07 12:13:04 +0200 | [diff] [blame] | 7234 | else if (IS_I965G(dev_priv)) |
Rodrigo Vivi | 91200c0 | 2017-08-28 22:20:26 -0700 | [diff] [blame] | 7235 | dev_priv->display.init_clock_gating = i965g_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7236 | else if (IS_GEN(dev_priv, 3)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7237 | dev_priv->display.init_clock_gating = gen3_init_clock_gating; |
| 7238 | else if (IS_I85X(dev_priv) || IS_I865G(dev_priv)) |
| 7239 | dev_priv->display.init_clock_gating = i85x_init_clock_gating; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7240 | else if (IS_GEN(dev_priv, 2)) |
Imre Deak | bb400da | 2016-03-16 13:38:54 +0200 | [diff] [blame] | 7241 | dev_priv->display.init_clock_gating = i830_init_clock_gating; |
| 7242 | else { |
| 7243 | MISSING_CASE(INTEL_DEVID(dev_priv)); |
| 7244 | dev_priv->display.init_clock_gating = nop_init_clock_gating; |
| 7245 | } |
| 7246 | } |
| 7247 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7248 | /* Set up chip specific power management-related functions */ |
Ville Syrjälä | 62d75df | 2016-10-31 22:37:25 +0200 | [diff] [blame] | 7249 | void intel_init_pm(struct drm_i915_private *dev_priv) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7250 | { |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 7251 | /* For cxsr */ |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 7252 | if (IS_PINEVIEW(dev_priv)) |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 7253 | pnv_get_mem_freq(dev_priv); |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7254 | else if (IS_GEN(dev_priv, 5)) |
Lucas De Marchi | 9eae5e2 | 2019-12-24 00:40:09 -0800 | [diff] [blame] | 7255 | ilk_get_mem_freq(dev_priv); |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 7256 | |
James Ausmus | b068a86 | 2019-10-09 10:23:14 -0700 | [diff] [blame] | 7257 | if (intel_has_sagv(dev_priv)) |
| 7258 | skl_setup_sagv_block_time(dev_priv); |
| 7259 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7260 | /* For FIFO watermark updates */ |
Ville Syrjälä | 62d75df | 2016-10-31 22:37:25 +0200 | [diff] [blame] | 7261 | if (INTEL_GEN(dev_priv) >= 9) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 7262 | skl_setup_wm_latency(dev_priv); |
Maarten Lankhorst | e62929b | 2016-11-08 13:55:33 +0100 | [diff] [blame] | 7263 | dev_priv->display.initial_watermarks = skl_initial_wm; |
Maarten Lankhorst | ccf010f | 2016-11-08 13:55:32 +0100 | [diff] [blame] | 7264 | dev_priv->display.atomic_update_watermarks = skl_atomic_update_crtc_wm; |
Matt Roper | 98d3949 | 2016-05-12 07:06:03 -0700 | [diff] [blame] | 7265 | dev_priv->display.compute_global_watermarks = skl_compute_wm; |
Tvrtko Ursulin | 6e26695 | 2016-10-13 11:02:53 +0100 | [diff] [blame] | 7266 | } else if (HAS_PCH_SPLIT(dev_priv)) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 7267 | ilk_setup_wm_latency(dev_priv); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 7268 | |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7269 | 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] | 7270 | 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] | 7271 | (!IS_GEN(dev_priv, 5) && dev_priv->wm.pri_latency[0] && |
Ville Syrjälä | bd60254 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7272 | dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) { |
Matt Roper | 86c8bbb | 2015-09-24 15:53:16 -0700 | [diff] [blame] | 7273 | dev_priv->display.compute_pipe_wm = ilk_compute_pipe_wm; |
Matt Roper | ed4a6a7 | 2016-02-23 17:20:13 -0800 | [diff] [blame] | 7274 | dev_priv->display.compute_intermediate_wm = |
| 7275 | ilk_compute_intermediate_wm; |
| 7276 | dev_priv->display.initial_watermarks = |
| 7277 | ilk_initial_watermarks; |
| 7278 | dev_priv->display.optimize_watermarks = |
| 7279 | ilk_optimize_watermarks; |
Ville Syrjälä | bd60254 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7280 | } else { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 7281 | drm_dbg_kms(&dev_priv->drm, |
| 7282 | "Failed to read display plane latency. " |
| 7283 | "Disable CxSR\n"); |
Ville Syrjälä | bd60254 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7284 | } |
Ville Syrjälä | 6b6b3ee | 2016-11-28 19:37:07 +0200 | [diff] [blame] | 7285 | } else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) { |
Ville Syrjälä | bb72651 | 2016-10-31 22:37:24 +0200 | [diff] [blame] | 7286 | vlv_setup_wm_latency(dev_priv); |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 7287 | dev_priv->display.compute_pipe_wm = vlv_compute_pipe_wm; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 7288 | dev_priv->display.compute_intermediate_wm = vlv_compute_intermediate_wm; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 7289 | dev_priv->display.initial_watermarks = vlv_initial_watermarks; |
Ville Syrjälä | 4841da5 | 2017-03-02 19:14:59 +0200 | [diff] [blame] | 7290 | dev_priv->display.optimize_watermarks = vlv_optimize_watermarks; |
Ville Syrjälä | ff32c54 | 2017-03-02 19:14:57 +0200 | [diff] [blame] | 7291 | dev_priv->display.atomic_update_watermarks = vlv_atomic_update_fifo; |
Ville Syrjälä | 04548cb | 2017-04-21 21:14:29 +0300 | [diff] [blame] | 7292 | } else if (IS_G4X(dev_priv)) { |
| 7293 | g4x_setup_wm_latency(dev_priv); |
| 7294 | dev_priv->display.compute_pipe_wm = g4x_compute_pipe_wm; |
| 7295 | dev_priv->display.compute_intermediate_wm = g4x_compute_intermediate_wm; |
| 7296 | dev_priv->display.initial_watermarks = g4x_initial_watermarks; |
| 7297 | dev_priv->display.optimize_watermarks = g4x_optimize_watermarks; |
Ville Syrjälä | 9b1e14f | 2016-10-31 22:37:15 +0200 | [diff] [blame] | 7298 | } else if (IS_PINEVIEW(dev_priv)) { |
Tvrtko Ursulin | 86d35d4 | 2019-03-26 07:40:54 +0000 | [diff] [blame] | 7299 | if (!intel_get_cxsr_latency(!IS_MOBILE(dev_priv), |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7300 | dev_priv->is_ddr3, |
| 7301 | dev_priv->fsb_freq, |
| 7302 | dev_priv->mem_freq)) { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 7303 | drm_info(&dev_priv->drm, |
| 7304 | "failed to find known CxSR latency " |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7305 | "(found ddr%s fsb freq %d, mem freq %d), " |
| 7306 | "disabling CxSR\n", |
| 7307 | (dev_priv->is_ddr3 == 1) ? "3" : "2", |
| 7308 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 7309 | /* Disable CxSR and never update its watermark again */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 7310 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7311 | dev_priv->display.update_wm = NULL; |
| 7312 | } else |
Lucas De Marchi | 1d21822 | 2019-12-24 00:40:04 -0800 | [diff] [blame] | 7313 | dev_priv->display.update_wm = pnv_update_wm; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7314 | } else if (IS_GEN(dev_priv, 4)) { |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7315 | dev_priv->display.update_wm = i965_update_wm; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7316 | } else if (IS_GEN(dev_priv, 3)) { |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7317 | dev_priv->display.update_wm = i9xx_update_wm; |
| 7318 | dev_priv->display.get_fifo_size = i9xx_get_fifo_size; |
Lucas De Marchi | cf819ef | 2018-12-12 10:10:43 -0800 | [diff] [blame] | 7319 | } else if (IS_GEN(dev_priv, 2)) { |
Jani Nikula | 2497787 | 2019-09-11 12:26:08 +0300 | [diff] [blame] | 7320 | if (INTEL_NUM_PIPES(dev_priv) == 1) { |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7321 | dev_priv->display.update_wm = i845_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7322 | dev_priv->display.get_fifo_size = i845_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7323 | } else { |
| 7324 | dev_priv->display.update_wm = i9xx_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7325 | dev_priv->display.get_fifo_size = i830_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7326 | } |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7327 | } else { |
Wambui Karuga | f8d18d5 | 2020-01-07 18:13:30 +0300 | [diff] [blame] | 7328 | drm_err(&dev_priv->drm, |
| 7329 | "unexpected fall-through in %s\n", __func__); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7330 | } |
| 7331 | } |
| 7332 | |
Tvrtko Ursulin | 192aa18 | 2016-12-01 14:16:45 +0000 | [diff] [blame] | 7333 | void intel_pm_setup(struct drm_i915_private *dev_priv) |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7334 | { |
Sagar Arun Kamble | ad1443f | 2017-10-10 22:30:04 +0100 | [diff] [blame] | 7335 | dev_priv->runtime_pm.suspended = false; |
| 7336 | atomic_set(&dev_priv->runtime_pm.wakeref_count, 0); |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7337 | } |