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 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 28 | #include <linux/cpufreq.h> |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 29 | #include "i915_drv.h" |
| 30 | #include "intel_drv.h" |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 31 | #include "../../../platform/x86/intel_ips.h" |
| 32 | #include <linux/module.h> |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 33 | |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 34 | /** |
| 35 | * RC6 is a special power stage which allows the GPU to enter an very |
| 36 | * low-voltage mode when idle, using down to 0V while at this stage. This |
| 37 | * stage is entered automatically when the GPU is idle when RC6 support is |
| 38 | * enabled, and as soon as new workload arises GPU wakes up automatically as well. |
| 39 | * |
| 40 | * There are different RC6 modes available in Intel GPU, which differentiate |
| 41 | * among each other with the latency required to enter and leave RC6 and |
| 42 | * voltage consumed by the GPU in different states. |
| 43 | * |
| 44 | * The combination of the following flags define which states GPU is allowed |
| 45 | * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and |
| 46 | * RC6pp is deepest RC6. Their support by hardware varies according to the |
| 47 | * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one |
| 48 | * which brings the most power savings; deeper states save more power, but |
| 49 | * require higher latency to switch to and wake up. |
| 50 | */ |
| 51 | #define INTEL_RC6_ENABLE (1<<0) |
| 52 | #define INTEL_RC6p_ENABLE (1<<1) |
| 53 | #define INTEL_RC6pp_ENABLE (1<<2) |
| 54 | |
Damien Lespiau | da2078c | 2013-02-13 15:27:27 +0000 | [diff] [blame] | 55 | static void gen9_init_clock_gating(struct drm_device *dev) |
| 56 | { |
Damien Lespiau | acd5c34 | 2014-03-26 16:55:46 +0000 | [diff] [blame] | 57 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 58 | |
Damien Lespiau | 77719d2 | 2015-02-09 19:33:13 +0000 | [diff] [blame] | 59 | /* WaEnableLbsSlaRetryTimerDecrement:skl */ |
| 60 | I915_WRITE(BDW_SCRATCH1, I915_READ(BDW_SCRATCH1) | |
| 61 | GEN9_LBS_SLA_RETRY_TIMER_DECREMENT_ENABLE); |
| 62 | } |
Damien Lespiau | 91e41d1 | 2014-03-26 17:42:50 +0000 | [diff] [blame] | 63 | |
Damien Lespiau | 45db219 | 2015-02-09 19:33:09 +0000 | [diff] [blame] | 64 | static void skl_init_clock_gating(struct drm_device *dev) |
Damien Lespiau | da2078c | 2013-02-13 15:27:27 +0000 | [diff] [blame] | 65 | { |
Damien Lespiau | acd5c34 | 2014-03-26 16:55:46 +0000 | [diff] [blame] | 66 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 3ca5da4 | 2014-03-26 18:18:01 +0000 | [diff] [blame] | 67 | |
Damien Lespiau | 77719d2 | 2015-02-09 19:33:13 +0000 | [diff] [blame] | 68 | gen9_init_clock_gating(dev); |
| 69 | |
Hoath, Nicholas | 3dcd020 | 2015-02-05 10:47:21 +0000 | [diff] [blame] | 70 | if (INTEL_REVID(dev) == SKL_REVID_A0) { |
| 71 | /* |
| 72 | * WaDisableSDEUnitClockGating:skl |
Damien Lespiau | 9253c2e | 2015-02-09 19:33:10 +0000 | [diff] [blame] | 73 | * WaSetGAPSunitClckGateDisable:skl |
Hoath, Nicholas | 3dcd020 | 2015-02-05 10:47:21 +0000 | [diff] [blame] | 74 | */ |
| 75 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
Damien Lespiau | 9253c2e | 2015-02-09 19:33:10 +0000 | [diff] [blame] | 76 | GEN8_GAPSUNIT_CLOCK_GATE_DISABLE | |
Hoath, Nicholas | 3dcd020 | 2015-02-05 10:47:21 +0000 | [diff] [blame] | 77 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
| 78 | } |
Damien Lespiau | 8bc0ccf | 2015-02-09 19:33:18 +0000 | [diff] [blame] | 79 | |
Damien Lespiau | 2caa3b2 | 2015-02-09 19:33:20 +0000 | [diff] [blame] | 80 | if (INTEL_REVID(dev) <= SKL_REVID_D0) { |
Damien Lespiau | 81e231a | 2015-02-09 19:33:19 +0000 | [diff] [blame] | 81 | /* WaDisableHDCInvalidation:skl */ |
| 82 | I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | |
| 83 | BDW_DISABLE_HDC_INVALIDATION); |
| 84 | |
Damien Lespiau | 2caa3b2 | 2015-02-09 19:33:20 +0000 | [diff] [blame] | 85 | /* WaDisableChickenBitTSGBarrierAckForFFSliceCS:skl */ |
| 86 | I915_WRITE(FF_SLICE_CS_CHICKEN2, |
| 87 | I915_READ(FF_SLICE_CS_CHICKEN2) | |
| 88 | GEN9_TSG_BARRIER_ACK_DISABLE); |
| 89 | } |
Damien Lespiau | 81e231a | 2015-02-09 19:33:19 +0000 | [diff] [blame] | 90 | |
Damien Lespiau | 8bc0ccf | 2015-02-09 19:33:18 +0000 | [diff] [blame] | 91 | if (INTEL_REVID(dev) <= SKL_REVID_E0) |
| 92 | /* WaDisableLSQCROPERFforOCL:skl */ |
| 93 | I915_WRITE(GEN8_L3SQCREG4, I915_READ(GEN8_L3SQCREG4) | |
| 94 | GEN8_LQSC_RO_PERF_DIS); |
Damien Lespiau | da2078c | 2013-02-13 15:27:27 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 97 | static void i915_pineview_get_mem_freq(struct drm_device *dev) |
| 98 | { |
Jani Nikula | 50227e1 | 2014-03-31 14:27:21 +0300 | [diff] [blame] | 99 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 100 | u32 tmp; |
| 101 | |
| 102 | tmp = I915_READ(CLKCFG); |
| 103 | |
| 104 | switch (tmp & CLKCFG_FSB_MASK) { |
| 105 | case CLKCFG_FSB_533: |
| 106 | dev_priv->fsb_freq = 533; /* 133*4 */ |
| 107 | break; |
| 108 | case CLKCFG_FSB_800: |
| 109 | dev_priv->fsb_freq = 800; /* 200*4 */ |
| 110 | break; |
| 111 | case CLKCFG_FSB_667: |
| 112 | dev_priv->fsb_freq = 667; /* 167*4 */ |
| 113 | break; |
| 114 | case CLKCFG_FSB_400: |
| 115 | dev_priv->fsb_freq = 400; /* 100*4 */ |
| 116 | break; |
| 117 | } |
| 118 | |
| 119 | switch (tmp & CLKCFG_MEM_MASK) { |
| 120 | case CLKCFG_MEM_533: |
| 121 | dev_priv->mem_freq = 533; |
| 122 | break; |
| 123 | case CLKCFG_MEM_667: |
| 124 | dev_priv->mem_freq = 667; |
| 125 | break; |
| 126 | case CLKCFG_MEM_800: |
| 127 | dev_priv->mem_freq = 800; |
| 128 | break; |
| 129 | } |
| 130 | |
| 131 | /* detect pineview DDR3 setting */ |
| 132 | tmp = I915_READ(CSHRDDR3CTL); |
| 133 | dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0; |
| 134 | } |
| 135 | |
| 136 | static void i915_ironlake_get_mem_freq(struct drm_device *dev) |
| 137 | { |
Jani Nikula | 50227e1 | 2014-03-31 14:27:21 +0300 | [diff] [blame] | 138 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 139 | u16 ddrpll, csipll; |
| 140 | |
| 141 | ddrpll = I915_READ16(DDRMPLL1); |
| 142 | csipll = I915_READ16(CSIPLL0); |
| 143 | |
| 144 | switch (ddrpll & 0xff) { |
| 145 | case 0xc: |
| 146 | dev_priv->mem_freq = 800; |
| 147 | break; |
| 148 | case 0x10: |
| 149 | dev_priv->mem_freq = 1066; |
| 150 | break; |
| 151 | case 0x14: |
| 152 | dev_priv->mem_freq = 1333; |
| 153 | break; |
| 154 | case 0x18: |
| 155 | dev_priv->mem_freq = 1600; |
| 156 | break; |
| 157 | default: |
| 158 | DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n", |
| 159 | ddrpll & 0xff); |
| 160 | dev_priv->mem_freq = 0; |
| 161 | break; |
| 162 | } |
| 163 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 164 | dev_priv->ips.r_t = dev_priv->mem_freq; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 165 | |
| 166 | switch (csipll & 0x3ff) { |
| 167 | case 0x00c: |
| 168 | dev_priv->fsb_freq = 3200; |
| 169 | break; |
| 170 | case 0x00e: |
| 171 | dev_priv->fsb_freq = 3733; |
| 172 | break; |
| 173 | case 0x010: |
| 174 | dev_priv->fsb_freq = 4266; |
| 175 | break; |
| 176 | case 0x012: |
| 177 | dev_priv->fsb_freq = 4800; |
| 178 | break; |
| 179 | case 0x014: |
| 180 | dev_priv->fsb_freq = 5333; |
| 181 | break; |
| 182 | case 0x016: |
| 183 | dev_priv->fsb_freq = 5866; |
| 184 | break; |
| 185 | case 0x018: |
| 186 | dev_priv->fsb_freq = 6400; |
| 187 | break; |
| 188 | default: |
| 189 | DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n", |
| 190 | csipll & 0x3ff); |
| 191 | dev_priv->fsb_freq = 0; |
| 192 | break; |
| 193 | } |
| 194 | |
| 195 | if (dev_priv->fsb_freq == 3200) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 196 | dev_priv->ips.c_m = 0; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 197 | } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 198 | dev_priv->ips.c_m = 1; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 199 | } else { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 200 | dev_priv->ips.c_m = 2; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 201 | } |
| 202 | } |
| 203 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 204 | static const struct cxsr_latency cxsr_latency_table[] = { |
| 205 | {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */ |
| 206 | {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */ |
| 207 | {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */ |
| 208 | {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */ |
| 209 | {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */ |
| 210 | |
| 211 | {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */ |
| 212 | {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */ |
| 213 | {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */ |
| 214 | {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */ |
| 215 | {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */ |
| 216 | |
| 217 | {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */ |
| 218 | {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */ |
| 219 | {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */ |
| 220 | {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */ |
| 221 | {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */ |
| 222 | |
| 223 | {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */ |
| 224 | {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */ |
| 225 | {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */ |
| 226 | {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */ |
| 227 | {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */ |
| 228 | |
| 229 | {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */ |
| 230 | {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */ |
| 231 | {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */ |
| 232 | {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */ |
| 233 | {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */ |
| 234 | |
| 235 | {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */ |
| 236 | {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */ |
| 237 | {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */ |
| 238 | {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */ |
| 239 | {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */ |
| 240 | }; |
| 241 | |
Daniel Vetter | 63c6227 | 2012-04-21 23:17:55 +0200 | [diff] [blame] | 242 | static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 243 | int is_ddr3, |
| 244 | int fsb, |
| 245 | int mem) |
| 246 | { |
| 247 | const struct cxsr_latency *latency; |
| 248 | int i; |
| 249 | |
| 250 | if (fsb == 0 || mem == 0) |
| 251 | return NULL; |
| 252 | |
| 253 | for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) { |
| 254 | latency = &cxsr_latency_table[i]; |
| 255 | if (is_desktop == latency->is_desktop && |
| 256 | is_ddr3 == latency->is_ddr3 && |
| 257 | fsb == latency->fsb_freq && mem == latency->mem_freq) |
| 258 | return latency; |
| 259 | } |
| 260 | |
| 261 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
| 262 | |
| 263 | return NULL; |
| 264 | } |
| 265 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 266 | void intel_set_memory_cxsr(struct drm_i915_private *dev_priv, bool enable) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 267 | { |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 268 | struct drm_device *dev = dev_priv->dev; |
| 269 | u32 val; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 270 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 271 | if (IS_VALLEYVIEW(dev)) { |
| 272 | I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0); |
| 273 | } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) { |
| 274 | I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0); |
| 275 | } else if (IS_PINEVIEW(dev)) { |
| 276 | val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN; |
| 277 | val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0; |
| 278 | I915_WRITE(DSPFW3, val); |
| 279 | } else if (IS_I945G(dev) || IS_I945GM(dev)) { |
| 280 | val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) : |
| 281 | _MASKED_BIT_DISABLE(FW_BLC_SELF_EN); |
| 282 | I915_WRITE(FW_BLC_SELF, val); |
| 283 | } else if (IS_I915GM(dev)) { |
| 284 | val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) : |
| 285 | _MASKED_BIT_DISABLE(INSTPM_SELF_EN); |
| 286 | I915_WRITE(INSTPM, val); |
| 287 | } else { |
| 288 | return; |
| 289 | } |
| 290 | |
| 291 | DRM_DEBUG_KMS("memory self-refresh is %s\n", |
| 292 | enable ? "enabled" : "disabled"); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | /* |
| 296 | * Latency for FIFO fetches is dependent on several factors: |
| 297 | * - memory configuration (speed, channels) |
| 298 | * - chipset |
| 299 | * - current MCH state |
| 300 | * It can be fairly high in some situations, so here we assume a fairly |
| 301 | * pessimal value. It's a tradeoff between extra memory fetches (if we |
| 302 | * set this value too high, the FIFO will fetch frequently to stay full) |
| 303 | * and power consumption (set it too low to save power and we might see |
| 304 | * FIFO underruns and display "flicker"). |
| 305 | * |
| 306 | * A value of 5us seems to be a good balance; safe for very low end |
| 307 | * platforms but not overly aggressive on lower latency configs. |
| 308 | */ |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 309 | static const int pessimal_latency_ns = 5000; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 310 | |
Ville Syrjälä | b500472 | 2015-03-05 21:19:47 +0200 | [diff] [blame^] | 311 | #define VLV_FIFO_START(dsparb, dsparb2, lo_shift, hi_shift) \ |
| 312 | ((((dsparb) >> (lo_shift)) & 0xff) | ((((dsparb2) >> (hi_shift)) & 0x1) << 8)) |
| 313 | |
| 314 | static int vlv_get_fifo_size(struct drm_device *dev, |
| 315 | enum pipe pipe, int plane) |
| 316 | { |
| 317 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 318 | int sprite0_start, sprite1_start, size; |
| 319 | |
| 320 | switch (pipe) { |
| 321 | uint32_t dsparb, dsparb2, dsparb3; |
| 322 | case PIPE_A: |
| 323 | dsparb = I915_READ(DSPARB); |
| 324 | dsparb2 = I915_READ(DSPARB2); |
| 325 | sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 0, 0); |
| 326 | sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 8, 4); |
| 327 | break; |
| 328 | case PIPE_B: |
| 329 | dsparb = I915_READ(DSPARB); |
| 330 | dsparb2 = I915_READ(DSPARB2); |
| 331 | sprite0_start = VLV_FIFO_START(dsparb, dsparb2, 16, 8); |
| 332 | sprite1_start = VLV_FIFO_START(dsparb, dsparb2, 24, 12); |
| 333 | break; |
| 334 | case PIPE_C: |
| 335 | dsparb2 = I915_READ(DSPARB2); |
| 336 | dsparb3 = I915_READ(DSPARB3); |
| 337 | sprite0_start = VLV_FIFO_START(dsparb3, dsparb2, 0, 16); |
| 338 | sprite1_start = VLV_FIFO_START(dsparb3, dsparb2, 8, 20); |
| 339 | break; |
| 340 | default: |
| 341 | return 0; |
| 342 | } |
| 343 | |
| 344 | switch (plane) { |
| 345 | case 0: |
| 346 | size = sprite0_start; |
| 347 | break; |
| 348 | case 1: |
| 349 | size = sprite1_start - sprite0_start; |
| 350 | break; |
| 351 | case 2: |
| 352 | size = 512 - 1 - sprite1_start; |
| 353 | break; |
| 354 | default: |
| 355 | return 0; |
| 356 | } |
| 357 | |
| 358 | DRM_DEBUG_KMS("Pipe %c %s %c FIFO size: %d\n", |
| 359 | pipe_name(pipe), plane == 0 ? "primary" : "sprite", |
| 360 | plane == 0 ? plane_name(pipe) : sprite_name(pipe, plane - 1), |
| 361 | size); |
| 362 | |
| 363 | return size; |
| 364 | } |
| 365 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 366 | static int i9xx_get_fifo_size(struct drm_device *dev, int plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 367 | { |
| 368 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 369 | uint32_t dsparb = I915_READ(DSPARB); |
| 370 | int size; |
| 371 | |
| 372 | size = dsparb & 0x7f; |
| 373 | if (plane) |
| 374 | size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size; |
| 375 | |
| 376 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 377 | plane ? "B" : "A", size); |
| 378 | |
| 379 | return size; |
| 380 | } |
| 381 | |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 382 | static int i830_get_fifo_size(struct drm_device *dev, int plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 383 | { |
| 384 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 385 | uint32_t dsparb = I915_READ(DSPARB); |
| 386 | int size; |
| 387 | |
| 388 | size = dsparb & 0x1ff; |
| 389 | if (plane) |
| 390 | size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size; |
| 391 | size >>= 1; /* Convert to cachelines */ |
| 392 | |
| 393 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 394 | plane ? "B" : "A", size); |
| 395 | |
| 396 | return size; |
| 397 | } |
| 398 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 399 | static int i845_get_fifo_size(struct drm_device *dev, int plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 400 | { |
| 401 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 402 | uint32_t dsparb = I915_READ(DSPARB); |
| 403 | int size; |
| 404 | |
| 405 | size = dsparb & 0x7f; |
| 406 | size >>= 2; /* Convert to cachelines */ |
| 407 | |
| 408 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 409 | plane ? "B" : "A", |
| 410 | size); |
| 411 | |
| 412 | return size; |
| 413 | } |
| 414 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 415 | /* Pineview has different values for various configs */ |
| 416 | static const struct intel_watermark_params pineview_display_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 417 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 418 | .max_wm = PINEVIEW_MAX_WM, |
| 419 | .default_wm = PINEVIEW_DFT_WM, |
| 420 | .guard_size = PINEVIEW_GUARD_WM, |
| 421 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 422 | }; |
| 423 | static const struct intel_watermark_params pineview_display_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 424 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 425 | .max_wm = PINEVIEW_MAX_WM, |
| 426 | .default_wm = PINEVIEW_DFT_HPLLOFF_WM, |
| 427 | .guard_size = PINEVIEW_GUARD_WM, |
| 428 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 429 | }; |
| 430 | static const struct intel_watermark_params pineview_cursor_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 431 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 432 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 433 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 434 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 435 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 436 | }; |
| 437 | static const struct intel_watermark_params pineview_cursor_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 438 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 439 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 440 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 441 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 442 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 443 | }; |
| 444 | static const struct intel_watermark_params g4x_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 445 | .fifo_size = G4X_FIFO_SIZE, |
| 446 | .max_wm = G4X_MAX_WM, |
| 447 | .default_wm = G4X_MAX_WM, |
| 448 | .guard_size = 2, |
| 449 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 450 | }; |
| 451 | static const struct intel_watermark_params g4x_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 452 | .fifo_size = I965_CURSOR_FIFO, |
| 453 | .max_wm = I965_CURSOR_MAX_WM, |
| 454 | .default_wm = I965_CURSOR_DFT_WM, |
| 455 | .guard_size = 2, |
| 456 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 457 | }; |
| 458 | static const struct intel_watermark_params valleyview_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 459 | .fifo_size = VALLEYVIEW_FIFO_SIZE, |
| 460 | .max_wm = VALLEYVIEW_MAX_WM, |
| 461 | .default_wm = VALLEYVIEW_MAX_WM, |
| 462 | .guard_size = 2, |
| 463 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 464 | }; |
| 465 | static const struct intel_watermark_params valleyview_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 466 | .fifo_size = I965_CURSOR_FIFO, |
| 467 | .max_wm = VALLEYVIEW_CURSOR_MAX_WM, |
| 468 | .default_wm = I965_CURSOR_DFT_WM, |
| 469 | .guard_size = 2, |
| 470 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 471 | }; |
| 472 | static const struct intel_watermark_params i965_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 473 | .fifo_size = I965_CURSOR_FIFO, |
| 474 | .max_wm = I965_CURSOR_MAX_WM, |
| 475 | .default_wm = I965_CURSOR_DFT_WM, |
| 476 | .guard_size = 2, |
| 477 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 478 | }; |
| 479 | static const struct intel_watermark_params i945_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 480 | .fifo_size = I945_FIFO_SIZE, |
| 481 | .max_wm = I915_MAX_WM, |
| 482 | .default_wm = 1, |
| 483 | .guard_size = 2, |
| 484 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 485 | }; |
| 486 | static const struct intel_watermark_params i915_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 487 | .fifo_size = I915_FIFO_SIZE, |
| 488 | .max_wm = I915_MAX_WM, |
| 489 | .default_wm = 1, |
| 490 | .guard_size = 2, |
| 491 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 492 | }; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 493 | static const struct intel_watermark_params i830_a_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 494 | .fifo_size = I855GM_FIFO_SIZE, |
| 495 | .max_wm = I915_MAX_WM, |
| 496 | .default_wm = 1, |
| 497 | .guard_size = 2, |
| 498 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 499 | }; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 500 | static const struct intel_watermark_params i830_bc_wm_info = { |
| 501 | .fifo_size = I855GM_FIFO_SIZE, |
| 502 | .max_wm = I915_MAX_WM/2, |
| 503 | .default_wm = 1, |
| 504 | .guard_size = 2, |
| 505 | .cacheline_size = I830_FIFO_LINE_SIZE, |
| 506 | }; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 507 | static const struct intel_watermark_params i845_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 508 | .fifo_size = I830_FIFO_SIZE, |
| 509 | .max_wm = I915_MAX_WM, |
| 510 | .default_wm = 1, |
| 511 | .guard_size = 2, |
| 512 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 513 | }; |
| 514 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 515 | /** |
| 516 | * intel_calculate_wm - calculate watermark level |
| 517 | * @clock_in_khz: pixel clock |
| 518 | * @wm: chip FIFO params |
| 519 | * @pixel_size: display pixel size |
| 520 | * @latency_ns: memory latency for the platform |
| 521 | * |
| 522 | * Calculate the watermark level (the level at which the display plane will |
| 523 | * start fetching from memory again). Each chip has a different display |
| 524 | * FIFO size and allocation, so the caller needs to figure that out and pass |
| 525 | * in the correct intel_watermark_params structure. |
| 526 | * |
| 527 | * As the pixel clock runs, the FIFO will be drained at a rate that depends |
| 528 | * on the pixel size. When it reaches the watermark level, it'll start |
| 529 | * fetching FIFO line sized based chunks from memory until the FIFO fills |
| 530 | * past the watermark point. If the FIFO drains completely, a FIFO underrun |
| 531 | * will occur, and a display engine hang could result. |
| 532 | */ |
| 533 | static unsigned long intel_calculate_wm(unsigned long clock_in_khz, |
| 534 | const struct intel_watermark_params *wm, |
| 535 | int fifo_size, |
| 536 | int pixel_size, |
| 537 | unsigned long latency_ns) |
| 538 | { |
| 539 | long entries_required, wm_size; |
| 540 | |
| 541 | /* |
| 542 | * Note: we need to make sure we don't overflow for various clock & |
| 543 | * latency values. |
| 544 | * clocks go from a few thousand to several hundred thousand. |
| 545 | * latency is usually a few thousand |
| 546 | */ |
| 547 | entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) / |
| 548 | 1000; |
| 549 | entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size); |
| 550 | |
| 551 | DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required); |
| 552 | |
| 553 | wm_size = fifo_size - (entries_required + wm->guard_size); |
| 554 | |
| 555 | DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size); |
| 556 | |
| 557 | /* Don't promote wm_size to unsigned... */ |
| 558 | if (wm_size > (long)wm->max_wm) |
| 559 | wm_size = wm->max_wm; |
| 560 | if (wm_size <= 0) |
| 561 | wm_size = wm->default_wm; |
Ville Syrjälä | d6feb19 | 2014-09-05 21:54:13 +0300 | [diff] [blame] | 562 | |
| 563 | /* |
| 564 | * Bspec seems to indicate that the value shouldn't be lower than |
| 565 | * 'burst size + 1'. Certainly 830 is quite unhappy with low values. |
| 566 | * Lets go for 8 which is the burst size since certain platforms |
| 567 | * already use a hardcoded 8 (which is what the spec says should be |
| 568 | * done). |
| 569 | */ |
| 570 | if (wm_size <= 8) |
| 571 | wm_size = 8; |
| 572 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 573 | return wm_size; |
| 574 | } |
| 575 | |
| 576 | static struct drm_crtc *single_enabled_crtc(struct drm_device *dev) |
| 577 | { |
| 578 | struct drm_crtc *crtc, *enabled = NULL; |
| 579 | |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 580 | for_each_crtc(dev, crtc) { |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 581 | if (intel_crtc_active(crtc)) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 582 | if (enabled) |
| 583 | return NULL; |
| 584 | enabled = crtc; |
| 585 | } |
| 586 | } |
| 587 | |
| 588 | return enabled; |
| 589 | } |
| 590 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 591 | static void pineview_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 592 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 593 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 594 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 595 | struct drm_crtc *crtc; |
| 596 | const struct cxsr_latency *latency; |
| 597 | u32 reg; |
| 598 | unsigned long wm; |
| 599 | |
| 600 | latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3, |
| 601 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 602 | if (!latency) { |
| 603 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 604 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 605 | return; |
| 606 | } |
| 607 | |
| 608 | crtc = single_enabled_crtc(dev); |
| 609 | if (crtc) { |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 610 | const struct drm_display_mode *adjusted_mode; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 611 | int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 612 | int clock; |
| 613 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 614 | adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 615 | clock = adjusted_mode->crtc_clock; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 616 | |
| 617 | /* Display SR */ |
| 618 | wm = intel_calculate_wm(clock, &pineview_display_wm, |
| 619 | pineview_display_wm.fifo_size, |
| 620 | pixel_size, latency->display_sr); |
| 621 | reg = I915_READ(DSPFW1); |
| 622 | reg &= ~DSPFW_SR_MASK; |
| 623 | reg |= wm << DSPFW_SR_SHIFT; |
| 624 | I915_WRITE(DSPFW1, reg); |
| 625 | DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg); |
| 626 | |
| 627 | /* cursor SR */ |
| 628 | wm = intel_calculate_wm(clock, &pineview_cursor_wm, |
| 629 | pineview_display_wm.fifo_size, |
| 630 | pixel_size, latency->cursor_sr); |
| 631 | reg = I915_READ(DSPFW3); |
| 632 | reg &= ~DSPFW_CURSOR_SR_MASK; |
| 633 | reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT; |
| 634 | I915_WRITE(DSPFW3, reg); |
| 635 | |
| 636 | /* Display HPLL off SR */ |
| 637 | wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm, |
| 638 | pineview_display_hplloff_wm.fifo_size, |
| 639 | pixel_size, latency->display_hpll_disable); |
| 640 | reg = I915_READ(DSPFW3); |
| 641 | reg &= ~DSPFW_HPLL_SR_MASK; |
| 642 | reg |= wm & DSPFW_HPLL_SR_MASK; |
| 643 | I915_WRITE(DSPFW3, reg); |
| 644 | |
| 645 | /* cursor HPLL off SR */ |
| 646 | wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm, |
| 647 | pineview_display_hplloff_wm.fifo_size, |
| 648 | pixel_size, latency->cursor_hpll_disable); |
| 649 | reg = I915_READ(DSPFW3); |
| 650 | reg &= ~DSPFW_HPLL_CURSOR_MASK; |
| 651 | reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT; |
| 652 | I915_WRITE(DSPFW3, reg); |
| 653 | DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg); |
| 654 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 655 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 656 | } else { |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 657 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 658 | } |
| 659 | } |
| 660 | |
| 661 | static bool g4x_compute_wm0(struct drm_device *dev, |
| 662 | int plane, |
| 663 | const struct intel_watermark_params *display, |
| 664 | int display_latency_ns, |
| 665 | const struct intel_watermark_params *cursor, |
| 666 | int cursor_latency_ns, |
| 667 | int *plane_wm, |
| 668 | int *cursor_wm) |
| 669 | { |
| 670 | struct drm_crtc *crtc; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 671 | const struct drm_display_mode *adjusted_mode; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 672 | int htotal, hdisplay, clock, pixel_size; |
| 673 | int line_time_us, line_count; |
| 674 | int entries, tlb_miss; |
| 675 | |
| 676 | crtc = intel_get_crtc_for_plane(dev, plane); |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 677 | if (!intel_crtc_active(crtc)) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 678 | *cursor_wm = cursor->guard_size; |
| 679 | *plane_wm = display->guard_size; |
| 680 | return false; |
| 681 | } |
| 682 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 683 | adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 684 | clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 685 | htotal = adjusted_mode->crtc_htotal; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 686 | hdisplay = to_intel_crtc(crtc)->config->pipe_src_w; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 687 | pixel_size = crtc->primary->state->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 688 | |
| 689 | /* Use the small buffer method to calculate plane watermark */ |
| 690 | entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000; |
| 691 | tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8; |
| 692 | if (tlb_miss > 0) |
| 693 | entries += tlb_miss; |
| 694 | entries = DIV_ROUND_UP(entries, display->cacheline_size); |
| 695 | *plane_wm = entries + display->guard_size; |
| 696 | if (*plane_wm > (int)display->max_wm) |
| 697 | *plane_wm = display->max_wm; |
| 698 | |
| 699 | /* Use the large buffer method to calculate cursor watermark */ |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 700 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 701 | line_count = (cursor_latency_ns / line_time_us + 1000) / 1000; |
Matt Roper | 3dd512f | 2015-02-27 10:12:00 -0800 | [diff] [blame] | 702 | entries = line_count * crtc->cursor->state->crtc_w * pixel_size; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 703 | tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8; |
| 704 | if (tlb_miss > 0) |
| 705 | entries += tlb_miss; |
| 706 | entries = DIV_ROUND_UP(entries, cursor->cacheline_size); |
| 707 | *cursor_wm = entries + cursor->guard_size; |
| 708 | if (*cursor_wm > (int)cursor->max_wm) |
| 709 | *cursor_wm = (int)cursor->max_wm; |
| 710 | |
| 711 | return true; |
| 712 | } |
| 713 | |
| 714 | /* |
| 715 | * Check the wm result. |
| 716 | * |
| 717 | * If any calculated watermark values is larger than the maximum value that |
| 718 | * can be programmed into the associated watermark register, that watermark |
| 719 | * must be disabled. |
| 720 | */ |
| 721 | static bool g4x_check_srwm(struct drm_device *dev, |
| 722 | int display_wm, int cursor_wm, |
| 723 | const struct intel_watermark_params *display, |
| 724 | const struct intel_watermark_params *cursor) |
| 725 | { |
| 726 | DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n", |
| 727 | display_wm, cursor_wm); |
| 728 | |
| 729 | if (display_wm > display->max_wm) { |
| 730 | DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n", |
| 731 | display_wm, display->max_wm); |
| 732 | return false; |
| 733 | } |
| 734 | |
| 735 | if (cursor_wm > cursor->max_wm) { |
| 736 | DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n", |
| 737 | cursor_wm, cursor->max_wm); |
| 738 | return false; |
| 739 | } |
| 740 | |
| 741 | if (!(display_wm || cursor_wm)) { |
| 742 | DRM_DEBUG_KMS("SR latency is 0, disabling\n"); |
| 743 | return false; |
| 744 | } |
| 745 | |
| 746 | return true; |
| 747 | } |
| 748 | |
| 749 | static bool g4x_compute_srwm(struct drm_device *dev, |
| 750 | int plane, |
| 751 | int latency_ns, |
| 752 | const struct intel_watermark_params *display, |
| 753 | const struct intel_watermark_params *cursor, |
| 754 | int *display_wm, int *cursor_wm) |
| 755 | { |
| 756 | struct drm_crtc *crtc; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 757 | const struct drm_display_mode *adjusted_mode; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 758 | int hdisplay, htotal, pixel_size, clock; |
| 759 | unsigned long line_time_us; |
| 760 | int line_count, line_size; |
| 761 | int small, large; |
| 762 | int entries; |
| 763 | |
| 764 | if (!latency_ns) { |
| 765 | *display_wm = *cursor_wm = 0; |
| 766 | return false; |
| 767 | } |
| 768 | |
| 769 | crtc = intel_get_crtc_for_plane(dev, plane); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 770 | adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 771 | clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 772 | htotal = adjusted_mode->crtc_htotal; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 773 | hdisplay = to_intel_crtc(crtc)->config->pipe_src_w; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 774 | pixel_size = crtc->primary->state->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 775 | |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 776 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 777 | line_count = (latency_ns / line_time_us + 1000) / 1000; |
| 778 | line_size = hdisplay * pixel_size; |
| 779 | |
| 780 | /* Use the minimum of the small and large buffer method for primary */ |
| 781 | small = ((clock * pixel_size / 1000) * latency_ns) / 1000; |
| 782 | large = line_count * line_size; |
| 783 | |
| 784 | entries = DIV_ROUND_UP(min(small, large), display->cacheline_size); |
| 785 | *display_wm = entries + display->guard_size; |
| 786 | |
| 787 | /* calculate the self-refresh watermark for display cursor */ |
Matt Roper | 3dd512f | 2015-02-27 10:12:00 -0800 | [diff] [blame] | 788 | entries = line_count * pixel_size * crtc->cursor->state->crtc_w; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 789 | entries = DIV_ROUND_UP(entries, cursor->cacheline_size); |
| 790 | *cursor_wm = entries + cursor->guard_size; |
| 791 | |
| 792 | return g4x_check_srwm(dev, |
| 793 | *display_wm, *cursor_wm, |
| 794 | display, cursor); |
| 795 | } |
| 796 | |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 797 | static void vlv_write_wm_values(struct intel_crtc *crtc, |
| 798 | const struct vlv_wm_values *wm) |
| 799 | { |
| 800 | struct drm_i915_private *dev_priv = to_i915(crtc->base.dev); |
| 801 | enum pipe pipe = crtc->pipe; |
| 802 | |
| 803 | I915_WRITE(VLV_DDL(pipe), |
| 804 | (wm->ddl[pipe].cursor << DDL_CURSOR_SHIFT) | |
| 805 | (wm->ddl[pipe].sprite[1] << DDL_SPRITE_SHIFT(1)) | |
| 806 | (wm->ddl[pipe].sprite[0] << DDL_SPRITE_SHIFT(0)) | |
| 807 | (wm->ddl[pipe].primary << DDL_PLANE_SHIFT)); |
| 808 | |
| 809 | dev_priv->wm.vlv = *wm; |
| 810 | } |
| 811 | |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 812 | static uint8_t vlv_compute_drain_latency(struct drm_crtc *crtc, |
Ville Syrjälä | 883a3d2 | 2015-03-05 21:19:46 +0200 | [diff] [blame] | 813 | struct drm_plane *plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 814 | { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 815 | struct drm_device *dev = crtc->dev; |
Ville Syrjälä | 883a3d2 | 2015-03-05 21:19:46 +0200 | [diff] [blame] | 816 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 817 | int entries, prec_mult, drain_latency, pixel_size; |
| 818 | int clock = intel_crtc->config->base.adjusted_mode.crtc_clock; |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 819 | const int high_precision = IS_CHERRYVIEW(dev) ? 16 : 64; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 820 | |
Ville Syrjälä | 883a3d2 | 2015-03-05 21:19:46 +0200 | [diff] [blame] | 821 | /* |
| 822 | * FIXME the plane might have an fb |
| 823 | * but be invisible (eg. due to clipping) |
| 824 | */ |
| 825 | if (!intel_crtc->active || !plane->state->fb) |
| 826 | return 0; |
| 827 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 828 | if (WARN(clock == 0, "Pixel clock is zero!\n")) |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 829 | return 0; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 830 | |
Ville Syrjälä | 883a3d2 | 2015-03-05 21:19:46 +0200 | [diff] [blame] | 831 | pixel_size = drm_format_plane_cpp(plane->state->fb->pixel_format, 0); |
| 832 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 833 | if (WARN(pixel_size == 0, "Pixel size is zero!\n")) |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 834 | return 0; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 835 | |
Gajanan Bhat | a398e9c | 2014-08-05 23:15:54 +0530 | [diff] [blame] | 836 | entries = DIV_ROUND_UP(clock, 1000) * pixel_size; |
Ville Syrjälä | abfc00b | 2015-03-05 21:19:43 +0200 | [diff] [blame] | 837 | |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 838 | prec_mult = high_precision; |
| 839 | drain_latency = 64 * prec_mult * 4 / entries; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 840 | |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 841 | if (drain_latency > DRAIN_LATENCY_MASK) { |
| 842 | prec_mult /= 2; |
| 843 | drain_latency = 64 * prec_mult * 4 / entries; |
Ville Syrjälä | abfc00b | 2015-03-05 21:19:43 +0200 | [diff] [blame] | 844 | } |
| 845 | |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 846 | if (drain_latency > DRAIN_LATENCY_MASK) |
| 847 | drain_latency = DRAIN_LATENCY_MASK; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 848 | |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 849 | return drain_latency | (prec_mult == high_precision ? |
| 850 | DDL_PRECISION_HIGH : DDL_PRECISION_LOW); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 851 | } |
| 852 | |
| 853 | /* |
| 854 | * Update drain latency registers of memory arbiter |
| 855 | * |
| 856 | * Valleyview SoC has a new memory arbiter and needs drain latency registers |
| 857 | * to be programmed. Each plane has a drain latency multiplier and a drain |
| 858 | * latency value. |
| 859 | */ |
| 860 | |
Gajanan Bhat | 41aad81 | 2014-07-16 18:24:03 +0530 | [diff] [blame] | 861 | static void vlv_update_drain_latency(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 862 | { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 863 | struct drm_device *dev = crtc->dev; |
| 864 | struct drm_i915_private *dev_priv = dev->dev_private; |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 865 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 866 | enum pipe pipe = intel_crtc->pipe; |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 867 | struct vlv_wm_values wm = dev_priv->wm.vlv; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 868 | |
Ville Syrjälä | 883a3d2 | 2015-03-05 21:19:46 +0200 | [diff] [blame] | 869 | wm.ddl[pipe].primary = vlv_compute_drain_latency(crtc, crtc->primary); |
| 870 | wm.ddl[pipe].cursor = vlv_compute_drain_latency(crtc, crtc->cursor); |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 871 | |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 872 | vlv_write_wm_values(intel_crtc, &wm); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | #define single_plane_enabled(mask) is_power_of_2(mask) |
| 876 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 877 | static void valleyview_update_wm(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 878 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 879 | struct drm_device *dev = crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 880 | static const int sr_latency_ns = 12000; |
| 881 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 882 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm; |
| 883 | int plane_sr, cursor_sr; |
Chris Wilson | af6c457 | 2012-12-11 12:01:43 +0000 | [diff] [blame] | 884 | int ignore_plane_sr, ignore_cursor_sr; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 885 | unsigned int enabled = 0; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 886 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 887 | |
Gajanan Bhat | 41aad81 | 2014-07-16 18:24:03 +0530 | [diff] [blame] | 888 | vlv_update_drain_latency(crtc); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 889 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 890 | if (g4x_compute_wm0(dev, PIPE_A, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 891 | &valleyview_wm_info, pessimal_latency_ns, |
| 892 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 893 | &planea_wm, &cursora_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 894 | enabled |= 1 << PIPE_A; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 895 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 896 | if (g4x_compute_wm0(dev, PIPE_B, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 897 | &valleyview_wm_info, pessimal_latency_ns, |
| 898 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 899 | &planeb_wm, &cursorb_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 900 | enabled |= 1 << PIPE_B; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 901 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 902 | if (single_plane_enabled(enabled) && |
| 903 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 904 | sr_latency_ns, |
| 905 | &valleyview_wm_info, |
| 906 | &valleyview_cursor_wm_info, |
Chris Wilson | af6c457 | 2012-12-11 12:01:43 +0000 | [diff] [blame] | 907 | &plane_sr, &ignore_cursor_sr) && |
| 908 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 909 | 2*sr_latency_ns, |
| 910 | &valleyview_wm_info, |
| 911 | &valleyview_cursor_wm_info, |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 912 | &ignore_plane_sr, &cursor_sr)) { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 913 | cxsr_enabled = true; |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 914 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 915 | cxsr_enabled = false; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 916 | intel_set_memory_cxsr(dev_priv, false); |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 917 | plane_sr = cursor_sr = 0; |
| 918 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 919 | |
Ville Syrjälä | a504345 | 2014-06-28 02:04:18 +0300 | [diff] [blame] | 920 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, " |
| 921 | "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n", |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 922 | planea_wm, cursora_wm, |
| 923 | planeb_wm, cursorb_wm, |
| 924 | plane_sr, cursor_sr); |
| 925 | |
| 926 | I915_WRITE(DSPFW1, |
| 927 | (plane_sr << DSPFW_SR_SHIFT) | |
| 928 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 929 | (planeb_wm << DSPFW_PLANEB_SHIFT) | |
Ville Syrjälä | 0a56067 | 2014-06-11 16:51:18 +0300 | [diff] [blame] | 930 | (planea_wm << DSPFW_PLANEA_SHIFT)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 931 | I915_WRITE(DSPFW2, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 932 | (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 933 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 934 | I915_WRITE(DSPFW3, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 935 | (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) | |
| 936 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 937 | |
| 938 | if (cxsr_enabled) |
| 939 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 940 | } |
| 941 | |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 942 | static void cherryview_update_wm(struct drm_crtc *crtc) |
| 943 | { |
| 944 | struct drm_device *dev = crtc->dev; |
| 945 | static const int sr_latency_ns = 12000; |
| 946 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 947 | int planea_wm, planeb_wm, planec_wm; |
| 948 | int cursora_wm, cursorb_wm, cursorc_wm; |
| 949 | int plane_sr, cursor_sr; |
| 950 | int ignore_plane_sr, ignore_cursor_sr; |
| 951 | unsigned int enabled = 0; |
| 952 | bool cxsr_enabled; |
| 953 | |
| 954 | vlv_update_drain_latency(crtc); |
| 955 | |
| 956 | if (g4x_compute_wm0(dev, PIPE_A, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 957 | &valleyview_wm_info, pessimal_latency_ns, |
| 958 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 959 | &planea_wm, &cursora_wm)) |
| 960 | enabled |= 1 << PIPE_A; |
| 961 | |
| 962 | if (g4x_compute_wm0(dev, PIPE_B, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 963 | &valleyview_wm_info, pessimal_latency_ns, |
| 964 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 965 | &planeb_wm, &cursorb_wm)) |
| 966 | enabled |= 1 << PIPE_B; |
| 967 | |
| 968 | if (g4x_compute_wm0(dev, PIPE_C, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 969 | &valleyview_wm_info, pessimal_latency_ns, |
| 970 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 971 | &planec_wm, &cursorc_wm)) |
| 972 | enabled |= 1 << PIPE_C; |
| 973 | |
| 974 | if (single_plane_enabled(enabled) && |
| 975 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 976 | sr_latency_ns, |
| 977 | &valleyview_wm_info, |
| 978 | &valleyview_cursor_wm_info, |
| 979 | &plane_sr, &ignore_cursor_sr) && |
| 980 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 981 | 2*sr_latency_ns, |
| 982 | &valleyview_wm_info, |
| 983 | &valleyview_cursor_wm_info, |
| 984 | &ignore_plane_sr, &cursor_sr)) { |
| 985 | cxsr_enabled = true; |
| 986 | } else { |
| 987 | cxsr_enabled = false; |
| 988 | intel_set_memory_cxsr(dev_priv, false); |
| 989 | plane_sr = cursor_sr = 0; |
| 990 | } |
| 991 | |
| 992 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, " |
| 993 | "B: plane=%d, cursor=%d, C: plane=%d, cursor=%d, " |
| 994 | "SR: plane=%d, cursor=%d\n", |
| 995 | planea_wm, cursora_wm, |
| 996 | planeb_wm, cursorb_wm, |
| 997 | planec_wm, cursorc_wm, |
| 998 | plane_sr, cursor_sr); |
| 999 | |
| 1000 | I915_WRITE(DSPFW1, |
| 1001 | (plane_sr << DSPFW_SR_SHIFT) | |
| 1002 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 1003 | (planeb_wm << DSPFW_PLANEB_SHIFT) | |
| 1004 | (planea_wm << DSPFW_PLANEA_SHIFT)); |
| 1005 | I915_WRITE(DSPFW2, |
| 1006 | (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) | |
| 1007 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 1008 | I915_WRITE(DSPFW3, |
| 1009 | (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) | |
| 1010 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
| 1011 | I915_WRITE(DSPFW9_CHV, |
| 1012 | (I915_READ(DSPFW9_CHV) & ~(DSPFW_PLANEC_MASK | |
| 1013 | DSPFW_CURSORC_MASK)) | |
| 1014 | (planec_wm << DSPFW_PLANEC_SHIFT) | |
| 1015 | (cursorc_wm << DSPFW_CURSORC_SHIFT)); |
| 1016 | |
| 1017 | if (cxsr_enabled) |
| 1018 | intel_set_memory_cxsr(dev_priv, true); |
| 1019 | } |
| 1020 | |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1021 | static void valleyview_update_sprite_wm(struct drm_plane *plane, |
| 1022 | struct drm_crtc *crtc, |
| 1023 | uint32_t sprite_width, |
| 1024 | uint32_t sprite_height, |
| 1025 | int pixel_size, |
| 1026 | bool enabled, bool scaled) |
| 1027 | { |
| 1028 | struct drm_device *dev = crtc->dev; |
| 1029 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1030 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1031 | enum pipe pipe = intel_crtc->pipe; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1032 | int sprite = to_intel_plane(plane)->plane; |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1033 | struct vlv_wm_values wm = dev_priv->wm.vlv; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1034 | |
Ville Syrjälä | 341c526 | 2015-03-05 21:19:44 +0200 | [diff] [blame] | 1035 | if (enabled) |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1036 | wm.ddl[pipe].sprite[sprite] = |
Ville Syrjälä | 883a3d2 | 2015-03-05 21:19:46 +0200 | [diff] [blame] | 1037 | vlv_compute_drain_latency(crtc, plane); |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1038 | else |
| 1039 | wm.ddl[pipe].sprite[sprite] = 0; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1040 | |
Ville Syrjälä | 0018fda | 2015-03-05 21:19:45 +0200 | [diff] [blame] | 1041 | vlv_write_wm_values(intel_crtc, &wm); |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1042 | } |
| 1043 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1044 | static void g4x_update_wm(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1045 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1046 | struct drm_device *dev = crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1047 | static const int sr_latency_ns = 12000; |
| 1048 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1049 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm; |
| 1050 | int plane_sr, cursor_sr; |
| 1051 | unsigned int enabled = 0; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1052 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1053 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1054 | if (g4x_compute_wm0(dev, PIPE_A, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1055 | &g4x_wm_info, pessimal_latency_ns, |
| 1056 | &g4x_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1057 | &planea_wm, &cursora_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1058 | enabled |= 1 << PIPE_A; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1059 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1060 | if (g4x_compute_wm0(dev, PIPE_B, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1061 | &g4x_wm_info, pessimal_latency_ns, |
| 1062 | &g4x_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1063 | &planeb_wm, &cursorb_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1064 | enabled |= 1 << PIPE_B; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1065 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1066 | if (single_plane_enabled(enabled) && |
| 1067 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 1068 | sr_latency_ns, |
| 1069 | &g4x_wm_info, |
| 1070 | &g4x_cursor_wm_info, |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1071 | &plane_sr, &cursor_sr)) { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1072 | cxsr_enabled = true; |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1073 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1074 | cxsr_enabled = false; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1075 | intel_set_memory_cxsr(dev_priv, false); |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1076 | plane_sr = cursor_sr = 0; |
| 1077 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1078 | |
Ville Syrjälä | a504345 | 2014-06-28 02:04:18 +0300 | [diff] [blame] | 1079 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, " |
| 1080 | "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n", |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1081 | planea_wm, cursora_wm, |
| 1082 | planeb_wm, cursorb_wm, |
| 1083 | plane_sr, cursor_sr); |
| 1084 | |
| 1085 | I915_WRITE(DSPFW1, |
| 1086 | (plane_sr << DSPFW_SR_SHIFT) | |
| 1087 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 1088 | (planeb_wm << DSPFW_PLANEB_SHIFT) | |
Ville Syrjälä | 0a56067 | 2014-06-11 16:51:18 +0300 | [diff] [blame] | 1089 | (planea_wm << DSPFW_PLANEA_SHIFT)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1090 | I915_WRITE(DSPFW2, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 1091 | (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1092 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 1093 | /* HPLL off in SR has some issues on G4x... disable it */ |
| 1094 | I915_WRITE(DSPFW3, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 1095 | (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1096 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1097 | |
| 1098 | if (cxsr_enabled) |
| 1099 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1100 | } |
| 1101 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1102 | static void i965_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1103 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1104 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1105 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1106 | struct drm_crtc *crtc; |
| 1107 | int srwm = 1; |
| 1108 | int cursor_sr = 16; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1109 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1110 | |
| 1111 | /* Calc sr entries for one plane configs */ |
| 1112 | crtc = single_enabled_crtc(dev); |
| 1113 | if (crtc) { |
| 1114 | /* self-refresh has much higher latency */ |
| 1115 | static const int sr_latency_ns = 12000; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1116 | const struct drm_display_mode *adjusted_mode = |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1117 | &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1118 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1119 | int htotal = adjusted_mode->crtc_htotal; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1120 | int hdisplay = to_intel_crtc(crtc)->config->pipe_src_w; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 1121 | int pixel_size = crtc->primary->state->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1122 | unsigned long line_time_us; |
| 1123 | int entries; |
| 1124 | |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 1125 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1126 | |
| 1127 | /* Use ns/us then divide to preserve precision */ |
| 1128 | entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 1129 | pixel_size * hdisplay; |
| 1130 | entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE); |
| 1131 | srwm = I965_FIFO_SIZE - entries; |
| 1132 | if (srwm < 0) |
| 1133 | srwm = 1; |
| 1134 | srwm &= 0x1ff; |
| 1135 | DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n", |
| 1136 | entries, srwm); |
| 1137 | |
| 1138 | entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
Matt Roper | 3dd512f | 2015-02-27 10:12:00 -0800 | [diff] [blame] | 1139 | pixel_size * crtc->cursor->state->crtc_w; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1140 | entries = DIV_ROUND_UP(entries, |
| 1141 | i965_cursor_wm_info.cacheline_size); |
| 1142 | cursor_sr = i965_cursor_wm_info.fifo_size - |
| 1143 | (entries + i965_cursor_wm_info.guard_size); |
| 1144 | |
| 1145 | if (cursor_sr > i965_cursor_wm_info.max_wm) |
| 1146 | cursor_sr = i965_cursor_wm_info.max_wm; |
| 1147 | |
| 1148 | DRM_DEBUG_KMS("self-refresh watermark: display plane %d " |
| 1149 | "cursor %d\n", srwm, cursor_sr); |
| 1150 | |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1151 | cxsr_enabled = true; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1152 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1153 | cxsr_enabled = false; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1154 | /* Turn off self refresh if both pipes are enabled */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1155 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1156 | } |
| 1157 | |
| 1158 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", |
| 1159 | srwm); |
| 1160 | |
| 1161 | /* 965 has limitations... */ |
| 1162 | I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | |
Ville Syrjälä | 0a56067 | 2014-06-11 16:51:18 +0300 | [diff] [blame] | 1163 | (8 << DSPFW_CURSORB_SHIFT) | |
| 1164 | (8 << DSPFW_PLANEB_SHIFT) | |
| 1165 | (8 << DSPFW_PLANEA_SHIFT)); |
| 1166 | I915_WRITE(DSPFW2, (8 << DSPFW_CURSORA_SHIFT) | |
| 1167 | (8 << DSPFW_PLANEC_SHIFT_OLD)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1168 | /* update cursor SR watermark */ |
| 1169 | I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1170 | |
| 1171 | if (cxsr_enabled) |
| 1172 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1173 | } |
| 1174 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1175 | static void i9xx_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1176 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1177 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1178 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1179 | const struct intel_watermark_params *wm_info; |
| 1180 | uint32_t fwater_lo; |
| 1181 | uint32_t fwater_hi; |
| 1182 | int cwm, srwm = 1; |
| 1183 | int fifo_size; |
| 1184 | int planea_wm, planeb_wm; |
| 1185 | struct drm_crtc *crtc, *enabled = NULL; |
| 1186 | |
| 1187 | if (IS_I945GM(dev)) |
| 1188 | wm_info = &i945_wm_info; |
| 1189 | else if (!IS_GEN2(dev)) |
| 1190 | wm_info = &i915_wm_info; |
| 1191 | else |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1192 | wm_info = &i830_a_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1193 | |
| 1194 | fifo_size = dev_priv->display.get_fifo_size(dev, 0); |
| 1195 | crtc = intel_get_crtc_for_plane(dev, 0); |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 1196 | if (intel_crtc_active(crtc)) { |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1197 | const struct drm_display_mode *adjusted_mode; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 1198 | int cpp = crtc->primary->state->fb->bits_per_pixel / 8; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1199 | if (IS_GEN2(dev)) |
| 1200 | cpp = 4; |
| 1201 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1202 | adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1203 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1204 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1205 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1206 | enabled = crtc; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1207 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1208 | planea_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1209 | if (planea_wm > (long)wm_info->max_wm) |
| 1210 | planea_wm = wm_info->max_wm; |
| 1211 | } |
| 1212 | |
| 1213 | if (IS_GEN2(dev)) |
| 1214 | wm_info = &i830_bc_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1215 | |
| 1216 | fifo_size = dev_priv->display.get_fifo_size(dev, 1); |
| 1217 | crtc = intel_get_crtc_for_plane(dev, 1); |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 1218 | if (intel_crtc_active(crtc)) { |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1219 | const struct drm_display_mode *adjusted_mode; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 1220 | int cpp = crtc->primary->state->fb->bits_per_pixel / 8; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1221 | if (IS_GEN2(dev)) |
| 1222 | cpp = 4; |
| 1223 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1224 | adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1225 | planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1226 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1227 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1228 | if (enabled == NULL) |
| 1229 | enabled = crtc; |
| 1230 | else |
| 1231 | enabled = NULL; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1232 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1233 | planeb_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1234 | if (planeb_wm > (long)wm_info->max_wm) |
| 1235 | planeb_wm = wm_info->max_wm; |
| 1236 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1237 | |
| 1238 | DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); |
| 1239 | |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1240 | if (IS_I915GM(dev) && enabled) { |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 1241 | struct drm_i915_gem_object *obj; |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1242 | |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 1243 | obj = intel_fb_obj(enabled->primary->state->fb); |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1244 | |
| 1245 | /* self-refresh seems busted with untiled */ |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 1246 | if (obj->tiling_mode == I915_TILING_NONE) |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1247 | enabled = NULL; |
| 1248 | } |
| 1249 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1250 | /* |
| 1251 | * Overlay gets an aggressive default since video jitter is bad. |
| 1252 | */ |
| 1253 | cwm = 2; |
| 1254 | |
| 1255 | /* Play safe and disable self-refresh before adjusting watermarks. */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1256 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1257 | |
| 1258 | /* Calc sr entries for one plane configs */ |
| 1259 | if (HAS_FW_BLC(dev) && enabled) { |
| 1260 | /* self-refresh has much higher latency */ |
| 1261 | static const int sr_latency_ns = 6000; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1262 | const struct drm_display_mode *adjusted_mode = |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1263 | &to_intel_crtc(enabled)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1264 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1265 | int htotal = adjusted_mode->crtc_htotal; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1266 | int hdisplay = to_intel_crtc(enabled)->config->pipe_src_w; |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 1267 | int pixel_size = enabled->primary->state->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1268 | unsigned long line_time_us; |
| 1269 | int entries; |
| 1270 | |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 1271 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1272 | |
| 1273 | /* Use ns/us then divide to preserve precision */ |
| 1274 | entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 1275 | pixel_size * hdisplay; |
| 1276 | entries = DIV_ROUND_UP(entries, wm_info->cacheline_size); |
| 1277 | DRM_DEBUG_KMS("self-refresh entries: %d\n", entries); |
| 1278 | srwm = wm_info->fifo_size - entries; |
| 1279 | if (srwm < 0) |
| 1280 | srwm = 1; |
| 1281 | |
| 1282 | if (IS_I945G(dev) || IS_I945GM(dev)) |
| 1283 | I915_WRITE(FW_BLC_SELF, |
| 1284 | FW_BLC_SELF_FIFO_MASK | (srwm & 0xff)); |
| 1285 | else if (IS_I915GM(dev)) |
| 1286 | I915_WRITE(FW_BLC_SELF, srwm & 0x3f); |
| 1287 | } |
| 1288 | |
| 1289 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", |
| 1290 | planea_wm, planeb_wm, cwm, srwm); |
| 1291 | |
| 1292 | fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f); |
| 1293 | fwater_hi = (cwm & 0x1f); |
| 1294 | |
| 1295 | /* Set request length to 8 cachelines per fetch */ |
| 1296 | fwater_lo = fwater_lo | (1 << 24) | (1 << 8); |
| 1297 | fwater_hi = fwater_hi | (1 << 8); |
| 1298 | |
| 1299 | I915_WRITE(FW_BLC, fwater_lo); |
| 1300 | I915_WRITE(FW_BLC2, fwater_hi); |
| 1301 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1302 | if (enabled) |
| 1303 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1304 | } |
| 1305 | |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 1306 | static void i845_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1307 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1308 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1309 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1310 | struct drm_crtc *crtc; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1311 | const struct drm_display_mode *adjusted_mode; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1312 | uint32_t fwater_lo; |
| 1313 | int planea_wm; |
| 1314 | |
| 1315 | crtc = single_enabled_crtc(dev); |
| 1316 | if (crtc == NULL) |
| 1317 | return; |
| 1318 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1319 | adjusted_mode = &to_intel_crtc(crtc)->config->base.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1320 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 1321 | &i845_wm_info, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1322 | dev_priv->display.get_fifo_size(dev, 0), |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1323 | 4, pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1324 | fwater_lo = I915_READ(FW_BLC) & ~0xfff; |
| 1325 | fwater_lo |= (3<<8) | planea_wm; |
| 1326 | |
| 1327 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm); |
| 1328 | |
| 1329 | I915_WRITE(FW_BLC, fwater_lo); |
| 1330 | } |
| 1331 | |
Ville Syrjälä | 3658729 | 2013-07-05 11:57:16 +0300 | [diff] [blame] | 1332 | static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev, |
| 1333 | struct drm_crtc *crtc) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1334 | { |
| 1335 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 1336 | uint32_t pixel_rate; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1337 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1338 | pixel_rate = intel_crtc->config->base.adjusted_mode.crtc_clock; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1339 | |
| 1340 | /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to |
| 1341 | * adjust the pixel_rate here. */ |
| 1342 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1343 | if (intel_crtc->config->pch_pfit.enabled) { |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1344 | uint64_t pipe_w, pipe_h, pfit_w, pfit_h; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1345 | uint32_t pfit_size = intel_crtc->config->pch_pfit.size; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1346 | |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1347 | pipe_w = intel_crtc->config->pipe_src_w; |
| 1348 | pipe_h = intel_crtc->config->pipe_src_h; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1349 | pfit_w = (pfit_size >> 16) & 0xFFFF; |
| 1350 | pfit_h = pfit_size & 0xFFFF; |
| 1351 | if (pipe_w < pfit_w) |
| 1352 | pipe_w = pfit_w; |
| 1353 | if (pipe_h < pfit_h) |
| 1354 | pipe_h = pfit_h; |
| 1355 | |
| 1356 | pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h, |
| 1357 | pfit_w * pfit_h); |
| 1358 | } |
| 1359 | |
| 1360 | return pixel_rate; |
| 1361 | } |
| 1362 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1363 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1364 | static uint32_t ilk_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1365 | uint32_t latency) |
| 1366 | { |
| 1367 | uint64_t ret; |
| 1368 | |
Ville Syrjälä | 3312ba6 | 2013-08-01 16:18:53 +0300 | [diff] [blame] | 1369 | if (WARN(latency == 0, "Latency value missing\n")) |
| 1370 | return UINT_MAX; |
| 1371 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1372 | ret = (uint64_t) pixel_rate * bytes_per_pixel * latency; |
| 1373 | ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2; |
| 1374 | |
| 1375 | return ret; |
| 1376 | } |
| 1377 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1378 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1379 | static uint32_t ilk_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1380 | uint32_t horiz_pixels, uint8_t bytes_per_pixel, |
| 1381 | uint32_t latency) |
| 1382 | { |
| 1383 | uint32_t ret; |
| 1384 | |
Ville Syrjälä | 3312ba6 | 2013-08-01 16:18:53 +0300 | [diff] [blame] | 1385 | if (WARN(latency == 0, "Latency value missing\n")) |
| 1386 | return UINT_MAX; |
| 1387 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1388 | ret = (latency * pixel_rate) / (pipe_htotal * 10000); |
| 1389 | ret = (ret + 1) * horiz_pixels * bytes_per_pixel; |
| 1390 | ret = DIV_ROUND_UP(ret, 64) + 2; |
| 1391 | return ret; |
| 1392 | } |
| 1393 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1394 | static uint32_t ilk_wm_fbc(uint32_t pri_val, uint32_t horiz_pixels, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1395 | uint8_t bytes_per_pixel) |
| 1396 | { |
| 1397 | return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2; |
| 1398 | } |
| 1399 | |
Pradeep Bhat | 2ac96d2 | 2014-11-04 17:06:40 +0000 | [diff] [blame] | 1400 | struct skl_pipe_wm_parameters { |
| 1401 | bool active; |
| 1402 | uint32_t pipe_htotal; |
| 1403 | uint32_t pixel_rate; /* in KHz */ |
| 1404 | struct intel_plane_wm_parameters plane[I915_MAX_PLANES]; |
| 1405 | struct intel_plane_wm_parameters cursor; |
| 1406 | }; |
| 1407 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1408 | struct ilk_pipe_wm_parameters { |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1409 | bool active; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1410 | uint32_t pipe_htotal; |
| 1411 | uint32_t pixel_rate; |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1412 | struct intel_plane_wm_parameters pri; |
| 1413 | struct intel_plane_wm_parameters spr; |
| 1414 | struct intel_plane_wm_parameters cur; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1415 | }; |
| 1416 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1417 | struct ilk_wm_maximums { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1418 | uint16_t pri; |
| 1419 | uint16_t spr; |
| 1420 | uint16_t cur; |
| 1421 | uint16_t fbc; |
| 1422 | }; |
| 1423 | |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1424 | /* used in computing the new watermarks state */ |
| 1425 | struct intel_wm_config { |
| 1426 | unsigned int num_pipes_active; |
| 1427 | bool sprites_enabled; |
| 1428 | bool sprites_scaled; |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1429 | }; |
| 1430 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1431 | /* |
| 1432 | * For both WM_PIPE and WM_LP. |
| 1433 | * mem_value must be in 0.1us units. |
| 1434 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1435 | static uint32_t ilk_compute_pri_wm(const struct ilk_pipe_wm_parameters *params, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1436 | uint32_t mem_value, |
| 1437 | bool is_lp) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1438 | { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1439 | uint32_t method1, method2; |
| 1440 | |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1441 | if (!params->active || !params->pri.enabled) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1442 | return 0; |
| 1443 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1444 | method1 = ilk_wm_method1(params->pixel_rate, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1445 | params->pri.bytes_per_pixel, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1446 | mem_value); |
| 1447 | |
| 1448 | if (!is_lp) |
| 1449 | return method1; |
| 1450 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1451 | method2 = ilk_wm_method2(params->pixel_rate, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1452 | params->pipe_htotal, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1453 | params->pri.horiz_pixels, |
| 1454 | params->pri.bytes_per_pixel, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1455 | mem_value); |
| 1456 | |
| 1457 | return min(method1, method2); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1458 | } |
| 1459 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1460 | /* |
| 1461 | * For both WM_PIPE and WM_LP. |
| 1462 | * mem_value must be in 0.1us units. |
| 1463 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1464 | static uint32_t ilk_compute_spr_wm(const struct ilk_pipe_wm_parameters *params, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1465 | uint32_t mem_value) |
| 1466 | { |
| 1467 | uint32_t method1, method2; |
| 1468 | |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1469 | if (!params->active || !params->spr.enabled) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1470 | return 0; |
| 1471 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1472 | method1 = ilk_wm_method1(params->pixel_rate, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1473 | params->spr.bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1474 | mem_value); |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1475 | method2 = ilk_wm_method2(params->pixel_rate, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1476 | params->pipe_htotal, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1477 | params->spr.horiz_pixels, |
| 1478 | params->spr.bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1479 | mem_value); |
| 1480 | return min(method1, method2); |
| 1481 | } |
| 1482 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1483 | /* |
| 1484 | * For both WM_PIPE and WM_LP. |
| 1485 | * mem_value must be in 0.1us units. |
| 1486 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1487 | static uint32_t ilk_compute_cur_wm(const struct ilk_pipe_wm_parameters *params, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1488 | uint32_t mem_value) |
| 1489 | { |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1490 | if (!params->active || !params->cur.enabled) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1491 | return 0; |
| 1492 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1493 | return ilk_wm_method2(params->pixel_rate, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1494 | params->pipe_htotal, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1495 | params->cur.horiz_pixels, |
| 1496 | params->cur.bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1497 | mem_value); |
| 1498 | } |
| 1499 | |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1500 | /* Only for WM_LP. */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1501 | static uint32_t ilk_compute_fbc_wm(const struct ilk_pipe_wm_parameters *params, |
Ville Syrjälä | 1fda988 | 2013-07-05 11:57:19 +0300 | [diff] [blame] | 1502 | uint32_t pri_val) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1503 | { |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1504 | if (!params->active || !params->pri.enabled) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1505 | return 0; |
| 1506 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1507 | return ilk_wm_fbc(pri_val, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1508 | params->pri.horiz_pixels, |
| 1509 | params->pri.bytes_per_pixel); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1510 | } |
| 1511 | |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1512 | static unsigned int ilk_display_fifo_size(const struct drm_device *dev) |
| 1513 | { |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 1514 | if (INTEL_INFO(dev)->gen >= 8) |
| 1515 | return 3072; |
| 1516 | else if (INTEL_INFO(dev)->gen >= 7) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1517 | return 768; |
| 1518 | else |
| 1519 | return 512; |
| 1520 | } |
| 1521 | |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 1522 | static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev, |
| 1523 | int level, bool is_sprite) |
| 1524 | { |
| 1525 | if (INTEL_INFO(dev)->gen >= 8) |
| 1526 | /* BDW primary/sprite plane watermarks */ |
| 1527 | return level == 0 ? 255 : 2047; |
| 1528 | else if (INTEL_INFO(dev)->gen >= 7) |
| 1529 | /* IVB/HSW primary/sprite plane watermarks */ |
| 1530 | return level == 0 ? 127 : 1023; |
| 1531 | else if (!is_sprite) |
| 1532 | /* ILK/SNB primary plane watermarks */ |
| 1533 | return level == 0 ? 127 : 511; |
| 1534 | else |
| 1535 | /* ILK/SNB sprite plane watermarks */ |
| 1536 | return level == 0 ? 63 : 255; |
| 1537 | } |
| 1538 | |
| 1539 | static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev, |
| 1540 | int level) |
| 1541 | { |
| 1542 | if (INTEL_INFO(dev)->gen >= 7) |
| 1543 | return level == 0 ? 63 : 255; |
| 1544 | else |
| 1545 | return level == 0 ? 31 : 63; |
| 1546 | } |
| 1547 | |
| 1548 | static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev) |
| 1549 | { |
| 1550 | if (INTEL_INFO(dev)->gen >= 8) |
| 1551 | return 31; |
| 1552 | else |
| 1553 | return 15; |
| 1554 | } |
| 1555 | |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1556 | /* Calculate the maximum primary/sprite plane watermark */ |
| 1557 | static unsigned int ilk_plane_wm_max(const struct drm_device *dev, |
| 1558 | int level, |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1559 | const struct intel_wm_config *config, |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1560 | enum intel_ddb_partitioning ddb_partitioning, |
| 1561 | bool is_sprite) |
| 1562 | { |
| 1563 | unsigned int fifo_size = ilk_display_fifo_size(dev); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1564 | |
| 1565 | /* if sprites aren't enabled, sprites get nothing */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1566 | if (is_sprite && !config->sprites_enabled) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1567 | return 0; |
| 1568 | |
| 1569 | /* HSW allows LP1+ watermarks even with multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1570 | if (level == 0 || config->num_pipes_active > 1) { |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1571 | fifo_size /= INTEL_INFO(dev)->num_pipes; |
| 1572 | |
| 1573 | /* |
| 1574 | * For some reason the non self refresh |
| 1575 | * FIFO size is only half of the self |
| 1576 | * refresh FIFO size on ILK/SNB. |
| 1577 | */ |
| 1578 | if (INTEL_INFO(dev)->gen <= 6) |
| 1579 | fifo_size /= 2; |
| 1580 | } |
| 1581 | |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1582 | if (config->sprites_enabled) { |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1583 | /* level 0 is always calculated with 1:1 split */ |
| 1584 | if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) { |
| 1585 | if (is_sprite) |
| 1586 | fifo_size *= 5; |
| 1587 | fifo_size /= 6; |
| 1588 | } else { |
| 1589 | fifo_size /= 2; |
| 1590 | } |
| 1591 | } |
| 1592 | |
| 1593 | /* clamp to max that the registers can hold */ |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 1594 | return min(fifo_size, ilk_plane_wm_reg_max(dev, level, is_sprite)); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | /* Calculate the maximum cursor plane watermark */ |
| 1598 | static unsigned int ilk_cursor_wm_max(const struct drm_device *dev, |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1599 | int level, |
| 1600 | const struct intel_wm_config *config) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1601 | { |
| 1602 | /* HSW LP1+ watermarks w/ multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1603 | if (level > 0 && config->num_pipes_active > 1) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1604 | return 64; |
| 1605 | |
| 1606 | /* otherwise just report max that registers can hold */ |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 1607 | return ilk_cursor_wm_reg_max(dev, level); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1608 | } |
| 1609 | |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 1610 | static void ilk_compute_wm_maximums(const struct drm_device *dev, |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 1611 | int level, |
| 1612 | const struct intel_wm_config *config, |
| 1613 | enum intel_ddb_partitioning ddb_partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1614 | struct ilk_wm_maximums *max) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1615 | { |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1616 | max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false); |
| 1617 | max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true); |
| 1618 | max->cur = ilk_cursor_wm_max(dev, level, config); |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 1619 | max->fbc = ilk_fbc_wm_reg_max(dev); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 1620 | } |
| 1621 | |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 1622 | static void ilk_compute_wm_reg_maximums(struct drm_device *dev, |
| 1623 | int level, |
| 1624 | struct ilk_wm_maximums *max) |
| 1625 | { |
| 1626 | max->pri = ilk_plane_wm_reg_max(dev, level, false); |
| 1627 | max->spr = ilk_plane_wm_reg_max(dev, level, true); |
| 1628 | max->cur = ilk_cursor_wm_reg_max(dev, level); |
| 1629 | max->fbc = ilk_fbc_wm_reg_max(dev); |
| 1630 | } |
| 1631 | |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 1632 | static bool ilk_validate_wm_level(int level, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1633 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 1634 | struct intel_wm_level *result) |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 1635 | { |
| 1636 | bool ret; |
| 1637 | |
| 1638 | /* already determined to be invalid? */ |
| 1639 | if (!result->enable) |
| 1640 | return false; |
| 1641 | |
| 1642 | result->enable = result->pri_val <= max->pri && |
| 1643 | result->spr_val <= max->spr && |
| 1644 | result->cur_val <= max->cur; |
| 1645 | |
| 1646 | ret = result->enable; |
| 1647 | |
| 1648 | /* |
| 1649 | * HACK until we can pre-compute everything, |
| 1650 | * and thus fail gracefully if LP0 watermarks |
| 1651 | * are exceeded... |
| 1652 | */ |
| 1653 | if (level == 0 && !result->enable) { |
| 1654 | if (result->pri_val > max->pri) |
| 1655 | DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n", |
| 1656 | level, result->pri_val, max->pri); |
| 1657 | if (result->spr_val > max->spr) |
| 1658 | DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n", |
| 1659 | level, result->spr_val, max->spr); |
| 1660 | if (result->cur_val > max->cur) |
| 1661 | DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n", |
| 1662 | level, result->cur_val, max->cur); |
| 1663 | |
| 1664 | result->pri_val = min_t(uint32_t, result->pri_val, max->pri); |
| 1665 | result->spr_val = min_t(uint32_t, result->spr_val, max->spr); |
| 1666 | result->cur_val = min_t(uint32_t, result->cur_val, max->cur); |
| 1667 | result->enable = true; |
| 1668 | } |
| 1669 | |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 1670 | return ret; |
| 1671 | } |
| 1672 | |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 1673 | static void ilk_compute_wm_level(const struct drm_i915_private *dev_priv, |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 1674 | int level, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1675 | const struct ilk_pipe_wm_parameters *p, |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 1676 | struct intel_wm_level *result) |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 1677 | { |
| 1678 | uint16_t pri_latency = dev_priv->wm.pri_latency[level]; |
| 1679 | uint16_t spr_latency = dev_priv->wm.spr_latency[level]; |
| 1680 | uint16_t cur_latency = dev_priv->wm.cur_latency[level]; |
| 1681 | |
| 1682 | /* WM1+ latency values stored in 0.5us units */ |
| 1683 | if (level > 0) { |
| 1684 | pri_latency *= 5; |
| 1685 | spr_latency *= 5; |
| 1686 | cur_latency *= 5; |
| 1687 | } |
| 1688 | |
| 1689 | result->pri_val = ilk_compute_pri_wm(p, pri_latency, level); |
| 1690 | result->spr_val = ilk_compute_spr_wm(p, spr_latency); |
| 1691 | result->cur_val = ilk_compute_cur_wm(p, cur_latency); |
| 1692 | result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val); |
| 1693 | result->enable = true; |
| 1694 | } |
| 1695 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1696 | static uint32_t |
| 1697 | hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc) |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 1698 | { |
| 1699 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 1700 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1701 | struct drm_display_mode *mode = &intel_crtc->config->base.adjusted_mode; |
Paulo Zanoni | 85a02de | 2013-05-03 17:23:43 -0300 | [diff] [blame] | 1702 | u32 linetime, ips_linetime; |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 1703 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1704 | if (!intel_crtc_active(crtc)) |
| 1705 | return 0; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 1706 | |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 1707 | /* The WM are computed with base on how long it takes to fill a single |
| 1708 | * row at the given clock rate, multiplied by 8. |
| 1709 | * */ |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1710 | linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8, |
| 1711 | mode->crtc_clock); |
| 1712 | ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8, |
Paulo Zanoni | 85a02de | 2013-05-03 17:23:43 -0300 | [diff] [blame] | 1713 | intel_ddi_get_cdclk_freq(dev_priv)); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 1714 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1715 | return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) | |
| 1716 | PIPE_WM_LINETIME_TIME(linetime); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 1717 | } |
| 1718 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1719 | static void intel_read_wm_latency(struct drm_device *dev, uint16_t wm[8]) |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 1720 | { |
| 1721 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1722 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1723 | if (IS_GEN9(dev)) { |
| 1724 | uint32_t val; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 1725 | int ret, i; |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 1726 | int level, max_level = ilk_wm_max_level(dev); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1727 | |
| 1728 | /* read the first set of memory latencies[0:3] */ |
| 1729 | val = 0; /* data0 to be programmed to 0 for first set */ |
| 1730 | mutex_lock(&dev_priv->rps.hw_lock); |
| 1731 | ret = sandybridge_pcode_read(dev_priv, |
| 1732 | GEN9_PCODE_READ_MEM_LATENCY, |
| 1733 | &val); |
| 1734 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 1735 | |
| 1736 | if (ret) { |
| 1737 | DRM_ERROR("SKL Mailbox read error = %d\n", ret); |
| 1738 | return; |
| 1739 | } |
| 1740 | |
| 1741 | wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1742 | wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 1743 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1744 | wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 1745 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1746 | wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 1747 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1748 | |
| 1749 | /* read the second set of memory latencies[4:7] */ |
| 1750 | val = 1; /* data0 to be programmed to 1 for second set */ |
| 1751 | mutex_lock(&dev_priv->rps.hw_lock); |
| 1752 | ret = sandybridge_pcode_read(dev_priv, |
| 1753 | GEN9_PCODE_READ_MEM_LATENCY, |
| 1754 | &val); |
| 1755 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 1756 | if (ret) { |
| 1757 | DRM_ERROR("SKL Mailbox read error = %d\n", ret); |
| 1758 | return; |
| 1759 | } |
| 1760 | |
| 1761 | wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1762 | wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 1763 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1764 | wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 1765 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1766 | wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 1767 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 1768 | |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 1769 | /* |
Damien Lespiau | 6f97235 | 2015-02-09 19:33:07 +0000 | [diff] [blame] | 1770 | * WaWmMemoryReadLatency:skl |
| 1771 | * |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 1772 | * punit doesn't take into account the read latency so we need |
| 1773 | * to add 2us to the various latency levels we retrieve from |
| 1774 | * the punit. |
| 1775 | * - W0 is a bit special in that it's the only level that |
| 1776 | * can't be disabled if we want to have display working, so |
| 1777 | * we always add 2us there. |
| 1778 | * - For levels >=1, punit returns 0us latency when they are |
| 1779 | * disabled, so we respect that and don't add 2us then |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 1780 | * |
| 1781 | * Additionally, if a level n (n > 1) has a 0us latency, all |
| 1782 | * levels m (m >= n) need to be disabled. We make sure to |
| 1783 | * sanitize the values out of the punit to satisfy this |
| 1784 | * requirement. |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 1785 | */ |
| 1786 | wm[0] += 2; |
| 1787 | for (level = 1; level <= max_level; level++) |
| 1788 | if (wm[level] != 0) |
| 1789 | wm[level] += 2; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 1790 | else { |
| 1791 | for (i = level + 1; i <= max_level; i++) |
| 1792 | wm[i] = 0; |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 1793 | |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 1794 | break; |
| 1795 | } |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1796 | } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 1797 | uint64_t sskpd = I915_READ64(MCH_SSKPD); |
| 1798 | |
| 1799 | wm[0] = (sskpd >> 56) & 0xFF; |
| 1800 | if (wm[0] == 0) |
| 1801 | wm[0] = sskpd & 0xF; |
Ville Syrjälä | e5d5019 | 2013-07-05 11:57:22 +0300 | [diff] [blame] | 1802 | wm[1] = (sskpd >> 4) & 0xFF; |
| 1803 | wm[2] = (sskpd >> 12) & 0xFF; |
| 1804 | wm[3] = (sskpd >> 20) & 0x1FF; |
| 1805 | wm[4] = (sskpd >> 32) & 0x1FF; |
Ville Syrjälä | 63cf9a1 | 2013-07-05 11:57:23 +0300 | [diff] [blame] | 1806 | } else if (INTEL_INFO(dev)->gen >= 6) { |
| 1807 | uint32_t sskpd = I915_READ(MCH_SSKPD); |
| 1808 | |
| 1809 | wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK; |
| 1810 | wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK; |
| 1811 | wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK; |
| 1812 | wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK; |
Ville Syrjälä | 3a88d0a | 2013-08-01 16:18:49 +0300 | [diff] [blame] | 1813 | } else if (INTEL_INFO(dev)->gen >= 5) { |
| 1814 | uint32_t mltr = I915_READ(MLTR_ILK); |
| 1815 | |
| 1816 | /* ILK primary LP0 latency is 700 ns */ |
| 1817 | wm[0] = 7; |
| 1818 | wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK; |
| 1819 | wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK; |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 1820 | } |
| 1821 | } |
| 1822 | |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 1823 | static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5]) |
| 1824 | { |
| 1825 | /* ILK sprite LP0 latency is 1300 ns */ |
| 1826 | if (INTEL_INFO(dev)->gen == 5) |
| 1827 | wm[0] = 13; |
| 1828 | } |
| 1829 | |
| 1830 | static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5]) |
| 1831 | { |
| 1832 | /* ILK cursor LP0 latency is 1300 ns */ |
| 1833 | if (INTEL_INFO(dev)->gen == 5) |
| 1834 | wm[0] = 13; |
| 1835 | |
| 1836 | /* WaDoubleCursorLP3Latency:ivb */ |
| 1837 | if (IS_IVYBRIDGE(dev)) |
| 1838 | wm[3] *= 2; |
| 1839 | } |
| 1840 | |
Damien Lespiau | 546c81f | 2014-05-13 15:30:26 +0100 | [diff] [blame] | 1841 | int ilk_wm_max_level(const struct drm_device *dev) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 1842 | { |
| 1843 | /* how many WM levels are we expecting */ |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1844 | if (IS_GEN9(dev)) |
| 1845 | return 7; |
| 1846 | else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 1847 | return 4; |
| 1848 | else if (INTEL_INFO(dev)->gen >= 6) |
| 1849 | return 3; |
| 1850 | else |
| 1851 | return 2; |
| 1852 | } |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 1853 | |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 1854 | static void intel_print_wm_latency(struct drm_device *dev, |
| 1855 | const char *name, |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1856 | const uint16_t wm[8]) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 1857 | { |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 1858 | int level, max_level = ilk_wm_max_level(dev); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 1859 | |
| 1860 | for (level = 0; level <= max_level; level++) { |
| 1861 | unsigned int latency = wm[level]; |
| 1862 | |
| 1863 | if (latency == 0) { |
| 1864 | DRM_ERROR("%s WM%d latency not provided\n", |
| 1865 | name, level); |
| 1866 | continue; |
| 1867 | } |
| 1868 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1869 | /* |
| 1870 | * - latencies are in us on gen9. |
| 1871 | * - before then, WM1+ latency values are in 0.5us units |
| 1872 | */ |
| 1873 | if (IS_GEN9(dev)) |
| 1874 | latency *= 10; |
| 1875 | else if (level > 0) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 1876 | latency *= 5; |
| 1877 | |
| 1878 | DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n", |
| 1879 | name, level, wm[level], |
| 1880 | latency / 10, latency % 10); |
| 1881 | } |
| 1882 | } |
| 1883 | |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 1884 | static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv, |
| 1885 | uint16_t wm[5], uint16_t min) |
| 1886 | { |
| 1887 | int level, max_level = ilk_wm_max_level(dev_priv->dev); |
| 1888 | |
| 1889 | if (wm[0] >= min) |
| 1890 | return false; |
| 1891 | |
| 1892 | wm[0] = max(wm[0], min); |
| 1893 | for (level = 1; level <= max_level; level++) |
| 1894 | wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5)); |
| 1895 | |
| 1896 | return true; |
| 1897 | } |
| 1898 | |
| 1899 | static void snb_wm_latency_quirk(struct drm_device *dev) |
| 1900 | { |
| 1901 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1902 | bool changed; |
| 1903 | |
| 1904 | /* |
| 1905 | * The BIOS provided WM memory latency values are often |
| 1906 | * inadequate for high resolution displays. Adjust them. |
| 1907 | */ |
| 1908 | changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | |
| 1909 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) | |
| 1910 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12); |
| 1911 | |
| 1912 | if (!changed) |
| 1913 | return; |
| 1914 | |
| 1915 | DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n"); |
| 1916 | intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency); |
| 1917 | intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency); |
| 1918 | intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency); |
| 1919 | } |
| 1920 | |
Damien Lespiau | fa50ad6 | 2014-03-17 18:01:16 +0000 | [diff] [blame] | 1921 | static void ilk_setup_wm_latency(struct drm_device *dev) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 1922 | { |
| 1923 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1924 | |
| 1925 | intel_read_wm_latency(dev, dev_priv->wm.pri_latency); |
| 1926 | |
| 1927 | memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency, |
| 1928 | sizeof(dev_priv->wm.pri_latency)); |
| 1929 | memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency, |
| 1930 | sizeof(dev_priv->wm.pri_latency)); |
| 1931 | |
| 1932 | intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency); |
| 1933 | intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 1934 | |
| 1935 | intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency); |
| 1936 | intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency); |
| 1937 | intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 1938 | |
| 1939 | if (IS_GEN6(dev)) |
| 1940 | snb_wm_latency_quirk(dev); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 1941 | } |
| 1942 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 1943 | static void skl_setup_wm_latency(struct drm_device *dev) |
| 1944 | { |
| 1945 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1946 | |
| 1947 | intel_read_wm_latency(dev, dev_priv->wm.skl_latency); |
| 1948 | intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency); |
| 1949 | } |
| 1950 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1951 | static void ilk_compute_wm_parameters(struct drm_crtc *crtc, |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1952 | struct ilk_pipe_wm_parameters *p) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1953 | { |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 1954 | struct drm_device *dev = crtc->dev; |
| 1955 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1956 | enum pipe pipe = intel_crtc->pipe; |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 1957 | struct drm_plane *plane; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1958 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1959 | if (!intel_crtc_active(crtc)) |
| 1960 | return; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1961 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1962 | p->active = true; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1963 | p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1964 | p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc); |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 1965 | p->pri.bytes_per_pixel = crtc->primary->state->fb->bits_per_pixel / 8; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1966 | p->cur.bytes_per_pixel = 4; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 1967 | p->pri.horiz_pixels = intel_crtc->config->pipe_src_w; |
Matt Roper | 3dd512f | 2015-02-27 10:12:00 -0800 | [diff] [blame] | 1968 | p->cur.horiz_pixels = intel_crtc->base.cursor->state->crtc_w; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1969 | /* TODO: for now, assume primary and cursor planes are always enabled. */ |
| 1970 | p->pri.enabled = true; |
| 1971 | p->cur.enabled = true; |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 1972 | |
Matt Roper | af2b653 | 2014-04-01 15:22:32 -0700 | [diff] [blame] | 1973 | drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) { |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1974 | struct intel_plane *intel_plane = to_intel_plane(plane); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1975 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1976 | if (intel_plane->pipe == pipe) { |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 1977 | p->spr = intel_plane->wm; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1978 | break; |
| 1979 | } |
| 1980 | } |
| 1981 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1982 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1983 | static void ilk_compute_wm_config(struct drm_device *dev, |
| 1984 | struct intel_wm_config *config) |
| 1985 | { |
| 1986 | struct intel_crtc *intel_crtc; |
| 1987 | |
| 1988 | /* Compute the currently _active_ config */ |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 1989 | for_each_intel_crtc(dev, intel_crtc) { |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 1990 | const struct intel_pipe_wm *wm = &intel_crtc->wm.active; |
| 1991 | |
| 1992 | if (!wm->pipe_enabled) |
| 1993 | continue; |
| 1994 | |
| 1995 | config->sprites_enabled |= wm->sprites_enabled; |
| 1996 | config->sprites_scaled |= wm->sprites_scaled; |
| 1997 | config->num_pipes_active++; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1998 | } |
| 1999 | } |
| 2000 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2001 | /* Compute new watermarks for the pipe */ |
| 2002 | static bool intel_compute_pipe_wm(struct drm_crtc *crtc, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2003 | const struct ilk_pipe_wm_parameters *params, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2004 | struct intel_pipe_wm *pipe_wm) |
| 2005 | { |
| 2006 | struct drm_device *dev = crtc->dev; |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 2007 | const struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2008 | int level, max_level = ilk_wm_max_level(dev); |
| 2009 | /* LP0 watermark maximums depend on this pipe alone */ |
| 2010 | struct intel_wm_config config = { |
| 2011 | .num_pipes_active = 1, |
| 2012 | .sprites_enabled = params->spr.enabled, |
| 2013 | .sprites_scaled = params->spr.scaled, |
| 2014 | }; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2015 | struct ilk_wm_maximums max; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2016 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2017 | pipe_wm->pipe_enabled = params->active; |
| 2018 | pipe_wm->sprites_enabled = params->spr.enabled; |
| 2019 | pipe_wm->sprites_scaled = params->spr.scaled; |
| 2020 | |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 2021 | /* ILK/SNB: LP2+ watermarks only w/o sprites */ |
| 2022 | if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled) |
| 2023 | max_level = 1; |
| 2024 | |
| 2025 | /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */ |
| 2026 | if (params->spr.scaled) |
| 2027 | max_level = 0; |
| 2028 | |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2029 | ilk_compute_wm_level(dev_priv, 0, params, &pipe_wm->wm[0]); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2030 | |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 2031 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ce0e071 | 2013-12-05 15:51:36 +0200 | [diff] [blame] | 2032 | pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2033 | |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2034 | /* LP0 watermarks always use 1/2 DDB partitioning */ |
| 2035 | ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max); |
| 2036 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2037 | /* At least LP0 must be valid */ |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2038 | if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) |
| 2039 | return false; |
| 2040 | |
| 2041 | ilk_compute_wm_reg_maximums(dev, 1, &max); |
| 2042 | |
| 2043 | for (level = 1; level <= max_level; level++) { |
| 2044 | struct intel_wm_level wm = {}; |
| 2045 | |
| 2046 | ilk_compute_wm_level(dev_priv, level, params, &wm); |
| 2047 | |
| 2048 | /* |
| 2049 | * Disable any watermark level that exceeds the |
| 2050 | * register maximums since such watermarks are |
| 2051 | * always invalid. |
| 2052 | */ |
| 2053 | if (!ilk_validate_wm_level(level, &max, &wm)) |
| 2054 | break; |
| 2055 | |
| 2056 | pipe_wm->wm[level] = wm; |
| 2057 | } |
| 2058 | |
| 2059 | return true; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2060 | } |
| 2061 | |
| 2062 | /* |
| 2063 | * Merge the watermarks from all active pipes for a specific level. |
| 2064 | */ |
| 2065 | static void ilk_merge_wm_level(struct drm_device *dev, |
| 2066 | int level, |
| 2067 | struct intel_wm_level *ret_wm) |
| 2068 | { |
| 2069 | const struct intel_crtc *intel_crtc; |
| 2070 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2071 | ret_wm->enable = true; |
| 2072 | |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 2073 | for_each_intel_crtc(dev, intel_crtc) { |
Ville Syrjälä | fe392ef | 2014-03-07 18:32:10 +0200 | [diff] [blame] | 2074 | const struct intel_pipe_wm *active = &intel_crtc->wm.active; |
| 2075 | const struct intel_wm_level *wm = &active->wm[level]; |
| 2076 | |
| 2077 | if (!active->pipe_enabled) |
| 2078 | continue; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2079 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2080 | /* |
| 2081 | * The watermark values may have been used in the past, |
| 2082 | * so we must maintain them in the registers for some |
| 2083 | * time even if the level is now disabled. |
| 2084 | */ |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2085 | if (!wm->enable) |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2086 | ret_wm->enable = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2087 | |
| 2088 | ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val); |
| 2089 | ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val); |
| 2090 | ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val); |
| 2091 | ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val); |
| 2092 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2093 | } |
| 2094 | |
| 2095 | /* |
| 2096 | * Merge all low power watermarks for all active pipes. |
| 2097 | */ |
| 2098 | static void ilk_wm_merge(struct drm_device *dev, |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 2099 | const struct intel_wm_config *config, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2100 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2101 | struct intel_pipe_wm *merged) |
| 2102 | { |
| 2103 | int level, max_level = ilk_wm_max_level(dev); |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2104 | int last_enabled_level = max_level; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2105 | |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 2106 | /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */ |
| 2107 | if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) && |
| 2108 | config->num_pipes_active > 1) |
| 2109 | return; |
| 2110 | |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 2111 | /* ILK: FBC WM must be disabled always */ |
| 2112 | merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2113 | |
| 2114 | /* merge each WM1+ level */ |
| 2115 | for (level = 1; level <= max_level; level++) { |
| 2116 | struct intel_wm_level *wm = &merged->wm[level]; |
| 2117 | |
| 2118 | ilk_merge_wm_level(dev, level, wm); |
| 2119 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2120 | if (level > last_enabled_level) |
| 2121 | wm->enable = false; |
| 2122 | else if (!ilk_validate_wm_level(level, max, wm)) |
| 2123 | /* make sure all following levels get disabled */ |
| 2124 | last_enabled_level = level - 1; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2125 | |
| 2126 | /* |
| 2127 | * The spec says it is preferred to disable |
| 2128 | * FBC WMs instead of disabling a WM level. |
| 2129 | */ |
| 2130 | if (wm->fbc_val > max->fbc) { |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2131 | if (wm->enable) |
| 2132 | merged->fbc_wm_enabled = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2133 | wm->fbc_val = 0; |
| 2134 | } |
| 2135 | } |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 2136 | |
| 2137 | /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */ |
| 2138 | /* |
| 2139 | * FIXME this is racy. FBC might get enabled later. |
| 2140 | * What we should check here is whether FBC can be |
| 2141 | * enabled sometime later. |
| 2142 | */ |
| 2143 | if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) { |
| 2144 | for (level = 2; level <= max_level; level++) { |
| 2145 | struct intel_wm_level *wm = &merged->wm[level]; |
| 2146 | |
| 2147 | wm->enable = false; |
| 2148 | } |
| 2149 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2150 | } |
| 2151 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 2152 | static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm) |
| 2153 | { |
| 2154 | /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */ |
| 2155 | return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable); |
| 2156 | } |
| 2157 | |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 2158 | /* The value we need to program into the WM_LPx latency field */ |
| 2159 | static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level) |
| 2160 | { |
| 2161 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2162 | |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 2163 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 2164 | return 2 * level; |
| 2165 | else |
| 2166 | return dev_priv->wm.pri_latency[level]; |
| 2167 | } |
| 2168 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2169 | static void ilk_compute_wm_results(struct drm_device *dev, |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 2170 | const struct intel_pipe_wm *merged, |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 2171 | enum intel_ddb_partitioning partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2172 | struct ilk_wm_values *results) |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2173 | { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2174 | struct intel_crtc *intel_crtc; |
| 2175 | int level, wm_lp; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2176 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 2177 | results->enable_fbc_wm = merged->fbc_wm_enabled; |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 2178 | results->partitioning = partitioning; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2179 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2180 | /* LP1+ register values */ |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2181 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 2182 | const struct intel_wm_level *r; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2183 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 2184 | level = ilk_wm_lp_to_level(wm_lp, merged); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2185 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 2186 | r = &merged->wm[level]; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2187 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2188 | /* |
| 2189 | * Maintain the watermark values even if the level is |
| 2190 | * disabled. Doing otherwise could cause underruns. |
| 2191 | */ |
| 2192 | results->wm_lp[wm_lp - 1] = |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 2193 | (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) | |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2194 | (r->pri_val << WM1_LP_SR_SHIFT) | |
| 2195 | r->cur_val; |
| 2196 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2197 | if (r->enable) |
| 2198 | results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN; |
| 2199 | |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2200 | if (INTEL_INFO(dev)->gen >= 8) |
| 2201 | results->wm_lp[wm_lp - 1] |= |
| 2202 | r->fbc_val << WM1_LP_FBC_SHIFT_BDW; |
| 2203 | else |
| 2204 | results->wm_lp[wm_lp - 1] |= |
| 2205 | r->fbc_val << WM1_LP_FBC_SHIFT; |
| 2206 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2207 | /* |
| 2208 | * Always set WM1S_LP_EN when spr_val != 0, even if the |
| 2209 | * level is disabled. Doing otherwise could cause underruns. |
| 2210 | */ |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 2211 | if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) { |
| 2212 | WARN_ON(wm_lp != 1); |
| 2213 | results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val; |
| 2214 | } else |
| 2215 | results->wm_lp_spr[wm_lp - 1] = r->spr_val; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2216 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2217 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2218 | /* LP0 register values */ |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 2219 | for_each_intel_crtc(dev, intel_crtc) { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2220 | enum pipe pipe = intel_crtc->pipe; |
| 2221 | const struct intel_wm_level *r = |
| 2222 | &intel_crtc->wm.active.wm[0]; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2223 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2224 | if (WARN_ON(!r->enable)) |
| 2225 | continue; |
| 2226 | |
| 2227 | results->wm_linetime[pipe] = intel_crtc->wm.active.linetime; |
| 2228 | |
| 2229 | results->wm_pipe[pipe] = |
| 2230 | (r->pri_val << WM0_PIPE_PLANE_SHIFT) | |
| 2231 | (r->spr_val << WM0_PIPE_SPRITE_SHIFT) | |
| 2232 | r->cur_val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2233 | } |
| 2234 | } |
| 2235 | |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2236 | /* Find the result with the highest level enabled. Check for enable_fbc_wm in |
| 2237 | * case both are at the same level. Prefer r1 in case they're the same. */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2238 | static struct intel_pipe_wm *ilk_find_best_result(struct drm_device *dev, |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2239 | struct intel_pipe_wm *r1, |
| 2240 | struct intel_pipe_wm *r2) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2241 | { |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2242 | int level, max_level = ilk_wm_max_level(dev); |
| 2243 | int level1 = 0, level2 = 0; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2244 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2245 | for (level = 1; level <= max_level; level++) { |
| 2246 | if (r1->wm[level].enable) |
| 2247 | level1 = level; |
| 2248 | if (r2->wm[level].enable) |
| 2249 | level2 = level; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2250 | } |
| 2251 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2252 | if (level1 == level2) { |
| 2253 | if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2254 | return r2; |
| 2255 | else |
| 2256 | return r1; |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2257 | } else if (level1 > level2) { |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2258 | return r1; |
| 2259 | } else { |
| 2260 | return r2; |
| 2261 | } |
| 2262 | } |
| 2263 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2264 | /* dirty bits used to track which watermarks need changes */ |
| 2265 | #define WM_DIRTY_PIPE(pipe) (1 << (pipe)) |
| 2266 | #define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe))) |
| 2267 | #define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp))) |
| 2268 | #define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3)) |
| 2269 | #define WM_DIRTY_FBC (1 << 24) |
| 2270 | #define WM_DIRTY_DDB (1 << 25) |
| 2271 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2272 | 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] | 2273 | const struct ilk_wm_values *old, |
| 2274 | const struct ilk_wm_values *new) |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2275 | { |
| 2276 | unsigned int dirty = 0; |
| 2277 | enum pipe pipe; |
| 2278 | int wm_lp; |
| 2279 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2280 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2281 | if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) { |
| 2282 | dirty |= WM_DIRTY_LINETIME(pipe); |
| 2283 | /* Must disable LP1+ watermarks too */ |
| 2284 | dirty |= WM_DIRTY_LP_ALL; |
| 2285 | } |
| 2286 | |
| 2287 | if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) { |
| 2288 | dirty |= WM_DIRTY_PIPE(pipe); |
| 2289 | /* Must disable LP1+ watermarks too */ |
| 2290 | dirty |= WM_DIRTY_LP_ALL; |
| 2291 | } |
| 2292 | } |
| 2293 | |
| 2294 | if (old->enable_fbc_wm != new->enable_fbc_wm) { |
| 2295 | dirty |= WM_DIRTY_FBC; |
| 2296 | /* Must disable LP1+ watermarks too */ |
| 2297 | dirty |= WM_DIRTY_LP_ALL; |
| 2298 | } |
| 2299 | |
| 2300 | if (old->partitioning != new->partitioning) { |
| 2301 | dirty |= WM_DIRTY_DDB; |
| 2302 | /* Must disable LP1+ watermarks too */ |
| 2303 | dirty |= WM_DIRTY_LP_ALL; |
| 2304 | } |
| 2305 | |
| 2306 | /* LP1+ watermarks already deemed dirty, no need to continue */ |
| 2307 | if (dirty & WM_DIRTY_LP_ALL) |
| 2308 | return dirty; |
| 2309 | |
| 2310 | /* Find the lowest numbered LP1+ watermark in need of an update... */ |
| 2311 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
| 2312 | if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] || |
| 2313 | old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1]) |
| 2314 | break; |
| 2315 | } |
| 2316 | |
| 2317 | /* ...and mark it and all higher numbered LP1+ watermarks as dirty */ |
| 2318 | for (; wm_lp <= 3; wm_lp++) |
| 2319 | dirty |= WM_DIRTY_LP(wm_lp); |
| 2320 | |
| 2321 | return dirty; |
| 2322 | } |
| 2323 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2324 | static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv, |
| 2325 | unsigned int dirty) |
| 2326 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2327 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2328 | bool changed = false; |
| 2329 | |
| 2330 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) { |
| 2331 | previous->wm_lp[2] &= ~WM1_LP_SR_EN; |
| 2332 | I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]); |
| 2333 | changed = true; |
| 2334 | } |
| 2335 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) { |
| 2336 | previous->wm_lp[1] &= ~WM1_LP_SR_EN; |
| 2337 | I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]); |
| 2338 | changed = true; |
| 2339 | } |
| 2340 | if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) { |
| 2341 | previous->wm_lp[0] &= ~WM1_LP_SR_EN; |
| 2342 | I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]); |
| 2343 | changed = true; |
| 2344 | } |
| 2345 | |
| 2346 | /* |
| 2347 | * Don't touch WM1S_LP_EN here. |
| 2348 | * Doing so could cause underruns. |
| 2349 | */ |
| 2350 | |
| 2351 | return changed; |
| 2352 | } |
| 2353 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2354 | /* |
| 2355 | * The spec says we shouldn't write when we don't need, because every write |
| 2356 | * causes WMs to be re-evaluated, expending some power. |
| 2357 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2358 | static void ilk_write_wm_values(struct drm_i915_private *dev_priv, |
| 2359 | struct ilk_wm_values *results) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2360 | { |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 2361 | struct drm_device *dev = dev_priv->dev; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2362 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2363 | unsigned int dirty; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2364 | uint32_t val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2365 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2366 | dirty = ilk_compute_wm_dirty(dev_priv, previous, results); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2367 | if (!dirty) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2368 | return; |
| 2369 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2370 | _ilk_disable_lp_wm(dev_priv, dirty); |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 2371 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2372 | if (dirty & WM_DIRTY_PIPE(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2373 | I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2374 | if (dirty & WM_DIRTY_PIPE(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2375 | I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2376 | if (dirty & WM_DIRTY_PIPE(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2377 | I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]); |
| 2378 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2379 | if (dirty & WM_DIRTY_LINETIME(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2380 | I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2381 | if (dirty & WM_DIRTY_LINETIME(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2382 | I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2383 | if (dirty & WM_DIRTY_LINETIME(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2384 | I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]); |
| 2385 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2386 | if (dirty & WM_DIRTY_DDB) { |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 2387 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 2388 | val = I915_READ(WM_MISC); |
| 2389 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 2390 | val &= ~WM_MISC_DATA_PARTITION_5_6; |
| 2391 | else |
| 2392 | val |= WM_MISC_DATA_PARTITION_5_6; |
| 2393 | I915_WRITE(WM_MISC, val); |
| 2394 | } else { |
| 2395 | val = I915_READ(DISP_ARB_CTL2); |
| 2396 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 2397 | val &= ~DISP_DATA_PARTITION_5_6; |
| 2398 | else |
| 2399 | val |= DISP_DATA_PARTITION_5_6; |
| 2400 | I915_WRITE(DISP_ARB_CTL2, val); |
| 2401 | } |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2402 | } |
| 2403 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2404 | if (dirty & WM_DIRTY_FBC) { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2405 | val = I915_READ(DISP_ARB_CTL); |
| 2406 | if (results->enable_fbc_wm) |
| 2407 | val &= ~DISP_FBC_WM_DIS; |
| 2408 | else |
| 2409 | val |= DISP_FBC_WM_DIS; |
| 2410 | I915_WRITE(DISP_ARB_CTL, val); |
| 2411 | } |
| 2412 | |
Imre Deak | 954911e | 2013-12-17 14:46:34 +0200 | [diff] [blame] | 2413 | if (dirty & WM_DIRTY_LP(1) && |
| 2414 | previous->wm_lp_spr[0] != results->wm_lp_spr[0]) |
| 2415 | I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]); |
| 2416 | |
| 2417 | if (INTEL_INFO(dev)->gen >= 7) { |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 2418 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1]) |
| 2419 | I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]); |
| 2420 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2]) |
| 2421 | I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]); |
| 2422 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2423 | |
Ville Syrjälä | facd619 | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 2424 | 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] | 2425 | I915_WRITE(WM1_LP_ILK, results->wm_lp[0]); |
Ville Syrjälä | facd619 | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 2426 | 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] | 2427 | I915_WRITE(WM2_LP_ILK, results->wm_lp[1]); |
Ville Syrjälä | facd619 | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 2428 | 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] | 2429 | I915_WRITE(WM3_LP_ILK, results->wm_lp[2]); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 2430 | |
| 2431 | dev_priv->wm.hw = *results; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2432 | } |
| 2433 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2434 | static bool ilk_disable_lp_wm(struct drm_device *dev) |
| 2435 | { |
| 2436 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2437 | |
| 2438 | return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL); |
| 2439 | } |
| 2440 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2441 | /* |
| 2442 | * On gen9, we need to allocate Display Data Buffer (DDB) portions to the |
| 2443 | * different active planes. |
| 2444 | */ |
| 2445 | |
| 2446 | #define SKL_DDB_SIZE 896 /* in blocks */ |
| 2447 | |
| 2448 | static void |
| 2449 | skl_ddb_get_pipe_allocation_limits(struct drm_device *dev, |
| 2450 | struct drm_crtc *for_crtc, |
| 2451 | const struct intel_wm_config *config, |
| 2452 | const struct skl_pipe_wm_parameters *params, |
| 2453 | struct skl_ddb_entry *alloc /* out */) |
| 2454 | { |
| 2455 | struct drm_crtc *crtc; |
| 2456 | unsigned int pipe_size, ddb_size; |
| 2457 | int nth_active_pipe; |
| 2458 | |
| 2459 | if (!params->active) { |
| 2460 | alloc->start = 0; |
| 2461 | alloc->end = 0; |
| 2462 | return; |
| 2463 | } |
| 2464 | |
| 2465 | ddb_size = SKL_DDB_SIZE; |
| 2466 | |
| 2467 | ddb_size -= 4; /* 4 blocks for bypass path allocation */ |
| 2468 | |
| 2469 | nth_active_pipe = 0; |
| 2470 | for_each_crtc(dev, crtc) { |
| 2471 | if (!intel_crtc_active(crtc)) |
| 2472 | continue; |
| 2473 | |
| 2474 | if (crtc == for_crtc) |
| 2475 | break; |
| 2476 | |
| 2477 | nth_active_pipe++; |
| 2478 | } |
| 2479 | |
| 2480 | pipe_size = ddb_size / config->num_pipes_active; |
| 2481 | alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active; |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 2482 | alloc->end = alloc->start + pipe_size; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2483 | } |
| 2484 | |
| 2485 | static unsigned int skl_cursor_allocation(const struct intel_wm_config *config) |
| 2486 | { |
| 2487 | if (config->num_pipes_active == 1) |
| 2488 | return 32; |
| 2489 | |
| 2490 | return 8; |
| 2491 | } |
| 2492 | |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 2493 | static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg) |
| 2494 | { |
| 2495 | entry->start = reg & 0x3ff; |
| 2496 | entry->end = (reg >> 16) & 0x3ff; |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 2497 | if (entry->end) |
| 2498 | entry->end += 1; |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 2499 | } |
| 2500 | |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 2501 | void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv, |
| 2502 | struct skl_ddb_allocation *ddb /* out */) |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 2503 | { |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 2504 | enum pipe pipe; |
| 2505 | int plane; |
| 2506 | u32 val; |
| 2507 | |
| 2508 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | dd74078 | 2015-02-28 14:54:08 +0000 | [diff] [blame] | 2509 | for_each_plane(dev_priv, pipe, plane) { |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 2510 | val = I915_READ(PLANE_BUF_CFG(pipe, plane)); |
| 2511 | skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane], |
| 2512 | val); |
| 2513 | } |
| 2514 | |
| 2515 | val = I915_READ(CUR_BUF_CFG(pipe)); |
| 2516 | skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val); |
| 2517 | } |
| 2518 | } |
| 2519 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2520 | static unsigned int |
| 2521 | skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p) |
| 2522 | { |
| 2523 | return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel; |
| 2524 | } |
| 2525 | |
| 2526 | /* |
| 2527 | * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching |
| 2528 | * a 8192x4096@32bpp framebuffer: |
| 2529 | * 3 * 4096 * 8192 * 4 < 2^32 |
| 2530 | */ |
| 2531 | static unsigned int |
| 2532 | skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc, |
| 2533 | const struct skl_pipe_wm_parameters *params) |
| 2534 | { |
| 2535 | unsigned int total_data_rate = 0; |
| 2536 | int plane; |
| 2537 | |
| 2538 | for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) { |
| 2539 | const struct intel_plane_wm_parameters *p; |
| 2540 | |
| 2541 | p = ¶ms->plane[plane]; |
| 2542 | if (!p->enabled) |
| 2543 | continue; |
| 2544 | |
| 2545 | total_data_rate += skl_plane_relative_data_rate(p); |
| 2546 | } |
| 2547 | |
| 2548 | return total_data_rate; |
| 2549 | } |
| 2550 | |
| 2551 | static void |
| 2552 | skl_allocate_pipe_ddb(struct drm_crtc *crtc, |
| 2553 | const struct intel_wm_config *config, |
| 2554 | const struct skl_pipe_wm_parameters *params, |
| 2555 | struct skl_ddb_allocation *ddb /* out */) |
| 2556 | { |
| 2557 | struct drm_device *dev = crtc->dev; |
Damien Lespiau | dd74078 | 2015-02-28 14:54:08 +0000 | [diff] [blame] | 2558 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2559 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2560 | enum pipe pipe = intel_crtc->pipe; |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 2561 | struct skl_ddb_entry *alloc = &ddb->pipe[pipe]; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2562 | uint16_t alloc_size, start, cursor_blocks; |
Damien Lespiau | 8095815 | 2015-02-09 13:35:10 +0000 | [diff] [blame] | 2563 | uint16_t minimum[I915_MAX_PLANES]; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2564 | unsigned int total_data_rate; |
| 2565 | int plane; |
| 2566 | |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 2567 | skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc); |
| 2568 | alloc_size = skl_ddb_entry_size(alloc); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2569 | if (alloc_size == 0) { |
| 2570 | memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe])); |
| 2571 | memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe])); |
| 2572 | return; |
| 2573 | } |
| 2574 | |
| 2575 | cursor_blocks = skl_cursor_allocation(config); |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 2576 | ddb->cursor[pipe].start = alloc->end - cursor_blocks; |
| 2577 | ddb->cursor[pipe].end = alloc->end; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2578 | |
| 2579 | alloc_size -= cursor_blocks; |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 2580 | alloc->end -= cursor_blocks; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2581 | |
Damien Lespiau | 8095815 | 2015-02-09 13:35:10 +0000 | [diff] [blame] | 2582 | /* 1. Allocate the mininum required blocks for each active plane */ |
Damien Lespiau | dd74078 | 2015-02-28 14:54:08 +0000 | [diff] [blame] | 2583 | for_each_plane(dev_priv, pipe, plane) { |
Damien Lespiau | 8095815 | 2015-02-09 13:35:10 +0000 | [diff] [blame] | 2584 | const struct intel_plane_wm_parameters *p; |
| 2585 | |
| 2586 | p = ¶ms->plane[plane]; |
| 2587 | if (!p->enabled) |
| 2588 | continue; |
| 2589 | |
| 2590 | minimum[plane] = 8; |
| 2591 | alloc_size -= minimum[plane]; |
| 2592 | } |
| 2593 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2594 | /* |
Damien Lespiau | 8095815 | 2015-02-09 13:35:10 +0000 | [diff] [blame] | 2595 | * 2. Distribute the remaining space in proportion to the amount of |
| 2596 | * data each plane needs to fetch from memory. |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2597 | * |
| 2598 | * FIXME: we may not allocate every single block here. |
| 2599 | */ |
| 2600 | total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params); |
| 2601 | |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 2602 | start = alloc->start; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2603 | for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) { |
| 2604 | const struct intel_plane_wm_parameters *p; |
| 2605 | unsigned int data_rate; |
| 2606 | uint16_t plane_blocks; |
| 2607 | |
| 2608 | p = ¶ms->plane[plane]; |
| 2609 | if (!p->enabled) |
| 2610 | continue; |
| 2611 | |
| 2612 | data_rate = skl_plane_relative_data_rate(p); |
| 2613 | |
| 2614 | /* |
| 2615 | * promote the expression to 64 bits to avoid overflowing, the |
| 2616 | * result is < available as data_rate / total_data_rate < 1 |
| 2617 | */ |
Damien Lespiau | 8095815 | 2015-02-09 13:35:10 +0000 | [diff] [blame] | 2618 | plane_blocks = minimum[plane]; |
| 2619 | plane_blocks += div_u64((uint64_t)alloc_size * data_rate, |
| 2620 | total_data_rate); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2621 | |
| 2622 | ddb->plane[pipe][plane].start = start; |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 2623 | ddb->plane[pipe][plane].end = start + plane_blocks; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 2624 | |
| 2625 | start += plane_blocks; |
| 2626 | } |
| 2627 | |
| 2628 | } |
| 2629 | |
Ander Conselvan de Oliveira | 5cec258 | 2015-01-15 14:55:21 +0200 | [diff] [blame] | 2630 | static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_state *config) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2631 | { |
| 2632 | /* TODO: Take into account the scalers once we support them */ |
Ander Conselvan de Oliveira | 2d112de | 2015-01-15 14:55:22 +0200 | [diff] [blame] | 2633 | return config->base.adjusted_mode.crtc_clock; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2634 | } |
| 2635 | |
| 2636 | /* |
| 2637 | * The max latency should be 257 (max the punit can code is 255 and we add 2us |
| 2638 | * for the read latency) and bytes_per_pixel should always be <= 8, so that |
| 2639 | * should allow pixel_rate up to ~2 GHz which seems sufficient since max |
| 2640 | * 2xcdclk is 1350 MHz and the pixel rate should never exceed that. |
| 2641 | */ |
| 2642 | static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel, |
| 2643 | uint32_t latency) |
| 2644 | { |
| 2645 | uint32_t wm_intermediate_val, ret; |
| 2646 | |
| 2647 | if (latency == 0) |
| 2648 | return UINT_MAX; |
| 2649 | |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2650 | wm_intermediate_val = latency * pixel_rate * bytes_per_pixel / 512; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2651 | ret = DIV_ROUND_UP(wm_intermediate_val, 1000); |
| 2652 | |
| 2653 | return ret; |
| 2654 | } |
| 2655 | |
| 2656 | static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal, |
| 2657 | uint32_t horiz_pixels, uint8_t bytes_per_pixel, |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2658 | uint64_t tiling, uint32_t latency) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2659 | { |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2660 | uint32_t ret; |
| 2661 | uint32_t plane_bytes_per_line, plane_blocks_per_line; |
| 2662 | uint32_t wm_intermediate_val; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2663 | |
| 2664 | if (latency == 0) |
| 2665 | return UINT_MAX; |
| 2666 | |
| 2667 | plane_bytes_per_line = horiz_pixels * bytes_per_pixel; |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2668 | |
| 2669 | if (tiling == I915_FORMAT_MOD_Y_TILED || |
| 2670 | tiling == I915_FORMAT_MOD_Yf_TILED) { |
| 2671 | plane_bytes_per_line *= 4; |
| 2672 | plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); |
| 2673 | plane_blocks_per_line /= 4; |
| 2674 | } else { |
| 2675 | plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); |
| 2676 | } |
| 2677 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2678 | wm_intermediate_val = latency * pixel_rate; |
| 2679 | ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) * |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2680 | plane_blocks_per_line; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2681 | |
| 2682 | return ret; |
| 2683 | } |
| 2684 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2685 | static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb, |
| 2686 | const struct intel_crtc *intel_crtc) |
| 2687 | { |
| 2688 | struct drm_device *dev = intel_crtc->base.dev; |
| 2689 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2690 | const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb; |
| 2691 | enum pipe pipe = intel_crtc->pipe; |
| 2692 | |
| 2693 | if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe], |
| 2694 | sizeof(new_ddb->plane[pipe]))) |
| 2695 | return true; |
| 2696 | |
| 2697 | if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe], |
| 2698 | sizeof(new_ddb->cursor[pipe]))) |
| 2699 | return true; |
| 2700 | |
| 2701 | return false; |
| 2702 | } |
| 2703 | |
| 2704 | static void skl_compute_wm_global_parameters(struct drm_device *dev, |
| 2705 | struct intel_wm_config *config) |
| 2706 | { |
| 2707 | struct drm_crtc *crtc; |
| 2708 | struct drm_plane *plane; |
| 2709 | |
| 2710 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) |
| 2711 | config->num_pipes_active += intel_crtc_active(crtc); |
| 2712 | |
| 2713 | /* FIXME: I don't think we need those two global parameters on SKL */ |
| 2714 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) { |
| 2715 | struct intel_plane *intel_plane = to_intel_plane(plane); |
| 2716 | |
| 2717 | config->sprites_enabled |= intel_plane->wm.enabled; |
| 2718 | config->sprites_scaled |= intel_plane->wm.scaled; |
| 2719 | } |
| 2720 | } |
| 2721 | |
| 2722 | static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc, |
| 2723 | struct skl_pipe_wm_parameters *p) |
| 2724 | { |
| 2725 | struct drm_device *dev = crtc->dev; |
| 2726 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2727 | enum pipe pipe = intel_crtc->pipe; |
| 2728 | struct drm_plane *plane; |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2729 | struct drm_framebuffer *fb; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2730 | int i = 1; /* Index for sprite planes start */ |
| 2731 | |
| 2732 | p->active = intel_crtc_active(crtc); |
| 2733 | if (p->active) { |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 2734 | p->pipe_htotal = intel_crtc->config->base.adjusted_mode.crtc_htotal; |
| 2735 | p->pixel_rate = skl_pipe_pixel_rate(intel_crtc->config); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2736 | |
| 2737 | /* |
| 2738 | * For now, assume primary and cursor planes are always enabled. |
| 2739 | */ |
| 2740 | p->plane[0].enabled = true; |
| 2741 | p->plane[0].bytes_per_pixel = |
Matt Roper | 59bea88 | 2015-02-27 10:12:01 -0800 | [diff] [blame] | 2742 | crtc->primary->state->fb->bits_per_pixel / 8; |
Ander Conselvan de Oliveira | 6e3c971 | 2015-01-15 14:55:25 +0200 | [diff] [blame] | 2743 | p->plane[0].horiz_pixels = intel_crtc->config->pipe_src_w; |
| 2744 | p->plane[0].vert_pixels = intel_crtc->config->pipe_src_h; |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2745 | p->plane[0].tiling = DRM_FORMAT_MOD_NONE; |
| 2746 | fb = crtc->primary->state->fb; |
| 2747 | /* |
| 2748 | * Framebuffer can be NULL on plane disable, but it does not |
| 2749 | * matter for watermarks if we assume no tiling in that case. |
| 2750 | */ |
| 2751 | if (fb) |
| 2752 | p->plane[0].tiling = fb->modifier[0]; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2753 | |
| 2754 | p->cursor.enabled = true; |
| 2755 | p->cursor.bytes_per_pixel = 4; |
Matt Roper | 3dd512f | 2015-02-27 10:12:00 -0800 | [diff] [blame] | 2756 | p->cursor.horiz_pixels = intel_crtc->base.cursor->state->crtc_w ? |
| 2757 | intel_crtc->base.cursor->state->crtc_w : 64; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2758 | } |
| 2759 | |
| 2760 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) { |
| 2761 | struct intel_plane *intel_plane = to_intel_plane(plane); |
| 2762 | |
Sonika Jindal | a712f8e | 2014-12-09 10:59:15 +0530 | [diff] [blame] | 2763 | if (intel_plane->pipe == pipe && |
| 2764 | plane->type == DRM_PLANE_TYPE_OVERLAY) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2765 | p->plane[i++] = intel_plane->wm; |
| 2766 | } |
| 2767 | } |
| 2768 | |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2769 | static bool skl_compute_plane_wm(const struct drm_i915_private *dev_priv, |
| 2770 | struct skl_pipe_wm_parameters *p, |
Damien Lespiau | afb024a | 2014-11-04 17:06:59 +0000 | [diff] [blame] | 2771 | struct intel_plane_wm_parameters *p_params, |
| 2772 | uint16_t ddb_allocation, |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2773 | int level, |
Damien Lespiau | afb024a | 2014-11-04 17:06:59 +0000 | [diff] [blame] | 2774 | uint16_t *out_blocks, /* out */ |
| 2775 | uint8_t *out_lines /* out */) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2776 | { |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2777 | uint32_t latency = dev_priv->wm.skl_latency[level]; |
| 2778 | uint32_t method1, method2; |
| 2779 | uint32_t plane_bytes_per_line, plane_blocks_per_line; |
| 2780 | uint32_t res_blocks, res_lines; |
| 2781 | uint32_t selected_result; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2782 | |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2783 | if (latency == 0 || !p->active || !p_params->enabled) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2784 | return false; |
| 2785 | |
| 2786 | method1 = skl_wm_method1(p->pixel_rate, |
| 2787 | p_params->bytes_per_pixel, |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2788 | latency); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2789 | method2 = skl_wm_method2(p->pixel_rate, |
| 2790 | p->pipe_htotal, |
| 2791 | p_params->horiz_pixels, |
| 2792 | p_params->bytes_per_pixel, |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2793 | p_params->tiling, |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2794 | latency); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2795 | |
| 2796 | plane_bytes_per_line = p_params->horiz_pixels * |
| 2797 | p_params->bytes_per_pixel; |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2798 | plane_blocks_per_line = DIV_ROUND_UP(plane_bytes_per_line, 512); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2799 | |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2800 | if (p_params->tiling == I915_FORMAT_MOD_Y_TILED || |
| 2801 | p_params->tiling == I915_FORMAT_MOD_Yf_TILED) { |
| 2802 | uint32_t y_tile_minimum = plane_blocks_per_line * 4; |
| 2803 | selected_result = max(method2, y_tile_minimum); |
| 2804 | } else { |
| 2805 | if ((ddb_allocation / plane_blocks_per_line) >= 1) |
| 2806 | selected_result = min(method1, method2); |
| 2807 | else |
| 2808 | selected_result = method1; |
| 2809 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2810 | |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2811 | res_blocks = selected_result + 1; |
| 2812 | res_lines = DIV_ROUND_UP(selected_result, plane_blocks_per_line); |
Damien Lespiau | e6d6617 | 2014-11-04 17:06:55 +0000 | [diff] [blame] | 2813 | |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 2814 | if (level >= 1 && level <= 7) { |
| 2815 | if (p_params->tiling == I915_FORMAT_MOD_Y_TILED || |
| 2816 | p_params->tiling == I915_FORMAT_MOD_Yf_TILED) |
| 2817 | res_lines += 4; |
| 2818 | else |
| 2819 | res_blocks++; |
| 2820 | } |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2821 | |
| 2822 | if (res_blocks >= ddb_allocation || res_lines > 31) |
Damien Lespiau | e6d6617 | 2014-11-04 17:06:55 +0000 | [diff] [blame] | 2823 | return false; |
| 2824 | |
| 2825 | *out_blocks = res_blocks; |
| 2826 | *out_lines = res_lines; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2827 | |
| 2828 | return true; |
| 2829 | } |
| 2830 | |
| 2831 | static void skl_compute_wm_level(const struct drm_i915_private *dev_priv, |
| 2832 | struct skl_ddb_allocation *ddb, |
| 2833 | struct skl_pipe_wm_parameters *p, |
| 2834 | enum pipe pipe, |
| 2835 | int level, |
| 2836 | int num_planes, |
| 2837 | struct skl_wm_level *result) |
| 2838 | { |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2839 | uint16_t ddb_blocks; |
| 2840 | int i; |
| 2841 | |
| 2842 | for (i = 0; i < num_planes; i++) { |
| 2843 | ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]); |
| 2844 | |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2845 | result->plane_en[i] = skl_compute_plane_wm(dev_priv, |
| 2846 | p, &p->plane[i], |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2847 | ddb_blocks, |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2848 | level, |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2849 | &result->plane_res_b[i], |
| 2850 | &result->plane_res_l[i]); |
| 2851 | } |
| 2852 | |
| 2853 | ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]); |
Tvrtko Ursulin | d4c2aa6 | 2015-02-27 11:15:22 +0000 | [diff] [blame] | 2854 | result->cursor_en = skl_compute_plane_wm(dev_priv, p, &p->cursor, |
| 2855 | ddb_blocks, level, |
| 2856 | &result->cursor_res_b, |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2857 | &result->cursor_res_l); |
| 2858 | } |
| 2859 | |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 2860 | static uint32_t |
| 2861 | skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p) |
| 2862 | { |
| 2863 | if (!intel_crtc_active(crtc)) |
| 2864 | return 0; |
| 2865 | |
| 2866 | return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate); |
| 2867 | |
| 2868 | } |
| 2869 | |
| 2870 | static void skl_compute_transition_wm(struct drm_crtc *crtc, |
| 2871 | struct skl_pipe_wm_parameters *params, |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 2872 | struct skl_wm_level *trans_wm /* out */) |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 2873 | { |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 2874 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2875 | int i; |
| 2876 | |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 2877 | if (!params->active) |
| 2878 | return; |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 2879 | |
| 2880 | /* Until we know more, just disable transition WMs */ |
| 2881 | for (i = 0; i < intel_num_planes(intel_crtc); i++) |
| 2882 | trans_wm->plane_en[i] = false; |
| 2883 | trans_wm->cursor_en = false; |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 2884 | } |
| 2885 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2886 | static void skl_compute_pipe_wm(struct drm_crtc *crtc, |
| 2887 | struct skl_ddb_allocation *ddb, |
| 2888 | struct skl_pipe_wm_parameters *params, |
| 2889 | struct skl_pipe_wm *pipe_wm) |
| 2890 | { |
| 2891 | struct drm_device *dev = crtc->dev; |
| 2892 | const struct drm_i915_private *dev_priv = dev->dev_private; |
| 2893 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2894 | int level, max_level = ilk_wm_max_level(dev); |
| 2895 | |
| 2896 | for (level = 0; level <= max_level; level++) { |
| 2897 | skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe, |
| 2898 | level, intel_num_planes(intel_crtc), |
| 2899 | &pipe_wm->wm[level]); |
| 2900 | } |
| 2901 | pipe_wm->linetime = skl_compute_linetime_wm(crtc, params); |
| 2902 | |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 2903 | skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2904 | } |
| 2905 | |
| 2906 | static void skl_compute_wm_results(struct drm_device *dev, |
| 2907 | struct skl_pipe_wm_parameters *p, |
| 2908 | struct skl_pipe_wm *p_wm, |
| 2909 | struct skl_wm_values *r, |
| 2910 | struct intel_crtc *intel_crtc) |
| 2911 | { |
| 2912 | int level, max_level = ilk_wm_max_level(dev); |
| 2913 | enum pipe pipe = intel_crtc->pipe; |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 2914 | uint32_t temp; |
| 2915 | int i; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2916 | |
| 2917 | for (level = 0; level <= max_level; level++) { |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2918 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 2919 | temp = 0; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2920 | |
| 2921 | temp |= p_wm->wm[level].plane_res_l[i] << |
| 2922 | PLANE_WM_LINES_SHIFT; |
| 2923 | temp |= p_wm->wm[level].plane_res_b[i]; |
| 2924 | if (p_wm->wm[level].plane_en[i]) |
| 2925 | temp |= PLANE_WM_EN; |
| 2926 | |
| 2927 | r->plane[pipe][i][level] = temp; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2928 | } |
| 2929 | |
| 2930 | temp = 0; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2931 | |
| 2932 | temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT; |
| 2933 | temp |= p_wm->wm[level].cursor_res_b; |
| 2934 | |
| 2935 | if (p_wm->wm[level].cursor_en) |
| 2936 | temp |= PLANE_WM_EN; |
| 2937 | |
| 2938 | r->cursor[pipe][level] = temp; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2939 | |
| 2940 | } |
| 2941 | |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 2942 | /* transition WMs */ |
| 2943 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 2944 | temp = 0; |
| 2945 | temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT; |
| 2946 | temp |= p_wm->trans_wm.plane_res_b[i]; |
| 2947 | if (p_wm->trans_wm.plane_en[i]) |
| 2948 | temp |= PLANE_WM_EN; |
| 2949 | |
| 2950 | r->plane_trans[pipe][i] = temp; |
| 2951 | } |
| 2952 | |
| 2953 | temp = 0; |
| 2954 | temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT; |
| 2955 | temp |= p_wm->trans_wm.cursor_res_b; |
| 2956 | if (p_wm->trans_wm.cursor_en) |
| 2957 | temp |= PLANE_WM_EN; |
| 2958 | |
| 2959 | r->cursor_trans[pipe] = temp; |
| 2960 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2961 | r->wm_linetime[pipe] = p_wm->linetime; |
| 2962 | } |
| 2963 | |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 2964 | static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg, |
| 2965 | const struct skl_ddb_entry *entry) |
| 2966 | { |
| 2967 | if (entry->end) |
| 2968 | I915_WRITE(reg, (entry->end - 1) << 16 | entry->start); |
| 2969 | else |
| 2970 | I915_WRITE(reg, 0); |
| 2971 | } |
| 2972 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2973 | static void skl_write_wm_values(struct drm_i915_private *dev_priv, |
| 2974 | const struct skl_wm_values *new) |
| 2975 | { |
| 2976 | struct drm_device *dev = dev_priv->dev; |
| 2977 | struct intel_crtc *crtc; |
| 2978 | |
| 2979 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) { |
| 2980 | int i, level, max_level = ilk_wm_max_level(dev); |
| 2981 | enum pipe pipe = crtc->pipe; |
| 2982 | |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 2983 | if (!new->dirty[pipe]) |
| 2984 | continue; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2985 | |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 2986 | I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]); |
| 2987 | |
| 2988 | for (level = 0; level <= max_level; level++) { |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2989 | for (i = 0; i < intel_num_planes(crtc); i++) |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 2990 | I915_WRITE(PLANE_WM(pipe, i, level), |
| 2991 | new->plane[pipe][i][level]); |
| 2992 | I915_WRITE(CUR_WM(pipe, level), |
| 2993 | new->cursor[pipe][level]); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 2994 | } |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 2995 | for (i = 0; i < intel_num_planes(crtc); i++) |
| 2996 | I915_WRITE(PLANE_WM_TRANS(pipe, i), |
| 2997 | new->plane_trans[pipe][i]); |
| 2998 | I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]); |
| 2999 | |
| 3000 | for (i = 0; i < intel_num_planes(crtc); i++) |
| 3001 | skl_ddb_entry_write(dev_priv, |
| 3002 | PLANE_BUF_CFG(pipe, i), |
| 3003 | &new->ddb.plane[pipe][i]); |
| 3004 | |
| 3005 | skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), |
| 3006 | &new->ddb.cursor[pipe]); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3007 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3008 | } |
| 3009 | |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3010 | /* |
| 3011 | * When setting up a new DDB allocation arrangement, we need to correctly |
| 3012 | * sequence the times at which the new allocations for the pipes are taken into |
| 3013 | * account or we'll have pipes fetching from space previously allocated to |
| 3014 | * another pipe. |
| 3015 | * |
| 3016 | * Roughly the sequence looks like: |
| 3017 | * 1. re-allocate the pipe(s) with the allocation being reduced and not |
| 3018 | * overlapping with a previous light-up pipe (another way to put it is: |
| 3019 | * pipes with their new allocation strickly included into their old ones). |
| 3020 | * 2. re-allocate the other pipes that get their allocation reduced |
| 3021 | * 3. allocate the pipes having their allocation increased |
| 3022 | * |
| 3023 | * Steps 1. and 2. are here to take care of the following case: |
| 3024 | * - Initially DDB looks like this: |
| 3025 | * | B | C | |
| 3026 | * - enable pipe A. |
| 3027 | * - pipe B has a reduced DDB allocation that overlaps with the old pipe C |
| 3028 | * allocation |
| 3029 | * | A | B | C | |
| 3030 | * |
| 3031 | * We need to sequence the re-allocation: C, B, A (and not B, C, A). |
| 3032 | */ |
| 3033 | |
Damien Lespiau | d21b795 | 2014-11-04 17:07:03 +0000 | [diff] [blame] | 3034 | static void |
| 3035 | skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe, int pass) |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3036 | { |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3037 | int plane; |
| 3038 | |
Damien Lespiau | d21b795 | 2014-11-04 17:07:03 +0000 | [diff] [blame] | 3039 | DRM_DEBUG_KMS("flush pipe %c (pass %d)\n", pipe_name(pipe), pass); |
| 3040 | |
Damien Lespiau | dd74078 | 2015-02-28 14:54:08 +0000 | [diff] [blame] | 3041 | for_each_plane(dev_priv, pipe, plane) { |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3042 | I915_WRITE(PLANE_SURF(pipe, plane), |
| 3043 | I915_READ(PLANE_SURF(pipe, plane))); |
| 3044 | } |
| 3045 | I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe))); |
| 3046 | } |
| 3047 | |
| 3048 | static bool |
| 3049 | skl_ddb_allocation_included(const struct skl_ddb_allocation *old, |
| 3050 | const struct skl_ddb_allocation *new, |
| 3051 | enum pipe pipe) |
| 3052 | { |
| 3053 | uint16_t old_size, new_size; |
| 3054 | |
| 3055 | old_size = skl_ddb_entry_size(&old->pipe[pipe]); |
| 3056 | new_size = skl_ddb_entry_size(&new->pipe[pipe]); |
| 3057 | |
| 3058 | return old_size != new_size && |
| 3059 | new->pipe[pipe].start >= old->pipe[pipe].start && |
| 3060 | new->pipe[pipe].end <= old->pipe[pipe].end; |
| 3061 | } |
| 3062 | |
| 3063 | static void skl_flush_wm_values(struct drm_i915_private *dev_priv, |
| 3064 | struct skl_wm_values *new_values) |
| 3065 | { |
| 3066 | struct drm_device *dev = dev_priv->dev; |
| 3067 | struct skl_ddb_allocation *cur_ddb, *new_ddb; |
| 3068 | bool reallocated[I915_MAX_PIPES] = {false, false, false}; |
| 3069 | struct intel_crtc *crtc; |
| 3070 | enum pipe pipe; |
| 3071 | |
| 3072 | new_ddb = &new_values->ddb; |
| 3073 | cur_ddb = &dev_priv->wm.skl_hw.ddb; |
| 3074 | |
| 3075 | /* |
| 3076 | * First pass: flush the pipes with the new allocation contained into |
| 3077 | * the old space. |
| 3078 | * |
| 3079 | * We'll wait for the vblank on those pipes to ensure we can safely |
| 3080 | * re-allocate the freed space without this pipe fetching from it. |
| 3081 | */ |
| 3082 | for_each_intel_crtc(dev, crtc) { |
| 3083 | if (!crtc->active) |
| 3084 | continue; |
| 3085 | |
| 3086 | pipe = crtc->pipe; |
| 3087 | |
| 3088 | if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe)) |
| 3089 | continue; |
| 3090 | |
Damien Lespiau | d21b795 | 2014-11-04 17:07:03 +0000 | [diff] [blame] | 3091 | skl_wm_flush_pipe(dev_priv, pipe, 1); |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3092 | intel_wait_for_vblank(dev, pipe); |
| 3093 | |
| 3094 | reallocated[pipe] = true; |
| 3095 | } |
| 3096 | |
| 3097 | |
| 3098 | /* |
| 3099 | * Second pass: flush the pipes that are having their allocation |
| 3100 | * reduced, but overlapping with a previous allocation. |
| 3101 | * |
| 3102 | * Here as well we need to wait for the vblank to make sure the freed |
| 3103 | * space is not used anymore. |
| 3104 | */ |
| 3105 | for_each_intel_crtc(dev, crtc) { |
| 3106 | if (!crtc->active) |
| 3107 | continue; |
| 3108 | |
| 3109 | pipe = crtc->pipe; |
| 3110 | |
| 3111 | if (reallocated[pipe]) |
| 3112 | continue; |
| 3113 | |
| 3114 | if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) < |
| 3115 | skl_ddb_entry_size(&cur_ddb->pipe[pipe])) { |
Damien Lespiau | d21b795 | 2014-11-04 17:07:03 +0000 | [diff] [blame] | 3116 | skl_wm_flush_pipe(dev_priv, pipe, 2); |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3117 | intel_wait_for_vblank(dev, pipe); |
Sonika Jindal | d9d8e6b | 2014-12-11 17:58:15 +0530 | [diff] [blame] | 3118 | reallocated[pipe] = true; |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3119 | } |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3120 | } |
| 3121 | |
| 3122 | /* |
| 3123 | * Third pass: flush the pipes that got more space allocated. |
| 3124 | * |
| 3125 | * We don't need to actively wait for the update here, next vblank |
| 3126 | * will just get more DDB space with the correct WM values. |
| 3127 | */ |
| 3128 | for_each_intel_crtc(dev, crtc) { |
| 3129 | if (!crtc->active) |
| 3130 | continue; |
| 3131 | |
| 3132 | pipe = crtc->pipe; |
| 3133 | |
| 3134 | /* |
| 3135 | * At this point, only the pipes more space than before are |
| 3136 | * left to re-allocate. |
| 3137 | */ |
| 3138 | if (reallocated[pipe]) |
| 3139 | continue; |
| 3140 | |
Damien Lespiau | d21b795 | 2014-11-04 17:07:03 +0000 | [diff] [blame] | 3141 | skl_wm_flush_pipe(dev_priv, pipe, 3); |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3142 | } |
| 3143 | } |
| 3144 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3145 | static bool skl_update_pipe_wm(struct drm_crtc *crtc, |
| 3146 | struct skl_pipe_wm_parameters *params, |
| 3147 | struct intel_wm_config *config, |
| 3148 | struct skl_ddb_allocation *ddb, /* out */ |
| 3149 | struct skl_pipe_wm *pipe_wm /* out */) |
| 3150 | { |
| 3151 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3152 | |
| 3153 | skl_compute_wm_pipe_parameters(crtc, params); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3154 | skl_allocate_pipe_ddb(crtc, config, params, ddb); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3155 | skl_compute_pipe_wm(crtc, ddb, params, pipe_wm); |
| 3156 | |
| 3157 | if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm))) |
| 3158 | return false; |
| 3159 | |
| 3160 | intel_crtc->wm.skl_active = *pipe_wm; |
| 3161 | return true; |
| 3162 | } |
| 3163 | |
| 3164 | static void skl_update_other_pipe_wm(struct drm_device *dev, |
| 3165 | struct drm_crtc *crtc, |
| 3166 | struct intel_wm_config *config, |
| 3167 | struct skl_wm_values *r) |
| 3168 | { |
| 3169 | struct intel_crtc *intel_crtc; |
| 3170 | struct intel_crtc *this_crtc = to_intel_crtc(crtc); |
| 3171 | |
| 3172 | /* |
| 3173 | * If the WM update hasn't changed the allocation for this_crtc (the |
| 3174 | * crtc we are currently computing the new WM values for), other |
| 3175 | * enabled crtcs will keep the same allocation and we don't need to |
| 3176 | * recompute anything for them. |
| 3177 | */ |
| 3178 | if (!skl_ddb_allocation_changed(&r->ddb, this_crtc)) |
| 3179 | return; |
| 3180 | |
| 3181 | /* |
| 3182 | * Otherwise, because of this_crtc being freshly enabled/disabled, the |
| 3183 | * other active pipes need new DDB allocation and WM values. |
| 3184 | */ |
| 3185 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, |
| 3186 | base.head) { |
| 3187 | struct skl_pipe_wm_parameters params = {}; |
| 3188 | struct skl_pipe_wm pipe_wm = {}; |
| 3189 | bool wm_changed; |
| 3190 | |
| 3191 | if (this_crtc->pipe == intel_crtc->pipe) |
| 3192 | continue; |
| 3193 | |
| 3194 | if (!intel_crtc->active) |
| 3195 | continue; |
| 3196 | |
| 3197 | wm_changed = skl_update_pipe_wm(&intel_crtc->base, |
| 3198 | ¶ms, config, |
| 3199 | &r->ddb, &pipe_wm); |
| 3200 | |
| 3201 | /* |
| 3202 | * If we end up re-computing the other pipe WM values, it's |
| 3203 | * because it was really needed, so we expect the WM values to |
| 3204 | * be different. |
| 3205 | */ |
| 3206 | WARN_ON(!wm_changed); |
| 3207 | |
| 3208 | skl_compute_wm_results(dev, ¶ms, &pipe_wm, r, intel_crtc); |
| 3209 | r->dirty[intel_crtc->pipe] = true; |
| 3210 | } |
| 3211 | } |
| 3212 | |
| 3213 | static void skl_update_wm(struct drm_crtc *crtc) |
| 3214 | { |
| 3215 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3216 | struct drm_device *dev = crtc->dev; |
| 3217 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3218 | struct skl_pipe_wm_parameters params = {}; |
| 3219 | struct skl_wm_values *results = &dev_priv->wm.skl_results; |
| 3220 | struct skl_pipe_wm pipe_wm = {}; |
| 3221 | struct intel_wm_config config = {}; |
| 3222 | |
| 3223 | memset(results, 0, sizeof(*results)); |
| 3224 | |
| 3225 | skl_compute_wm_global_parameters(dev, &config); |
| 3226 | |
| 3227 | if (!skl_update_pipe_wm(crtc, ¶ms, &config, |
| 3228 | &results->ddb, &pipe_wm)) |
| 3229 | return; |
| 3230 | |
| 3231 | skl_compute_wm_results(dev, ¶ms, &pipe_wm, results, intel_crtc); |
| 3232 | results->dirty[intel_crtc->pipe] = true; |
| 3233 | |
| 3234 | skl_update_other_pipe_wm(dev, crtc, &config, results); |
| 3235 | skl_write_wm_values(dev_priv, results); |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame] | 3236 | skl_flush_wm_values(dev_priv, results); |
Damien Lespiau | 53b0deb | 2014-11-04 17:06:48 +0000 | [diff] [blame] | 3237 | |
| 3238 | /* store the new configuration */ |
| 3239 | dev_priv->wm.skl_hw = *results; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3240 | } |
| 3241 | |
| 3242 | static void |
| 3243 | skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc, |
| 3244 | uint32_t sprite_width, uint32_t sprite_height, |
| 3245 | int pixel_size, bool enabled, bool scaled) |
| 3246 | { |
| 3247 | struct intel_plane *intel_plane = to_intel_plane(plane); |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 3248 | struct drm_framebuffer *fb = plane->state->fb; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3249 | |
| 3250 | intel_plane->wm.enabled = enabled; |
| 3251 | intel_plane->wm.scaled = scaled; |
| 3252 | intel_plane->wm.horiz_pixels = sprite_width; |
| 3253 | intel_plane->wm.vert_pixels = sprite_height; |
| 3254 | intel_plane->wm.bytes_per_pixel = pixel_size; |
Tvrtko Ursulin | 0fda656 | 2015-02-27 15:12:35 +0000 | [diff] [blame] | 3255 | intel_plane->wm.tiling = DRM_FORMAT_MOD_NONE; |
| 3256 | /* |
| 3257 | * Framebuffer can be NULL on plane disable, but it does not |
| 3258 | * matter for watermarks if we assume no tiling in that case. |
| 3259 | */ |
| 3260 | if (fb) |
| 3261 | intel_plane->wm.tiling = fb->modifier[0]; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3262 | |
| 3263 | skl_update_wm(crtc); |
| 3264 | } |
| 3265 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3266 | static void ilk_update_wm(struct drm_crtc *crtc) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3267 | { |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 3268 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 3269 | struct drm_device *dev = crtc->dev; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3270 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3271 | struct ilk_wm_maximums max; |
| 3272 | struct ilk_pipe_wm_parameters params = {}; |
| 3273 | struct ilk_wm_values results = {}; |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 3274 | enum intel_ddb_partitioning partitioning; |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 3275 | struct intel_pipe_wm pipe_wm = {}; |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3276 | struct intel_pipe_wm lp_wm_1_2 = {}, lp_wm_5_6 = {}, *best_lp_wm; |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 3277 | struct intel_wm_config config = {}; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3278 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 3279 | ilk_compute_wm_parameters(crtc, ¶ms); |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3280 | |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 3281 | intel_compute_pipe_wm(crtc, ¶ms, &pipe_wm); |
| 3282 | |
| 3283 | if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm))) |
| 3284 | return; |
| 3285 | |
| 3286 | intel_crtc->wm.active = pipe_wm; |
| 3287 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 3288 | ilk_compute_wm_config(dev, &config); |
| 3289 | |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 3290 | ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_1_2, &max); |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3291 | ilk_wm_merge(dev, &config, &max, &lp_wm_1_2); |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3292 | |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 3293 | /* 5/6 split only in single pipe config on IVB+ */ |
Ville Syrjälä | ec98c8d | 2013-10-11 15:26:26 +0300 | [diff] [blame] | 3294 | if (INTEL_INFO(dev)->gen >= 7 && |
| 3295 | config.num_pipes_active == 1 && config.sprites_enabled) { |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 3296 | ilk_compute_wm_maximums(dev, 1, &config, INTEL_DDB_PART_5_6, &max); |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 3297 | ilk_wm_merge(dev, &config, &max, &lp_wm_5_6); |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 3298 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3299 | best_lp_wm = ilk_find_best_result(dev, &lp_wm_1_2, &lp_wm_5_6); |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3300 | } else { |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3301 | best_lp_wm = &lp_wm_1_2; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3302 | } |
| 3303 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3304 | partitioning = (best_lp_wm == &lp_wm_1_2) ? |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 3305 | INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3306 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3307 | ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3308 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3309 | ilk_write_wm_values(dev_priv, &results); |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3310 | } |
| 3311 | |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 3312 | static void |
| 3313 | ilk_update_sprite_wm(struct drm_plane *plane, |
| 3314 | struct drm_crtc *crtc, |
| 3315 | uint32_t sprite_width, uint32_t sprite_height, |
| 3316 | int pixel_size, bool enabled, bool scaled) |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3317 | { |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3318 | struct drm_device *dev = plane->dev; |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3319 | struct intel_plane *intel_plane = to_intel_plane(plane); |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3320 | |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3321 | intel_plane->wm.enabled = enabled; |
| 3322 | intel_plane->wm.scaled = scaled; |
| 3323 | intel_plane->wm.horiz_pixels = sprite_width; |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 3324 | intel_plane->wm.vert_pixels = sprite_width; |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3325 | intel_plane->wm.bytes_per_pixel = pixel_size; |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3326 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3327 | /* |
| 3328 | * IVB workaround: must disable low power watermarks for at least |
| 3329 | * one frame before enabling scaling. LP watermarks can be re-enabled |
| 3330 | * when scaling is disabled. |
| 3331 | * |
| 3332 | * WaCxSRDisabledForSpriteScaling:ivb |
| 3333 | */ |
| 3334 | if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev)) |
| 3335 | intel_wait_for_vblank(dev, intel_plane->pipe); |
| 3336 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3337 | ilk_update_wm(crtc); |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3338 | } |
| 3339 | |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 3340 | static void skl_pipe_wm_active_state(uint32_t val, |
| 3341 | struct skl_pipe_wm *active, |
| 3342 | bool is_transwm, |
| 3343 | bool is_cursor, |
| 3344 | int i, |
| 3345 | int level) |
| 3346 | { |
| 3347 | bool is_enabled = (val & PLANE_WM_EN) != 0; |
| 3348 | |
| 3349 | if (!is_transwm) { |
| 3350 | if (!is_cursor) { |
| 3351 | active->wm[level].plane_en[i] = is_enabled; |
| 3352 | active->wm[level].plane_res_b[i] = |
| 3353 | val & PLANE_WM_BLOCKS_MASK; |
| 3354 | active->wm[level].plane_res_l[i] = |
| 3355 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3356 | PLANE_WM_LINES_MASK; |
| 3357 | } else { |
| 3358 | active->wm[level].cursor_en = is_enabled; |
| 3359 | active->wm[level].cursor_res_b = |
| 3360 | val & PLANE_WM_BLOCKS_MASK; |
| 3361 | active->wm[level].cursor_res_l = |
| 3362 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3363 | PLANE_WM_LINES_MASK; |
| 3364 | } |
| 3365 | } else { |
| 3366 | if (!is_cursor) { |
| 3367 | active->trans_wm.plane_en[i] = is_enabled; |
| 3368 | active->trans_wm.plane_res_b[i] = |
| 3369 | val & PLANE_WM_BLOCKS_MASK; |
| 3370 | active->trans_wm.plane_res_l[i] = |
| 3371 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3372 | PLANE_WM_LINES_MASK; |
| 3373 | } else { |
| 3374 | active->trans_wm.cursor_en = is_enabled; |
| 3375 | active->trans_wm.cursor_res_b = |
| 3376 | val & PLANE_WM_BLOCKS_MASK; |
| 3377 | active->trans_wm.cursor_res_l = |
| 3378 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3379 | PLANE_WM_LINES_MASK; |
| 3380 | } |
| 3381 | } |
| 3382 | } |
| 3383 | |
| 3384 | static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc) |
| 3385 | { |
| 3386 | struct drm_device *dev = crtc->dev; |
| 3387 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3388 | struct skl_wm_values *hw = &dev_priv->wm.skl_hw; |
| 3389 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3390 | struct skl_pipe_wm *active = &intel_crtc->wm.skl_active; |
| 3391 | enum pipe pipe = intel_crtc->pipe; |
| 3392 | int level, i, max_level; |
| 3393 | uint32_t temp; |
| 3394 | |
| 3395 | max_level = ilk_wm_max_level(dev); |
| 3396 | |
| 3397 | hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe)); |
| 3398 | |
| 3399 | for (level = 0; level <= max_level; level++) { |
| 3400 | for (i = 0; i < intel_num_planes(intel_crtc); i++) |
| 3401 | hw->plane[pipe][i][level] = |
| 3402 | I915_READ(PLANE_WM(pipe, i, level)); |
| 3403 | hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level)); |
| 3404 | } |
| 3405 | |
| 3406 | for (i = 0; i < intel_num_planes(intel_crtc); i++) |
| 3407 | hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i)); |
| 3408 | hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe)); |
| 3409 | |
| 3410 | if (!intel_crtc_active(crtc)) |
| 3411 | return; |
| 3412 | |
| 3413 | hw->dirty[pipe] = true; |
| 3414 | |
| 3415 | active->linetime = hw->wm_linetime[pipe]; |
| 3416 | |
| 3417 | for (level = 0; level <= max_level; level++) { |
| 3418 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 3419 | temp = hw->plane[pipe][i][level]; |
| 3420 | skl_pipe_wm_active_state(temp, active, false, |
| 3421 | false, i, level); |
| 3422 | } |
| 3423 | temp = hw->cursor[pipe][level]; |
| 3424 | skl_pipe_wm_active_state(temp, active, false, true, i, level); |
| 3425 | } |
| 3426 | |
| 3427 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 3428 | temp = hw->plane_trans[pipe][i]; |
| 3429 | skl_pipe_wm_active_state(temp, active, true, false, i, 0); |
| 3430 | } |
| 3431 | |
| 3432 | temp = hw->cursor_trans[pipe]; |
| 3433 | skl_pipe_wm_active_state(temp, active, true, true, i, 0); |
| 3434 | } |
| 3435 | |
| 3436 | void skl_wm_get_hw_state(struct drm_device *dev) |
| 3437 | { |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3438 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3439 | struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 3440 | struct drm_crtc *crtc; |
| 3441 | |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3442 | skl_ddb_get_hw_state(dev_priv, ddb); |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 3443 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) |
| 3444 | skl_pipe_wm_get_hw_state(crtc); |
| 3445 | } |
| 3446 | |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3447 | static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc) |
| 3448 | { |
| 3449 | struct drm_device *dev = crtc->dev; |
| 3450 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3451 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3452 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3453 | struct intel_pipe_wm *active = &intel_crtc->wm.active; |
| 3454 | enum pipe pipe = intel_crtc->pipe; |
| 3455 | static const unsigned int wm0_pipe_reg[] = { |
| 3456 | [PIPE_A] = WM0_PIPEA_ILK, |
| 3457 | [PIPE_B] = WM0_PIPEB_ILK, |
| 3458 | [PIPE_C] = WM0_PIPEC_IVB, |
| 3459 | }; |
| 3460 | |
| 3461 | hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]); |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 3462 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ce0e071 | 2013-12-05 15:51:36 +0200 | [diff] [blame] | 3463 | hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe)); |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3464 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 3465 | active->pipe_enabled = intel_crtc_active(crtc); |
| 3466 | |
| 3467 | if (active->pipe_enabled) { |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3468 | u32 tmp = hw->wm_pipe[pipe]; |
| 3469 | |
| 3470 | /* |
| 3471 | * For active pipes LP0 watermark is marked as |
| 3472 | * enabled, and LP1+ watermaks as disabled since |
| 3473 | * we can't really reverse compute them in case |
| 3474 | * multiple pipes are active. |
| 3475 | */ |
| 3476 | active->wm[0].enable = true; |
| 3477 | active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT; |
| 3478 | active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT; |
| 3479 | active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK; |
| 3480 | active->linetime = hw->wm_linetime[pipe]; |
| 3481 | } else { |
| 3482 | int level, max_level = ilk_wm_max_level(dev); |
| 3483 | |
| 3484 | /* |
| 3485 | * For inactive pipes, all watermark levels |
| 3486 | * should be marked as enabled but zeroed, |
| 3487 | * which is what we'd compute them to. |
| 3488 | */ |
| 3489 | for (level = 0; level <= max_level; level++) |
| 3490 | active->wm[level].enable = true; |
| 3491 | } |
| 3492 | } |
| 3493 | |
| 3494 | void ilk_wm_get_hw_state(struct drm_device *dev) |
| 3495 | { |
| 3496 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3497 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3498 | struct drm_crtc *crtc; |
| 3499 | |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 3500 | for_each_crtc(dev, crtc) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3501 | ilk_pipe_wm_get_hw_state(crtc); |
| 3502 | |
| 3503 | hw->wm_lp[0] = I915_READ(WM1_LP_ILK); |
| 3504 | hw->wm_lp[1] = I915_READ(WM2_LP_ILK); |
| 3505 | hw->wm_lp[2] = I915_READ(WM3_LP_ILK); |
| 3506 | |
| 3507 | hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK); |
Ville Syrjälä | cfa7698 | 2014-03-07 18:32:08 +0200 | [diff] [blame] | 3508 | if (INTEL_INFO(dev)->gen >= 7) { |
| 3509 | hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB); |
| 3510 | hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB); |
| 3511 | } |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3512 | |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 3513 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 3514 | hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ? |
| 3515 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
| 3516 | else if (IS_IVYBRIDGE(dev)) |
| 3517 | hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ? |
| 3518 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3519 | |
| 3520 | hw->enable_fbc_wm = |
| 3521 | !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS); |
| 3522 | } |
| 3523 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3524 | /** |
| 3525 | * intel_update_watermarks - update FIFO watermark values based on current modes |
| 3526 | * |
| 3527 | * Calculate watermark values for the various WM regs based on current mode |
| 3528 | * and plane configuration. |
| 3529 | * |
| 3530 | * There are several cases to deal with here: |
| 3531 | * - normal (i.e. non-self-refresh) |
| 3532 | * - self-refresh (SR) mode |
| 3533 | * - lines are large relative to FIFO size (buffer can hold up to 2) |
| 3534 | * - lines are small relative to FIFO size (buffer can hold more than 2 |
| 3535 | * lines), so need to account for TLB latency |
| 3536 | * |
| 3537 | * The normal calculation is: |
| 3538 | * watermark = dotclock * bytes per pixel * latency |
| 3539 | * where latency is platform & configuration dependent (we assume pessimal |
| 3540 | * values here). |
| 3541 | * |
| 3542 | * The SR calculation is: |
| 3543 | * watermark = (trunc(latency/line time)+1) * surface width * |
| 3544 | * bytes per pixel |
| 3545 | * where |
| 3546 | * line time = htotal / dotclock |
| 3547 | * surface width = hdisplay for normal plane and 64 for cursor |
| 3548 | * and latency is assumed to be high, as above. |
| 3549 | * |
| 3550 | * The final value programmed to the register should always be rounded up, |
| 3551 | * and include an extra 2 entries to account for clock crossings. |
| 3552 | * |
| 3553 | * We don't use the sprite, so we can ignore that. And on Crestline we have |
| 3554 | * to set the non-SR watermarks to 8. |
| 3555 | */ |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 3556 | void intel_update_watermarks(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3557 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 3558 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3559 | |
| 3560 | if (dev_priv->display.update_wm) |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 3561 | dev_priv->display.update_wm(crtc); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3562 | } |
| 3563 | |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3564 | void intel_update_sprite_watermarks(struct drm_plane *plane, |
| 3565 | struct drm_crtc *crtc, |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 3566 | uint32_t sprite_width, |
| 3567 | uint32_t sprite_height, |
| 3568 | int pixel_size, |
Ville Syrjälä | 39db4a4 | 2013-08-06 22:24:00 +0300 | [diff] [blame] | 3569 | bool enabled, bool scaled) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3570 | { |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3571 | struct drm_i915_private *dev_priv = plane->dev->dev_private; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3572 | |
| 3573 | if (dev_priv->display.update_sprite_wm) |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 3574 | dev_priv->display.update_sprite_wm(plane, crtc, |
| 3575 | sprite_width, sprite_height, |
Ville Syrjälä | 39db4a4 | 2013-08-06 22:24:00 +0300 | [diff] [blame] | 3576 | pixel_size, enabled, scaled); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 3577 | } |
| 3578 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3579 | /** |
| 3580 | * Lock protecting IPS related data structures |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3581 | */ |
| 3582 | DEFINE_SPINLOCK(mchdev_lock); |
| 3583 | |
| 3584 | /* Global for IPS driver to get at the current i915 device. Protected by |
| 3585 | * mchdev_lock. */ |
| 3586 | static struct drm_i915_private *i915_mch_dev; |
| 3587 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3588 | bool ironlake_set_drps(struct drm_device *dev, u8 val) |
| 3589 | { |
| 3590 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3591 | u16 rgvswctl; |
| 3592 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3593 | assert_spin_locked(&mchdev_lock); |
| 3594 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3595 | rgvswctl = I915_READ16(MEMSWCTL); |
| 3596 | if (rgvswctl & MEMCTL_CMD_STS) { |
| 3597 | DRM_DEBUG("gpu busy, RCS change rejected\n"); |
| 3598 | return false; /* still busy with another command */ |
| 3599 | } |
| 3600 | |
| 3601 | rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) | |
| 3602 | (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM; |
| 3603 | I915_WRITE16(MEMSWCTL, rgvswctl); |
| 3604 | POSTING_READ16(MEMSWCTL); |
| 3605 | |
| 3606 | rgvswctl |= MEMCTL_CMD_STS; |
| 3607 | I915_WRITE16(MEMSWCTL, rgvswctl); |
| 3608 | |
| 3609 | return true; |
| 3610 | } |
| 3611 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 3612 | static void ironlake_enable_drps(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3613 | { |
| 3614 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3615 | u32 rgvmodectl = I915_READ(MEMMODECTL); |
| 3616 | u8 fmax, fmin, fstart, vstart; |
| 3617 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3618 | spin_lock_irq(&mchdev_lock); |
| 3619 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3620 | /* Enable temp reporting */ |
| 3621 | I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN); |
| 3622 | I915_WRITE16(TSC1, I915_READ(TSC1) | TSE); |
| 3623 | |
| 3624 | /* 100ms RC evaluation intervals */ |
| 3625 | I915_WRITE(RCUPEI, 100000); |
| 3626 | I915_WRITE(RCDNEI, 100000); |
| 3627 | |
| 3628 | /* Set max/min thresholds to 90ms and 80ms respectively */ |
| 3629 | I915_WRITE(RCBMAXAVG, 90000); |
| 3630 | I915_WRITE(RCBMINAVG, 80000); |
| 3631 | |
| 3632 | I915_WRITE(MEMIHYST, 1); |
| 3633 | |
| 3634 | /* Set up min, max, and cur for interrupt handling */ |
| 3635 | fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT; |
| 3636 | fmin = (rgvmodectl & MEMMODE_FMIN_MASK); |
| 3637 | fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >> |
| 3638 | MEMMODE_FSTART_SHIFT; |
| 3639 | |
| 3640 | vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >> |
| 3641 | PXVFREQ_PX_SHIFT; |
| 3642 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 3643 | dev_priv->ips.fmax = fmax; /* IPS callback will increase this */ |
| 3644 | dev_priv->ips.fstart = fstart; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3645 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 3646 | dev_priv->ips.max_delay = fstart; |
| 3647 | dev_priv->ips.min_delay = fmin; |
| 3648 | dev_priv->ips.cur_delay = fstart; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3649 | |
| 3650 | DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", |
| 3651 | fmax, fmin, fstart); |
| 3652 | |
| 3653 | I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN); |
| 3654 | |
| 3655 | /* |
| 3656 | * Interrupts will be enabled in ironlake_irq_postinstall |
| 3657 | */ |
| 3658 | |
| 3659 | I915_WRITE(VIDSTART, vstart); |
| 3660 | POSTING_READ(VIDSTART); |
| 3661 | |
| 3662 | rgvmodectl |= MEMMODE_SWMODE_EN; |
| 3663 | I915_WRITE(MEMMODECTL, rgvmodectl); |
| 3664 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3665 | if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10)) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3666 | DRM_ERROR("stuck trying to change perf mode\n"); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3667 | mdelay(1); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3668 | |
| 3669 | ironlake_set_drps(dev, fstart); |
| 3670 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 3671 | dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) + |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3672 | I915_READ(0x112e0); |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 3673 | dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies); |
| 3674 | dev_priv->ips.last_count2 = I915_READ(0x112f4); |
Thomas Gleixner | 5ed0bdf | 2014-07-16 21:05:06 +0000 | [diff] [blame] | 3675 | dev_priv->ips.last_time2 = ktime_get_raw_ns(); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3676 | |
| 3677 | spin_unlock_irq(&mchdev_lock); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3678 | } |
| 3679 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 3680 | static void ironlake_disable_drps(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3681 | { |
| 3682 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3683 | u16 rgvswctl; |
| 3684 | |
| 3685 | spin_lock_irq(&mchdev_lock); |
| 3686 | |
| 3687 | rgvswctl = I915_READ16(MEMSWCTL); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3688 | |
| 3689 | /* Ack interrupts, disable EFC interrupt */ |
| 3690 | I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN); |
| 3691 | I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG); |
| 3692 | I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT); |
| 3693 | I915_WRITE(DEIIR, DE_PCU_EVENT); |
| 3694 | I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT); |
| 3695 | |
| 3696 | /* Go back to the starting frequency */ |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 3697 | ironlake_set_drps(dev, dev_priv->ips.fstart); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3698 | mdelay(1); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3699 | rgvswctl |= MEMCTL_CMD_STS; |
| 3700 | I915_WRITE(MEMSWCTL, rgvswctl); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3701 | mdelay(1); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3702 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 3703 | spin_unlock_irq(&mchdev_lock); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3704 | } |
| 3705 | |
Daniel Vetter | acbe947 | 2012-07-26 11:50:05 +0200 | [diff] [blame] | 3706 | /* There's a funny hw issue where the hw returns all 0 when reading from |
| 3707 | * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value |
| 3708 | * ourselves, instead of doing a rmw cycle (which might result in us clearing |
| 3709 | * all limits and the gpu stuck at whatever frequency it is at atm). |
| 3710 | */ |
Chris Wilson | 6917c7b | 2013-11-06 13:56:26 -0200 | [diff] [blame] | 3711 | static u32 gen6_rps_limits(struct drm_i915_private *dev_priv, u8 val) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3712 | { |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 3713 | u32 limits; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3714 | |
Daniel Vetter | 20b46e5 | 2012-07-26 11:16:14 +0200 | [diff] [blame] | 3715 | /* Only set the down limit when we've reached the lowest level to avoid |
| 3716 | * getting more interrupts, otherwise leave this clear. This prevents a |
| 3717 | * race in the hw when coming out of rc6: There's a tiny window where |
| 3718 | * the hw runs at the minimal clock before selecting the desired |
| 3719 | * frequency, if the down threshold expires in that window we will not |
| 3720 | * receive a down interrupt. */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3721 | limits = dev_priv->rps.max_freq_softlimit << 24; |
| 3722 | if (val <= dev_priv->rps.min_freq_softlimit) |
| 3723 | limits |= dev_priv->rps.min_freq_softlimit << 16; |
Daniel Vetter | 20b46e5 | 2012-07-26 11:16:14 +0200 | [diff] [blame] | 3724 | |
| 3725 | return limits; |
| 3726 | } |
| 3727 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3728 | static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val) |
| 3729 | { |
| 3730 | int new_power; |
| 3731 | |
| 3732 | new_power = dev_priv->rps.power; |
| 3733 | switch (dev_priv->rps.power) { |
| 3734 | case LOW_POWER: |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3735 | if (val > dev_priv->rps.efficient_freq + 1 && val > dev_priv->rps.cur_freq) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3736 | new_power = BETWEEN; |
| 3737 | break; |
| 3738 | |
| 3739 | case BETWEEN: |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3740 | if (val <= dev_priv->rps.efficient_freq && val < dev_priv->rps.cur_freq) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3741 | new_power = LOW_POWER; |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3742 | else if (val >= dev_priv->rps.rp0_freq && val > dev_priv->rps.cur_freq) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3743 | new_power = HIGH_POWER; |
| 3744 | break; |
| 3745 | |
| 3746 | case HIGH_POWER: |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3747 | if (val < (dev_priv->rps.rp1_freq + dev_priv->rps.rp0_freq) >> 1 && val < dev_priv->rps.cur_freq) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3748 | new_power = BETWEEN; |
| 3749 | break; |
| 3750 | } |
| 3751 | /* Max/min bins are special */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3752 | if (val == dev_priv->rps.min_freq_softlimit) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3753 | new_power = LOW_POWER; |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3754 | if (val == dev_priv->rps.max_freq_softlimit) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 3755 | new_power = HIGH_POWER; |
| 3756 | if (new_power == dev_priv->rps.power) |
| 3757 | return; |
| 3758 | |
| 3759 | /* Note the units here are not exactly 1us, but 1280ns. */ |
| 3760 | switch (new_power) { |
| 3761 | case LOW_POWER: |
| 3762 | /* Upclock if more than 95% busy over 16ms */ |
| 3763 | I915_WRITE(GEN6_RP_UP_EI, 12500); |
| 3764 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 11800); |
| 3765 | |
| 3766 | /* Downclock if less than 85% busy over 32ms */ |
| 3767 | I915_WRITE(GEN6_RP_DOWN_EI, 25000); |
| 3768 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 21250); |
| 3769 | |
| 3770 | I915_WRITE(GEN6_RP_CONTROL, |
| 3771 | GEN6_RP_MEDIA_TURBO | |
| 3772 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 3773 | GEN6_RP_MEDIA_IS_GFX | |
| 3774 | GEN6_RP_ENABLE | |
| 3775 | GEN6_RP_UP_BUSY_AVG | |
| 3776 | GEN6_RP_DOWN_IDLE_AVG); |
| 3777 | break; |
| 3778 | |
| 3779 | case BETWEEN: |
| 3780 | /* Upclock if more than 90% busy over 13ms */ |
| 3781 | I915_WRITE(GEN6_RP_UP_EI, 10250); |
| 3782 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 9225); |
| 3783 | |
| 3784 | /* Downclock if less than 75% busy over 32ms */ |
| 3785 | I915_WRITE(GEN6_RP_DOWN_EI, 25000); |
| 3786 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 18750); |
| 3787 | |
| 3788 | I915_WRITE(GEN6_RP_CONTROL, |
| 3789 | GEN6_RP_MEDIA_TURBO | |
| 3790 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 3791 | GEN6_RP_MEDIA_IS_GFX | |
| 3792 | GEN6_RP_ENABLE | |
| 3793 | GEN6_RP_UP_BUSY_AVG | |
| 3794 | GEN6_RP_DOWN_IDLE_AVG); |
| 3795 | break; |
| 3796 | |
| 3797 | case HIGH_POWER: |
| 3798 | /* Upclock if more than 85% busy over 10ms */ |
| 3799 | I915_WRITE(GEN6_RP_UP_EI, 8000); |
| 3800 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 6800); |
| 3801 | |
| 3802 | /* Downclock if less than 60% busy over 32ms */ |
| 3803 | I915_WRITE(GEN6_RP_DOWN_EI, 25000); |
| 3804 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 15000); |
| 3805 | |
| 3806 | I915_WRITE(GEN6_RP_CONTROL, |
| 3807 | GEN6_RP_MEDIA_TURBO | |
| 3808 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 3809 | GEN6_RP_MEDIA_IS_GFX | |
| 3810 | GEN6_RP_ENABLE | |
| 3811 | GEN6_RP_UP_BUSY_AVG | |
| 3812 | GEN6_RP_DOWN_IDLE_AVG); |
| 3813 | break; |
| 3814 | } |
| 3815 | |
| 3816 | dev_priv->rps.power = new_power; |
| 3817 | dev_priv->rps.last_adj = 0; |
| 3818 | } |
| 3819 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 3820 | static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val) |
| 3821 | { |
| 3822 | u32 mask = 0; |
| 3823 | |
| 3824 | if (val > dev_priv->rps.min_freq_softlimit) |
| 3825 | mask |= GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT; |
| 3826 | if (val < dev_priv->rps.max_freq_softlimit) |
| 3827 | mask |= GEN6_PM_RP_UP_THRESHOLD; |
| 3828 | |
Chris Wilson | 7b3c29f | 2014-07-10 20:31:19 +0100 | [diff] [blame] | 3829 | mask |= dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED); |
| 3830 | mask &= dev_priv->pm_rps_events; |
| 3831 | |
Imre Deak | 59d02a1 | 2014-12-19 19:33:26 +0200 | [diff] [blame] | 3832 | return gen6_sanitize_rps_pm_mask(dev_priv, ~mask); |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 3833 | } |
| 3834 | |
Jeff McGee | b8a5ff8 | 2014-02-04 11:37:01 -0600 | [diff] [blame] | 3835 | /* gen6_set_rps is called to update the frequency request, but should also be |
| 3836 | * called when the range (min_delay and max_delay) is modified so that we can |
| 3837 | * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */ |
Ville Syrjälä | ffe02b4 | 2015-02-02 19:09:50 +0200 | [diff] [blame] | 3838 | static void gen6_set_rps(struct drm_device *dev, u8 val) |
Daniel Vetter | 20b46e5 | 2012-07-26 11:16:14 +0200 | [diff] [blame] | 3839 | { |
| 3840 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 3841 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 3842 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3843 | WARN_ON(val > dev_priv->rps.max_freq_softlimit); |
| 3844 | WARN_ON(val < dev_priv->rps.min_freq_softlimit); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 3845 | |
Chris Wilson | eb64cad | 2014-03-27 08:24:20 +0000 | [diff] [blame] | 3846 | /* min/max delay may still have been modified so be sure to |
| 3847 | * write the limits value. |
| 3848 | */ |
| 3849 | if (val != dev_priv->rps.cur_freq) { |
| 3850 | gen6_set_rps_thresholds(dev_priv, val); |
Jeff McGee | b8a5ff8 | 2014-02-04 11:37:01 -0600 | [diff] [blame] | 3851 | |
Ben Widawsky | 50e6a2a | 2014-03-31 17:16:43 -0700 | [diff] [blame] | 3852 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Chris Wilson | eb64cad | 2014-03-27 08:24:20 +0000 | [diff] [blame] | 3853 | I915_WRITE(GEN6_RPNSWREQ, |
| 3854 | HSW_FREQUENCY(val)); |
| 3855 | else |
| 3856 | I915_WRITE(GEN6_RPNSWREQ, |
| 3857 | GEN6_FREQUENCY(val) | |
| 3858 | GEN6_OFFSET(0) | |
| 3859 | GEN6_AGGRESSIVE_TURBO); |
Jeff McGee | b8a5ff8 | 2014-02-04 11:37:01 -0600 | [diff] [blame] | 3860 | } |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 3861 | |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 3862 | /* Make sure we continue to get interrupts |
| 3863 | * until we hit the minimum or maximum frequencies. |
| 3864 | */ |
Chris Wilson | eb64cad | 2014-03-27 08:24:20 +0000 | [diff] [blame] | 3865 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, gen6_rps_limits(dev_priv, val)); |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 3866 | I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val)); |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 3867 | |
Ben Widawsky | d5570a7 | 2012-09-07 19:43:41 -0700 | [diff] [blame] | 3868 | POSTING_READ(GEN6_RPNSWREQ); |
| 3869 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3870 | dev_priv->rps.cur_freq = val; |
Daniel Vetter | be2cde9 | 2012-08-30 13:26:48 +0200 | [diff] [blame] | 3871 | trace_intel_gpu_freq_change(val * 50); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 3872 | } |
| 3873 | |
Ville Syrjälä | ffe02b4 | 2015-02-02 19:09:50 +0200 | [diff] [blame] | 3874 | static void valleyview_set_rps(struct drm_device *dev, u8 val) |
| 3875 | { |
| 3876 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3877 | |
| 3878 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
| 3879 | WARN_ON(val > dev_priv->rps.max_freq_softlimit); |
| 3880 | WARN_ON(val < dev_priv->rps.min_freq_softlimit); |
| 3881 | |
| 3882 | if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1), |
| 3883 | "Odd GPU freq value\n")) |
| 3884 | val &= ~1; |
| 3885 | |
| 3886 | if (val != dev_priv->rps.cur_freq) |
| 3887 | vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val); |
| 3888 | |
| 3889 | I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val)); |
| 3890 | |
| 3891 | dev_priv->rps.cur_freq = val; |
| 3892 | trace_intel_gpu_freq_change(intel_gpu_freq(dev_priv, val)); |
| 3893 | } |
| 3894 | |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3895 | /* vlv_set_rps_idle: Set the frequency to Rpn if Gfx clocks are down |
| 3896 | * |
| 3897 | * * If Gfx is Idle, then |
| 3898 | * 1. Mask Turbo interrupts |
| 3899 | * 2. Bring up Gfx clock |
| 3900 | * 3. Change the freq to Rpn and wait till P-Unit updates freq |
| 3901 | * 4. Clear the Force GFX CLK ON bit so that Gfx can down |
| 3902 | * 5. Unmask Turbo interrupts |
| 3903 | */ |
| 3904 | static void vlv_set_rps_idle(struct drm_i915_private *dev_priv) |
| 3905 | { |
Deepak S | 5549d25 | 2014-06-28 11:26:11 +0530 | [diff] [blame] | 3906 | struct drm_device *dev = dev_priv->dev; |
| 3907 | |
Ville Syrjälä | 21a11ff | 2015-01-27 16:36:15 +0200 | [diff] [blame] | 3908 | /* CHV and latest VLV don't need to force the gfx clock */ |
| 3909 | if (IS_CHERRYVIEW(dev) || dev->pdev->revision >= 0xd) { |
Deepak S | 5549d25 | 2014-06-28 11:26:11 +0530 | [diff] [blame] | 3910 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
| 3911 | return; |
| 3912 | } |
| 3913 | |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3914 | /* |
| 3915 | * When we are idle. Drop to min voltage state. |
| 3916 | */ |
| 3917 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3918 | if (dev_priv->rps.cur_freq <= dev_priv->rps.min_freq_softlimit) |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3919 | return; |
| 3920 | |
| 3921 | /* Mask turbo interrupt so that they will not come in between */ |
Imre Deak | f24eeb1 | 2014-12-19 19:33:27 +0200 | [diff] [blame] | 3922 | I915_WRITE(GEN6_PMINTRMSK, |
| 3923 | gen6_sanitize_rps_pm_mask(dev_priv, ~0)); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3924 | |
Imre Deak | 650ad97 | 2014-04-18 16:35:02 +0300 | [diff] [blame] | 3925 | vlv_force_gfx_clock(dev_priv, true); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3926 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3927 | dev_priv->rps.cur_freq = dev_priv->rps.min_freq_softlimit; |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3928 | |
| 3929 | vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3930 | dev_priv->rps.min_freq_softlimit); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3931 | |
| 3932 | if (wait_for(((vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS)) |
Imre Deak | 2837ac4 | 2014-11-19 16:25:38 +0200 | [diff] [blame] | 3933 | & GENFREQSTATUS) == 0, 100)) |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3934 | DRM_ERROR("timed out waiting for Punit\n"); |
| 3935 | |
Imre Deak | 650ad97 | 2014-04-18 16:35:02 +0300 | [diff] [blame] | 3936 | vlv_force_gfx_clock(dev_priv, false); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3937 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 3938 | I915_WRITE(GEN6_PMINTRMSK, |
| 3939 | gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq)); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3940 | } |
| 3941 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 3942 | void gen6_rps_idle(struct drm_i915_private *dev_priv) |
| 3943 | { |
Damien Lespiau | 691bb71 | 2013-12-12 14:36:36 +0000 | [diff] [blame] | 3944 | struct drm_device *dev = dev_priv->dev; |
| 3945 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 3946 | mutex_lock(&dev_priv->rps.hw_lock); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 3947 | if (dev_priv->rps.enabled) { |
Ville Syrjälä | 21a11ff | 2015-01-27 16:36:15 +0200 | [diff] [blame] | 3948 | if (IS_VALLEYVIEW(dev)) |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 3949 | vlv_set_rps_idle(dev_priv); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 3950 | else |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 3951 | gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 3952 | dev_priv->rps.last_adj = 0; |
| 3953 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 3954 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 3955 | } |
| 3956 | |
| 3957 | void gen6_rps_boost(struct drm_i915_private *dev_priv) |
| 3958 | { |
| 3959 | mutex_lock(&dev_priv->rps.hw_lock); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 3960 | if (dev_priv->rps.enabled) { |
Ville Syrjälä | ffe02b4 | 2015-02-02 19:09:50 +0200 | [diff] [blame] | 3961 | intel_set_rps(dev_priv->dev, dev_priv->rps.max_freq_softlimit); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 3962 | dev_priv->rps.last_adj = 0; |
| 3963 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 3964 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 3965 | } |
| 3966 | |
Ville Syrjälä | ffe02b4 | 2015-02-02 19:09:50 +0200 | [diff] [blame] | 3967 | void intel_set_rps(struct drm_device *dev, u8 val) |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3968 | { |
Ville Syrjälä | ffe02b4 | 2015-02-02 19:09:50 +0200 | [diff] [blame] | 3969 | if (IS_VALLEYVIEW(dev)) |
| 3970 | valleyview_set_rps(dev, val); |
| 3971 | else |
| 3972 | gen6_set_rps(dev, val); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 3973 | } |
| 3974 | |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 3975 | static void gen9_disable_rps(struct drm_device *dev) |
| 3976 | { |
| 3977 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3978 | |
| 3979 | I915_WRITE(GEN6_RC_CONTROL, 0); |
Zhe Wang | 38c2352 | 2015-01-20 12:23:04 +0000 | [diff] [blame] | 3980 | I915_WRITE(GEN9_PG_ENABLE, 0); |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 3981 | } |
| 3982 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 3983 | static void gen6_disable_rps(struct drm_device *dev) |
| 3984 | { |
| 3985 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3986 | |
| 3987 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 3988 | I915_WRITE(GEN6_RPNSWREQ, 1 << 31); |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 3989 | } |
| 3990 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 3991 | static void cherryview_disable_rps(struct drm_device *dev) |
| 3992 | { |
| 3993 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3994 | |
| 3995 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 3996 | } |
| 3997 | |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 3998 | static void valleyview_disable_rps(struct drm_device *dev) |
| 3999 | { |
| 4000 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4001 | |
Deepak S | 98a2e5f | 2014-08-18 10:35:27 -0700 | [diff] [blame] | 4002 | /* we're doing forcewake before Disabling RC6, |
| 4003 | * This what the BIOS expects when going into suspend */ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4004 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Deepak S | 98a2e5f | 2014-08-18 10:35:27 -0700 | [diff] [blame] | 4005 | |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4006 | I915_WRITE(GEN6_RC_CONTROL, 0); |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4007 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4008 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4009 | } |
| 4010 | |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4011 | static void intel_print_rc6_info(struct drm_device *dev, u32 mode) |
| 4012 | { |
Imre Deak | 91ca689 | 2014-04-14 20:24:25 +0300 | [diff] [blame] | 4013 | if (IS_VALLEYVIEW(dev)) { |
| 4014 | if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1))) |
| 4015 | mode = GEN6_RC_CTL_RC6_ENABLE; |
| 4016 | else |
| 4017 | mode = 0; |
| 4018 | } |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 4019 | if (HAS_RC6p(dev)) |
| 4020 | DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n", |
| 4021 | (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off", |
| 4022 | (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off", |
| 4023 | (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off"); |
| 4024 | |
| 4025 | else |
| 4026 | DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n", |
| 4027 | (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off"); |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4028 | } |
| 4029 | |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4030 | static int sanitize_rc6_option(const struct drm_device *dev, int enable_rc6) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4031 | { |
Damien Lespiau | eb4926e | 2013-06-07 17:41:14 +0100 | [diff] [blame] | 4032 | /* No RC6 before Ironlake */ |
| 4033 | if (INTEL_INFO(dev)->gen < 5) |
| 4034 | return 0; |
| 4035 | |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4036 | /* RC6 is only on Ironlake mobile not on desktop */ |
| 4037 | if (INTEL_INFO(dev)->gen == 5 && !IS_IRONLAKE_M(dev)) |
| 4038 | return 0; |
| 4039 | |
Daniel Vetter | 456470e | 2012-08-08 23:35:40 +0200 | [diff] [blame] | 4040 | /* Respect the kernel parameter if it is set */ |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4041 | if (enable_rc6 >= 0) { |
| 4042 | int mask; |
| 4043 | |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 4044 | if (HAS_RC6p(dev)) |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4045 | mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE | |
| 4046 | INTEL_RC6pp_ENABLE; |
| 4047 | else |
| 4048 | mask = INTEL_RC6_ENABLE; |
| 4049 | |
| 4050 | if ((enable_rc6 & mask) != enable_rc6) |
Daniel Vetter | 8dfd1f0 | 2014-08-04 11:15:56 +0200 | [diff] [blame] | 4051 | DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n", |
| 4052 | enable_rc6 & mask, enable_rc6, mask); |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4053 | |
| 4054 | return enable_rc6 & mask; |
| 4055 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4056 | |
Chris Wilson | 6567d74 | 2012-11-10 10:00:06 +0000 | [diff] [blame] | 4057 | /* Disable RC6 on Ironlake */ |
| 4058 | if (INTEL_INFO(dev)->gen == 5) |
| 4059 | return 0; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4060 | |
Ben Widawsky | 8bade1a | 2014-01-28 20:25:39 -0800 | [diff] [blame] | 4061 | if (IS_IVYBRIDGE(dev)) |
Ben Widawsky | cca84a1 | 2014-01-28 20:25:38 -0800 | [diff] [blame] | 4062 | return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE); |
Ben Widawsky | 8bade1a | 2014-01-28 20:25:39 -0800 | [diff] [blame] | 4063 | |
| 4064 | return INTEL_RC6_ENABLE; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4065 | } |
| 4066 | |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4067 | int intel_enable_rc6(const struct drm_device *dev) |
| 4068 | { |
| 4069 | return i915.enable_rc6; |
| 4070 | } |
| 4071 | |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4072 | static void gen6_init_rps_frequencies(struct drm_device *dev) |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4073 | { |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4074 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4075 | uint32_t rp_state_cap; |
| 4076 | u32 ddcc_status = 0; |
| 4077 | int ret; |
| 4078 | |
| 4079 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4080 | /* All of these values are in units of 50MHz */ |
| 4081 | dev_priv->rps.cur_freq = 0; |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4082 | /* static values from HW: RP0 > RP1 > RPn (min_freq) */ |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4083 | dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff; |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4084 | dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff; |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4085 | dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff; |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4086 | /* hw_max = RP0 until we check for overclocking */ |
| 4087 | dev_priv->rps.max_freq = dev_priv->rps.rp0_freq; |
| 4088 | |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4089 | dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq; |
| 4090 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
| 4091 | ret = sandybridge_pcode_read(dev_priv, |
| 4092 | HSW_PCODE_DYNAMIC_DUTY_CYCLE_CONTROL, |
| 4093 | &ddcc_status); |
| 4094 | if (0 == ret) |
| 4095 | dev_priv->rps.efficient_freq = |
Tom O'Rourke | 46efa4a | 2015-02-10 23:06:46 -0800 | [diff] [blame] | 4096 | clamp_t(u8, |
| 4097 | ((ddcc_status >> 8) & 0xff), |
| 4098 | dev_priv->rps.min_freq, |
| 4099 | dev_priv->rps.max_freq); |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4100 | } |
| 4101 | |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4102 | /* Preserve min/max settings in case of re-init */ |
| 4103 | if (dev_priv->rps.max_freq_softlimit == 0) |
| 4104 | dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq; |
| 4105 | |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4106 | if (dev_priv->rps.min_freq_softlimit == 0) { |
| 4107 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
| 4108 | dev_priv->rps.min_freq_softlimit = |
Tom O'Rourke | f4ab408 | 2014-11-19 14:21:53 -0800 | [diff] [blame] | 4109 | /* max(RPe, 450 MHz) */ |
| 4110 | max(dev_priv->rps.efficient_freq, (u8) 9); |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4111 | else |
| 4112 | dev_priv->rps.min_freq_softlimit = |
| 4113 | dev_priv->rps.min_freq; |
| 4114 | } |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4115 | } |
| 4116 | |
Jesse Barnes | b6fef0e | 2015-01-16 18:07:25 +0000 | [diff] [blame] | 4117 | /* See the Gen9_GT_PM_Programming_Guide doc for the below */ |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 4118 | static void gen9_enable_rps(struct drm_device *dev) |
| 4119 | { |
| 4120 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | b6fef0e | 2015-01-16 18:07:25 +0000 | [diff] [blame] | 4121 | |
| 4122 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
| 4123 | |
Damien Lespiau | ba1c554 | 2015-01-16 18:07:26 +0000 | [diff] [blame] | 4124 | gen6_init_rps_frequencies(dev); |
| 4125 | |
Jesse Barnes | b6fef0e | 2015-01-16 18:07:25 +0000 | [diff] [blame] | 4126 | I915_WRITE(GEN6_RPNSWREQ, 0xc800000); |
| 4127 | I915_WRITE(GEN6_RC_VIDEO_FREQ, 0xc800000); |
| 4128 | |
| 4129 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 0xf4240); |
| 4130 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, 0x12060000); |
| 4131 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 0xe808); |
| 4132 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 0x3bd08); |
| 4133 | I915_WRITE(GEN6_RP_UP_EI, 0x101d0); |
| 4134 | I915_WRITE(GEN6_RP_DOWN_EI, 0x55730); |
| 4135 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 0xa); |
| 4136 | I915_WRITE(GEN6_PMINTRMSK, 0x6); |
| 4137 | I915_WRITE(GEN6_RP_CONTROL, GEN6_RP_MEDIA_TURBO | |
| 4138 | GEN6_RP_MEDIA_HW_MODE | GEN6_RP_MEDIA_IS_GFX | |
| 4139 | GEN6_RP_ENABLE | GEN6_RP_UP_BUSY_AVG | |
| 4140 | GEN6_RP_DOWN_IDLE_AVG); |
| 4141 | |
| 4142 | gen6_enable_rps_interrupts(dev); |
| 4143 | |
| 4144 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
| 4145 | } |
| 4146 | |
| 4147 | static void gen9_enable_rc6(struct drm_device *dev) |
| 4148 | { |
| 4149 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 4150 | struct intel_engine_cs *ring; |
| 4151 | uint32_t rc6_mask = 0; |
| 4152 | int unused; |
| 4153 | |
| 4154 | /* 1a: Software RC state - RC0 */ |
| 4155 | I915_WRITE(GEN6_RC_STATE, 0); |
| 4156 | |
| 4157 | /* 1b: Get forcewake during program sequence. Although the driver |
| 4158 | * hasn't enabled a state yet where we need forcewake, BIOS may have.*/ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4159 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 4160 | |
| 4161 | /* 2a: Disable RC states. */ |
| 4162 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4163 | |
| 4164 | /* 2b: Program RC6 thresholds.*/ |
| 4165 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 54 << 16); |
| 4166 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */ |
| 4167 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */ |
| 4168 | for_each_ring(ring, dev_priv, unused) |
| 4169 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 4170 | I915_WRITE(GEN6_RC_SLEEP, 0); |
| 4171 | I915_WRITE(GEN6_RC6_THRESHOLD, 37500); /* 37.5/125ms per EI */ |
| 4172 | |
Zhe Wang | 38c2352 | 2015-01-20 12:23:04 +0000 | [diff] [blame] | 4173 | /* 2c: Program Coarse Power Gating Policies. */ |
| 4174 | I915_WRITE(GEN9_MEDIA_PG_IDLE_HYSTERESIS, 25); |
| 4175 | I915_WRITE(GEN9_RENDER_PG_IDLE_HYSTERESIS, 25); |
| 4176 | |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 4177 | /* 3a: Enable RC6 */ |
| 4178 | if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE) |
| 4179 | rc6_mask = GEN6_RC_CTL_RC6_ENABLE; |
| 4180 | DRM_INFO("RC6 %s\n", (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? |
| 4181 | "on" : "off"); |
| 4182 | I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE | |
| 4183 | GEN6_RC_CTL_EI_MODE(1) | |
| 4184 | rc6_mask); |
| 4185 | |
Zhe Wang | 38c2352 | 2015-01-20 12:23:04 +0000 | [diff] [blame] | 4186 | /* 3b: Enable Coarse Power Gating only when RC6 is enabled */ |
| 4187 | I915_WRITE(GEN9_PG_ENABLE, (rc6_mask & GEN6_RC_CTL_RC6_ENABLE) ? 3 : 0); |
| 4188 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4189 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 4190 | |
| 4191 | } |
| 4192 | |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4193 | static void gen8_enable_rps(struct drm_device *dev) |
| 4194 | { |
| 4195 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 4196 | struct intel_engine_cs *ring; |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4197 | uint32_t rc6_mask = 0; |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4198 | int unused; |
| 4199 | |
| 4200 | /* 1a: Software RC state - RC0 */ |
| 4201 | I915_WRITE(GEN6_RC_STATE, 0); |
| 4202 | |
| 4203 | /* 1c & 1d: Get forcewake during program sequence. Although the driver |
| 4204 | * hasn't enabled a state yet where we need forcewake, BIOS may have.*/ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4205 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4206 | |
| 4207 | /* 2a: Disable RC states. */ |
| 4208 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4209 | |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4210 | /* Initialize rps frequencies */ |
| 4211 | gen6_init_rps_frequencies(dev); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4212 | |
| 4213 | /* 2b: Program RC6 thresholds.*/ |
| 4214 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16); |
| 4215 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */ |
| 4216 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */ |
| 4217 | for_each_ring(ring, dev_priv, unused) |
| 4218 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 4219 | I915_WRITE(GEN6_RC_SLEEP, 0); |
Tom O'Rourke | 0d68b25 | 2014-04-09 11:44:06 -0700 | [diff] [blame] | 4220 | if (IS_BROADWELL(dev)) |
| 4221 | I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */ |
| 4222 | else |
| 4223 | I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4224 | |
| 4225 | /* 3: Enable RC6 */ |
| 4226 | if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE) |
| 4227 | rc6_mask = GEN6_RC_CTL_RC6_ENABLE; |
Ben Widawsky | abbf9d2 | 2014-01-28 20:25:41 -0800 | [diff] [blame] | 4228 | intel_print_rc6_info(dev, rc6_mask); |
Tom O'Rourke | 0d68b25 | 2014-04-09 11:44:06 -0700 | [diff] [blame] | 4229 | if (IS_BROADWELL(dev)) |
| 4230 | I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE | |
| 4231 | GEN7_RC_CTL_TO_MODE | |
| 4232 | rc6_mask); |
| 4233 | else |
| 4234 | I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE | |
| 4235 | GEN6_RC_CTL_EI_MODE(1) | |
| 4236 | rc6_mask); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4237 | |
| 4238 | /* 4 Program defaults and thresholds for RPS*/ |
Ben Widawsky | f9bdc58 | 2014-03-31 17:16:41 -0700 | [diff] [blame] | 4239 | I915_WRITE(GEN6_RPNSWREQ, |
| 4240 | HSW_FREQUENCY(dev_priv->rps.rp1_freq)); |
| 4241 | I915_WRITE(GEN6_RC_VIDEO_FREQ, |
| 4242 | HSW_FREQUENCY(dev_priv->rps.rp1_freq)); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4243 | /* NB: Docs say 1s, and 1000000 - which aren't equivalent */ |
| 4244 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4245 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4246 | /* Docs recommend 900MHz, and 300 MHz respectively */ |
| 4247 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, |
| 4248 | dev_priv->rps.max_freq_softlimit << 24 | |
| 4249 | dev_priv->rps.min_freq_softlimit << 16); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4250 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4251 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */ |
| 4252 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/ |
| 4253 | I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */ |
| 4254 | I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4255 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4256 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4257 | |
| 4258 | /* 5: Enable RPS */ |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4259 | I915_WRITE(GEN6_RP_CONTROL, |
| 4260 | GEN6_RP_MEDIA_TURBO | |
| 4261 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 4262 | GEN6_RP_MEDIA_IS_GFX | |
| 4263 | GEN6_RP_ENABLE | |
| 4264 | GEN6_RP_UP_BUSY_AVG | |
| 4265 | GEN6_RP_DOWN_IDLE_AVG); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4266 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4267 | /* 6: Ring frequency + overclocking (our driver does this later */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4268 | |
Tom O'Rourke | c7f3153 | 2014-11-19 14:21:54 -0800 | [diff] [blame] | 4269 | dev_priv->rps.power = HIGH_POWER; /* force a reset */ |
| 4270 | gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4271 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4272 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4273 | } |
| 4274 | |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4275 | static void gen6_enable_rps(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4276 | { |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4277 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 4278 | struct intel_engine_cs *ring; |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4279 | u32 rc6vids, pcu_mbox = 0, rc6_mask = 0; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4280 | u32 gtfifodbg; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4281 | int rc6_mode; |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4282 | int i, ret; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4283 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4284 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4285 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4286 | /* Here begins a magic sequence of register writes to enable |
| 4287 | * auto-downclocking. |
| 4288 | * |
| 4289 | * Perhaps there might be some value in exposing these to |
| 4290 | * userspace... |
| 4291 | */ |
| 4292 | I915_WRITE(GEN6_RC_STATE, 0); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4293 | |
| 4294 | /* Clear the DBG now so we don't confuse earlier errors */ |
| 4295 | if ((gtfifodbg = I915_READ(GTFIFODBG))) { |
| 4296 | DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg); |
| 4297 | I915_WRITE(GTFIFODBG, gtfifodbg); |
| 4298 | } |
| 4299 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4300 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4301 | |
Tom O'Rourke | 93ee292 | 2014-11-19 14:21:52 -0800 | [diff] [blame] | 4302 | /* Initialize rps frequencies */ |
| 4303 | gen6_init_rps_frequencies(dev); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4304 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4305 | /* disable the counters and set deterministic thresholds */ |
| 4306 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4307 | |
| 4308 | I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16); |
| 4309 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30); |
| 4310 | I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30); |
| 4311 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); |
| 4312 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); |
| 4313 | |
Chris Wilson | b451951 | 2012-05-11 14:29:30 +0100 | [diff] [blame] | 4314 | for_each_ring(ring, dev_priv, i) |
| 4315 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4316 | |
| 4317 | I915_WRITE(GEN6_RC_SLEEP, 0); |
| 4318 | I915_WRITE(GEN6_RC1e_THRESHOLD, 1000); |
Daniel Vetter | 29c78f6 | 2013-11-16 16:04:26 +0100 | [diff] [blame] | 4319 | if (IS_IVYBRIDGE(dev)) |
Stéphane Marchesin | 351aa56 | 2013-08-13 11:55:17 -0700 | [diff] [blame] | 4320 | I915_WRITE(GEN6_RC6_THRESHOLD, 125000); |
| 4321 | else |
| 4322 | I915_WRITE(GEN6_RC6_THRESHOLD, 50000); |
Stéphane Marchesin | 0920a48 | 2013-01-29 19:41:59 -0800 | [diff] [blame] | 4323 | I915_WRITE(GEN6_RC6p_THRESHOLD, 150000); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4324 | I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */ |
| 4325 | |
Eugeni Dodonov | 5a7dc92 | 2012-07-02 11:51:05 -0300 | [diff] [blame] | 4326 | /* Check if we are enabling RC6 */ |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4327 | rc6_mode = intel_enable_rc6(dev_priv->dev); |
| 4328 | if (rc6_mode & INTEL_RC6_ENABLE) |
| 4329 | rc6_mask |= GEN6_RC_CTL_RC6_ENABLE; |
| 4330 | |
Eugeni Dodonov | 5a7dc92 | 2012-07-02 11:51:05 -0300 | [diff] [blame] | 4331 | /* We don't use those on Haswell */ |
| 4332 | if (!IS_HASWELL(dev)) { |
| 4333 | if (rc6_mode & INTEL_RC6p_ENABLE) |
| 4334 | rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4335 | |
Eugeni Dodonov | 5a7dc92 | 2012-07-02 11:51:05 -0300 | [diff] [blame] | 4336 | if (rc6_mode & INTEL_RC6pp_ENABLE) |
| 4337 | rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE; |
| 4338 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4339 | |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4340 | intel_print_rc6_info(dev, rc6_mask); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4341 | |
| 4342 | I915_WRITE(GEN6_RC_CONTROL, |
| 4343 | rc6_mask | |
| 4344 | GEN6_RC_CTL_EI_MODE(1) | |
| 4345 | GEN6_RC_CTL_HW_ENABLE); |
| 4346 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4347 | /* Power down if completely idle for over 50ms */ |
| 4348 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4349 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4350 | |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4351 | ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_MIN_FREQ_TABLE, 0); |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4352 | if (ret) |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4353 | DRM_DEBUG_DRIVER("Failed to set the min frequency\n"); |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4354 | |
| 4355 | ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox); |
| 4356 | if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */ |
| 4357 | DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n", |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4358 | (dev_priv->rps.max_freq_softlimit & 0xff) * 50, |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4359 | (pcu_mbox & 0xff) * 50); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4360 | dev_priv->rps.max_freq = pcu_mbox & 0xff; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4361 | } |
| 4362 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4363 | dev_priv->rps.power = HIGH_POWER; /* force a reset */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4364 | gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4365 | |
Ben Widawsky | 31643d5 | 2012-09-26 10:34:01 -0700 | [diff] [blame] | 4366 | rc6vids = 0; |
| 4367 | ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids); |
| 4368 | if (IS_GEN6(dev) && ret) { |
| 4369 | DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n"); |
| 4370 | } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) { |
| 4371 | DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n", |
| 4372 | GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450); |
| 4373 | rc6vids &= 0xffff00; |
| 4374 | rc6vids |= GEN6_ENCODE_RC6_VID(450); |
| 4375 | ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids); |
| 4376 | if (ret) |
| 4377 | DRM_ERROR("Couldn't fix incorrect rc6 voltage\n"); |
| 4378 | } |
| 4379 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4380 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4381 | } |
| 4382 | |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 4383 | static void __gen6_update_ring_freq(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4384 | { |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4385 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4386 | int min_freq = 15; |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4387 | unsigned int gpu_freq; |
| 4388 | unsigned int max_ia_freq, min_ring_freq; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4389 | int scaling_factor = 180; |
Ben Widawsky | eda7964 | 2013-10-07 17:15:48 -0300 | [diff] [blame] | 4390 | struct cpufreq_policy *policy; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4391 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4392 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4393 | |
Ben Widawsky | eda7964 | 2013-10-07 17:15:48 -0300 | [diff] [blame] | 4394 | policy = cpufreq_cpu_get(0); |
| 4395 | if (policy) { |
| 4396 | max_ia_freq = policy->cpuinfo.max_freq; |
| 4397 | cpufreq_cpu_put(policy); |
| 4398 | } else { |
| 4399 | /* |
| 4400 | * Default to measured freq if none found, PCU will ensure we |
| 4401 | * don't go over |
| 4402 | */ |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4403 | max_ia_freq = tsc_khz; |
Ben Widawsky | eda7964 | 2013-10-07 17:15:48 -0300 | [diff] [blame] | 4404 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4405 | |
| 4406 | /* Convert from kHz to MHz */ |
| 4407 | max_ia_freq /= 1000; |
| 4408 | |
Ben Widawsky | 153b4b95 | 2013-10-22 22:05:09 -0700 | [diff] [blame] | 4409 | min_ring_freq = I915_READ(DCLK) & 0xf; |
Ben Widawsky | f6aca45 | 2013-10-02 09:25:02 -0700 | [diff] [blame] | 4410 | /* convert DDR frequency from units of 266.6MHz to bandwidth */ |
| 4411 | min_ring_freq = mult_frac(min_ring_freq, 8, 3); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4412 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4413 | /* |
| 4414 | * For each potential GPU frequency, load a ring frequency we'd like |
| 4415 | * to use for memory access. We do this by specifying the IA frequency |
| 4416 | * the PCU should use as a reference to determine the ring frequency. |
| 4417 | */ |
Tom O'Rourke | 6985b35 | 2014-11-19 14:21:55 -0800 | [diff] [blame] | 4418 | for (gpu_freq = dev_priv->rps.max_freq; gpu_freq >= dev_priv->rps.min_freq; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4419 | gpu_freq--) { |
Tom O'Rourke | 6985b35 | 2014-11-19 14:21:55 -0800 | [diff] [blame] | 4420 | int diff = dev_priv->rps.max_freq - gpu_freq; |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4421 | unsigned int ia_freq = 0, ring_freq = 0; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4422 | |
Ben Widawsky | 46c764d | 2013-11-02 21:07:49 -0700 | [diff] [blame] | 4423 | if (INTEL_INFO(dev)->gen >= 8) { |
| 4424 | /* max(2 * GT, DDR). NB: GT is 50MHz units */ |
| 4425 | ring_freq = max(min_ring_freq, gpu_freq); |
| 4426 | } else if (IS_HASWELL(dev)) { |
Ben Widawsky | f6aca45 | 2013-10-02 09:25:02 -0700 | [diff] [blame] | 4427 | ring_freq = mult_frac(gpu_freq, 5, 4); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4428 | ring_freq = max(min_ring_freq, ring_freq); |
| 4429 | /* leave ia_freq as the default, chosen by cpufreq */ |
| 4430 | } else { |
| 4431 | /* On older processors, there is no separate ring |
| 4432 | * clock domain, so in order to boost the bandwidth |
| 4433 | * of the ring, we need to upclock the CPU (ia_freq). |
| 4434 | * |
| 4435 | * For GPU frequencies less than 750MHz, |
| 4436 | * just use the lowest ring freq. |
| 4437 | */ |
| 4438 | if (gpu_freq < min_freq) |
| 4439 | ia_freq = 800; |
| 4440 | else |
| 4441 | ia_freq = max_ia_freq - ((diff * scaling_factor) / 2); |
| 4442 | ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100); |
| 4443 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4444 | |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4445 | sandybridge_pcode_write(dev_priv, |
| 4446 | GEN6_PCODE_WRITE_MIN_FREQ_TABLE, |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4447 | ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT | |
| 4448 | ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT | |
| 4449 | gpu_freq); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4450 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4451 | } |
| 4452 | |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 4453 | void gen6_update_ring_freq(struct drm_device *dev) |
| 4454 | { |
| 4455 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4456 | |
| 4457 | if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev)) |
| 4458 | return; |
| 4459 | |
| 4460 | mutex_lock(&dev_priv->rps.hw_lock); |
| 4461 | __gen6_update_ring_freq(dev); |
| 4462 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4463 | } |
| 4464 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 4465 | static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv) |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4466 | { |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4467 | struct drm_device *dev = dev_priv->dev; |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4468 | u32 val, rp0; |
| 4469 | |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4470 | if (dev->pdev->revision >= 0x20) { |
| 4471 | val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE); |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4472 | |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4473 | switch (INTEL_INFO(dev)->eu_total) { |
| 4474 | case 8: |
| 4475 | /* (2 * 4) config */ |
| 4476 | rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS4EU_FUSE_SHIFT); |
| 4477 | break; |
| 4478 | case 12: |
| 4479 | /* (2 * 6) config */ |
| 4480 | rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS6EU_FUSE_SHIFT); |
| 4481 | break; |
| 4482 | case 16: |
| 4483 | /* (2 * 8) config */ |
| 4484 | default: |
| 4485 | /* Setting (2 * 8) Min RP0 for any other combination */ |
| 4486 | rp0 = (val >> FB_GFX_FMAX_AT_VMAX_2SS8EU_FUSE_SHIFT); |
| 4487 | break; |
| 4488 | } |
| 4489 | rp0 = (rp0 & FB_GFX_FREQ_FUSE_MASK); |
| 4490 | } else { |
| 4491 | /* For pre-production hardware */ |
| 4492 | val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG); |
| 4493 | rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) & |
| 4494 | PUNIT_GPU_STATUS_MAX_FREQ_MASK; |
| 4495 | } |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4496 | return rp0; |
| 4497 | } |
| 4498 | |
| 4499 | static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv) |
| 4500 | { |
| 4501 | u32 val, rpe; |
| 4502 | |
| 4503 | val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG); |
| 4504 | rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK; |
| 4505 | |
| 4506 | return rpe; |
| 4507 | } |
| 4508 | |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 4509 | static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv) |
| 4510 | { |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4511 | struct drm_device *dev = dev_priv->dev; |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 4512 | u32 val, rp1; |
| 4513 | |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4514 | if (dev->pdev->revision >= 0x20) { |
| 4515 | val = vlv_punit_read(dev_priv, FB_GFX_FMAX_AT_VMAX_FUSE); |
| 4516 | rp1 = (val & FB_GFX_FREQ_FUSE_MASK); |
| 4517 | } else { |
| 4518 | /* For pre-production hardware */ |
| 4519 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 4520 | rp1 = ((val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) & |
| 4521 | PUNIT_GPU_STATUS_MAX_FREQ_MASK); |
| 4522 | } |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 4523 | return rp1; |
| 4524 | } |
| 4525 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 4526 | static int cherryview_rps_min_freq(struct drm_i915_private *dev_priv) |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4527 | { |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4528 | struct drm_device *dev = dev_priv->dev; |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4529 | u32 val, rpn; |
| 4530 | |
Deepak S | 095acd5 | 2015-01-17 11:05:59 +0530 | [diff] [blame] | 4531 | if (dev->pdev->revision >= 0x20) { |
| 4532 | val = vlv_punit_read(dev_priv, FB_GFX_FMIN_AT_VMIN_FUSE); |
| 4533 | rpn = ((val >> FB_GFX_FMIN_AT_VMIN_FUSE_SHIFT) & |
| 4534 | FB_GFX_FREQ_FUSE_MASK); |
| 4535 | } else { /* For pre-production hardware */ |
| 4536 | val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG); |
| 4537 | rpn = ((val >> PUNIT_GPU_STATIS_GFX_MIN_FREQ_SHIFT) & |
| 4538 | PUNIT_GPU_STATUS_GFX_MIN_FREQ_MASK); |
| 4539 | } |
| 4540 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4541 | return rpn; |
| 4542 | } |
| 4543 | |
Deepak S | f8f2b00 | 2014-07-10 13:16:21 +0530 | [diff] [blame] | 4544 | static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv) |
| 4545 | { |
| 4546 | u32 val, rp1; |
| 4547 | |
| 4548 | val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE); |
| 4549 | |
| 4550 | rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT; |
| 4551 | |
| 4552 | return rp1; |
| 4553 | } |
| 4554 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 4555 | static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv) |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4556 | { |
| 4557 | u32 val, rp0; |
| 4558 | |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 4559 | val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4560 | |
| 4561 | rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT; |
| 4562 | /* Clamp to max */ |
| 4563 | rp0 = min_t(u32, rp0, 0xea); |
| 4564 | |
| 4565 | return rp0; |
| 4566 | } |
| 4567 | |
| 4568 | static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv) |
| 4569 | { |
| 4570 | u32 val, rpe; |
| 4571 | |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 4572 | val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_LO); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4573 | rpe = (val & FB_FMAX_VMIN_FREQ_LO_MASK) >> FB_FMAX_VMIN_FREQ_LO_SHIFT; |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 4574 | val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FMAX_FUSE_HI); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4575 | rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5; |
| 4576 | |
| 4577 | return rpe; |
| 4578 | } |
| 4579 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 4580 | static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv) |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4581 | { |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 4582 | return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4583 | } |
| 4584 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 4585 | /* Check that the pctx buffer wasn't move under us. */ |
| 4586 | static void valleyview_check_pctx(struct drm_i915_private *dev_priv) |
| 4587 | { |
| 4588 | unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095; |
| 4589 | |
| 4590 | WARN_ON(pctx_addr != dev_priv->mm.stolen_base + |
| 4591 | dev_priv->vlv_pctx->stolen->start); |
| 4592 | } |
| 4593 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4594 | |
| 4595 | /* Check that the pcbr address is not empty. */ |
| 4596 | static void cherryview_check_pctx(struct drm_i915_private *dev_priv) |
| 4597 | { |
| 4598 | unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095; |
| 4599 | |
| 4600 | WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0); |
| 4601 | } |
| 4602 | |
| 4603 | static void cherryview_setup_pctx(struct drm_device *dev) |
| 4604 | { |
| 4605 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4606 | unsigned long pctx_paddr, paddr; |
| 4607 | struct i915_gtt *gtt = &dev_priv->gtt; |
| 4608 | u32 pcbr; |
| 4609 | int pctx_size = 32*1024; |
| 4610 | |
| 4611 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 4612 | |
| 4613 | pcbr = I915_READ(VLV_PCBR); |
| 4614 | if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) { |
Ville Syrjälä | ce611ef | 2014-11-07 21:33:46 +0200 | [diff] [blame] | 4615 | DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n"); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4616 | paddr = (dev_priv->mm.stolen_base + |
| 4617 | (gtt->stolen_size - pctx_size)); |
| 4618 | |
| 4619 | pctx_paddr = (paddr & (~4095)); |
| 4620 | I915_WRITE(VLV_PCBR, pctx_paddr); |
| 4621 | } |
Ville Syrjälä | ce611ef | 2014-11-07 21:33:46 +0200 | [diff] [blame] | 4622 | |
| 4623 | DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR)); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4624 | } |
| 4625 | |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 4626 | static void valleyview_setup_pctx(struct drm_device *dev) |
| 4627 | { |
| 4628 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4629 | struct drm_i915_gem_object *pctx; |
| 4630 | unsigned long pctx_paddr; |
| 4631 | u32 pcbr; |
| 4632 | int pctx_size = 24*1024; |
| 4633 | |
Imre Deak | 17b0c1f | 2014-02-11 21:39:06 +0200 | [diff] [blame] | 4634 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 4635 | |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 4636 | pcbr = I915_READ(VLV_PCBR); |
| 4637 | if (pcbr) { |
| 4638 | /* BIOS set it up already, grab the pre-alloc'd space */ |
| 4639 | int pcbr_offset; |
| 4640 | |
| 4641 | pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base; |
| 4642 | pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev, |
| 4643 | pcbr_offset, |
Daniel Vetter | 190d6cd | 2013-07-04 13:06:28 +0200 | [diff] [blame] | 4644 | I915_GTT_OFFSET_NONE, |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 4645 | pctx_size); |
| 4646 | goto out; |
| 4647 | } |
| 4648 | |
Ville Syrjälä | ce611ef | 2014-11-07 21:33:46 +0200 | [diff] [blame] | 4649 | DRM_DEBUG_DRIVER("BIOS didn't set up PCBR, fixing up\n"); |
| 4650 | |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 4651 | /* |
| 4652 | * From the Gunit register HAS: |
| 4653 | * The Gfx driver is expected to program this register and ensure |
| 4654 | * proper allocation within Gfx stolen memory. For example, this |
| 4655 | * register should be programmed such than the PCBR range does not |
| 4656 | * overlap with other ranges, such as the frame buffer, protected |
| 4657 | * memory, or any other relevant ranges. |
| 4658 | */ |
| 4659 | pctx = i915_gem_object_create_stolen(dev, pctx_size); |
| 4660 | if (!pctx) { |
| 4661 | DRM_DEBUG("not enough stolen space for PCTX, disabling\n"); |
| 4662 | return; |
| 4663 | } |
| 4664 | |
| 4665 | pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start; |
| 4666 | I915_WRITE(VLV_PCBR, pctx_paddr); |
| 4667 | |
| 4668 | out: |
Ville Syrjälä | ce611ef | 2014-11-07 21:33:46 +0200 | [diff] [blame] | 4669 | DRM_DEBUG_DRIVER("PCBR: 0x%08x\n", I915_READ(VLV_PCBR)); |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 4670 | dev_priv->vlv_pctx = pctx; |
| 4671 | } |
| 4672 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 4673 | static void valleyview_cleanup_pctx(struct drm_device *dev) |
| 4674 | { |
| 4675 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4676 | |
| 4677 | if (WARN_ON(!dev_priv->vlv_pctx)) |
| 4678 | return; |
| 4679 | |
| 4680 | drm_gem_object_unreference(&dev_priv->vlv_pctx->base); |
| 4681 | dev_priv->vlv_pctx = NULL; |
| 4682 | } |
| 4683 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4684 | static void valleyview_init_gt_powersave(struct drm_device *dev) |
| 4685 | { |
| 4686 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 4687 | u32 val; |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4688 | |
| 4689 | valleyview_setup_pctx(dev); |
| 4690 | |
| 4691 | mutex_lock(&dev_priv->rps.hw_lock); |
| 4692 | |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 4693 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 4694 | switch ((val >> 6) & 3) { |
| 4695 | case 0: |
| 4696 | case 1: |
| 4697 | dev_priv->mem_freq = 800; |
| 4698 | break; |
| 4699 | case 2: |
| 4700 | dev_priv->mem_freq = 1066; |
| 4701 | break; |
| 4702 | case 3: |
| 4703 | dev_priv->mem_freq = 1333; |
| 4704 | break; |
| 4705 | } |
Ville Syrjälä | 80b83b6 | 2014-11-10 22:55:14 +0200 | [diff] [blame] | 4706 | DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq); |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 4707 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4708 | dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv); |
| 4709 | dev_priv->rps.rp0_freq = dev_priv->rps.max_freq; |
| 4710 | DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4711 | intel_gpu_freq(dev_priv, dev_priv->rps.max_freq), |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4712 | dev_priv->rps.max_freq); |
| 4713 | |
| 4714 | dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv); |
| 4715 | DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4716 | intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4717 | dev_priv->rps.efficient_freq); |
| 4718 | |
Deepak S | f8f2b00 | 2014-07-10 13:16:21 +0530 | [diff] [blame] | 4719 | dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv); |
| 4720 | DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4721 | intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq), |
Deepak S | f8f2b00 | 2014-07-10 13:16:21 +0530 | [diff] [blame] | 4722 | dev_priv->rps.rp1_freq); |
| 4723 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4724 | dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv); |
| 4725 | DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4726 | intel_gpu_freq(dev_priv, dev_priv->rps.min_freq), |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4727 | dev_priv->rps.min_freq); |
| 4728 | |
| 4729 | /* Preserve min/max settings in case of re-init */ |
| 4730 | if (dev_priv->rps.max_freq_softlimit == 0) |
| 4731 | dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq; |
| 4732 | |
| 4733 | if (dev_priv->rps.min_freq_softlimit == 0) |
| 4734 | dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq; |
| 4735 | |
| 4736 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4737 | } |
| 4738 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4739 | static void cherryview_init_gt_powersave(struct drm_device *dev) |
| 4740 | { |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4741 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 4742 | u32 val; |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4743 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4744 | cherryview_setup_pctx(dev); |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4745 | |
| 4746 | mutex_lock(&dev_priv->rps.hw_lock); |
| 4747 | |
Ville Syrjälä | c6e8f39 | 2014-11-07 21:33:43 +0200 | [diff] [blame] | 4748 | mutex_lock(&dev_priv->dpio_lock); |
| 4749 | val = vlv_cck_read(dev_priv, CCK_FUSE_REG); |
| 4750 | mutex_unlock(&dev_priv->dpio_lock); |
| 4751 | |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 4752 | switch ((val >> 2) & 0x7) { |
| 4753 | case 0: |
| 4754 | case 1: |
| 4755 | dev_priv->rps.cz_freq = 200; |
| 4756 | dev_priv->mem_freq = 1600; |
| 4757 | break; |
| 4758 | case 2: |
| 4759 | dev_priv->rps.cz_freq = 267; |
| 4760 | dev_priv->mem_freq = 1600; |
| 4761 | break; |
| 4762 | case 3: |
| 4763 | dev_priv->rps.cz_freq = 333; |
| 4764 | dev_priv->mem_freq = 2000; |
| 4765 | break; |
| 4766 | case 4: |
| 4767 | dev_priv->rps.cz_freq = 320; |
| 4768 | dev_priv->mem_freq = 1600; |
| 4769 | break; |
| 4770 | case 5: |
| 4771 | dev_priv->rps.cz_freq = 400; |
| 4772 | dev_priv->mem_freq = 1600; |
| 4773 | break; |
| 4774 | } |
Ville Syrjälä | 80b83b6 | 2014-11-10 22:55:14 +0200 | [diff] [blame] | 4775 | DRM_DEBUG_DRIVER("DDR speed: %d MHz\n", dev_priv->mem_freq); |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 4776 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4777 | dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv); |
| 4778 | dev_priv->rps.rp0_freq = dev_priv->rps.max_freq; |
| 4779 | DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4780 | intel_gpu_freq(dev_priv, dev_priv->rps.max_freq), |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4781 | dev_priv->rps.max_freq); |
| 4782 | |
| 4783 | dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv); |
| 4784 | DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4785 | intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4786 | dev_priv->rps.efficient_freq); |
| 4787 | |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 4788 | dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv); |
| 4789 | DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4790 | intel_gpu_freq(dev_priv, dev_priv->rps.rp1_freq), |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 4791 | dev_priv->rps.rp1_freq); |
| 4792 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4793 | dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv); |
| 4794 | DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4795 | intel_gpu_freq(dev_priv, dev_priv->rps.min_freq), |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4796 | dev_priv->rps.min_freq); |
| 4797 | |
Ville Syrjälä | 1c14762 | 2014-08-18 14:42:43 +0300 | [diff] [blame] | 4798 | WARN_ONCE((dev_priv->rps.max_freq | |
| 4799 | dev_priv->rps.efficient_freq | |
| 4800 | dev_priv->rps.rp1_freq | |
| 4801 | dev_priv->rps.min_freq) & 1, |
| 4802 | "Odd GPU freq values\n"); |
| 4803 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4804 | /* Preserve min/max settings in case of re-init */ |
| 4805 | if (dev_priv->rps.max_freq_softlimit == 0) |
| 4806 | dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq; |
| 4807 | |
| 4808 | if (dev_priv->rps.min_freq_softlimit == 0) |
| 4809 | dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq; |
| 4810 | |
| 4811 | mutex_unlock(&dev_priv->rps.hw_lock); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4812 | } |
| 4813 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 4814 | static void valleyview_cleanup_gt_powersave(struct drm_device *dev) |
| 4815 | { |
| 4816 | valleyview_cleanup_pctx(dev); |
| 4817 | } |
| 4818 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4819 | static void cherryview_enable_rps(struct drm_device *dev) |
| 4820 | { |
| 4821 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4822 | struct intel_engine_cs *ring; |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4823 | u32 gtfifodbg, val, rc6_mode = 0, pcbr; |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4824 | int i; |
| 4825 | |
| 4826 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
| 4827 | |
| 4828 | gtfifodbg = I915_READ(GTFIFODBG); |
| 4829 | if (gtfifodbg) { |
| 4830 | DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n", |
| 4831 | gtfifodbg); |
| 4832 | I915_WRITE(GTFIFODBG, gtfifodbg); |
| 4833 | } |
| 4834 | |
| 4835 | cherryview_check_pctx(dev_priv); |
| 4836 | |
| 4837 | /* 1a & 1b: Get forcewake during program sequence. Although the driver |
| 4838 | * hasn't enabled a state yet where we need forcewake, BIOS may have.*/ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4839 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4840 | |
Ville Syrjälä | 160614a | 2015-01-19 13:50:47 +0200 | [diff] [blame] | 4841 | /* Disable RC states. */ |
| 4842 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4843 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4844 | /* 2a: Program RC6 thresholds.*/ |
| 4845 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16); |
| 4846 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */ |
| 4847 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */ |
| 4848 | |
| 4849 | for_each_ring(ring, dev_priv, i) |
| 4850 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 4851 | I915_WRITE(GEN6_RC_SLEEP, 0); |
| 4852 | |
Ville Syrjälä | af5a75a | 2015-01-19 13:50:50 +0200 | [diff] [blame] | 4853 | /* TO threshold set to 1750 us ( 0x557 * 1.28 us) */ |
| 4854 | I915_WRITE(GEN6_RC6_THRESHOLD, 0x557); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4855 | |
| 4856 | /* allows RC6 residency counter to work */ |
| 4857 | I915_WRITE(VLV_COUNTER_CONTROL, |
| 4858 | _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH | |
| 4859 | VLV_MEDIA_RC6_COUNT_EN | |
| 4860 | VLV_RENDER_RC6_COUNT_EN)); |
| 4861 | |
| 4862 | /* For now we assume BIOS is allocating and populating the PCBR */ |
| 4863 | pcbr = I915_READ(VLV_PCBR); |
| 4864 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4865 | /* 3: Enable RC6 */ |
| 4866 | if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) && |
| 4867 | (pcbr >> VLV_PCBR_ADDR_SHIFT)) |
Ville Syrjälä | af5a75a | 2015-01-19 13:50:50 +0200 | [diff] [blame] | 4868 | rc6_mode = GEN7_RC_CTL_TO_MODE; |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4869 | |
| 4870 | I915_WRITE(GEN6_RC_CONTROL, rc6_mode); |
| 4871 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4872 | /* 4 Program defaults and thresholds for RPS*/ |
Ville Syrjälä | 3cbdb48 | 2015-01-19 13:50:49 +0200 | [diff] [blame] | 4873 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000); |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4874 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400); |
| 4875 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000); |
| 4876 | I915_WRITE(GEN6_RP_UP_EI, 66000); |
| 4877 | I915_WRITE(GEN6_RP_DOWN_EI, 350000); |
| 4878 | |
| 4879 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
| 4880 | |
| 4881 | /* 5: Enable RPS */ |
| 4882 | I915_WRITE(GEN6_RP_CONTROL, |
| 4883 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
Ville Syrjälä | eb973a5 | 2015-01-21 19:37:59 +0200 | [diff] [blame] | 4884 | GEN6_RP_MEDIA_IS_GFX | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4885 | GEN6_RP_ENABLE | |
| 4886 | GEN6_RP_UP_BUSY_AVG | |
| 4887 | GEN6_RP_DOWN_IDLE_AVG); |
| 4888 | |
| 4889 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 4890 | |
Ville Syrjälä | 8d40c3a | 2014-11-07 21:33:45 +0200 | [diff] [blame] | 4891 | /* RPS code assumes GPLL is used */ |
| 4892 | WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n"); |
| 4893 | |
Ville Syrjälä | c8e9627 | 2014-11-07 21:33:44 +0200 | [diff] [blame] | 4894 | DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no"); |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4895 | DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val); |
| 4896 | |
| 4897 | dev_priv->rps.cur_freq = (val >> 8) & 0xff; |
| 4898 | DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4899 | intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq), |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4900 | dev_priv->rps.cur_freq); |
| 4901 | |
| 4902 | DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4903 | intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4904 | dev_priv->rps.efficient_freq); |
| 4905 | |
| 4906 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq); |
| 4907 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4908 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4909 | } |
| 4910 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4911 | static void valleyview_enable_rps(struct drm_device *dev) |
| 4912 | { |
| 4913 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 4914 | struct intel_engine_cs *ring; |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 4915 | u32 gtfifodbg, val, rc6_mode = 0; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4916 | int i; |
| 4917 | |
| 4918 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
| 4919 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 4920 | valleyview_check_pctx(dev_priv); |
| 4921 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4922 | if ((gtfifodbg = I915_READ(GTFIFODBG))) { |
Jesse Barnes | f7d85c1 | 2013-09-27 10:40:54 -0700 | [diff] [blame] | 4923 | DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n", |
| 4924 | gtfifodbg); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4925 | I915_WRITE(GTFIFODBG, gtfifodbg); |
| 4926 | } |
| 4927 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4928 | /* If VLV, Forcewake all wells, else re-direct to regular path */ |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4929 | intel_uncore_forcewake_get(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4930 | |
Ville Syrjälä | 160614a | 2015-01-19 13:50:47 +0200 | [diff] [blame] | 4931 | /* Disable RC states. */ |
| 4932 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4933 | |
Ville Syrjälä | cad725f | 2015-01-19 13:50:48 +0200 | [diff] [blame] | 4934 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 1000000); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4935 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400); |
| 4936 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000); |
| 4937 | I915_WRITE(GEN6_RP_UP_EI, 66000); |
| 4938 | I915_WRITE(GEN6_RP_DOWN_EI, 350000); |
| 4939 | |
| 4940 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
| 4941 | |
| 4942 | I915_WRITE(GEN6_RP_CONTROL, |
| 4943 | GEN6_RP_MEDIA_TURBO | |
| 4944 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 4945 | GEN6_RP_MEDIA_IS_GFX | |
| 4946 | GEN6_RP_ENABLE | |
| 4947 | GEN6_RP_UP_BUSY_AVG | |
| 4948 | GEN6_RP_DOWN_IDLE_CONT); |
| 4949 | |
| 4950 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000); |
| 4951 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); |
| 4952 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); |
| 4953 | |
| 4954 | for_each_ring(ring, dev_priv, i) |
| 4955 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 4956 | |
Jesse Barnes | 2f0aa30 | 2013-11-15 09:32:11 -0800 | [diff] [blame] | 4957 | I915_WRITE(GEN6_RC6_THRESHOLD, 0x557); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4958 | |
| 4959 | /* allows RC6 residency counter to work */ |
Jesse Barnes | 49798eb | 2013-09-26 17:55:57 -0700 | [diff] [blame] | 4960 | I915_WRITE(VLV_COUNTER_CONTROL, |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 4961 | _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN | |
| 4962 | VLV_RENDER_RC0_COUNT_EN | |
Jesse Barnes | 49798eb | 2013-09-26 17:55:57 -0700 | [diff] [blame] | 4963 | VLV_MEDIA_RC6_COUNT_EN | |
| 4964 | VLV_RENDER_RC6_COUNT_EN)); |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 4965 | |
Jesse Barnes | a2b23fe | 2013-09-19 09:33:13 -0700 | [diff] [blame] | 4966 | if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE) |
Jesse Barnes | 6b88f29 | 2013-11-15 09:32:12 -0800 | [diff] [blame] | 4967 | rc6_mode = GEN7_RC_CTL_TO_MODE | VLV_RC_CTL_CTX_RST_PARALLEL; |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4968 | |
| 4969 | intel_print_rc6_info(dev, rc6_mode); |
| 4970 | |
Jesse Barnes | a2b23fe | 2013-09-19 09:33:13 -0700 | [diff] [blame] | 4971 | I915_WRITE(GEN6_RC_CONTROL, rc6_mode); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4972 | |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 4973 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4974 | |
Ville Syrjälä | 8d40c3a | 2014-11-07 21:33:45 +0200 | [diff] [blame] | 4975 | /* RPS code assumes GPLL is used */ |
| 4976 | WARN_ONCE((val & GPLLENABLE) == 0, "GPLL not enabled\n"); |
| 4977 | |
Ville Syrjälä | c8e9627 | 2014-11-07 21:33:44 +0200 | [diff] [blame] | 4978 | DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & GPLLENABLE ? "yes" : "no"); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4979 | DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val); |
| 4980 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4981 | dev_priv->rps.cur_freq = (val >> 8) & 0xff; |
Ville Syrjälä | 73008b9 | 2013-06-25 19:21:01 +0300 | [diff] [blame] | 4982 | DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4983 | intel_gpu_freq(dev_priv, dev_priv->rps.cur_freq), |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4984 | dev_priv->rps.cur_freq); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4985 | |
Ville Syrjälä | 73008b9 | 2013-06-25 19:21:01 +0300 | [diff] [blame] | 4986 | DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n", |
Ville Syrjälä | 7c59a9c1 | 2015-01-23 21:04:26 +0200 | [diff] [blame] | 4987 | intel_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4988 | dev_priv->rps.efficient_freq); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4989 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4990 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4991 | |
Mika Kuoppala | 59bad94 | 2015-01-16 11:34:40 +0200 | [diff] [blame] | 4992 | intel_uncore_forcewake_put(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4993 | } |
| 4994 | |
Eugeni Dodonov | dde1888 | 2012-04-18 15:29:24 -0300 | [diff] [blame] | 4995 | static unsigned long intel_pxfreq(u32 vidfreq) |
| 4996 | { |
| 4997 | unsigned long freq; |
| 4998 | int div = (vidfreq & 0x3f0000) >> 16; |
| 4999 | int post = (vidfreq & 0x3000) >> 12; |
| 5000 | int pre = (vidfreq & 0x7); |
| 5001 | |
| 5002 | if (!pre) |
| 5003 | return 0; |
| 5004 | |
| 5005 | freq = ((div * 133333) / ((1<<post) * pre)); |
| 5006 | |
| 5007 | return freq; |
| 5008 | } |
| 5009 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5010 | static const struct cparams { |
| 5011 | u16 i; |
| 5012 | u16 t; |
| 5013 | u16 m; |
| 5014 | u16 c; |
| 5015 | } cparams[] = { |
| 5016 | { 1, 1333, 301, 28664 }, |
| 5017 | { 1, 1066, 294, 24460 }, |
| 5018 | { 1, 800, 294, 25192 }, |
| 5019 | { 0, 1333, 276, 27605 }, |
| 5020 | { 0, 1066, 276, 27605 }, |
| 5021 | { 0, 800, 231, 23784 }, |
| 5022 | }; |
| 5023 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5024 | static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5025 | { |
| 5026 | u64 total_count, diff, ret; |
| 5027 | u32 count1, count2, count3, m = 0, c = 0; |
| 5028 | unsigned long now = jiffies_to_msecs(jiffies), diff1; |
| 5029 | int i; |
| 5030 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5031 | assert_spin_locked(&mchdev_lock); |
| 5032 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5033 | diff1 = now - dev_priv->ips.last_time1; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5034 | |
| 5035 | /* Prevent division-by-zero if we are asking too fast. |
| 5036 | * Also, we don't get interesting results if we are polling |
| 5037 | * faster than once in 10ms, so just return the saved value |
| 5038 | * in such cases. |
| 5039 | */ |
| 5040 | if (diff1 <= 10) |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5041 | return dev_priv->ips.chipset_power; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5042 | |
| 5043 | count1 = I915_READ(DMIEC); |
| 5044 | count2 = I915_READ(DDREC); |
| 5045 | count3 = I915_READ(CSIEC); |
| 5046 | |
| 5047 | total_count = count1 + count2 + count3; |
| 5048 | |
| 5049 | /* FIXME: handle per-counter overflow */ |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5050 | if (total_count < dev_priv->ips.last_count1) { |
| 5051 | diff = ~0UL - dev_priv->ips.last_count1; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5052 | diff += total_count; |
| 5053 | } else { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5054 | diff = total_count - dev_priv->ips.last_count1; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5055 | } |
| 5056 | |
| 5057 | for (i = 0; i < ARRAY_SIZE(cparams); i++) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5058 | if (cparams[i].i == dev_priv->ips.c_m && |
| 5059 | cparams[i].t == dev_priv->ips.r_t) { |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5060 | m = cparams[i].m; |
| 5061 | c = cparams[i].c; |
| 5062 | break; |
| 5063 | } |
| 5064 | } |
| 5065 | |
| 5066 | diff = div_u64(diff, diff1); |
| 5067 | ret = ((m * diff) + c); |
| 5068 | ret = div_u64(ret, 10); |
| 5069 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5070 | dev_priv->ips.last_count1 = total_count; |
| 5071 | dev_priv->ips.last_time1 = now; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5072 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5073 | dev_priv->ips.chipset_power = ret; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5074 | |
| 5075 | return ret; |
| 5076 | } |
| 5077 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5078 | unsigned long i915_chipset_val(struct drm_i915_private *dev_priv) |
| 5079 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5080 | struct drm_device *dev = dev_priv->dev; |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5081 | unsigned long val; |
| 5082 | |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5083 | if (INTEL_INFO(dev)->gen != 5) |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5084 | return 0; |
| 5085 | |
| 5086 | spin_lock_irq(&mchdev_lock); |
| 5087 | |
| 5088 | val = __i915_chipset_val(dev_priv); |
| 5089 | |
| 5090 | spin_unlock_irq(&mchdev_lock); |
| 5091 | |
| 5092 | return val; |
| 5093 | } |
| 5094 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5095 | unsigned long i915_mch_val(struct drm_i915_private *dev_priv) |
| 5096 | { |
| 5097 | unsigned long m, x, b; |
| 5098 | u32 tsfs; |
| 5099 | |
| 5100 | tsfs = I915_READ(TSFS); |
| 5101 | |
| 5102 | m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT); |
| 5103 | x = I915_READ8(TR1); |
| 5104 | |
| 5105 | b = tsfs & TSFS_INTR_MASK; |
| 5106 | |
| 5107 | return ((m * x) / 127) - b; |
| 5108 | } |
| 5109 | |
Mika Kuoppala | d972d6e | 2014-12-01 18:01:05 +0200 | [diff] [blame] | 5110 | static int _pxvid_to_vd(u8 pxvid) |
| 5111 | { |
| 5112 | if (pxvid == 0) |
| 5113 | return 0; |
| 5114 | |
| 5115 | if (pxvid >= 8 && pxvid < 31) |
| 5116 | pxvid = 31; |
| 5117 | |
| 5118 | return (pxvid + 2) * 125; |
| 5119 | } |
| 5120 | |
| 5121 | static u32 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5122 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5123 | struct drm_device *dev = dev_priv->dev; |
Mika Kuoppala | d972d6e | 2014-12-01 18:01:05 +0200 | [diff] [blame] | 5124 | const int vd = _pxvid_to_vd(pxvid); |
| 5125 | const int vm = vd - 1125; |
| 5126 | |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5127 | if (INTEL_INFO(dev)->is_mobile) |
Mika Kuoppala | d972d6e | 2014-12-01 18:01:05 +0200 | [diff] [blame] | 5128 | return vm > 0 ? vm : 0; |
| 5129 | |
| 5130 | return vd; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5131 | } |
| 5132 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5133 | static void __i915_update_gfx_val(struct drm_i915_private *dev_priv) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5134 | { |
Thomas Gleixner | 5ed0bdf | 2014-07-16 21:05:06 +0000 | [diff] [blame] | 5135 | u64 now, diff, diffms; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5136 | u32 count; |
| 5137 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5138 | assert_spin_locked(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5139 | |
Thomas Gleixner | 5ed0bdf | 2014-07-16 21:05:06 +0000 | [diff] [blame] | 5140 | now = ktime_get_raw_ns(); |
| 5141 | diffms = now - dev_priv->ips.last_time2; |
| 5142 | do_div(diffms, NSEC_PER_MSEC); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5143 | |
| 5144 | /* Don't divide by 0 */ |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5145 | if (!diffms) |
| 5146 | return; |
| 5147 | |
| 5148 | count = I915_READ(GFXEC); |
| 5149 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5150 | if (count < dev_priv->ips.last_count2) { |
| 5151 | diff = ~0UL - dev_priv->ips.last_count2; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5152 | diff += count; |
| 5153 | } else { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5154 | diff = count - dev_priv->ips.last_count2; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5155 | } |
| 5156 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5157 | dev_priv->ips.last_count2 = count; |
| 5158 | dev_priv->ips.last_time2 = now; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5159 | |
| 5160 | /* More magic constants... */ |
| 5161 | diff = diff * 1181; |
| 5162 | diff = div_u64(diff, diffms * 10); |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5163 | dev_priv->ips.gfx_power = diff; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5164 | } |
| 5165 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5166 | void i915_update_gfx_val(struct drm_i915_private *dev_priv) |
| 5167 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5168 | struct drm_device *dev = dev_priv->dev; |
| 5169 | |
| 5170 | if (INTEL_INFO(dev)->gen != 5) |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5171 | return; |
| 5172 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5173 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5174 | |
| 5175 | __i915_update_gfx_val(dev_priv); |
| 5176 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5177 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5178 | } |
| 5179 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5180 | static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5181 | { |
| 5182 | unsigned long t, corr, state1, corr2, state2; |
| 5183 | u32 pxvid, ext_v; |
| 5184 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5185 | assert_spin_locked(&mchdev_lock); |
| 5186 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 5187 | pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4)); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5188 | pxvid = (pxvid >> 24) & 0x7f; |
| 5189 | ext_v = pvid_to_extvid(dev_priv, pxvid); |
| 5190 | |
| 5191 | state1 = ext_v; |
| 5192 | |
| 5193 | t = i915_mch_val(dev_priv); |
| 5194 | |
| 5195 | /* Revel in the empirically derived constants */ |
| 5196 | |
| 5197 | /* Correction factor in 1/100000 units */ |
| 5198 | if (t > 80) |
| 5199 | corr = ((t * 2349) + 135940); |
| 5200 | else if (t >= 50) |
| 5201 | corr = ((t * 964) + 29317); |
| 5202 | else /* < 50 */ |
| 5203 | corr = ((t * 301) + 1004); |
| 5204 | |
| 5205 | corr = corr * ((150142 * state1) / 10000 - 78642); |
| 5206 | corr /= 100000; |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5207 | corr2 = (corr * dev_priv->ips.corr); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5208 | |
| 5209 | state2 = (corr2 * state1) / 10000; |
| 5210 | state2 /= 100; /* convert to mW */ |
| 5211 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5212 | __i915_update_gfx_val(dev_priv); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5213 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5214 | return dev_priv->ips.gfx_power + state2; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5215 | } |
| 5216 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5217 | unsigned long i915_gfx_val(struct drm_i915_private *dev_priv) |
| 5218 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5219 | struct drm_device *dev = dev_priv->dev; |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5220 | unsigned long val; |
| 5221 | |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5222 | if (INTEL_INFO(dev)->gen != 5) |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5223 | return 0; |
| 5224 | |
| 5225 | spin_lock_irq(&mchdev_lock); |
| 5226 | |
| 5227 | val = __i915_gfx_val(dev_priv); |
| 5228 | |
| 5229 | spin_unlock_irq(&mchdev_lock); |
| 5230 | |
| 5231 | return val; |
| 5232 | } |
| 5233 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5234 | /** |
| 5235 | * i915_read_mch_val - return value for IPS use |
| 5236 | * |
| 5237 | * Calculate and return a value for the IPS driver to use when deciding whether |
| 5238 | * we have thermal and power headroom to increase CPU or GPU power budget. |
| 5239 | */ |
| 5240 | unsigned long i915_read_mch_val(void) |
| 5241 | { |
| 5242 | struct drm_i915_private *dev_priv; |
| 5243 | unsigned long chipset_val, graphics_val, ret = 0; |
| 5244 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5245 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5246 | if (!i915_mch_dev) |
| 5247 | goto out_unlock; |
| 5248 | dev_priv = i915_mch_dev; |
| 5249 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5250 | chipset_val = __i915_chipset_val(dev_priv); |
| 5251 | graphics_val = __i915_gfx_val(dev_priv); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5252 | |
| 5253 | ret = chipset_val + graphics_val; |
| 5254 | |
| 5255 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5256 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5257 | |
| 5258 | return ret; |
| 5259 | } |
| 5260 | EXPORT_SYMBOL_GPL(i915_read_mch_val); |
| 5261 | |
| 5262 | /** |
| 5263 | * i915_gpu_raise - raise GPU frequency limit |
| 5264 | * |
| 5265 | * Raise the limit; IPS indicates we have thermal headroom. |
| 5266 | */ |
| 5267 | bool i915_gpu_raise(void) |
| 5268 | { |
| 5269 | struct drm_i915_private *dev_priv; |
| 5270 | bool ret = true; |
| 5271 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5272 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5273 | if (!i915_mch_dev) { |
| 5274 | ret = false; |
| 5275 | goto out_unlock; |
| 5276 | } |
| 5277 | dev_priv = i915_mch_dev; |
| 5278 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5279 | if (dev_priv->ips.max_delay > dev_priv->ips.fmax) |
| 5280 | dev_priv->ips.max_delay--; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5281 | |
| 5282 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5283 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5284 | |
| 5285 | return ret; |
| 5286 | } |
| 5287 | EXPORT_SYMBOL_GPL(i915_gpu_raise); |
| 5288 | |
| 5289 | /** |
| 5290 | * i915_gpu_lower - lower GPU frequency limit |
| 5291 | * |
| 5292 | * IPS indicates we're close to a thermal limit, so throttle back the GPU |
| 5293 | * frequency maximum. |
| 5294 | */ |
| 5295 | bool i915_gpu_lower(void) |
| 5296 | { |
| 5297 | struct drm_i915_private *dev_priv; |
| 5298 | bool ret = true; |
| 5299 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5300 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5301 | if (!i915_mch_dev) { |
| 5302 | ret = false; |
| 5303 | goto out_unlock; |
| 5304 | } |
| 5305 | dev_priv = i915_mch_dev; |
| 5306 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5307 | if (dev_priv->ips.max_delay < dev_priv->ips.min_delay) |
| 5308 | dev_priv->ips.max_delay++; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5309 | |
| 5310 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5311 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5312 | |
| 5313 | return ret; |
| 5314 | } |
| 5315 | EXPORT_SYMBOL_GPL(i915_gpu_lower); |
| 5316 | |
| 5317 | /** |
| 5318 | * i915_gpu_busy - indicate GPU business to IPS |
| 5319 | * |
| 5320 | * Tell the IPS driver whether or not the GPU is busy. |
| 5321 | */ |
| 5322 | bool i915_gpu_busy(void) |
| 5323 | { |
| 5324 | struct drm_i915_private *dev_priv; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 5325 | struct intel_engine_cs *ring; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5326 | bool ret = false; |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 5327 | int i; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5328 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5329 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5330 | if (!i915_mch_dev) |
| 5331 | goto out_unlock; |
| 5332 | dev_priv = i915_mch_dev; |
| 5333 | |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 5334 | for_each_ring(ring, dev_priv, i) |
| 5335 | ret |= !list_empty(&ring->request_list); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5336 | |
| 5337 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5338 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5339 | |
| 5340 | return ret; |
| 5341 | } |
| 5342 | EXPORT_SYMBOL_GPL(i915_gpu_busy); |
| 5343 | |
| 5344 | /** |
| 5345 | * i915_gpu_turbo_disable - disable graphics turbo |
| 5346 | * |
| 5347 | * Disable graphics turbo by resetting the max frequency and setting the |
| 5348 | * current frequency to the default. |
| 5349 | */ |
| 5350 | bool i915_gpu_turbo_disable(void) |
| 5351 | { |
| 5352 | struct drm_i915_private *dev_priv; |
| 5353 | bool ret = true; |
| 5354 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5355 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5356 | if (!i915_mch_dev) { |
| 5357 | ret = false; |
| 5358 | goto out_unlock; |
| 5359 | } |
| 5360 | dev_priv = i915_mch_dev; |
| 5361 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5362 | dev_priv->ips.max_delay = dev_priv->ips.fstart; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5363 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5364 | if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart)) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5365 | ret = false; |
| 5366 | |
| 5367 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5368 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5369 | |
| 5370 | return ret; |
| 5371 | } |
| 5372 | EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable); |
| 5373 | |
| 5374 | /** |
| 5375 | * Tells the intel_ips driver that the i915 driver is now loaded, if |
| 5376 | * IPS got loaded first. |
| 5377 | * |
| 5378 | * This awkward dance is so that neither module has to depend on the |
| 5379 | * other in order for IPS to do the appropriate communication of |
| 5380 | * GPU turbo limits to i915. |
| 5381 | */ |
| 5382 | static void |
| 5383 | ips_ping_for_i915_load(void) |
| 5384 | { |
| 5385 | void (*link)(void); |
| 5386 | |
| 5387 | link = symbol_get(ips_link_to_i915_driver); |
| 5388 | if (link) { |
| 5389 | link(); |
| 5390 | symbol_put(ips_link_to_i915_driver); |
| 5391 | } |
| 5392 | } |
| 5393 | |
| 5394 | void intel_gpu_ips_init(struct drm_i915_private *dev_priv) |
| 5395 | { |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5396 | /* We only register the i915 ips part with intel-ips once everything is |
| 5397 | * set up, to avoid intel-ips sneaking in and reading bogus values. */ |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5398 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5399 | i915_mch_dev = dev_priv; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5400 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5401 | |
| 5402 | ips_ping_for_i915_load(); |
| 5403 | } |
| 5404 | |
| 5405 | void intel_gpu_ips_teardown(void) |
| 5406 | { |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5407 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5408 | i915_mch_dev = NULL; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5409 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5410 | } |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 5411 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5412 | static void intel_init_emon(struct drm_device *dev) |
Eugeni Dodonov | dde1888 | 2012-04-18 15:29:24 -0300 | [diff] [blame] | 5413 | { |
| 5414 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5415 | u32 lcfuse; |
| 5416 | u8 pxw[16]; |
| 5417 | int i; |
| 5418 | |
| 5419 | /* Disable to program */ |
| 5420 | I915_WRITE(ECR, 0); |
| 5421 | POSTING_READ(ECR); |
| 5422 | |
| 5423 | /* Program energy weights for various events */ |
| 5424 | I915_WRITE(SDEW, 0x15040d00); |
| 5425 | I915_WRITE(CSIEW0, 0x007f0000); |
| 5426 | I915_WRITE(CSIEW1, 0x1e220004); |
| 5427 | I915_WRITE(CSIEW2, 0x04000004); |
| 5428 | |
| 5429 | for (i = 0; i < 5; i++) |
| 5430 | I915_WRITE(PEW + (i * 4), 0); |
| 5431 | for (i = 0; i < 3; i++) |
| 5432 | I915_WRITE(DEW + (i * 4), 0); |
| 5433 | |
| 5434 | /* Program P-state weights to account for frequency power adjustment */ |
| 5435 | for (i = 0; i < 16; i++) { |
| 5436 | u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4)); |
| 5437 | unsigned long freq = intel_pxfreq(pxvidfreq); |
| 5438 | unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >> |
| 5439 | PXVFREQ_PX_SHIFT; |
| 5440 | unsigned long val; |
| 5441 | |
| 5442 | val = vid * vid; |
| 5443 | val *= (freq / 1000); |
| 5444 | val *= 255; |
| 5445 | val /= (127*127*900); |
| 5446 | if (val > 0xff) |
| 5447 | DRM_ERROR("bad pxval: %ld\n", val); |
| 5448 | pxw[i] = val; |
| 5449 | } |
| 5450 | /* Render standby states get 0 weight */ |
| 5451 | pxw[14] = 0; |
| 5452 | pxw[15] = 0; |
| 5453 | |
| 5454 | for (i = 0; i < 4; i++) { |
| 5455 | u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) | |
| 5456 | (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]); |
| 5457 | I915_WRITE(PXW + (i * 4), val); |
| 5458 | } |
| 5459 | |
| 5460 | /* Adjust magic regs to magic values (more experimental results) */ |
| 5461 | I915_WRITE(OGW0, 0); |
| 5462 | I915_WRITE(OGW1, 0); |
| 5463 | I915_WRITE(EG0, 0x00007f00); |
| 5464 | I915_WRITE(EG1, 0x0000000e); |
| 5465 | I915_WRITE(EG2, 0x000e0000); |
| 5466 | I915_WRITE(EG3, 0x68000300); |
| 5467 | I915_WRITE(EG4, 0x42000000); |
| 5468 | I915_WRITE(EG5, 0x00140031); |
| 5469 | I915_WRITE(EG6, 0); |
| 5470 | I915_WRITE(EG7, 0); |
| 5471 | |
| 5472 | for (i = 0; i < 8; i++) |
| 5473 | I915_WRITE(PXWL + (i * 4), 0); |
| 5474 | |
| 5475 | /* Enable PMON + select events */ |
| 5476 | I915_WRITE(ECR, 0x80000019); |
| 5477 | |
| 5478 | lcfuse = I915_READ(LCFUSE02); |
| 5479 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5480 | dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK); |
Eugeni Dodonov | dde1888 | 2012-04-18 15:29:24 -0300 | [diff] [blame] | 5481 | } |
| 5482 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 5483 | void intel_init_gt_powersave(struct drm_device *dev) |
| 5484 | { |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 5485 | i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6); |
| 5486 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5487 | if (IS_CHERRYVIEW(dev)) |
| 5488 | cherryview_init_gt_powersave(dev); |
| 5489 | else if (IS_VALLEYVIEW(dev)) |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5490 | valleyview_init_gt_powersave(dev); |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 5491 | } |
| 5492 | |
| 5493 | void intel_cleanup_gt_powersave(struct drm_device *dev) |
| 5494 | { |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5495 | if (IS_CHERRYVIEW(dev)) |
| 5496 | return; |
| 5497 | else if (IS_VALLEYVIEW(dev)) |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5498 | valleyview_cleanup_gt_powersave(dev); |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 5499 | } |
| 5500 | |
Imre Deak | dbea3ce | 2014-12-15 18:59:28 +0200 | [diff] [blame] | 5501 | static void gen6_suspend_rps(struct drm_device *dev) |
| 5502 | { |
| 5503 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5504 | |
| 5505 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 5506 | |
| 5507 | /* |
| 5508 | * TODO: disable RPS interrupts on GEN9+ too once RPS support |
| 5509 | * is added for it. |
| 5510 | */ |
| 5511 | if (INTEL_INFO(dev)->gen < 9) |
| 5512 | gen6_disable_rps_interrupts(dev); |
| 5513 | } |
| 5514 | |
Jesse Barnes | 156c7ca | 2014-06-12 08:35:45 -0700 | [diff] [blame] | 5515 | /** |
| 5516 | * intel_suspend_gt_powersave - suspend PM work and helper threads |
| 5517 | * @dev: drm device |
| 5518 | * |
| 5519 | * We don't want to disable RC6 or other features here, we just want |
| 5520 | * to make sure any work we've queued has finished and won't bother |
| 5521 | * us while we're suspended. |
| 5522 | */ |
| 5523 | void intel_suspend_gt_powersave(struct drm_device *dev) |
| 5524 | { |
| 5525 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5526 | |
Imre Deak | d4d70aa | 2014-11-19 15:30:04 +0200 | [diff] [blame] | 5527 | if (INTEL_INFO(dev)->gen < 6) |
| 5528 | return; |
| 5529 | |
Imre Deak | dbea3ce | 2014-12-15 18:59:28 +0200 | [diff] [blame] | 5530 | gen6_suspend_rps(dev); |
Deepak S | b47adc1 | 2014-06-20 20:03:02 +0530 | [diff] [blame] | 5531 | |
| 5532 | /* Force GPU to min freq during suspend */ |
| 5533 | gen6_rps_idle(dev_priv); |
Jesse Barnes | 156c7ca | 2014-06-12 08:35:45 -0700 | [diff] [blame] | 5534 | } |
| 5535 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5536 | void intel_disable_gt_powersave(struct drm_device *dev) |
| 5537 | { |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 5538 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5539 | |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 5540 | if (IS_IRONLAKE_M(dev)) { |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5541 | ironlake_disable_drps(dev); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5542 | } else if (INTEL_INFO(dev)->gen >= 6) { |
Daniel Vetter | 10d8d36 | 2014-06-12 17:48:52 +0200 | [diff] [blame] | 5543 | intel_suspend_gt_powersave(dev); |
Imre Deak | e494837 | 2014-05-12 18:35:04 +0300 | [diff] [blame] | 5544 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 5545 | mutex_lock(&dev_priv->rps.hw_lock); |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 5546 | if (INTEL_INFO(dev)->gen >= 9) |
| 5547 | gen9_disable_rps(dev); |
| 5548 | else if (IS_CHERRYVIEW(dev)) |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5549 | cherryview_disable_rps(dev); |
| 5550 | else if (IS_VALLEYVIEW(dev)) |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 5551 | valleyview_disable_rps(dev); |
| 5552 | else |
| 5553 | gen6_disable_rps(dev); |
Imre Deak | e534770 | 2014-11-19 15:30:02 +0200 | [diff] [blame] | 5554 | |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 5555 | dev_priv->rps.enabled = false; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 5556 | mutex_unlock(&dev_priv->rps.hw_lock); |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 5557 | } |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5558 | } |
| 5559 | |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 5560 | static void intel_gen6_powersave_work(struct work_struct *work) |
| 5561 | { |
| 5562 | struct drm_i915_private *dev_priv = |
| 5563 | container_of(work, struct drm_i915_private, |
| 5564 | rps.delayed_resume_work.work); |
| 5565 | struct drm_device *dev = dev_priv->dev; |
| 5566 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 5567 | mutex_lock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5568 | |
Imre Deak | 3cc134e | 2014-11-19 15:30:03 +0200 | [diff] [blame] | 5569 | /* |
| 5570 | * TODO: reset/enable RPS interrupts on GEN9+ too, once RPS support is |
| 5571 | * added for it. |
| 5572 | */ |
| 5573 | if (INTEL_INFO(dev)->gen < 9) |
| 5574 | gen6_reset_rps_interrupts(dev); |
| 5575 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5576 | if (IS_CHERRYVIEW(dev)) { |
| 5577 | cherryview_enable_rps(dev); |
| 5578 | } else if (IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5579 | valleyview_enable_rps(dev); |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 5580 | } else if (INTEL_INFO(dev)->gen >= 9) { |
Jesse Barnes | b6fef0e | 2015-01-16 18:07:25 +0000 | [diff] [blame] | 5581 | gen9_enable_rc6(dev); |
Zhe Wang | 20e4936 | 2014-11-04 17:07:05 +0000 | [diff] [blame] | 5582 | gen9_enable_rps(dev); |
Jesse Barnes | b6fef0e | 2015-01-16 18:07:25 +0000 | [diff] [blame] | 5583 | __gen6_update_ring_freq(dev); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 5584 | } else if (IS_BROADWELL(dev)) { |
| 5585 | gen8_enable_rps(dev); |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 5586 | __gen6_update_ring_freq(dev); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5587 | } else { |
| 5588 | gen6_enable_rps(dev); |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 5589 | __gen6_update_ring_freq(dev); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5590 | } |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 5591 | dev_priv->rps.enabled = true; |
Imre Deak | 3cc134e | 2014-11-19 15:30:03 +0200 | [diff] [blame] | 5592 | |
| 5593 | if (INTEL_INFO(dev)->gen < 9) |
| 5594 | gen6_enable_rps_interrupts(dev); |
| 5595 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 5596 | mutex_unlock(&dev_priv->rps.hw_lock); |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 5597 | |
| 5598 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 5599 | } |
| 5600 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5601 | void intel_enable_gt_powersave(struct drm_device *dev) |
| 5602 | { |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 5603 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5604 | |
Yu Zhang | f61018b | 2015-02-10 19:05:52 +0800 | [diff] [blame] | 5605 | /* Powersaving is controlled by the host when inside a VM */ |
| 5606 | if (intel_vgpu_active(dev)) |
| 5607 | return; |
| 5608 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5609 | if (IS_IRONLAKE_M(dev)) { |
Imre Deak | dc1d013 | 2014-04-14 20:24:28 +0300 | [diff] [blame] | 5610 | mutex_lock(&dev->struct_mutex); |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5611 | ironlake_enable_drps(dev); |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5612 | intel_init_emon(dev); |
Imre Deak | dc1d013 | 2014-04-14 20:24:28 +0300 | [diff] [blame] | 5613 | mutex_unlock(&dev->struct_mutex); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5614 | } else if (INTEL_INFO(dev)->gen >= 6) { |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 5615 | /* |
| 5616 | * PCU communication is slow and this doesn't need to be |
| 5617 | * done at any specific time, so do this out of our fast path |
| 5618 | * to make resume and init faster. |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 5619 | * |
| 5620 | * We depend on the HW RC6 power context save/restore |
| 5621 | * mechanism when entering D3 through runtime PM suspend. So |
| 5622 | * disable RPM until RPS/RC6 is properly setup. We can only |
| 5623 | * get here via the driver load/system resume/runtime resume |
| 5624 | * paths, so the _noresume version is enough (and in case of |
| 5625 | * runtime resume it's necessary). |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 5626 | */ |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 5627 | if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work, |
| 5628 | round_jiffies_up_relative(HZ))) |
| 5629 | intel_runtime_pm_get_noresume(dev_priv); |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 5630 | } |
| 5631 | } |
| 5632 | |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 5633 | void intel_reset_gt_powersave(struct drm_device *dev) |
| 5634 | { |
| 5635 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5636 | |
Imre Deak | dbea3ce | 2014-12-15 18:59:28 +0200 | [diff] [blame] | 5637 | if (INTEL_INFO(dev)->gen < 6) |
| 5638 | return; |
| 5639 | |
| 5640 | gen6_suspend_rps(dev); |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 5641 | dev_priv->rps.enabled = false; |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 5642 | } |
| 5643 | |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5644 | static void ibx_init_clock_gating(struct drm_device *dev) |
| 5645 | { |
| 5646 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5647 | |
| 5648 | /* |
| 5649 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 5650 | * gating for the panel power sequencer or it will fail to |
| 5651 | * start up when no ports are active. |
| 5652 | */ |
| 5653 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE); |
| 5654 | } |
| 5655 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 5656 | static void g4x_disable_trickle_feed(struct drm_device *dev) |
| 5657 | { |
| 5658 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5659 | int pipe; |
| 5660 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 5661 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 5662 | I915_WRITE(DSPCNTR(pipe), |
| 5663 | I915_READ(DSPCNTR(pipe)) | |
| 5664 | DISPPLANE_TRICKLE_FEED_DISABLE); |
Ville Syrjälä | 1dba99f | 2013-10-01 18:02:18 +0300 | [diff] [blame] | 5665 | intel_flush_primary_plane(dev_priv, pipe); |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 5666 | } |
| 5667 | } |
| 5668 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 5669 | static void ilk_init_lp_watermarks(struct drm_device *dev) |
| 5670 | { |
| 5671 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5672 | |
| 5673 | I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN); |
| 5674 | I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN); |
| 5675 | I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN); |
| 5676 | |
| 5677 | /* |
| 5678 | * Don't touch WM1S_LP_EN here. |
| 5679 | * Doing so could cause underruns. |
| 5680 | */ |
| 5681 | } |
| 5682 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 5683 | static void ironlake_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5684 | { |
| 5685 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 5686 | uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5687 | |
Damien Lespiau | f1e8fa5 | 2013-06-07 17:41:09 +0100 | [diff] [blame] | 5688 | /* |
| 5689 | * Required for FBC |
| 5690 | * WaFbcDisableDpfcClockGating:ilk |
| 5691 | */ |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 5692 | dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE | |
| 5693 | ILK_DPFCUNIT_CLOCK_GATE_DISABLE | |
| 5694 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5695 | |
| 5696 | I915_WRITE(PCH_3DCGDIS0, |
| 5697 | MARIUNIT_CLOCK_GATE_DISABLE | |
| 5698 | SVSMUNIT_CLOCK_GATE_DISABLE); |
| 5699 | I915_WRITE(PCH_3DCGDIS1, |
| 5700 | VFMUNIT_CLOCK_GATE_DISABLE); |
| 5701 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5702 | /* |
| 5703 | * According to the spec the following bits should be set in |
| 5704 | * order to enable memory self-refresh |
| 5705 | * The bit 22/21 of 0x42004 |
| 5706 | * The bit 5 of 0x42020 |
| 5707 | * The bit 15 of 0x45000 |
| 5708 | */ |
| 5709 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 5710 | (I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 5711 | ILK_DPARB_GATE | ILK_VSDPFD_FULL)); |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 5712 | dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5713 | I915_WRITE(DISP_ARB_CTL, |
| 5714 | (I915_READ(DISP_ARB_CTL) | |
| 5715 | DISP_FBC_WM_DIS)); |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 5716 | |
| 5717 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5718 | |
| 5719 | /* |
| 5720 | * Based on the document from hardware guys the following bits |
| 5721 | * should be set unconditionally in order to enable FBC. |
| 5722 | * The bit 22 of 0x42000 |
| 5723 | * The bit 22 of 0x42004 |
| 5724 | * The bit 7,8,9 of 0x42020. |
| 5725 | */ |
| 5726 | if (IS_IRONLAKE_M(dev)) { |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 5727 | /* WaFbcAsynchFlipDisableFbcQueue:ilk */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5728 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 5729 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 5730 | ILK_FBCQ_DIS); |
| 5731 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 5732 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 5733 | ILK_DPARB_GATE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5734 | } |
| 5735 | |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 5736 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
| 5737 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5738 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 5739 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 5740 | ILK_ELPIN_409_SELECT); |
| 5741 | I915_WRITE(_3D_CHICKEN2, |
| 5742 | _3D_CHICKEN2_WM_READ_PIPELINED << 16 | |
| 5743 | _3D_CHICKEN2_WM_READ_PIPELINED); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 5744 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 5745 | /* WaDisableRenderCachePipelinedFlush:ilk */ |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 5746 | I915_WRITE(CACHE_MODE_0, |
| 5747 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5748 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 5749 | /* WaDisable_RenderCache_OperationalFlush:ilk */ |
| 5750 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 5751 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 5752 | g4x_disable_trickle_feed(dev); |
Ville Syrjälä | bdad2b2 | 2013-06-07 10:47:03 +0300 | [diff] [blame] | 5753 | |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5754 | ibx_init_clock_gating(dev); |
| 5755 | } |
| 5756 | |
| 5757 | static void cpt_init_clock_gating(struct drm_device *dev) |
| 5758 | { |
| 5759 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5760 | int pipe; |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 5761 | uint32_t val; |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5762 | |
| 5763 | /* |
| 5764 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 5765 | * gating for the panel power sequencer or it will fail to |
| 5766 | * start up when no ports are active. |
| 5767 | */ |
Jesse Barnes | cd66407 | 2013-10-02 10:34:19 -0700 | [diff] [blame] | 5768 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE | |
| 5769 | PCH_DPLUNIT_CLOCK_GATE_DISABLE | |
| 5770 | PCH_CPUNIT_CLOCK_GATE_DISABLE); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5771 | I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) | |
| 5772 | DPLS_EDP_PPS_FIX_DIS); |
Takashi Iwai | 335c07b | 2012-12-11 11:46:29 +0100 | [diff] [blame] | 5773 | /* The below fixes the weird display corruption, a few pixels shifted |
| 5774 | * downward, on (only) LVDS of some HP laptops with IVY. |
| 5775 | */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 5776 | for_each_pipe(dev_priv, pipe) { |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 5777 | val = I915_READ(TRANS_CHICKEN2(pipe)); |
| 5778 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 5779 | val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 5780 | if (dev_priv->vbt.fdi_rx_polarity_inverted) |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 5781 | val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 5782 | val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK; |
| 5783 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER; |
| 5784 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH; |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 5785 | I915_WRITE(TRANS_CHICKEN2(pipe), val); |
| 5786 | } |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5787 | /* WADP0ClockGatingDisable */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 5788 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5789 | I915_WRITE(TRANS_CHICKEN1(pipe), |
| 5790 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
| 5791 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5792 | } |
| 5793 | |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 5794 | static void gen6_check_mch_setup(struct drm_device *dev) |
| 5795 | { |
| 5796 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5797 | uint32_t tmp; |
| 5798 | |
| 5799 | tmp = I915_READ(MCH_SSKPD); |
Daniel Vetter | df662a2 | 2014-08-04 11:17:25 +0200 | [diff] [blame] | 5800 | if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) |
| 5801 | DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n", |
| 5802 | tmp); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 5803 | } |
| 5804 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 5805 | static void gen6_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5806 | { |
| 5807 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 5808 | uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5809 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 5810 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5811 | |
| 5812 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 5813 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 5814 | ILK_ELPIN_409_SELECT); |
| 5815 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 5816 | /* WaDisableHiZPlanesWhenMSAAEnabled:snb */ |
Daniel Vetter | 4283908 | 2012-12-14 23:38:28 +0100 | [diff] [blame] | 5817 | I915_WRITE(_3D_CHICKEN, |
| 5818 | _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB)); |
| 5819 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 5820 | /* WaDisable_RenderCache_OperationalFlush:snb */ |
| 5821 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 5822 | |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 5823 | /* |
| 5824 | * BSpec recoomends 8x4 when MSAA is used, |
| 5825 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 5826 | * |
| 5827 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 5828 | * disable bit, which we don't touch here, but it's good |
| 5829 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 5830 | */ |
| 5831 | I915_WRITE(GEN6_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 5832 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 5833 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 5834 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5835 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5836 | I915_WRITE(CACHE_MODE_0, |
Daniel Vetter | 5074329 | 2012-04-26 22:02:54 +0200 | [diff] [blame] | 5837 | _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5838 | |
| 5839 | I915_WRITE(GEN6_UCGCTL1, |
| 5840 | I915_READ(GEN6_UCGCTL1) | |
| 5841 | GEN6_BLBUNIT_CLOCK_GATE_DISABLE | |
| 5842 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
| 5843 | |
| 5844 | /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock |
| 5845 | * gating disable must be set. Failure to set it results in |
| 5846 | * flickering pixels due to Z write ordering failures after |
| 5847 | * some amount of runtime in the Mesa "fire" demo, and Unigine |
| 5848 | * Sanctuary and Tropics, and apparently anything else with |
| 5849 | * alpha test or pixel discard. |
| 5850 | * |
| 5851 | * According to the spec, bit 11 (RCCUNIT) must also be set, |
| 5852 | * but we didn't debug actual testcases to find it out. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 5853 | * |
Ville Syrjälä | ef59318 | 2014-01-22 21:32:47 +0200 | [diff] [blame] | 5854 | * WaDisableRCCUnitClockGating:snb |
| 5855 | * WaDisableRCPBUnitClockGating:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5856 | */ |
| 5857 | I915_WRITE(GEN6_UCGCTL2, |
| 5858 | GEN6_RCPBUNIT_CLOCK_GATE_DISABLE | |
| 5859 | GEN6_RCCUNIT_CLOCK_GATE_DISABLE); |
| 5860 | |
Ville Syrjälä | 5eb146d | 2014-02-04 21:59:16 +0200 | [diff] [blame] | 5861 | /* WaStripsFansDisableFastClipPerformanceFix:snb */ |
Ville Syrjälä | 743b57d | 2014-02-04 21:59:17 +0200 | [diff] [blame] | 5862 | I915_WRITE(_3D_CHICKEN3, |
| 5863 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5864 | |
| 5865 | /* |
Ville Syrjälä | e927ecd | 2014-02-04 21:59:18 +0200 | [diff] [blame] | 5866 | * Bspec says: |
| 5867 | * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and |
| 5868 | * 3DSTATE_SF number of SF output attributes is more than 16." |
| 5869 | */ |
| 5870 | I915_WRITE(_3D_CHICKEN3, |
| 5871 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH)); |
| 5872 | |
| 5873 | /* |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5874 | * According to the spec the following bits should be |
| 5875 | * set in order to enable memory self-refresh and fbc: |
| 5876 | * The bit21 and bit22 of 0x42000 |
| 5877 | * The bit21 and bit22 of 0x42004 |
| 5878 | * The bit5 and bit7 of 0x42020 |
| 5879 | * The bit14 of 0x70180 |
| 5880 | * The bit14 of 0x71180 |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 5881 | * |
| 5882 | * WaFbcAsynchFlipDisableFbcQueue:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5883 | */ |
| 5884 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 5885 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 5886 | ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS); |
| 5887 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 5888 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 5889 | ILK_DPARB_GATE | ILK_VSDPFD_FULL); |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 5890 | I915_WRITE(ILK_DSPCLK_GATE_D, |
| 5891 | I915_READ(ILK_DSPCLK_GATE_D) | |
| 5892 | ILK_DPARBUNIT_CLOCK_GATE_ENABLE | |
| 5893 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5894 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 5895 | g4x_disable_trickle_feed(dev); |
Ben Widawsky | f8f2ac9 | 2012-10-03 19:34:24 -0700 | [diff] [blame] | 5896 | |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 5897 | cpt_init_clock_gating(dev); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 5898 | |
| 5899 | gen6_check_mch_setup(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5900 | } |
| 5901 | |
| 5902 | static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv) |
| 5903 | { |
| 5904 | uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE); |
| 5905 | |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 5906 | /* |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 5907 | * WaVSThreadDispatchOverride:ivb,vlv |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 5908 | * |
| 5909 | * This actually overrides the dispatch |
| 5910 | * mode for all thread types. |
| 5911 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 5912 | reg &= ~GEN7_FF_SCHED_MASK; |
| 5913 | reg |= GEN7_FF_TS_SCHED_HW; |
| 5914 | reg |= GEN7_FF_VS_SCHED_HW; |
| 5915 | reg |= GEN7_FF_DS_SCHED_HW; |
| 5916 | |
| 5917 | I915_WRITE(GEN7_FF_THREAD_MODE, reg); |
| 5918 | } |
| 5919 | |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 5920 | static void lpt_init_clock_gating(struct drm_device *dev) |
| 5921 | { |
| 5922 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5923 | |
| 5924 | /* |
| 5925 | * TODO: this bit should only be enabled when really needed, then |
| 5926 | * disabled when not needed anymore in order to save power. |
| 5927 | */ |
| 5928 | if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) |
| 5929 | I915_WRITE(SOUTH_DSPCLK_GATE_D, |
| 5930 | I915_READ(SOUTH_DSPCLK_GATE_D) | |
| 5931 | PCH_LP_PARTITION_LEVEL_DISABLE); |
Paulo Zanoni | 0a790cd | 2013-04-17 18:15:49 -0300 | [diff] [blame] | 5932 | |
| 5933 | /* WADPOClockGatingDisable:hsw */ |
| 5934 | I915_WRITE(_TRANSA_CHICKEN1, |
| 5935 | I915_READ(_TRANSA_CHICKEN1) | |
| 5936 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 5937 | } |
| 5938 | |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 5939 | static void lpt_suspend_hw(struct drm_device *dev) |
| 5940 | { |
| 5941 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5942 | |
| 5943 | if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) { |
| 5944 | uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D); |
| 5945 | |
| 5946 | val &= ~PCH_LP_PARTITION_LEVEL_DISABLE; |
| 5947 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); |
| 5948 | } |
| 5949 | } |
| 5950 | |
Paulo Zanoni | 47c2bd9 | 2014-08-21 17:09:37 -0300 | [diff] [blame] | 5951 | static void broadwell_init_clock_gating(struct drm_device *dev) |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 5952 | { |
| 5953 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 5954 | enum pipe pipe; |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 5955 | |
| 5956 | I915_WRITE(WM3_LP_ILK, 0); |
| 5957 | I915_WRITE(WM2_LP_ILK, 0); |
| 5958 | I915_WRITE(WM1_LP_ILK, 0); |
Ben Widawsky | 50ed5fb | 2013-11-02 21:07:40 -0700 | [diff] [blame] | 5959 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 5960 | /* WaSwitchSolVfFArbitrationPriority:bdw */ |
Ben Widawsky | 50ed5fb | 2013-11-02 21:07:40 -0700 | [diff] [blame] | 5961 | 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] | 5962 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 5963 | /* WaPsrDPAMaskVBlankInSRD:bdw */ |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 5964 | I915_WRITE(CHICKEN_PAR1_1, |
| 5965 | I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD); |
| 5966 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 5967 | /* WaPsrDPRSUnmaskVBlankInSRD:bdw */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 5968 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 5969 | I915_WRITE(CHICKEN_PIPESL_1(pipe), |
Ville Syrjälä | c7c6562 | 2014-03-05 13:05:45 +0200 | [diff] [blame] | 5970 | I915_READ(CHICKEN_PIPESL_1(pipe)) | |
Ville Syrjälä | 8f670bb | 2014-03-05 13:05:47 +0200 | [diff] [blame] | 5971 | BDW_DPRS_MASK_VBLANK_SRD); |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 5972 | } |
Ben Widawsky | 63801f2 | 2013-12-12 17:26:03 -0800 | [diff] [blame] | 5973 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 5974 | /* WaVSRefCountFullforceMissDisable:bdw */ |
| 5975 | /* WaDSRefCountFullforceMissDisable:bdw */ |
| 5976 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 5977 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 5978 | ~(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] | 5979 | |
Ville Syrjälä | 295e8bb | 2014-02-27 21:59:01 +0200 | [diff] [blame] | 5980 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 5981 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 4f1ca9e | 2014-02-27 21:59:02 +0200 | [diff] [blame] | 5982 | |
| 5983 | /* WaDisableSDEUnitClockGating:bdw */ |
| 5984 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 5985 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Damien Lespiau | 5d70868 | 2014-03-26 18:41:51 +0000 | [diff] [blame] | 5986 | |
Paulo Zanoni | 89d6b2b | 2014-08-21 17:09:36 -0300 | [diff] [blame] | 5987 | lpt_init_clock_gating(dev); |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 5988 | } |
| 5989 | |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 5990 | static void haswell_init_clock_gating(struct drm_device *dev) |
| 5991 | { |
| 5992 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 5993 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 5994 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 5995 | |
Francisco Jerez | f3fc488 | 2013-10-02 15:53:16 -0700 | [diff] [blame] | 5996 | /* L3 caching of data atomics doesn't work -- disable it. */ |
| 5997 | I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE); |
| 5998 | I915_WRITE(HSW_ROW_CHICKEN3, |
| 5999 | _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE)); |
| 6000 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6001 | /* This is required by WaCatErrorRejectionIssue:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6002 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6003 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6004 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6005 | |
Ville Syrjälä | e36ea7f | 2014-01-22 21:33:00 +0200 | [diff] [blame] | 6006 | /* WaVSRefCountFullforceMissDisable:hsw */ |
| 6007 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6008 | I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6009 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6010 | /* WaDisable_RenderCache_OperationalFlush:hsw */ |
| 6011 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6012 | |
Chia-I Wu | fe27c60 | 2014-01-28 13:29:33 +0800 | [diff] [blame] | 6013 | /* enable HiZ Raw Stall Optimization */ |
| 6014 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6015 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6016 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6017 | /* WaDisable4x2SubspanOptimization:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6018 | I915_WRITE(CACHE_MODE_1, |
| 6019 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Eugeni Dodonov | 1544d9d | 2012-07-02 11:51:10 -0300 | [diff] [blame] | 6020 | |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6021 | /* |
| 6022 | * BSpec recommends 8x4 when MSAA is used, |
| 6023 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6024 | * |
| 6025 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6026 | * disable bit, which we don't touch here, but it's good |
| 6027 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6028 | */ |
| 6029 | I915_WRITE(GEN7_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6030 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6031 | |
Kenneth Graunke | 9441159 | 2014-12-31 16:23:00 -0800 | [diff] [blame] | 6032 | /* WaSampleCChickenBitEnable:hsw */ |
| 6033 | I915_WRITE(HALF_SLICE_CHICKEN3, |
| 6034 | _MASKED_BIT_ENABLE(HSW_SAMPLE_C_PERFORMANCE)); |
| 6035 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6036 | /* WaSwitchSolVfFArbitrationPriority:hsw */ |
Ben Widawsky | e3dff58 | 2013-03-20 14:49:14 -0700 | [diff] [blame] | 6037 | I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL); |
| 6038 | |
Paulo Zanoni | 90a8864 | 2013-05-03 17:23:45 -0300 | [diff] [blame] | 6039 | /* WaRsPkgCStateDisplayPMReq:hsw */ |
| 6040 | I915_WRITE(CHICKEN_PAR1_1, |
| 6041 | I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES); |
Eugeni Dodonov | 1544d9d | 2012-07-02 11:51:10 -0300 | [diff] [blame] | 6042 | |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6043 | lpt_init_clock_gating(dev); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6044 | } |
| 6045 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6046 | static void ivybridge_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6047 | { |
| 6048 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6049 | uint32_t snpcr; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6050 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6051 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6052 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6053 | I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6054 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6055 | /* WaDisableEarlyCull:ivb */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6056 | I915_WRITE(_3D_CHICKEN3, |
| 6057 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6058 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6059 | /* WaDisableBackToBackFlipFix:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6060 | I915_WRITE(IVB_CHICKEN3, |
| 6061 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6062 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6063 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6064 | /* WaDisablePSDDualDispatchEnable:ivb */ |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6065 | if (IS_IVB_GT1(dev)) |
| 6066 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
| 6067 | _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6068 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6069 | /* WaDisable_RenderCache_OperationalFlush:ivb */ |
| 6070 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6071 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6072 | /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6073 | I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1, |
| 6074 | GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC); |
| 6075 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6076 | /* WaApplyL3ControlAndL3ChickenMode:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6077 | I915_WRITE(GEN7_L3CNTLREG1, |
| 6078 | GEN7_WA_FOR_GEN7_L3_CONTROL); |
| 6079 | I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6080 | GEN7_WA_L3_CHICKEN_MODE); |
| 6081 | if (IS_IVB_GT1(dev)) |
| 6082 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6083 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6084 | else { |
| 6085 | /* must write both registers */ |
| 6086 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6087 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6088 | I915_WRITE(GEN7_ROW_CHICKEN2_GT2, |
| 6089 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6090 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6091 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6092 | /* WaForceL3Serialization:ivb */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6093 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6094 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6095 | |
Ville Syrjälä | 1b80a19a | 2014-01-22 21:32:53 +0200 | [diff] [blame] | 6096 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6097 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6098 | * This implements the WaDisableRCZUnitClockGating:ivb workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6099 | */ |
| 6100 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 28acf3b | 2014-01-22 21:32:48 +0200 | [diff] [blame] | 6101 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6102 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6103 | /* This is required by WaCatErrorRejectionIssue:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6104 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6105 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6106 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6107 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6108 | g4x_disable_trickle_feed(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6109 | |
| 6110 | gen7_setup_fixed_func_scheduler(dev_priv); |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6111 | |
Chris Wilson | 2272134 | 2014-03-04 09:41:43 +0000 | [diff] [blame] | 6112 | if (0) { /* causes HiZ corruption on ivb:gt1 */ |
| 6113 | /* enable HiZ Raw Stall Optimization */ |
| 6114 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6115 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6116 | } |
Chia-I Wu | 116f2b6 | 2014-01-28 13:29:34 +0800 | [diff] [blame] | 6117 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6118 | /* WaDisable4x2SubspanOptimization:ivb */ |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6119 | I915_WRITE(CACHE_MODE_1, |
| 6120 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6121 | |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6122 | /* |
| 6123 | * BSpec recommends 8x4 when MSAA is used, |
| 6124 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6125 | * |
| 6126 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6127 | * disable bit, which we don't touch here, but it's good |
| 6128 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6129 | */ |
| 6130 | I915_WRITE(GEN7_GT_MODE, |
Damien Lespiau | 9853325 | 2014-12-08 17:33:51 +0000 | [diff] [blame] | 6131 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6132 | |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6133 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 6134 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 6135 | snpcr |= GEN6_MBC_SNPCR_MED; |
| 6136 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6137 | |
Ben Widawsky | ab5c608 | 2013-04-05 13:12:41 -0700 | [diff] [blame] | 6138 | if (!HAS_PCH_NOP(dev)) |
| 6139 | cpt_init_clock_gating(dev); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6140 | |
| 6141 | gen6_check_mch_setup(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6142 | } |
| 6143 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6144 | static void valleyview_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6145 | { |
| 6146 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6147 | |
Ville Syrjälä | d7fe0cc | 2013-05-21 18:01:50 +0300 | [diff] [blame] | 6148 | I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6149 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6150 | /* WaDisableEarlyCull:vlv */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6151 | I915_WRITE(_3D_CHICKEN3, |
| 6152 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6153 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6154 | /* WaDisableBackToBackFlipFix:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6155 | I915_WRITE(IVB_CHICKEN3, |
| 6156 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6157 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6158 | |
Ville Syrjälä | fad7d36 | 2014-01-22 21:32:39 +0200 | [diff] [blame] | 6159 | /* WaPsdDispatchEnable:vlv */ |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6160 | /* WaDisablePSDDualDispatchEnable:vlv */ |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6161 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
Jesse Barnes | d3bc030 | 2013-03-08 10:45:51 -0800 | [diff] [blame] | 6162 | _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP | |
| 6163 | GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6164 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6165 | /* WaDisable_RenderCache_OperationalFlush:vlv */ |
| 6166 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6167 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6168 | /* WaForceL3Serialization:vlv */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6169 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6170 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6171 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6172 | /* WaDisableDopClockGating:vlv */ |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6173 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6174 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
| 6175 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6176 | /* This is required by WaCatErrorRejectionIssue:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6177 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6178 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6179 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6180 | |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6181 | gen7_setup_fixed_func_scheduler(dev_priv); |
| 6182 | |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6183 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6184 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6185 | * This implements the WaDisableRCZUnitClockGating:vlv workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6186 | */ |
| 6187 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6188 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6189 | |
Akash Goel | c98f506 | 2014-03-24 23:00:07 +0530 | [diff] [blame] | 6190 | /* WaDisableL3Bank2xClockGate:vlv |
| 6191 | * Disabling L3 clock gating- MMIO 940c[25] = 1 |
| 6192 | * Set bit 25, to disable L3_BANK_2x_CLK_GATING */ |
| 6193 | I915_WRITE(GEN7_UCGCTL4, |
| 6194 | I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE); |
Jesse Barnes | e3f33d4 | 2012-06-14 11:04:50 -0700 | [diff] [blame] | 6195 | |
Ville Syrjälä | e0d8d59 | 2013-06-12 22:11:18 +0300 | [diff] [blame] | 6196 | I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6197 | |
Ville Syrjälä | afd58e7 | 2014-01-22 21:33:03 +0200 | [diff] [blame] | 6198 | /* |
| 6199 | * BSpec says this must be set, even though |
| 6200 | * WaDisable4x2SubspanOptimization isn't listed for VLV. |
| 6201 | */ |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 6202 | I915_WRITE(CACHE_MODE_1, |
| 6203 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Jesse Barnes | 7983117 | 2012-06-20 10:53:12 -0700 | [diff] [blame] | 6204 | |
| 6205 | /* |
Ville Syrjälä | da2518f | 2015-01-21 19:38:01 +0200 | [diff] [blame] | 6206 | * BSpec recommends 8x4 when MSAA is used, |
| 6207 | * however in practice 16x4 seems fastest. |
| 6208 | * |
| 6209 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6210 | * disable bit, which we don't touch here, but it's good |
| 6211 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
| 6212 | */ |
| 6213 | I915_WRITE(GEN7_GT_MODE, |
| 6214 | _MASKED_FIELD(GEN6_WIZ_HASHING_MASK, GEN6_WIZ_HASHING_16x4)); |
| 6215 | |
| 6216 | /* |
Ville Syrjälä | 031994e | 2014-01-22 21:32:46 +0200 | [diff] [blame] | 6217 | * WaIncreaseL3CreditsForVLVB0:vlv |
| 6218 | * This is the hardware default actually. |
| 6219 | */ |
| 6220 | I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE); |
| 6221 | |
| 6222 | /* |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6223 | * WaDisableVLVClockGating_VBIIssue:vlv |
Jesse Barnes | 2d80957 | 2012-10-25 12:15:44 -0700 | [diff] [blame] | 6224 | * Disable clock gating on th GCFG unit to prevent a delay |
| 6225 | * in the reporting of vblank events. |
| 6226 | */ |
Ville Syrjälä | 7a0d1ee | 2014-01-22 21:33:04 +0200 | [diff] [blame] | 6227 | I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6228 | } |
| 6229 | |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6230 | static void cherryview_init_clock_gating(struct drm_device *dev) |
| 6231 | { |
| 6232 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6233 | |
| 6234 | I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE); |
| 6235 | |
| 6236 | I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE); |
Ville Syrjälä | dd811e7 | 2014-04-09 13:28:33 +0300 | [diff] [blame] | 6237 | |
Ville Syrjälä | 232ce33 | 2014-04-09 13:28:35 +0300 | [diff] [blame] | 6238 | /* WaVSRefCountFullforceMissDisable:chv */ |
| 6239 | /* WaDSRefCountFullforceMissDisable:chv */ |
| 6240 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6241 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 6242 | ~(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] | 6243 | |
| 6244 | /* WaDisableSemaphoreAndSyncFlipWait:chv */ |
| 6245 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6246 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 0846697 | 2014-04-09 13:28:37 +0300 | [diff] [blame] | 6247 | |
| 6248 | /* WaDisableCSUnitClockGating:chv */ |
| 6249 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 6250 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | c631780 | 2014-04-09 13:28:38 +0300 | [diff] [blame] | 6251 | |
| 6252 | /* WaDisableSDEUnitClockGating:chv */ |
| 6253 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6254 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6255 | } |
| 6256 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6257 | static void g4x_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6258 | { |
| 6259 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6260 | uint32_t dspclk_gate; |
| 6261 | |
| 6262 | I915_WRITE(RENCLK_GATE_D1, 0); |
| 6263 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | |
| 6264 | GS_UNIT_CLOCK_GATE_DISABLE | |
| 6265 | CL_UNIT_CLOCK_GATE_DISABLE); |
| 6266 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 6267 | dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE | |
| 6268 | OVRUNIT_CLOCK_GATE_DISABLE | |
| 6269 | OVCUNIT_CLOCK_GATE_DISABLE; |
| 6270 | if (IS_GM45(dev)) |
| 6271 | dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE; |
| 6272 | I915_WRITE(DSPCLK_GATE_D, dspclk_gate); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6273 | |
| 6274 | /* WaDisableRenderCachePipelinedFlush */ |
| 6275 | I915_WRITE(CACHE_MODE_0, |
| 6276 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Ville Syrjälä | de1aa62 | 2013-06-07 10:47:01 +0300 | [diff] [blame] | 6277 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6278 | /* WaDisable_RenderCache_OperationalFlush:g4x */ |
| 6279 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6280 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6281 | g4x_disable_trickle_feed(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6282 | } |
| 6283 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6284 | static void crestline_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6285 | { |
| 6286 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6287 | |
| 6288 | I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE); |
| 6289 | I915_WRITE(RENCLK_GATE_D2, 0); |
| 6290 | I915_WRITE(DSPCLK_GATE_D, 0); |
| 6291 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 6292 | I915_WRITE16(DEUC, 0); |
Ville Syrjälä | 20f9496 | 2013-06-07 10:47:02 +0300 | [diff] [blame] | 6293 | I915_WRITE(MI_ARB_STATE, |
| 6294 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6295 | |
| 6296 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
| 6297 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6298 | } |
| 6299 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6300 | static void broadwater_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6301 | { |
| 6302 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6303 | |
| 6304 | I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE | |
| 6305 | I965_RCC_CLOCK_GATE_DISABLE | |
| 6306 | I965_RCPB_CLOCK_GATE_DISABLE | |
| 6307 | I965_ISC_CLOCK_GATE_DISABLE | |
| 6308 | I965_FBC_CLOCK_GATE_DISABLE); |
| 6309 | I915_WRITE(RENCLK_GATE_D2, 0); |
Ville Syrjälä | 20f9496 | 2013-06-07 10:47:02 +0300 | [diff] [blame] | 6310 | I915_WRITE(MI_ARB_STATE, |
| 6311 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6312 | |
| 6313 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
| 6314 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6315 | } |
| 6316 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6317 | static void gen3_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6318 | { |
| 6319 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6320 | u32 dstate = I915_READ(D_STATE); |
| 6321 | |
| 6322 | dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING | |
| 6323 | DSTATE_DOT_CLOCK_GATING; |
| 6324 | I915_WRITE(D_STATE, dstate); |
Chris Wilson | 13a86b8 | 2012-04-24 14:51:43 +0100 | [diff] [blame] | 6325 | |
| 6326 | if (IS_PINEVIEW(dev)) |
| 6327 | I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY)); |
Daniel Vetter | 974a3b0 | 2012-09-09 11:54:16 +0200 | [diff] [blame] | 6328 | |
| 6329 | /* IIR "flip pending" means done if this bit is set */ |
| 6330 | I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE)); |
Ville Syrjälä | 12fabbcb9 | 2014-02-25 15:13:38 +0200 | [diff] [blame] | 6331 | |
| 6332 | /* interrupts should cause a wake up from C3 */ |
Ville Syrjälä | 3299254 | 2014-02-25 15:13:39 +0200 | [diff] [blame] | 6333 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN)); |
Ville Syrjälä | dbb4274 | 2014-02-25 15:13:41 +0200 | [diff] [blame] | 6334 | |
| 6335 | /* On GEN3 we really need to make sure the ARB C3 LP bit is set */ |
| 6336 | 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] | 6337 | |
| 6338 | I915_WRITE(MI_ARB_STATE, |
| 6339 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6340 | } |
| 6341 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6342 | static void i85x_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6343 | { |
| 6344 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6345 | |
| 6346 | I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 54e472a | 2014-02-25 15:13:40 +0200 | [diff] [blame] | 6347 | |
| 6348 | /* interrupts should cause a wake up from C3 */ |
| 6349 | I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) | |
| 6350 | _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE)); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 6351 | |
| 6352 | I915_WRITE(MEM_MODE, |
| 6353 | _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6354 | } |
| 6355 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6356 | static void i830_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6357 | { |
| 6358 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6359 | |
| 6360 | I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 6361 | |
| 6362 | I915_WRITE(MEM_MODE, |
| 6363 | _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) | |
| 6364 | _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6365 | } |
| 6366 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6367 | void intel_init_clock_gating(struct drm_device *dev) |
| 6368 | { |
| 6369 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6370 | |
Damien Lespiau | c57e355 | 2015-02-09 19:33:05 +0000 | [diff] [blame] | 6371 | if (dev_priv->display.init_clock_gating) |
| 6372 | dev_priv->display.init_clock_gating(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6373 | } |
| 6374 | |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 6375 | void intel_suspend_hw(struct drm_device *dev) |
| 6376 | { |
| 6377 | if (HAS_PCH_LPT(dev)) |
| 6378 | lpt_suspend_hw(dev); |
| 6379 | } |
| 6380 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6381 | /* Set up chip specific power management-related functions */ |
| 6382 | void intel_init_pm(struct drm_device *dev) |
| 6383 | { |
| 6384 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6385 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 6386 | intel_fbc_init(dev_priv); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6387 | |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 6388 | /* For cxsr */ |
| 6389 | if (IS_PINEVIEW(dev)) |
| 6390 | i915_pineview_get_mem_freq(dev); |
| 6391 | else if (IS_GEN5(dev)) |
| 6392 | i915_ironlake_get_mem_freq(dev); |
| 6393 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6394 | /* For FIFO watermark updates */ |
Damien Lespiau | f5ed50c | 2014-11-13 17:51:52 +0000 | [diff] [blame] | 6395 | if (INTEL_INFO(dev)->gen >= 9) { |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 6396 | skl_setup_wm_latency(dev); |
| 6397 | |
Damien Lespiau | 45db219 | 2015-02-09 19:33:09 +0000 | [diff] [blame] | 6398 | dev_priv->display.init_clock_gating = skl_init_clock_gating; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 6399 | dev_priv->display.update_wm = skl_update_wm; |
| 6400 | dev_priv->display.update_sprite_wm = skl_update_sprite_wm; |
Damien Lespiau | c83155a | 2014-03-28 00:18:35 +0530 | [diff] [blame] | 6401 | } else if (HAS_PCH_SPLIT(dev)) { |
Damien Lespiau | fa50ad6 | 2014-03-17 18:01:16 +0000 | [diff] [blame] | 6402 | ilk_setup_wm_latency(dev); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 6403 | |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 6404 | if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] && |
| 6405 | dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) || |
| 6406 | (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] && |
| 6407 | dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) { |
| 6408 | dev_priv->display.update_wm = ilk_update_wm; |
| 6409 | dev_priv->display.update_sprite_wm = ilk_update_sprite_wm; |
| 6410 | } else { |
| 6411 | DRM_DEBUG_KMS("Failed to read display plane latency. " |
| 6412 | "Disable CxSR\n"); |
| 6413 | } |
| 6414 | |
| 6415 | if (IS_GEN5(dev)) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6416 | dev_priv->display.init_clock_gating = ironlake_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 6417 | else if (IS_GEN6(dev)) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6418 | dev_priv->display.init_clock_gating = gen6_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 6419 | else if (IS_IVYBRIDGE(dev)) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6420 | dev_priv->display.init_clock_gating = ivybridge_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 6421 | else if (IS_HASWELL(dev)) |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6422 | dev_priv->display.init_clock_gating = haswell_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 6423 | else if (INTEL_INFO(dev)->gen == 8) |
Paulo Zanoni | 47c2bd9 | 2014-08-21 17:09:37 -0300 | [diff] [blame] | 6424 | dev_priv->display.init_clock_gating = broadwell_init_clock_gating; |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6425 | } else if (IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 6426 | dev_priv->display.update_wm = cherryview_update_wm; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 6427 | dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm; |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6428 | dev_priv->display.init_clock_gating = |
| 6429 | cherryview_init_clock_gating; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6430 | } else if (IS_VALLEYVIEW(dev)) { |
| 6431 | dev_priv->display.update_wm = valleyview_update_wm; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 6432 | dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6433 | dev_priv->display.init_clock_gating = |
| 6434 | valleyview_init_clock_gating; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6435 | } else if (IS_PINEVIEW(dev)) { |
| 6436 | if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev), |
| 6437 | dev_priv->is_ddr3, |
| 6438 | dev_priv->fsb_freq, |
| 6439 | dev_priv->mem_freq)) { |
| 6440 | DRM_INFO("failed to find known CxSR latency " |
| 6441 | "(found ddr%s fsb freq %d, mem freq %d), " |
| 6442 | "disabling CxSR\n", |
| 6443 | (dev_priv->is_ddr3 == 1) ? "3" : "2", |
| 6444 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 6445 | /* Disable CxSR and never update its watermark again */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 6446 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6447 | dev_priv->display.update_wm = NULL; |
| 6448 | } else |
| 6449 | dev_priv->display.update_wm = pineview_update_wm; |
| 6450 | dev_priv->display.init_clock_gating = gen3_init_clock_gating; |
| 6451 | } else if (IS_G4X(dev)) { |
| 6452 | dev_priv->display.update_wm = g4x_update_wm; |
| 6453 | dev_priv->display.init_clock_gating = g4x_init_clock_gating; |
| 6454 | } else if (IS_GEN4(dev)) { |
| 6455 | dev_priv->display.update_wm = i965_update_wm; |
| 6456 | if (IS_CRESTLINE(dev)) |
| 6457 | dev_priv->display.init_clock_gating = crestline_init_clock_gating; |
| 6458 | else if (IS_BROADWATER(dev)) |
| 6459 | dev_priv->display.init_clock_gating = broadwater_init_clock_gating; |
| 6460 | } else if (IS_GEN3(dev)) { |
| 6461 | dev_priv->display.update_wm = i9xx_update_wm; |
| 6462 | dev_priv->display.get_fifo_size = i9xx_get_fifo_size; |
| 6463 | dev_priv->display.init_clock_gating = gen3_init_clock_gating; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 6464 | } else if (IS_GEN2(dev)) { |
| 6465 | if (INTEL_INFO(dev)->num_pipes == 1) { |
| 6466 | dev_priv->display.update_wm = i845_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6467 | dev_priv->display.get_fifo_size = i845_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 6468 | } else { |
| 6469 | dev_priv->display.update_wm = i9xx_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6470 | dev_priv->display.get_fifo_size = i830_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 6471 | } |
| 6472 | |
| 6473 | if (IS_I85X(dev) || IS_I865G(dev)) |
| 6474 | dev_priv->display.init_clock_gating = i85x_init_clock_gating; |
| 6475 | else |
| 6476 | dev_priv->display.init_clock_gating = i830_init_clock_gating; |
| 6477 | } else { |
| 6478 | DRM_ERROR("unexpected fall-through in intel_init_pm\n"); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6479 | } |
| 6480 | } |
| 6481 | |
Tom O'Rourke | 151a49d | 2014-11-13 18:50:10 -0800 | [diff] [blame] | 6482 | int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u32 mbox, u32 *val) |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 6483 | { |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 6484 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 6485 | |
| 6486 | if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) { |
| 6487 | DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n"); |
| 6488 | return -EAGAIN; |
| 6489 | } |
| 6490 | |
| 6491 | I915_WRITE(GEN6_PCODE_DATA, *val); |
Damien Lespiau | dddab34 | 2014-11-13 17:51:50 +0000 | [diff] [blame] | 6492 | I915_WRITE(GEN6_PCODE_DATA1, 0); |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 6493 | I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox); |
| 6494 | |
| 6495 | if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0, |
| 6496 | 500)) { |
| 6497 | DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox); |
| 6498 | return -ETIMEDOUT; |
| 6499 | } |
| 6500 | |
| 6501 | *val = I915_READ(GEN6_PCODE_DATA); |
| 6502 | I915_WRITE(GEN6_PCODE_DATA, 0); |
| 6503 | |
| 6504 | return 0; |
| 6505 | } |
| 6506 | |
Tom O'Rourke | 151a49d | 2014-11-13 18:50:10 -0800 | [diff] [blame] | 6507 | int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u32 mbox, u32 val) |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 6508 | { |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 6509 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 6510 | |
| 6511 | if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) { |
| 6512 | DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n"); |
| 6513 | return -EAGAIN; |
| 6514 | } |
| 6515 | |
| 6516 | I915_WRITE(GEN6_PCODE_DATA, val); |
| 6517 | I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox); |
| 6518 | |
| 6519 | if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0, |
| 6520 | 500)) { |
| 6521 | DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox); |
| 6522 | return -ETIMEDOUT; |
| 6523 | } |
| 6524 | |
| 6525 | I915_WRITE(GEN6_PCODE_DATA, 0); |
| 6526 | |
| 6527 | return 0; |
| 6528 | } |
Jesse Barnes | a0e4e19 | 2013-04-02 11:23:05 -0700 | [diff] [blame] | 6529 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6530 | static int vlv_gpu_freq_div(unsigned int czclk_freq) |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6531 | { |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6532 | switch (czclk_freq) { |
| 6533 | case 200: |
| 6534 | return 10; |
| 6535 | case 267: |
| 6536 | return 12; |
| 6537 | case 320: |
| 6538 | case 333: |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6539 | return 16; |
Ville Syrjälä | ab3fb15 | 2014-11-10 22:55:15 +0200 | [diff] [blame] | 6540 | case 400: |
| 6541 | return 20; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6542 | default: |
| 6543 | return -1; |
| 6544 | } |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6545 | } |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6546 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6547 | static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val) |
| 6548 | { |
| 6549 | int div, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4); |
| 6550 | |
| 6551 | div = vlv_gpu_freq_div(czclk_freq); |
| 6552 | if (div < 0) |
| 6553 | return div; |
| 6554 | |
| 6555 | return DIV_ROUND_CLOSEST(czclk_freq * (val + 6 - 0xbd), div); |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6556 | } |
| 6557 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 6558 | static int byt_freq_opcode(struct drm_i915_private *dev_priv, int val) |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6559 | { |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6560 | int mul, czclk_freq = DIV_ROUND_CLOSEST(dev_priv->mem_freq, 4); |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6561 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6562 | mul = vlv_gpu_freq_div(czclk_freq); |
| 6563 | if (mul < 0) |
| 6564 | return mul; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6565 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6566 | return DIV_ROUND_CLOSEST(mul * val, czclk_freq) + 0xbd - 6; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 6567 | } |
| 6568 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 6569 | static int chv_gpu_freq(struct drm_i915_private *dev_priv, int val) |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6570 | { |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6571 | int div, czclk_freq = dev_priv->rps.cz_freq; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6572 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6573 | div = vlv_gpu_freq_div(czclk_freq) / 2; |
| 6574 | if (div < 0) |
| 6575 | return div; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6576 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6577 | return DIV_ROUND_CLOSEST(czclk_freq * val, 2 * div) / 2; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6578 | } |
| 6579 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 6580 | static int chv_freq_opcode(struct drm_i915_private *dev_priv, int val) |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6581 | { |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6582 | int mul, czclk_freq = dev_priv->rps.cz_freq; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6583 | |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6584 | mul = vlv_gpu_freq_div(czclk_freq) / 2; |
| 6585 | if (mul < 0) |
| 6586 | return mul; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6587 | |
Ville Syrjälä | 1c14762 | 2014-08-18 14:42:43 +0300 | [diff] [blame] | 6588 | /* CHV needs even values */ |
Ville Syrjälä | dd06f88 | 2014-11-10 22:55:12 +0200 | [diff] [blame] | 6589 | return DIV_ROUND_CLOSEST(val * 2 * mul, czclk_freq) * 2; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6590 | } |
| 6591 | |
Ville Syrjälä | 616bc82 | 2015-01-23 21:04:25 +0200 | [diff] [blame] | 6592 | int intel_gpu_freq(struct drm_i915_private *dev_priv, int val) |
| 6593 | { |
| 6594 | if (IS_CHERRYVIEW(dev_priv->dev)) |
| 6595 | return chv_gpu_freq(dev_priv, val); |
| 6596 | else if (IS_VALLEYVIEW(dev_priv->dev)) |
| 6597 | return byt_gpu_freq(dev_priv, val); |
| 6598 | else |
| 6599 | return val * GT_FREQUENCY_MULTIPLIER; |
| 6600 | } |
| 6601 | |
Ville Syrjälä | 616bc82 | 2015-01-23 21:04:25 +0200 | [diff] [blame] | 6602 | int intel_freq_opcode(struct drm_i915_private *dev_priv, int val) |
| 6603 | { |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6604 | if (IS_CHERRYVIEW(dev_priv->dev)) |
Ville Syrjälä | 616bc82 | 2015-01-23 21:04:25 +0200 | [diff] [blame] | 6605 | return chv_freq_opcode(dev_priv, val); |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6606 | else if (IS_VALLEYVIEW(dev_priv->dev)) |
Ville Syrjälä | 616bc82 | 2015-01-23 21:04:25 +0200 | [diff] [blame] | 6607 | return byt_freq_opcode(dev_priv, val); |
| 6608 | else |
| 6609 | return val / GT_FREQUENCY_MULTIPLIER; |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 6610 | } |
| 6611 | |
Daniel Vetter | f742a55 | 2013-12-06 10:17:53 +0100 | [diff] [blame] | 6612 | void intel_pm_setup(struct drm_device *dev) |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 6613 | { |
| 6614 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6615 | |
Daniel Vetter | f742a55 | 2013-12-06 10:17:53 +0100 | [diff] [blame] | 6616 | mutex_init(&dev_priv->rps.hw_lock); |
| 6617 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 6618 | INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work, |
| 6619 | intel_gen6_powersave_work); |
Paulo Zanoni | 5d584b2 | 2014-03-07 20:08:15 -0300 | [diff] [blame] | 6620 | |
Paulo Zanoni | 33688d9 | 2014-03-07 20:08:19 -0300 | [diff] [blame] | 6621 | dev_priv->pm.suspended = false; |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 6622 | } |