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 | |
Eugeni Dodonov | f6750b3 | 2012-04-18 11:51:14 -0300 | [diff] [blame] | 55 | /* FBC, or Frame Buffer Compression, is a technique employed to compress the |
| 56 | * framebuffer contents in-memory, aiming at reducing the required bandwidth |
| 57 | * during in-memory transfers and, therefore, reduce the power packet. |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 58 | * |
Eugeni Dodonov | f6750b3 | 2012-04-18 11:51:14 -0300 | [diff] [blame] | 59 | * The benefits of FBC are mostly visible with solid backgrounds and |
| 60 | * variation-less patterns. |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 61 | * |
Eugeni Dodonov | f6750b3 | 2012-04-18 11:51:14 -0300 | [diff] [blame] | 62 | * FBC-related functionality can be enabled by the means of the |
| 63 | * i915.i915_enable_fbc parameter |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 64 | */ |
| 65 | |
Damien Lespiau | da2078c | 2013-02-13 15:27:27 +0000 | [diff] [blame] | 66 | static void gen9_init_clock_gating(struct drm_device *dev) |
| 67 | { |
Damien Lespiau | acd5c34 | 2014-03-26 16:55:46 +0000 | [diff] [blame] | 68 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 69 | |
| 70 | /* |
| 71 | * WaDisableSDEUnitClockGating:skl |
| 72 | * This seems to be a pre-production w/a. |
| 73 | */ |
| 74 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 75 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Damien Lespiau | 91e41d1 | 2014-03-26 17:42:50 +0000 | [diff] [blame] | 76 | |
Damien Lespiau | 3ca5da4 | 2014-03-26 18:18:01 +0000 | [diff] [blame] | 77 | /* |
| 78 | * WaDisableDgMirrorFixInHalfSliceChicken5:skl |
| 79 | * This is a pre-production w/a. |
| 80 | */ |
| 81 | I915_WRITE(GEN9_HALF_SLICE_CHICKEN5, |
| 82 | I915_READ(GEN9_HALF_SLICE_CHICKEN5) & |
| 83 | ~GEN9_DG_MIRROR_FIX_ENABLE); |
| 84 | |
Damien Lespiau | 91e41d1 | 2014-03-26 17:42:50 +0000 | [diff] [blame] | 85 | /* Wa4x4STCOptimizationDisable:skl */ |
| 86 | I915_WRITE(CACHE_MODE_1, |
| 87 | _MASKED_BIT_ENABLE(GEN8_4x4_STC_OPTIMIZATION_DISABLE)); |
Damien Lespiau | da2078c | 2013-02-13 15:27:27 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 90 | static void i8xx_disable_fbc(struct drm_device *dev) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 91 | { |
| 92 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 93 | u32 fbc_ctl; |
| 94 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 95 | dev_priv->fbc.enabled = false; |
| 96 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 97 | /* Disable compression */ |
| 98 | fbc_ctl = I915_READ(FBC_CONTROL); |
| 99 | if ((fbc_ctl & FBC_CTL_EN) == 0) |
| 100 | return; |
| 101 | |
| 102 | fbc_ctl &= ~FBC_CTL_EN; |
| 103 | I915_WRITE(FBC_CONTROL, fbc_ctl); |
| 104 | |
| 105 | /* Wait for compressing bit to clear */ |
| 106 | if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) { |
| 107 | DRM_DEBUG_KMS("FBC idle timed out\n"); |
| 108 | return; |
| 109 | } |
| 110 | |
| 111 | DRM_DEBUG_KMS("disabled FBC\n"); |
| 112 | } |
| 113 | |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 114 | static void i8xx_enable_fbc(struct drm_crtc *crtc) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 115 | { |
| 116 | struct drm_device *dev = crtc->dev; |
| 117 | struct drm_i915_private *dev_priv = dev->dev_private; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 118 | struct drm_framebuffer *fb = crtc->primary->fb; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 119 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 120 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 121 | int cfb_pitch; |
Ville Syrjälä | 7f2cf22 | 2014-01-23 16:49:11 +0200 | [diff] [blame] | 122 | int i; |
Ville Syrjälä | 159f987 | 2013-11-28 17:29:57 +0200 | [diff] [blame] | 123 | u32 fbc_ctl; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 124 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 125 | dev_priv->fbc.enabled = true; |
| 126 | |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 127 | cfb_pitch = dev_priv->fbc.size / FBC_LL_SIZE; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 128 | if (fb->pitches[0] < cfb_pitch) |
| 129 | cfb_pitch = fb->pitches[0]; |
| 130 | |
Ville Syrjälä | 42a430f | 2013-11-28 17:29:56 +0200 | [diff] [blame] | 131 | /* FBC_CTL wants 32B or 64B units */ |
| 132 | if (IS_GEN2(dev)) |
| 133 | cfb_pitch = (cfb_pitch / 32) - 1; |
| 134 | else |
| 135 | cfb_pitch = (cfb_pitch / 64) - 1; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 136 | |
| 137 | /* Clear old tags */ |
| 138 | for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++) |
| 139 | I915_WRITE(FBC_TAG + (i * 4), 0); |
| 140 | |
Ville Syrjälä | 159f987 | 2013-11-28 17:29:57 +0200 | [diff] [blame] | 141 | if (IS_GEN4(dev)) { |
| 142 | u32 fbc_ctl2; |
| 143 | |
| 144 | /* Set it up... */ |
| 145 | fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE; |
Ville Syrjälä | 7f2cf22 | 2014-01-23 16:49:11 +0200 | [diff] [blame] | 146 | fbc_ctl2 |= FBC_CTL_PLANE(intel_crtc->plane); |
Ville Syrjälä | 159f987 | 2013-11-28 17:29:57 +0200 | [diff] [blame] | 147 | I915_WRITE(FBC_CONTROL2, fbc_ctl2); |
| 148 | I915_WRITE(FBC_FENCE_OFF, crtc->y); |
| 149 | } |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 150 | |
| 151 | /* enable it... */ |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 152 | fbc_ctl = I915_READ(FBC_CONTROL); |
| 153 | fbc_ctl &= 0x3fff << FBC_CTL_INTERVAL_SHIFT; |
| 154 | fbc_ctl |= FBC_CTL_EN | FBC_CTL_PERIODIC; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 155 | if (IS_I945GM(dev)) |
| 156 | fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */ |
| 157 | fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 158 | fbc_ctl |= obj->fence_reg; |
| 159 | I915_WRITE(FBC_CONTROL, fbc_ctl); |
| 160 | |
Ville Syrjälä | 5cd5410 | 2014-01-23 16:49:16 +0200 | [diff] [blame] | 161 | DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c\n", |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 162 | cfb_pitch, crtc->y, plane_name(intel_crtc->plane)); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 163 | } |
| 164 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 165 | static bool i8xx_fbc_enabled(struct drm_device *dev) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 166 | { |
| 167 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 168 | |
| 169 | return I915_READ(FBC_CONTROL) & FBC_CTL_EN; |
| 170 | } |
| 171 | |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 172 | static void g4x_enable_fbc(struct drm_crtc *crtc) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 173 | { |
| 174 | struct drm_device *dev = crtc->dev; |
| 175 | struct drm_i915_private *dev_priv = dev->dev_private; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 176 | struct drm_framebuffer *fb = crtc->primary->fb; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 177 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 178 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 179 | u32 dpfc_ctl; |
| 180 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 181 | dev_priv->fbc.enabled = true; |
| 182 | |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 183 | dpfc_ctl = DPFC_CTL_PLANE(intel_crtc->plane) | DPFC_SR_EN; |
| 184 | if (drm_format_plane_cpp(fb->pixel_format, 0) == 2) |
| 185 | dpfc_ctl |= DPFC_CTL_LIMIT_2X; |
| 186 | else |
| 187 | dpfc_ctl |= DPFC_CTL_LIMIT_1X; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 188 | dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 189 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 190 | I915_WRITE(DPFC_FENCE_YOFF, crtc->y); |
| 191 | |
| 192 | /* enable it... */ |
Ville Syrjälä | fe74c1a | 2014-01-23 16:49:13 +0200 | [diff] [blame] | 193 | I915_WRITE(DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 194 | |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 195 | DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane)); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 196 | } |
| 197 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 198 | static void g4x_disable_fbc(struct drm_device *dev) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 199 | { |
| 200 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 201 | u32 dpfc_ctl; |
| 202 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 203 | dev_priv->fbc.enabled = false; |
| 204 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 205 | /* Disable compression */ |
| 206 | dpfc_ctl = I915_READ(DPFC_CONTROL); |
| 207 | if (dpfc_ctl & DPFC_CTL_EN) { |
| 208 | dpfc_ctl &= ~DPFC_CTL_EN; |
| 209 | I915_WRITE(DPFC_CONTROL, dpfc_ctl); |
| 210 | |
| 211 | DRM_DEBUG_KMS("disabled FBC\n"); |
| 212 | } |
| 213 | } |
| 214 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 215 | static bool g4x_fbc_enabled(struct drm_device *dev) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 216 | { |
| 217 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 218 | |
| 219 | return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN; |
| 220 | } |
| 221 | |
| 222 | static void sandybridge_blit_fbc_update(struct drm_device *dev) |
| 223 | { |
| 224 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 225 | u32 blt_ecoskpd; |
| 226 | |
| 227 | /* Make sure blitter notifies FBC of writes */ |
Deepak S | 940aece | 2013-11-23 14:55:43 +0530 | [diff] [blame] | 228 | |
| 229 | /* Blitter is part of Media powerwell on VLV. No impact of |
| 230 | * his param in other platforms for now */ |
| 231 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_MEDIA); |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 232 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 233 | blt_ecoskpd = I915_READ(GEN6_BLITTER_ECOSKPD); |
| 234 | blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY << |
| 235 | GEN6_BLITTER_LOCK_SHIFT; |
| 236 | I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd); |
| 237 | blt_ecoskpd |= GEN6_BLITTER_FBC_NOTIFY; |
| 238 | I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd); |
| 239 | blt_ecoskpd &= ~(GEN6_BLITTER_FBC_NOTIFY << |
| 240 | GEN6_BLITTER_LOCK_SHIFT); |
| 241 | I915_WRITE(GEN6_BLITTER_ECOSKPD, blt_ecoskpd); |
| 242 | POSTING_READ(GEN6_BLITTER_ECOSKPD); |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 243 | |
Deepak S | 940aece | 2013-11-23 14:55:43 +0530 | [diff] [blame] | 244 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_MEDIA); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 245 | } |
| 246 | |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 247 | static void ironlake_enable_fbc(struct drm_crtc *crtc) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 248 | { |
| 249 | struct drm_device *dev = crtc->dev; |
| 250 | struct drm_i915_private *dev_priv = dev->dev_private; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 251 | struct drm_framebuffer *fb = crtc->primary->fb; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 252 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 253 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 254 | u32 dpfc_ctl; |
| 255 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 256 | dev_priv->fbc.enabled = true; |
| 257 | |
Ville Syrjälä | 46f3dab | 2014-01-23 16:49:14 +0200 | [diff] [blame] | 258 | dpfc_ctl = DPFC_CTL_PLANE(intel_crtc->plane); |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 259 | if (drm_format_plane_cpp(fb->pixel_format, 0) == 2) |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 260 | dev_priv->fbc.threshold++; |
| 261 | |
| 262 | switch (dev_priv->fbc.threshold) { |
| 263 | case 4: |
| 264 | case 3: |
| 265 | dpfc_ctl |= DPFC_CTL_LIMIT_4X; |
| 266 | break; |
| 267 | case 2: |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 268 | dpfc_ctl |= DPFC_CTL_LIMIT_2X; |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 269 | break; |
| 270 | case 1: |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 271 | dpfc_ctl |= DPFC_CTL_LIMIT_1X; |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 272 | break; |
| 273 | } |
Ville Syrjälä | d629336 | 2013-11-21 21:29:45 +0200 | [diff] [blame] | 274 | dpfc_ctl |= DPFC_CTL_FENCE_EN; |
| 275 | if (IS_GEN5(dev)) |
| 276 | dpfc_ctl |= obj->fence_reg; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 277 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 278 | I915_WRITE(ILK_DPFC_FENCE_YOFF, crtc->y); |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 279 | I915_WRITE(ILK_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj) | ILK_FBC_RT_VALID); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 280 | /* enable it... */ |
| 281 | I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN); |
| 282 | |
| 283 | if (IS_GEN6(dev)) { |
| 284 | I915_WRITE(SNB_DPFC_CTL_SA, |
| 285 | SNB_CPU_FENCE_ENABLE | obj->fence_reg); |
| 286 | I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y); |
| 287 | sandybridge_blit_fbc_update(dev); |
| 288 | } |
| 289 | |
Ville Syrjälä | 84f44ce | 2013-04-17 17:48:49 +0300 | [diff] [blame] | 290 | DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane)); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 291 | } |
| 292 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 293 | static void ironlake_disable_fbc(struct drm_device *dev) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 294 | { |
| 295 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 296 | u32 dpfc_ctl; |
| 297 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 298 | dev_priv->fbc.enabled = false; |
| 299 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 300 | /* Disable compression */ |
| 301 | dpfc_ctl = I915_READ(ILK_DPFC_CONTROL); |
| 302 | if (dpfc_ctl & DPFC_CTL_EN) { |
| 303 | dpfc_ctl &= ~DPFC_CTL_EN; |
| 304 | I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl); |
| 305 | |
| 306 | DRM_DEBUG_KMS("disabled FBC\n"); |
| 307 | } |
| 308 | } |
| 309 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 310 | static bool ironlake_fbc_enabled(struct drm_device *dev) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 311 | { |
| 312 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 313 | |
| 314 | return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN; |
| 315 | } |
| 316 | |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 317 | static void gen7_enable_fbc(struct drm_crtc *crtc) |
Rodrigo Vivi | abe959c | 2013-05-06 19:37:33 -0300 | [diff] [blame] | 318 | { |
| 319 | struct drm_device *dev = crtc->dev; |
| 320 | struct drm_i915_private *dev_priv = dev->dev_private; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 321 | struct drm_framebuffer *fb = crtc->primary->fb; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 322 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Rodrigo Vivi | abe959c | 2013-05-06 19:37:33 -0300 | [diff] [blame] | 323 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 324 | u32 dpfc_ctl; |
Rodrigo Vivi | abe959c | 2013-05-06 19:37:33 -0300 | [diff] [blame] | 325 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 326 | dev_priv->fbc.enabled = true; |
| 327 | |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 328 | dpfc_ctl = IVB_DPFC_CTL_PLANE(intel_crtc->plane); |
| 329 | if (drm_format_plane_cpp(fb->pixel_format, 0) == 2) |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 330 | dev_priv->fbc.threshold++; |
| 331 | |
| 332 | switch (dev_priv->fbc.threshold) { |
| 333 | case 4: |
| 334 | case 3: |
| 335 | dpfc_ctl |= DPFC_CTL_LIMIT_4X; |
| 336 | break; |
| 337 | case 2: |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 338 | dpfc_ctl |= DPFC_CTL_LIMIT_2X; |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 339 | break; |
| 340 | case 1: |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 341 | dpfc_ctl |= DPFC_CTL_LIMIT_1X; |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 342 | break; |
| 343 | } |
| 344 | |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 345 | dpfc_ctl |= IVB_DPFC_CTL_FENCE_EN; |
| 346 | |
Rodrigo Vivi | da46f93 | 2014-08-01 02:04:45 -0700 | [diff] [blame] | 347 | if (dev_priv->fbc.false_color) |
| 348 | dpfc_ctl |= FBC_CTL_FALSE_COLOR; |
| 349 | |
Ville Syrjälä | 3fa2e0e | 2014-01-23 16:49:12 +0200 | [diff] [blame] | 350 | I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN); |
Rodrigo Vivi | abe959c | 2013-05-06 19:37:33 -0300 | [diff] [blame] | 351 | |
Rodrigo Vivi | 891348b | 2013-05-06 19:37:36 -0300 | [diff] [blame] | 352 | if (IS_IVYBRIDGE(dev)) { |
Damien Lespiau | 7dd23ba | 2013-05-10 14:33:17 +0100 | [diff] [blame] | 353 | /* WaFbcAsynchFlipDisableFbcQueue:ivb */ |
Ville Syrjälä | 2adb6db | 2014-03-05 13:05:46 +0200 | [diff] [blame] | 354 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 355 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 356 | ILK_FBCQ_DIS); |
Rodrigo Vivi | 2855416 | 2013-05-06 19:37:37 -0300 | [diff] [blame] | 357 | } else { |
Ville Syrjälä | 2adb6db | 2014-03-05 13:05:46 +0200 | [diff] [blame] | 358 | /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */ |
Ville Syrjälä | 8f670bb | 2014-03-05 13:05:47 +0200 | [diff] [blame] | 359 | I915_WRITE(CHICKEN_PIPESL_1(intel_crtc->pipe), |
| 360 | I915_READ(CHICKEN_PIPESL_1(intel_crtc->pipe)) | |
| 361 | HSW_FBCQ_DIS); |
Rodrigo Vivi | 891348b | 2013-05-06 19:37:36 -0300 | [diff] [blame] | 362 | } |
Rodrigo Vivi | b74ea10 | 2013-05-09 14:08:38 -0300 | [diff] [blame] | 363 | |
Rodrigo Vivi | abe959c | 2013-05-06 19:37:33 -0300 | [diff] [blame] | 364 | I915_WRITE(SNB_DPFC_CTL_SA, |
| 365 | SNB_CPU_FENCE_ENABLE | obj->fence_reg); |
| 366 | I915_WRITE(DPFC_CPU_FENCE_OFFSET, crtc->y); |
| 367 | |
| 368 | sandybridge_blit_fbc_update(dev); |
| 369 | |
Ville Syrjälä | b19870e | 2013-11-06 23:02:25 +0200 | [diff] [blame] | 370 | DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(intel_crtc->plane)); |
Rodrigo Vivi | abe959c | 2013-05-06 19:37:33 -0300 | [diff] [blame] | 371 | } |
| 372 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 373 | bool intel_fbc_enabled(struct drm_device *dev) |
| 374 | { |
| 375 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 376 | |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 377 | return dev_priv->fbc.enabled; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 378 | } |
| 379 | |
Rodrigo Vivi | 1d73c2a | 2014-09-24 19:50:59 -0400 | [diff] [blame] | 380 | void bdw_fbc_sw_flush(struct drm_device *dev, u32 value) |
Rodrigo Vivi | c5ad011 | 2014-08-04 03:51:38 -0700 | [diff] [blame] | 381 | { |
| 382 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 383 | |
| 384 | if (!IS_GEN8(dev)) |
| 385 | return; |
| 386 | |
Rodrigo Vivi | 01d06e9 | 2014-09-05 16:57:20 -0400 | [diff] [blame] | 387 | if (!intel_fbc_enabled(dev)) |
| 388 | return; |
| 389 | |
Rodrigo Vivi | c5ad011 | 2014-08-04 03:51:38 -0700 | [diff] [blame] | 390 | I915_WRITE(MSG_FBC_REND_STATE, value); |
| 391 | } |
| 392 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 393 | static void intel_fbc_work_fn(struct work_struct *__work) |
| 394 | { |
| 395 | struct intel_fbc_work *work = |
| 396 | container_of(to_delayed_work(__work), |
| 397 | struct intel_fbc_work, work); |
| 398 | struct drm_device *dev = work->crtc->dev; |
| 399 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 400 | |
| 401 | mutex_lock(&dev->struct_mutex); |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 402 | if (work == dev_priv->fbc.fbc_work) { |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 403 | /* Double check that we haven't switched fb without cancelling |
| 404 | * the prior work. |
| 405 | */ |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 406 | if (work->crtc->primary->fb == work->fb) { |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 407 | dev_priv->display.enable_fbc(work->crtc); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 408 | |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 409 | dev_priv->fbc.plane = to_intel_crtc(work->crtc)->plane; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 410 | dev_priv->fbc.fb_id = work->crtc->primary->fb->base.id; |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 411 | dev_priv->fbc.y = work->crtc->y; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 412 | } |
| 413 | |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 414 | dev_priv->fbc.fbc_work = NULL; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 415 | } |
| 416 | mutex_unlock(&dev->struct_mutex); |
| 417 | |
| 418 | kfree(work); |
| 419 | } |
| 420 | |
| 421 | static void intel_cancel_fbc_work(struct drm_i915_private *dev_priv) |
| 422 | { |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 423 | if (dev_priv->fbc.fbc_work == NULL) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 424 | return; |
| 425 | |
| 426 | DRM_DEBUG_KMS("cancelling pending FBC enable\n"); |
| 427 | |
| 428 | /* Synchronisation is provided by struct_mutex and checking of |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 429 | * dev_priv->fbc.fbc_work, so we can perform the cancellation |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 430 | * entirely asynchronously. |
| 431 | */ |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 432 | if (cancel_delayed_work(&dev_priv->fbc.fbc_work->work)) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 433 | /* tasklet was killed before being run, clean up */ |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 434 | kfree(dev_priv->fbc.fbc_work); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 435 | |
| 436 | /* Mark the work as no longer wanted so that if it does |
| 437 | * wake-up (because the work was already running and waiting |
| 438 | * for our mutex), it will discover that is no longer |
| 439 | * necessary to run. |
| 440 | */ |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 441 | dev_priv->fbc.fbc_work = NULL; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 442 | } |
| 443 | |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 444 | static void intel_enable_fbc(struct drm_crtc *crtc) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 445 | { |
| 446 | struct intel_fbc_work *work; |
| 447 | struct drm_device *dev = crtc->dev; |
| 448 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 449 | |
| 450 | if (!dev_priv->display.enable_fbc) |
| 451 | return; |
| 452 | |
| 453 | intel_cancel_fbc_work(dev_priv); |
| 454 | |
Daniel Vetter | b14c567 | 2013-09-19 12:18:32 +0200 | [diff] [blame] | 455 | work = kzalloc(sizeof(*work), GFP_KERNEL); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 456 | if (work == NULL) { |
Paulo Zanoni | 6cdcb5e | 2013-06-12 17:27:29 -0300 | [diff] [blame] | 457 | DRM_ERROR("Failed to allocate FBC work structure\n"); |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 458 | dev_priv->display.enable_fbc(crtc); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 459 | return; |
| 460 | } |
| 461 | |
| 462 | work->crtc = crtc; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 463 | work->fb = crtc->primary->fb; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 464 | INIT_DELAYED_WORK(&work->work, intel_fbc_work_fn); |
| 465 | |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 466 | dev_priv->fbc.fbc_work = work; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 467 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 468 | /* Delay the actual enabling to let pageflipping cease and the |
| 469 | * display to settle before starting the compression. Note that |
| 470 | * this delay also serves a second purpose: it allows for a |
| 471 | * vblank to pass after disabling the FBC before we attempt |
| 472 | * to modify the control registers. |
| 473 | * |
| 474 | * A more complicated solution would involve tracking vblanks |
| 475 | * following the termination of the page-flipping sequence |
| 476 | * and indeed performing the enable as a co-routine and not |
| 477 | * waiting synchronously upon the vblank. |
Damien Lespiau | 7457d61 | 2013-06-07 17:41:07 +0100 | [diff] [blame] | 478 | * |
| 479 | * WaFbcWaitForVBlankBeforeEnable:ilk,snb |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 480 | */ |
| 481 | schedule_delayed_work(&work->work, msecs_to_jiffies(50)); |
| 482 | } |
| 483 | |
| 484 | void intel_disable_fbc(struct drm_device *dev) |
| 485 | { |
| 486 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 487 | |
| 488 | intel_cancel_fbc_work(dev_priv); |
| 489 | |
| 490 | if (!dev_priv->display.disable_fbc) |
| 491 | return; |
| 492 | |
| 493 | dev_priv->display.disable_fbc(dev); |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 494 | dev_priv->fbc.plane = -1; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 495 | } |
| 496 | |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 497 | static bool set_no_fbc_reason(struct drm_i915_private *dev_priv, |
| 498 | enum no_fbc_reason reason) |
| 499 | { |
| 500 | if (dev_priv->fbc.no_fbc_reason == reason) |
| 501 | return false; |
| 502 | |
| 503 | dev_priv->fbc.no_fbc_reason = reason; |
| 504 | return true; |
| 505 | } |
| 506 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 507 | /** |
| 508 | * intel_update_fbc - enable/disable FBC as needed |
| 509 | * @dev: the drm_device |
| 510 | * |
| 511 | * Set up the framebuffer compression hardware at mode set time. We |
| 512 | * enable it if possible: |
| 513 | * - plane A only (on pre-965) |
| 514 | * - no pixel mulitply/line duplication |
| 515 | * - no alpha buffer discard |
| 516 | * - no dual wide |
Paulo Zanoni | f85da86 | 2013-06-04 16:53:39 -0300 | [diff] [blame] | 517 | * - framebuffer <= max_hdisplay in width, max_vdisplay in height |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 518 | * |
| 519 | * We can't assume that any compression will take place (worst case), |
| 520 | * so the compressed buffer has to be the same size as the uncompressed |
| 521 | * one. It also must reside (along with the line length buffer) in |
| 522 | * stolen memory. |
| 523 | * |
| 524 | * We need to enable/disable FBC on a global basis. |
| 525 | */ |
| 526 | void intel_update_fbc(struct drm_device *dev) |
| 527 | { |
| 528 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 529 | struct drm_crtc *crtc = NULL, *tmp_crtc; |
| 530 | struct intel_crtc *intel_crtc; |
| 531 | struct drm_framebuffer *fb; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 532 | struct drm_i915_gem_object *obj; |
Ville Syrjälä | ef644fd | 2013-09-04 18:25:21 +0300 | [diff] [blame] | 533 | const struct drm_display_mode *adjusted_mode; |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 534 | unsigned int max_width, max_height; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 535 | |
Daniel Vetter | 3a77c4c | 2014-01-10 08:50:12 +0100 | [diff] [blame] | 536 | if (!HAS_FBC(dev)) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 537 | set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 538 | return; |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 539 | } |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 540 | |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 541 | if (!i915.powersave) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 542 | if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM)) |
| 543 | DRM_DEBUG_KMS("fbc disabled per module param\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 544 | return; |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 545 | } |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 546 | |
| 547 | /* |
| 548 | * If FBC is already on, we just have to verify that we can |
| 549 | * keep it that way... |
| 550 | * Need to disable if: |
| 551 | * - more than one pipe is active |
| 552 | * - changing FBC params (stride, fence, mode) |
| 553 | * - new fb is too large to fit in compressed buffer |
| 554 | * - going to an unsupported config (interlace, pixel multiply, etc.) |
| 555 | */ |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 556 | for_each_crtc(dev, tmp_crtc) { |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 557 | if (intel_crtc_active(tmp_crtc) && |
Ville Syrjälä | 4c445e0 | 2013-10-09 17:24:58 +0300 | [diff] [blame] | 558 | to_intel_crtc(tmp_crtc)->primary_enabled) { |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 559 | if (crtc) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 560 | if (set_no_fbc_reason(dev_priv, FBC_MULTIPLE_PIPES)) |
| 561 | DRM_DEBUG_KMS("more than one pipe active, disabling compression\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 562 | goto out_disable; |
| 563 | } |
| 564 | crtc = tmp_crtc; |
| 565 | } |
| 566 | } |
| 567 | |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 568 | if (!crtc || crtc->primary->fb == NULL) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 569 | if (set_no_fbc_reason(dev_priv, FBC_NO_OUTPUT)) |
| 570 | DRM_DEBUG_KMS("no output, disabling\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 571 | goto out_disable; |
| 572 | } |
| 573 | |
| 574 | intel_crtc = to_intel_crtc(crtc); |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 575 | fb = crtc->primary->fb; |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 576 | obj = intel_fb_obj(fb); |
Ville Syrjälä | ef644fd | 2013-09-04 18:25:21 +0300 | [diff] [blame] | 577 | adjusted_mode = &intel_crtc->config.adjusted_mode; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 578 | |
Chris Wilson | 0368920 | 2014-06-06 10:37:11 +0100 | [diff] [blame] | 579 | if (i915.enable_fbc < 0) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 580 | if (set_no_fbc_reason(dev_priv, FBC_CHIP_DEFAULT)) |
| 581 | DRM_DEBUG_KMS("disabled per chip default\n"); |
Damien Lespiau | 8a5729a | 2013-06-24 16:22:02 +0100 | [diff] [blame] | 582 | goto out_disable; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 583 | } |
Jani Nikula | d330a95 | 2014-01-21 11:24:25 +0200 | [diff] [blame] | 584 | if (!i915.enable_fbc) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 585 | if (set_no_fbc_reason(dev_priv, FBC_MODULE_PARAM)) |
| 586 | DRM_DEBUG_KMS("fbc disabled per module param\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 587 | goto out_disable; |
| 588 | } |
Ville Syrjälä | ef644fd | 2013-09-04 18:25:21 +0300 | [diff] [blame] | 589 | if ((adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) || |
| 590 | (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 591 | if (set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED_MODE)) |
| 592 | DRM_DEBUG_KMS("mode incompatible with compression, " |
| 593 | "disabling\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 594 | goto out_disable; |
| 595 | } |
Paulo Zanoni | f85da86 | 2013-06-04 16:53:39 -0300 | [diff] [blame] | 596 | |
Daisy Sun | 032843a | 2014-06-16 15:48:18 -0700 | [diff] [blame] | 597 | if (INTEL_INFO(dev)->gen >= 8 || IS_HASWELL(dev)) { |
| 598 | max_width = 4096; |
| 599 | max_height = 4096; |
| 600 | } else if (IS_G4X(dev) || INTEL_INFO(dev)->gen >= 5) { |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 601 | max_width = 4096; |
| 602 | max_height = 2048; |
Paulo Zanoni | f85da86 | 2013-06-04 16:53:39 -0300 | [diff] [blame] | 603 | } else { |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 604 | max_width = 2048; |
| 605 | max_height = 1536; |
Paulo Zanoni | f85da86 | 2013-06-04 16:53:39 -0300 | [diff] [blame] | 606 | } |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 607 | if (intel_crtc->config.pipe_src_w > max_width || |
| 608 | intel_crtc->config.pipe_src_h > max_height) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 609 | if (set_no_fbc_reason(dev_priv, FBC_MODE_TOO_LARGE)) |
| 610 | DRM_DEBUG_KMS("mode too large for compression, disabling\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 611 | goto out_disable; |
| 612 | } |
Ben Widawsky | 8f94d24 | 2014-02-20 16:01:20 -0800 | [diff] [blame] | 613 | if ((INTEL_INFO(dev)->gen < 4 || HAS_DDI(dev)) && |
Ville Syrjälä | c5a44aa | 2013-11-28 17:29:58 +0200 | [diff] [blame] | 614 | intel_crtc->plane != PLANE_A) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 615 | if (set_no_fbc_reason(dev_priv, FBC_BAD_PLANE)) |
Ville Syrjälä | c5a44aa | 2013-11-28 17:29:58 +0200 | [diff] [blame] | 616 | DRM_DEBUG_KMS("plane not A, disabling compression\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 617 | goto out_disable; |
| 618 | } |
| 619 | |
| 620 | /* The use of a CPU fence is mandatory in order to detect writes |
| 621 | * by the CPU to the scanout and trigger updates to the FBC. |
| 622 | */ |
| 623 | if (obj->tiling_mode != I915_TILING_X || |
| 624 | obj->fence_reg == I915_FENCE_REG_NONE) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 625 | if (set_no_fbc_reason(dev_priv, FBC_NOT_TILED)) |
| 626 | DRM_DEBUG_KMS("framebuffer not tiled or fenced, disabling compression\n"); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 627 | goto out_disable; |
| 628 | } |
Sonika Jindal | 48404c1 | 2014-08-22 14:06:04 +0530 | [diff] [blame] | 629 | if (INTEL_INFO(dev)->gen <= 4 && !IS_G4X(dev) && |
| 630 | to_intel_plane(crtc->primary)->rotation != BIT(DRM_ROTATE_0)) { |
| 631 | if (set_no_fbc_reason(dev_priv, FBC_UNSUPPORTED_MODE)) |
| 632 | DRM_DEBUG_KMS("Rotation unsupported, disabling\n"); |
| 633 | goto out_disable; |
| 634 | } |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 635 | |
| 636 | /* If the kernel debugger is active, always disable compression */ |
| 637 | if (in_dbg_master()) |
| 638 | goto out_disable; |
| 639 | |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 640 | if (i915_gem_stolen_setup_compression(dev, obj->base.size, |
Ben Widawsky | 5e59f71 | 2014-06-30 10:41:24 -0700 | [diff] [blame] | 641 | drm_format_plane_cpp(fb->pixel_format, 0))) { |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 642 | if (set_no_fbc_reason(dev_priv, FBC_STOLEN_TOO_SMALL)) |
| 643 | DRM_DEBUG_KMS("framebuffer too large, disabling compression\n"); |
Chris Wilson | 11be49e | 2012-11-15 11:32:20 +0000 | [diff] [blame] | 644 | goto out_disable; |
| 645 | } |
| 646 | |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 647 | /* If the scanout has not changed, don't modify the FBC settings. |
| 648 | * Note that we make the fundamental assumption that the fb->obj |
| 649 | * cannot be unpinned (and have its GTT offset and fence revoked) |
| 650 | * without first being decoupled from the scanout and FBC disabled. |
| 651 | */ |
Ben Widawsky | 5c3fe8b | 2013-06-27 16:30:21 -0700 | [diff] [blame] | 652 | if (dev_priv->fbc.plane == intel_crtc->plane && |
| 653 | dev_priv->fbc.fb_id == fb->base.id && |
| 654 | dev_priv->fbc.y == crtc->y) |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 655 | return; |
| 656 | |
| 657 | if (intel_fbc_enabled(dev)) { |
| 658 | /* We update FBC along two paths, after changing fb/crtc |
| 659 | * configuration (modeswitching) and after page-flipping |
| 660 | * finishes. For the latter, we know that not only did |
| 661 | * we disable the FBC at the start of the page-flip |
| 662 | * sequence, but also more than one vblank has passed. |
| 663 | * |
| 664 | * For the former case of modeswitching, it is possible |
| 665 | * to switch between two FBC valid configurations |
| 666 | * instantaneously so we do need to disable the FBC |
| 667 | * before we can modify its control registers. We also |
| 668 | * have to wait for the next vblank for that to take |
| 669 | * effect. However, since we delay enabling FBC we can |
| 670 | * assume that a vblank has passed since disabling and |
| 671 | * that we can safely alter the registers in the deferred |
| 672 | * callback. |
| 673 | * |
| 674 | * In the scenario that we go from a valid to invalid |
| 675 | * and then back to valid FBC configuration we have |
| 676 | * no strict enforcement that a vblank occurred since |
| 677 | * disabling the FBC. However, along all current pipe |
| 678 | * disabling paths we do need to wait for a vblank at |
| 679 | * some point. And we wait before enabling FBC anyway. |
| 680 | */ |
| 681 | DRM_DEBUG_KMS("disabling active FBC for update\n"); |
| 682 | intel_disable_fbc(dev); |
| 683 | } |
| 684 | |
Ville Syrjälä | 993495a | 2013-12-12 17:27:40 +0200 | [diff] [blame] | 685 | intel_enable_fbc(crtc); |
Chris Wilson | 29ebf90 | 2013-07-27 17:23:55 +0100 | [diff] [blame] | 686 | dev_priv->fbc.no_fbc_reason = FBC_OK; |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 687 | return; |
| 688 | |
| 689 | out_disable: |
| 690 | /* Multiple disables should be harmless */ |
| 691 | if (intel_fbc_enabled(dev)) { |
| 692 | DRM_DEBUG_KMS("unsupported config, disabling FBC\n"); |
| 693 | intel_disable_fbc(dev); |
| 694 | } |
Chris Wilson | 11be49e | 2012-11-15 11:32:20 +0000 | [diff] [blame] | 695 | i915_gem_stolen_cleanup_compression(dev); |
Eugeni Dodonov | 85208be | 2012-04-16 22:20:34 -0300 | [diff] [blame] | 696 | } |
| 697 | |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 698 | static void i915_pineview_get_mem_freq(struct drm_device *dev) |
| 699 | { |
Jani Nikula | 50227e1 | 2014-03-31 14:27:21 +0300 | [diff] [blame] | 700 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 701 | u32 tmp; |
| 702 | |
| 703 | tmp = I915_READ(CLKCFG); |
| 704 | |
| 705 | switch (tmp & CLKCFG_FSB_MASK) { |
| 706 | case CLKCFG_FSB_533: |
| 707 | dev_priv->fsb_freq = 533; /* 133*4 */ |
| 708 | break; |
| 709 | case CLKCFG_FSB_800: |
| 710 | dev_priv->fsb_freq = 800; /* 200*4 */ |
| 711 | break; |
| 712 | case CLKCFG_FSB_667: |
| 713 | dev_priv->fsb_freq = 667; /* 167*4 */ |
| 714 | break; |
| 715 | case CLKCFG_FSB_400: |
| 716 | dev_priv->fsb_freq = 400; /* 100*4 */ |
| 717 | break; |
| 718 | } |
| 719 | |
| 720 | switch (tmp & CLKCFG_MEM_MASK) { |
| 721 | case CLKCFG_MEM_533: |
| 722 | dev_priv->mem_freq = 533; |
| 723 | break; |
| 724 | case CLKCFG_MEM_667: |
| 725 | dev_priv->mem_freq = 667; |
| 726 | break; |
| 727 | case CLKCFG_MEM_800: |
| 728 | dev_priv->mem_freq = 800; |
| 729 | break; |
| 730 | } |
| 731 | |
| 732 | /* detect pineview DDR3 setting */ |
| 733 | tmp = I915_READ(CSHRDDR3CTL); |
| 734 | dev_priv->is_ddr3 = (tmp & CSHRDDR3CTL_DDR3) ? 1 : 0; |
| 735 | } |
| 736 | |
| 737 | static void i915_ironlake_get_mem_freq(struct drm_device *dev) |
| 738 | { |
Jani Nikula | 50227e1 | 2014-03-31 14:27:21 +0300 | [diff] [blame] | 739 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 740 | u16 ddrpll, csipll; |
| 741 | |
| 742 | ddrpll = I915_READ16(DDRMPLL1); |
| 743 | csipll = I915_READ16(CSIPLL0); |
| 744 | |
| 745 | switch (ddrpll & 0xff) { |
| 746 | case 0xc: |
| 747 | dev_priv->mem_freq = 800; |
| 748 | break; |
| 749 | case 0x10: |
| 750 | dev_priv->mem_freq = 1066; |
| 751 | break; |
| 752 | case 0x14: |
| 753 | dev_priv->mem_freq = 1333; |
| 754 | break; |
| 755 | case 0x18: |
| 756 | dev_priv->mem_freq = 1600; |
| 757 | break; |
| 758 | default: |
| 759 | DRM_DEBUG_DRIVER("unknown memory frequency 0x%02x\n", |
| 760 | ddrpll & 0xff); |
| 761 | dev_priv->mem_freq = 0; |
| 762 | break; |
| 763 | } |
| 764 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 765 | dev_priv->ips.r_t = dev_priv->mem_freq; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 766 | |
| 767 | switch (csipll & 0x3ff) { |
| 768 | case 0x00c: |
| 769 | dev_priv->fsb_freq = 3200; |
| 770 | break; |
| 771 | case 0x00e: |
| 772 | dev_priv->fsb_freq = 3733; |
| 773 | break; |
| 774 | case 0x010: |
| 775 | dev_priv->fsb_freq = 4266; |
| 776 | break; |
| 777 | case 0x012: |
| 778 | dev_priv->fsb_freq = 4800; |
| 779 | break; |
| 780 | case 0x014: |
| 781 | dev_priv->fsb_freq = 5333; |
| 782 | break; |
| 783 | case 0x016: |
| 784 | dev_priv->fsb_freq = 5866; |
| 785 | break; |
| 786 | case 0x018: |
| 787 | dev_priv->fsb_freq = 6400; |
| 788 | break; |
| 789 | default: |
| 790 | DRM_DEBUG_DRIVER("unknown fsb frequency 0x%04x\n", |
| 791 | csipll & 0x3ff); |
| 792 | dev_priv->fsb_freq = 0; |
| 793 | break; |
| 794 | } |
| 795 | |
| 796 | if (dev_priv->fsb_freq == 3200) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 797 | dev_priv->ips.c_m = 0; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 798 | } else if (dev_priv->fsb_freq > 3200 && dev_priv->fsb_freq <= 4800) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 799 | dev_priv->ips.c_m = 1; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 800 | } else { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 801 | dev_priv->ips.c_m = 2; |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 802 | } |
| 803 | } |
| 804 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 805 | static const struct cxsr_latency cxsr_latency_table[] = { |
| 806 | {1, 0, 800, 400, 3382, 33382, 3983, 33983}, /* DDR2-400 SC */ |
| 807 | {1, 0, 800, 667, 3354, 33354, 3807, 33807}, /* DDR2-667 SC */ |
| 808 | {1, 0, 800, 800, 3347, 33347, 3763, 33763}, /* DDR2-800 SC */ |
| 809 | {1, 1, 800, 667, 6420, 36420, 6873, 36873}, /* DDR3-667 SC */ |
| 810 | {1, 1, 800, 800, 5902, 35902, 6318, 36318}, /* DDR3-800 SC */ |
| 811 | |
| 812 | {1, 0, 667, 400, 3400, 33400, 4021, 34021}, /* DDR2-400 SC */ |
| 813 | {1, 0, 667, 667, 3372, 33372, 3845, 33845}, /* DDR2-667 SC */ |
| 814 | {1, 0, 667, 800, 3386, 33386, 3822, 33822}, /* DDR2-800 SC */ |
| 815 | {1, 1, 667, 667, 6438, 36438, 6911, 36911}, /* DDR3-667 SC */ |
| 816 | {1, 1, 667, 800, 5941, 35941, 6377, 36377}, /* DDR3-800 SC */ |
| 817 | |
| 818 | {1, 0, 400, 400, 3472, 33472, 4173, 34173}, /* DDR2-400 SC */ |
| 819 | {1, 0, 400, 667, 3443, 33443, 3996, 33996}, /* DDR2-667 SC */ |
| 820 | {1, 0, 400, 800, 3430, 33430, 3946, 33946}, /* DDR2-800 SC */ |
| 821 | {1, 1, 400, 667, 6509, 36509, 7062, 37062}, /* DDR3-667 SC */ |
| 822 | {1, 1, 400, 800, 5985, 35985, 6501, 36501}, /* DDR3-800 SC */ |
| 823 | |
| 824 | {0, 0, 800, 400, 3438, 33438, 4065, 34065}, /* DDR2-400 SC */ |
| 825 | {0, 0, 800, 667, 3410, 33410, 3889, 33889}, /* DDR2-667 SC */ |
| 826 | {0, 0, 800, 800, 3403, 33403, 3845, 33845}, /* DDR2-800 SC */ |
| 827 | {0, 1, 800, 667, 6476, 36476, 6955, 36955}, /* DDR3-667 SC */ |
| 828 | {0, 1, 800, 800, 5958, 35958, 6400, 36400}, /* DDR3-800 SC */ |
| 829 | |
| 830 | {0, 0, 667, 400, 3456, 33456, 4103, 34106}, /* DDR2-400 SC */ |
| 831 | {0, 0, 667, 667, 3428, 33428, 3927, 33927}, /* DDR2-667 SC */ |
| 832 | {0, 0, 667, 800, 3443, 33443, 3905, 33905}, /* DDR2-800 SC */ |
| 833 | {0, 1, 667, 667, 6494, 36494, 6993, 36993}, /* DDR3-667 SC */ |
| 834 | {0, 1, 667, 800, 5998, 35998, 6460, 36460}, /* DDR3-800 SC */ |
| 835 | |
| 836 | {0, 0, 400, 400, 3528, 33528, 4255, 34255}, /* DDR2-400 SC */ |
| 837 | {0, 0, 400, 667, 3500, 33500, 4079, 34079}, /* DDR2-667 SC */ |
| 838 | {0, 0, 400, 800, 3487, 33487, 4029, 34029}, /* DDR2-800 SC */ |
| 839 | {0, 1, 400, 667, 6566, 36566, 7145, 37145}, /* DDR3-667 SC */ |
| 840 | {0, 1, 400, 800, 6042, 36042, 6584, 36584}, /* DDR3-800 SC */ |
| 841 | }; |
| 842 | |
Daniel Vetter | 63c6227 | 2012-04-21 23:17:55 +0200 | [diff] [blame] | 843 | static const struct cxsr_latency *intel_get_cxsr_latency(int is_desktop, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 844 | int is_ddr3, |
| 845 | int fsb, |
| 846 | int mem) |
| 847 | { |
| 848 | const struct cxsr_latency *latency; |
| 849 | int i; |
| 850 | |
| 851 | if (fsb == 0 || mem == 0) |
| 852 | return NULL; |
| 853 | |
| 854 | for (i = 0; i < ARRAY_SIZE(cxsr_latency_table); i++) { |
| 855 | latency = &cxsr_latency_table[i]; |
| 856 | if (is_desktop == latency->is_desktop && |
| 857 | is_ddr3 == latency->is_ddr3 && |
| 858 | fsb == latency->fsb_freq && mem == latency->mem_freq) |
| 859 | return latency; |
| 860 | } |
| 861 | |
| 862 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
| 863 | |
| 864 | return NULL; |
| 865 | } |
| 866 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 867 | 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] | 868 | { |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 869 | struct drm_device *dev = dev_priv->dev; |
| 870 | u32 val; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 871 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 872 | if (IS_VALLEYVIEW(dev)) { |
| 873 | I915_WRITE(FW_BLC_SELF_VLV, enable ? FW_CSPWRDWNEN : 0); |
| 874 | } else if (IS_G4X(dev) || IS_CRESTLINE(dev)) { |
| 875 | I915_WRITE(FW_BLC_SELF, enable ? FW_BLC_SELF_EN : 0); |
| 876 | } else if (IS_PINEVIEW(dev)) { |
| 877 | val = I915_READ(DSPFW3) & ~PINEVIEW_SELF_REFRESH_EN; |
| 878 | val |= enable ? PINEVIEW_SELF_REFRESH_EN : 0; |
| 879 | I915_WRITE(DSPFW3, val); |
| 880 | } else if (IS_I945G(dev) || IS_I945GM(dev)) { |
| 881 | val = enable ? _MASKED_BIT_ENABLE(FW_BLC_SELF_EN) : |
| 882 | _MASKED_BIT_DISABLE(FW_BLC_SELF_EN); |
| 883 | I915_WRITE(FW_BLC_SELF, val); |
| 884 | } else if (IS_I915GM(dev)) { |
| 885 | val = enable ? _MASKED_BIT_ENABLE(INSTPM_SELF_EN) : |
| 886 | _MASKED_BIT_DISABLE(INSTPM_SELF_EN); |
| 887 | I915_WRITE(INSTPM, val); |
| 888 | } else { |
| 889 | return; |
| 890 | } |
| 891 | |
| 892 | DRM_DEBUG_KMS("memory self-refresh is %s\n", |
| 893 | enable ? "enabled" : "disabled"); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 894 | } |
| 895 | |
| 896 | /* |
| 897 | * Latency for FIFO fetches is dependent on several factors: |
| 898 | * - memory configuration (speed, channels) |
| 899 | * - chipset |
| 900 | * - current MCH state |
| 901 | * It can be fairly high in some situations, so here we assume a fairly |
| 902 | * pessimal value. It's a tradeoff between extra memory fetches (if we |
| 903 | * set this value too high, the FIFO will fetch frequently to stay full) |
| 904 | * and power consumption (set it too low to save power and we might see |
| 905 | * FIFO underruns and display "flicker"). |
| 906 | * |
| 907 | * A value of 5us seems to be a good balance; safe for very low end |
| 908 | * platforms but not overly aggressive on lower latency configs. |
| 909 | */ |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 910 | static const int pessimal_latency_ns = 5000; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 911 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 912 | static int i9xx_get_fifo_size(struct drm_device *dev, int plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 913 | { |
| 914 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 915 | uint32_t dsparb = I915_READ(DSPARB); |
| 916 | int size; |
| 917 | |
| 918 | size = dsparb & 0x7f; |
| 919 | if (plane) |
| 920 | size = ((dsparb >> DSPARB_CSTART_SHIFT) & 0x7f) - size; |
| 921 | |
| 922 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 923 | plane ? "B" : "A", size); |
| 924 | |
| 925 | return size; |
| 926 | } |
| 927 | |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 928 | static int i830_get_fifo_size(struct drm_device *dev, int plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 929 | { |
| 930 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 931 | uint32_t dsparb = I915_READ(DSPARB); |
| 932 | int size; |
| 933 | |
| 934 | size = dsparb & 0x1ff; |
| 935 | if (plane) |
| 936 | size = ((dsparb >> DSPARB_BEND_SHIFT) & 0x1ff) - size; |
| 937 | size >>= 1; /* Convert to cachelines */ |
| 938 | |
| 939 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 940 | plane ? "B" : "A", size); |
| 941 | |
| 942 | return size; |
| 943 | } |
| 944 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 945 | static int i845_get_fifo_size(struct drm_device *dev, int plane) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 946 | { |
| 947 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 948 | uint32_t dsparb = I915_READ(DSPARB); |
| 949 | int size; |
| 950 | |
| 951 | size = dsparb & 0x7f; |
| 952 | size >>= 2; /* Convert to cachelines */ |
| 953 | |
| 954 | DRM_DEBUG_KMS("FIFO size - (0x%08x) %s: %d\n", dsparb, |
| 955 | plane ? "B" : "A", |
| 956 | size); |
| 957 | |
| 958 | return size; |
| 959 | } |
| 960 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 961 | /* Pineview has different values for various configs */ |
| 962 | static const struct intel_watermark_params pineview_display_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 963 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 964 | .max_wm = PINEVIEW_MAX_WM, |
| 965 | .default_wm = PINEVIEW_DFT_WM, |
| 966 | .guard_size = PINEVIEW_GUARD_WM, |
| 967 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 968 | }; |
| 969 | static const struct intel_watermark_params pineview_display_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 970 | .fifo_size = PINEVIEW_DISPLAY_FIFO, |
| 971 | .max_wm = PINEVIEW_MAX_WM, |
| 972 | .default_wm = PINEVIEW_DFT_HPLLOFF_WM, |
| 973 | .guard_size = PINEVIEW_GUARD_WM, |
| 974 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 975 | }; |
| 976 | static const struct intel_watermark_params pineview_cursor_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 977 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 978 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 979 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 980 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 981 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 982 | }; |
| 983 | static const struct intel_watermark_params pineview_cursor_hplloff_wm = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 984 | .fifo_size = PINEVIEW_CURSOR_FIFO, |
| 985 | .max_wm = PINEVIEW_CURSOR_MAX_WM, |
| 986 | .default_wm = PINEVIEW_CURSOR_DFT_WM, |
| 987 | .guard_size = PINEVIEW_CURSOR_GUARD_WM, |
| 988 | .cacheline_size = PINEVIEW_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 989 | }; |
| 990 | static const struct intel_watermark_params g4x_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 991 | .fifo_size = G4X_FIFO_SIZE, |
| 992 | .max_wm = G4X_MAX_WM, |
| 993 | .default_wm = G4X_MAX_WM, |
| 994 | .guard_size = 2, |
| 995 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 996 | }; |
| 997 | static const struct intel_watermark_params g4x_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 998 | .fifo_size = I965_CURSOR_FIFO, |
| 999 | .max_wm = I965_CURSOR_MAX_WM, |
| 1000 | .default_wm = I965_CURSOR_DFT_WM, |
| 1001 | .guard_size = 2, |
| 1002 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1003 | }; |
| 1004 | static const struct intel_watermark_params valleyview_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1005 | .fifo_size = VALLEYVIEW_FIFO_SIZE, |
| 1006 | .max_wm = VALLEYVIEW_MAX_WM, |
| 1007 | .default_wm = VALLEYVIEW_MAX_WM, |
| 1008 | .guard_size = 2, |
| 1009 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1010 | }; |
| 1011 | static const struct intel_watermark_params valleyview_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1012 | .fifo_size = I965_CURSOR_FIFO, |
| 1013 | .max_wm = VALLEYVIEW_CURSOR_MAX_WM, |
| 1014 | .default_wm = I965_CURSOR_DFT_WM, |
| 1015 | .guard_size = 2, |
| 1016 | .cacheline_size = G4X_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1017 | }; |
| 1018 | static const struct intel_watermark_params i965_cursor_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1019 | .fifo_size = I965_CURSOR_FIFO, |
| 1020 | .max_wm = I965_CURSOR_MAX_WM, |
| 1021 | .default_wm = I965_CURSOR_DFT_WM, |
| 1022 | .guard_size = 2, |
| 1023 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1024 | }; |
| 1025 | static const struct intel_watermark_params i945_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1026 | .fifo_size = I945_FIFO_SIZE, |
| 1027 | .max_wm = I915_MAX_WM, |
| 1028 | .default_wm = 1, |
| 1029 | .guard_size = 2, |
| 1030 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1031 | }; |
| 1032 | static const struct intel_watermark_params i915_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1033 | .fifo_size = I915_FIFO_SIZE, |
| 1034 | .max_wm = I915_MAX_WM, |
| 1035 | .default_wm = 1, |
| 1036 | .guard_size = 2, |
| 1037 | .cacheline_size = I915_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1038 | }; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1039 | static const struct intel_watermark_params i830_a_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1040 | .fifo_size = I855GM_FIFO_SIZE, |
| 1041 | .max_wm = I915_MAX_WM, |
| 1042 | .default_wm = 1, |
| 1043 | .guard_size = 2, |
| 1044 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1045 | }; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1046 | static const struct intel_watermark_params i830_bc_wm_info = { |
| 1047 | .fifo_size = I855GM_FIFO_SIZE, |
| 1048 | .max_wm = I915_MAX_WM/2, |
| 1049 | .default_wm = 1, |
| 1050 | .guard_size = 2, |
| 1051 | .cacheline_size = I830_FIFO_LINE_SIZE, |
| 1052 | }; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 1053 | static const struct intel_watermark_params i845_wm_info = { |
Ville Syrjälä | e0f0273 | 2014-06-05 19:15:50 +0300 | [diff] [blame] | 1054 | .fifo_size = I830_FIFO_SIZE, |
| 1055 | .max_wm = I915_MAX_WM, |
| 1056 | .default_wm = 1, |
| 1057 | .guard_size = 2, |
| 1058 | .cacheline_size = I830_FIFO_LINE_SIZE, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1059 | }; |
| 1060 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1061 | /** |
| 1062 | * intel_calculate_wm - calculate watermark level |
| 1063 | * @clock_in_khz: pixel clock |
| 1064 | * @wm: chip FIFO params |
| 1065 | * @pixel_size: display pixel size |
| 1066 | * @latency_ns: memory latency for the platform |
| 1067 | * |
| 1068 | * Calculate the watermark level (the level at which the display plane will |
| 1069 | * start fetching from memory again). Each chip has a different display |
| 1070 | * FIFO size and allocation, so the caller needs to figure that out and pass |
| 1071 | * in the correct intel_watermark_params structure. |
| 1072 | * |
| 1073 | * As the pixel clock runs, the FIFO will be drained at a rate that depends |
| 1074 | * on the pixel size. When it reaches the watermark level, it'll start |
| 1075 | * fetching FIFO line sized based chunks from memory until the FIFO fills |
| 1076 | * past the watermark point. If the FIFO drains completely, a FIFO underrun |
| 1077 | * will occur, and a display engine hang could result. |
| 1078 | */ |
| 1079 | static unsigned long intel_calculate_wm(unsigned long clock_in_khz, |
| 1080 | const struct intel_watermark_params *wm, |
| 1081 | int fifo_size, |
| 1082 | int pixel_size, |
| 1083 | unsigned long latency_ns) |
| 1084 | { |
| 1085 | long entries_required, wm_size; |
| 1086 | |
| 1087 | /* |
| 1088 | * Note: we need to make sure we don't overflow for various clock & |
| 1089 | * latency values. |
| 1090 | * clocks go from a few thousand to several hundred thousand. |
| 1091 | * latency is usually a few thousand |
| 1092 | */ |
| 1093 | entries_required = ((clock_in_khz / 1000) * pixel_size * latency_ns) / |
| 1094 | 1000; |
| 1095 | entries_required = DIV_ROUND_UP(entries_required, wm->cacheline_size); |
| 1096 | |
| 1097 | DRM_DEBUG_KMS("FIFO entries required for mode: %ld\n", entries_required); |
| 1098 | |
| 1099 | wm_size = fifo_size - (entries_required + wm->guard_size); |
| 1100 | |
| 1101 | DRM_DEBUG_KMS("FIFO watermark level: %ld\n", wm_size); |
| 1102 | |
| 1103 | /* Don't promote wm_size to unsigned... */ |
| 1104 | if (wm_size > (long)wm->max_wm) |
| 1105 | wm_size = wm->max_wm; |
| 1106 | if (wm_size <= 0) |
| 1107 | wm_size = wm->default_wm; |
Ville Syrjälä | d6feb19 | 2014-09-05 21:54:13 +0300 | [diff] [blame] | 1108 | |
| 1109 | /* |
| 1110 | * Bspec seems to indicate that the value shouldn't be lower than |
| 1111 | * 'burst size + 1'. Certainly 830 is quite unhappy with low values. |
| 1112 | * Lets go for 8 which is the burst size since certain platforms |
| 1113 | * already use a hardcoded 8 (which is what the spec says should be |
| 1114 | * done). |
| 1115 | */ |
| 1116 | if (wm_size <= 8) |
| 1117 | wm_size = 8; |
| 1118 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1119 | return wm_size; |
| 1120 | } |
| 1121 | |
| 1122 | static struct drm_crtc *single_enabled_crtc(struct drm_device *dev) |
| 1123 | { |
| 1124 | struct drm_crtc *crtc, *enabled = NULL; |
| 1125 | |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 1126 | for_each_crtc(dev, crtc) { |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 1127 | if (intel_crtc_active(crtc)) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1128 | if (enabled) |
| 1129 | return NULL; |
| 1130 | enabled = crtc; |
| 1131 | } |
| 1132 | } |
| 1133 | |
| 1134 | return enabled; |
| 1135 | } |
| 1136 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1137 | static void pineview_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1138 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1139 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1140 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1141 | struct drm_crtc *crtc; |
| 1142 | const struct cxsr_latency *latency; |
| 1143 | u32 reg; |
| 1144 | unsigned long wm; |
| 1145 | |
| 1146 | latency = intel_get_cxsr_latency(IS_PINEVIEW_G(dev), dev_priv->is_ddr3, |
| 1147 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 1148 | if (!latency) { |
| 1149 | DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1150 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1151 | return; |
| 1152 | } |
| 1153 | |
| 1154 | crtc = single_enabled_crtc(dev); |
| 1155 | if (crtc) { |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1156 | const struct drm_display_mode *adjusted_mode; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1157 | int pixel_size = crtc->primary->fb->bits_per_pixel / 8; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1158 | int clock; |
| 1159 | |
| 1160 | adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode; |
| 1161 | clock = adjusted_mode->crtc_clock; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1162 | |
| 1163 | /* Display SR */ |
| 1164 | wm = intel_calculate_wm(clock, &pineview_display_wm, |
| 1165 | pineview_display_wm.fifo_size, |
| 1166 | pixel_size, latency->display_sr); |
| 1167 | reg = I915_READ(DSPFW1); |
| 1168 | reg &= ~DSPFW_SR_MASK; |
| 1169 | reg |= wm << DSPFW_SR_SHIFT; |
| 1170 | I915_WRITE(DSPFW1, reg); |
| 1171 | DRM_DEBUG_KMS("DSPFW1 register is %x\n", reg); |
| 1172 | |
| 1173 | /* cursor SR */ |
| 1174 | wm = intel_calculate_wm(clock, &pineview_cursor_wm, |
| 1175 | pineview_display_wm.fifo_size, |
| 1176 | pixel_size, latency->cursor_sr); |
| 1177 | reg = I915_READ(DSPFW3); |
| 1178 | reg &= ~DSPFW_CURSOR_SR_MASK; |
| 1179 | reg |= (wm & 0x3f) << DSPFW_CURSOR_SR_SHIFT; |
| 1180 | I915_WRITE(DSPFW3, reg); |
| 1181 | |
| 1182 | /* Display HPLL off SR */ |
| 1183 | wm = intel_calculate_wm(clock, &pineview_display_hplloff_wm, |
| 1184 | pineview_display_hplloff_wm.fifo_size, |
| 1185 | pixel_size, latency->display_hpll_disable); |
| 1186 | reg = I915_READ(DSPFW3); |
| 1187 | reg &= ~DSPFW_HPLL_SR_MASK; |
| 1188 | reg |= wm & DSPFW_HPLL_SR_MASK; |
| 1189 | I915_WRITE(DSPFW3, reg); |
| 1190 | |
| 1191 | /* cursor HPLL off SR */ |
| 1192 | wm = intel_calculate_wm(clock, &pineview_cursor_hplloff_wm, |
| 1193 | pineview_display_hplloff_wm.fifo_size, |
| 1194 | pixel_size, latency->cursor_hpll_disable); |
| 1195 | reg = I915_READ(DSPFW3); |
| 1196 | reg &= ~DSPFW_HPLL_CURSOR_MASK; |
| 1197 | reg |= (wm & 0x3f) << DSPFW_HPLL_CURSOR_SHIFT; |
| 1198 | I915_WRITE(DSPFW3, reg); |
| 1199 | DRM_DEBUG_KMS("DSPFW3 register is %x\n", reg); |
| 1200 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1201 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1202 | } else { |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1203 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1204 | } |
| 1205 | } |
| 1206 | |
| 1207 | static bool g4x_compute_wm0(struct drm_device *dev, |
| 1208 | int plane, |
| 1209 | const struct intel_watermark_params *display, |
| 1210 | int display_latency_ns, |
| 1211 | const struct intel_watermark_params *cursor, |
| 1212 | int cursor_latency_ns, |
| 1213 | int *plane_wm, |
| 1214 | int *cursor_wm) |
| 1215 | { |
| 1216 | struct drm_crtc *crtc; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1217 | const struct drm_display_mode *adjusted_mode; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1218 | int htotal, hdisplay, clock, pixel_size; |
| 1219 | int line_time_us, line_count; |
| 1220 | int entries, tlb_miss; |
| 1221 | |
| 1222 | crtc = intel_get_crtc_for_plane(dev, plane); |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 1223 | if (!intel_crtc_active(crtc)) { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1224 | *cursor_wm = cursor->guard_size; |
| 1225 | *plane_wm = display->guard_size; |
| 1226 | return false; |
| 1227 | } |
| 1228 | |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1229 | adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1230 | clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1231 | htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 1232 | hdisplay = to_intel_crtc(crtc)->config.pipe_src_w; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1233 | pixel_size = crtc->primary->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1234 | |
| 1235 | /* Use the small buffer method to calculate plane watermark */ |
| 1236 | entries = ((clock * pixel_size / 1000) * display_latency_ns) / 1000; |
| 1237 | tlb_miss = display->fifo_size*display->cacheline_size - hdisplay * 8; |
| 1238 | if (tlb_miss > 0) |
| 1239 | entries += tlb_miss; |
| 1240 | entries = DIV_ROUND_UP(entries, display->cacheline_size); |
| 1241 | *plane_wm = entries + display->guard_size; |
| 1242 | if (*plane_wm > (int)display->max_wm) |
| 1243 | *plane_wm = display->max_wm; |
| 1244 | |
| 1245 | /* Use the large buffer method to calculate cursor watermark */ |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 1246 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1247 | line_count = (cursor_latency_ns / line_time_us + 1000) / 1000; |
Chris Wilson | 7bb836d | 2014-03-26 12:38:14 +0000 | [diff] [blame] | 1248 | entries = line_count * to_intel_crtc(crtc)->cursor_width * pixel_size; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1249 | tlb_miss = cursor->fifo_size*cursor->cacheline_size - hdisplay * 8; |
| 1250 | if (tlb_miss > 0) |
| 1251 | entries += tlb_miss; |
| 1252 | entries = DIV_ROUND_UP(entries, cursor->cacheline_size); |
| 1253 | *cursor_wm = entries + cursor->guard_size; |
| 1254 | if (*cursor_wm > (int)cursor->max_wm) |
| 1255 | *cursor_wm = (int)cursor->max_wm; |
| 1256 | |
| 1257 | return true; |
| 1258 | } |
| 1259 | |
| 1260 | /* |
| 1261 | * Check the wm result. |
| 1262 | * |
| 1263 | * If any calculated watermark values is larger than the maximum value that |
| 1264 | * can be programmed into the associated watermark register, that watermark |
| 1265 | * must be disabled. |
| 1266 | */ |
| 1267 | static bool g4x_check_srwm(struct drm_device *dev, |
| 1268 | int display_wm, int cursor_wm, |
| 1269 | const struct intel_watermark_params *display, |
| 1270 | const struct intel_watermark_params *cursor) |
| 1271 | { |
| 1272 | DRM_DEBUG_KMS("SR watermark: display plane %d, cursor %d\n", |
| 1273 | display_wm, cursor_wm); |
| 1274 | |
| 1275 | if (display_wm > display->max_wm) { |
| 1276 | DRM_DEBUG_KMS("display watermark is too large(%d/%ld), disabling\n", |
| 1277 | display_wm, display->max_wm); |
| 1278 | return false; |
| 1279 | } |
| 1280 | |
| 1281 | if (cursor_wm > cursor->max_wm) { |
| 1282 | DRM_DEBUG_KMS("cursor watermark is too large(%d/%ld), disabling\n", |
| 1283 | cursor_wm, cursor->max_wm); |
| 1284 | return false; |
| 1285 | } |
| 1286 | |
| 1287 | if (!(display_wm || cursor_wm)) { |
| 1288 | DRM_DEBUG_KMS("SR latency is 0, disabling\n"); |
| 1289 | return false; |
| 1290 | } |
| 1291 | |
| 1292 | return true; |
| 1293 | } |
| 1294 | |
| 1295 | static bool g4x_compute_srwm(struct drm_device *dev, |
| 1296 | int plane, |
| 1297 | int latency_ns, |
| 1298 | const struct intel_watermark_params *display, |
| 1299 | const struct intel_watermark_params *cursor, |
| 1300 | int *display_wm, int *cursor_wm) |
| 1301 | { |
| 1302 | struct drm_crtc *crtc; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1303 | const struct drm_display_mode *adjusted_mode; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1304 | int hdisplay, htotal, pixel_size, clock; |
| 1305 | unsigned long line_time_us; |
| 1306 | int line_count, line_size; |
| 1307 | int small, large; |
| 1308 | int entries; |
| 1309 | |
| 1310 | if (!latency_ns) { |
| 1311 | *display_wm = *cursor_wm = 0; |
| 1312 | return false; |
| 1313 | } |
| 1314 | |
| 1315 | crtc = intel_get_crtc_for_plane(dev, plane); |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1316 | adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1317 | clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1318 | htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 1319 | hdisplay = to_intel_crtc(crtc)->config.pipe_src_w; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1320 | pixel_size = crtc->primary->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1321 | |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 1322 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1323 | line_count = (latency_ns / line_time_us + 1000) / 1000; |
| 1324 | line_size = hdisplay * pixel_size; |
| 1325 | |
| 1326 | /* Use the minimum of the small and large buffer method for primary */ |
| 1327 | small = ((clock * pixel_size / 1000) * latency_ns) / 1000; |
| 1328 | large = line_count * line_size; |
| 1329 | |
| 1330 | entries = DIV_ROUND_UP(min(small, large), display->cacheline_size); |
| 1331 | *display_wm = entries + display->guard_size; |
| 1332 | |
| 1333 | /* calculate the self-refresh watermark for display cursor */ |
Chris Wilson | 7bb836d | 2014-03-26 12:38:14 +0000 | [diff] [blame] | 1334 | entries = line_count * pixel_size * to_intel_crtc(crtc)->cursor_width; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1335 | entries = DIV_ROUND_UP(entries, cursor->cacheline_size); |
| 1336 | *cursor_wm = entries + cursor->guard_size; |
| 1337 | |
| 1338 | return g4x_check_srwm(dev, |
| 1339 | *display_wm, *cursor_wm, |
| 1340 | display, cursor); |
| 1341 | } |
| 1342 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1343 | static bool vlv_compute_drain_latency(struct drm_crtc *crtc, |
| 1344 | int pixel_size, |
| 1345 | int *prec_mult, |
| 1346 | int *drain_latency) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1347 | { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1348 | struct drm_device *dev = crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1349 | int entries; |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1350 | int clock = to_intel_crtc(crtc)->config.adjusted_mode.crtc_clock; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1351 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1352 | if (WARN(clock == 0, "Pixel clock is zero!\n")) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1353 | return false; |
| 1354 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1355 | if (WARN(pixel_size == 0, "Pixel size is zero!\n")) |
| 1356 | return false; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1357 | |
Gajanan Bhat | a398e9c | 2014-08-05 23:15:54 +0530 | [diff] [blame] | 1358 | entries = DIV_ROUND_UP(clock, 1000) * pixel_size; |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1359 | if (IS_CHERRYVIEW(dev)) |
| 1360 | *prec_mult = (entries > 128) ? DRAIN_LATENCY_PRECISION_32 : |
| 1361 | DRAIN_LATENCY_PRECISION_16; |
| 1362 | else |
| 1363 | *prec_mult = (entries > 128) ? DRAIN_LATENCY_PRECISION_64 : |
| 1364 | DRAIN_LATENCY_PRECISION_32; |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1365 | *drain_latency = (64 * (*prec_mult) * 4) / entries; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1366 | |
Gajanan Bhat | a398e9c | 2014-08-05 23:15:54 +0530 | [diff] [blame] | 1367 | if (*drain_latency > DRAIN_LATENCY_MASK) |
| 1368 | *drain_latency = DRAIN_LATENCY_MASK; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1369 | |
| 1370 | return true; |
| 1371 | } |
| 1372 | |
| 1373 | /* |
| 1374 | * Update drain latency registers of memory arbiter |
| 1375 | * |
| 1376 | * Valleyview SoC has a new memory arbiter and needs drain latency registers |
| 1377 | * to be programmed. Each plane has a drain latency multiplier and a drain |
| 1378 | * latency value. |
| 1379 | */ |
| 1380 | |
Gajanan Bhat | 41aad81 | 2014-07-16 18:24:03 +0530 | [diff] [blame] | 1381 | static void vlv_update_drain_latency(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1382 | { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1383 | struct drm_device *dev = crtc->dev; |
| 1384 | struct drm_i915_private *dev_priv = dev->dev_private; |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1385 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 1386 | int pixel_size; |
| 1387 | int drain_latency; |
| 1388 | enum pipe pipe = intel_crtc->pipe; |
| 1389 | int plane_prec, prec_mult, plane_dl; |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1390 | const int high_precision = IS_CHERRYVIEW(dev) ? |
| 1391 | DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_64; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1392 | |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1393 | plane_dl = I915_READ(VLV_DDL(pipe)) & ~(DDL_PLANE_PRECISION_HIGH | |
| 1394 | DRAIN_LATENCY_MASK | DDL_CURSOR_PRECISION_HIGH | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1395 | (DRAIN_LATENCY_MASK << DDL_CURSOR_SHIFT)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1396 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1397 | if (!intel_crtc_active(crtc)) { |
| 1398 | I915_WRITE(VLV_DDL(pipe), plane_dl); |
| 1399 | return; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1400 | } |
| 1401 | |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1402 | /* Primary plane Drain Latency */ |
| 1403 | pixel_size = crtc->primary->fb->bits_per_pixel / 8; /* BPP */ |
| 1404 | if (vlv_compute_drain_latency(crtc, pixel_size, &prec_mult, &drain_latency)) { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1405 | plane_prec = (prec_mult == high_precision) ? |
| 1406 | DDL_PLANE_PRECISION_HIGH : |
| 1407 | DDL_PLANE_PRECISION_LOW; |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1408 | plane_dl |= plane_prec | drain_latency; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1409 | } |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1410 | |
| 1411 | /* Cursor Drain Latency |
| 1412 | * BPP is always 4 for cursor |
| 1413 | */ |
| 1414 | pixel_size = 4; |
| 1415 | |
| 1416 | /* Program cursor DL only if it is enabled */ |
| 1417 | if (intel_crtc->cursor_base && |
| 1418 | vlv_compute_drain_latency(crtc, pixel_size, &prec_mult, &drain_latency)) { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1419 | plane_prec = (prec_mult == high_precision) ? |
| 1420 | DDL_CURSOR_PRECISION_HIGH : |
| 1421 | DDL_CURSOR_PRECISION_LOW; |
Gajanan Bhat | 0948c26 | 2014-08-07 01:58:24 +0530 | [diff] [blame] | 1422 | plane_dl |= plane_prec | (drain_latency << DDL_CURSOR_SHIFT); |
| 1423 | } |
| 1424 | |
| 1425 | I915_WRITE(VLV_DDL(pipe), plane_dl); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1426 | } |
| 1427 | |
| 1428 | #define single_plane_enabled(mask) is_power_of_2(mask) |
| 1429 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1430 | static void valleyview_update_wm(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1431 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1432 | struct drm_device *dev = crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1433 | static const int sr_latency_ns = 12000; |
| 1434 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1435 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm; |
| 1436 | int plane_sr, cursor_sr; |
Chris Wilson | af6c457 | 2012-12-11 12:01:43 +0000 | [diff] [blame] | 1437 | int ignore_plane_sr, ignore_cursor_sr; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1438 | unsigned int enabled = 0; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1439 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1440 | |
Gajanan Bhat | 41aad81 | 2014-07-16 18:24:03 +0530 | [diff] [blame] | 1441 | vlv_update_drain_latency(crtc); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1442 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1443 | if (g4x_compute_wm0(dev, PIPE_A, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1444 | &valleyview_wm_info, pessimal_latency_ns, |
| 1445 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1446 | &planea_wm, &cursora_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1447 | enabled |= 1 << PIPE_A; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1448 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1449 | if (g4x_compute_wm0(dev, PIPE_B, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1450 | &valleyview_wm_info, pessimal_latency_ns, |
| 1451 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1452 | &planeb_wm, &cursorb_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1453 | enabled |= 1 << PIPE_B; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1454 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1455 | if (single_plane_enabled(enabled) && |
| 1456 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 1457 | sr_latency_ns, |
| 1458 | &valleyview_wm_info, |
| 1459 | &valleyview_cursor_wm_info, |
Chris Wilson | af6c457 | 2012-12-11 12:01:43 +0000 | [diff] [blame] | 1460 | &plane_sr, &ignore_cursor_sr) && |
| 1461 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 1462 | 2*sr_latency_ns, |
| 1463 | &valleyview_wm_info, |
| 1464 | &valleyview_cursor_wm_info, |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1465 | &ignore_plane_sr, &cursor_sr)) { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1466 | cxsr_enabled = true; |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1467 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1468 | cxsr_enabled = false; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1469 | intel_set_memory_cxsr(dev_priv, false); |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1470 | plane_sr = cursor_sr = 0; |
| 1471 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1472 | |
Ville Syrjälä | a504345 | 2014-06-28 02:04:18 +0300 | [diff] [blame] | 1473 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, " |
| 1474 | "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n", |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1475 | planea_wm, cursora_wm, |
| 1476 | planeb_wm, cursorb_wm, |
| 1477 | plane_sr, cursor_sr); |
| 1478 | |
| 1479 | I915_WRITE(DSPFW1, |
| 1480 | (plane_sr << DSPFW_SR_SHIFT) | |
| 1481 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 1482 | (planeb_wm << DSPFW_PLANEB_SHIFT) | |
Ville Syrjälä | 0a56067 | 2014-06-11 16:51:18 +0300 | [diff] [blame] | 1483 | (planea_wm << DSPFW_PLANEA_SHIFT)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1484 | I915_WRITE(DSPFW2, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 1485 | (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1486 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 1487 | I915_WRITE(DSPFW3, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 1488 | (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) | |
| 1489 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1490 | |
| 1491 | if (cxsr_enabled) |
| 1492 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1493 | } |
| 1494 | |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 1495 | static void cherryview_update_wm(struct drm_crtc *crtc) |
| 1496 | { |
| 1497 | struct drm_device *dev = crtc->dev; |
| 1498 | static const int sr_latency_ns = 12000; |
| 1499 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1500 | int planea_wm, planeb_wm, planec_wm; |
| 1501 | int cursora_wm, cursorb_wm, cursorc_wm; |
| 1502 | int plane_sr, cursor_sr; |
| 1503 | int ignore_plane_sr, ignore_cursor_sr; |
| 1504 | unsigned int enabled = 0; |
| 1505 | bool cxsr_enabled; |
| 1506 | |
| 1507 | vlv_update_drain_latency(crtc); |
| 1508 | |
| 1509 | if (g4x_compute_wm0(dev, PIPE_A, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1510 | &valleyview_wm_info, pessimal_latency_ns, |
| 1511 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 1512 | &planea_wm, &cursora_wm)) |
| 1513 | enabled |= 1 << PIPE_A; |
| 1514 | |
| 1515 | if (g4x_compute_wm0(dev, PIPE_B, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1516 | &valleyview_wm_info, pessimal_latency_ns, |
| 1517 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 1518 | &planeb_wm, &cursorb_wm)) |
| 1519 | enabled |= 1 << PIPE_B; |
| 1520 | |
| 1521 | if (g4x_compute_wm0(dev, PIPE_C, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1522 | &valleyview_wm_info, pessimal_latency_ns, |
| 1523 | &valleyview_cursor_wm_info, pessimal_latency_ns, |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 1524 | &planec_wm, &cursorc_wm)) |
| 1525 | enabled |= 1 << PIPE_C; |
| 1526 | |
| 1527 | if (single_plane_enabled(enabled) && |
| 1528 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 1529 | sr_latency_ns, |
| 1530 | &valleyview_wm_info, |
| 1531 | &valleyview_cursor_wm_info, |
| 1532 | &plane_sr, &ignore_cursor_sr) && |
| 1533 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 1534 | 2*sr_latency_ns, |
| 1535 | &valleyview_wm_info, |
| 1536 | &valleyview_cursor_wm_info, |
| 1537 | &ignore_plane_sr, &cursor_sr)) { |
| 1538 | cxsr_enabled = true; |
| 1539 | } else { |
| 1540 | cxsr_enabled = false; |
| 1541 | intel_set_memory_cxsr(dev_priv, false); |
| 1542 | plane_sr = cursor_sr = 0; |
| 1543 | } |
| 1544 | |
| 1545 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, " |
| 1546 | "B: plane=%d, cursor=%d, C: plane=%d, cursor=%d, " |
| 1547 | "SR: plane=%d, cursor=%d\n", |
| 1548 | planea_wm, cursora_wm, |
| 1549 | planeb_wm, cursorb_wm, |
| 1550 | planec_wm, cursorc_wm, |
| 1551 | plane_sr, cursor_sr); |
| 1552 | |
| 1553 | I915_WRITE(DSPFW1, |
| 1554 | (plane_sr << DSPFW_SR_SHIFT) | |
| 1555 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 1556 | (planeb_wm << DSPFW_PLANEB_SHIFT) | |
| 1557 | (planea_wm << DSPFW_PLANEA_SHIFT)); |
| 1558 | I915_WRITE(DSPFW2, |
| 1559 | (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) | |
| 1560 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 1561 | I915_WRITE(DSPFW3, |
| 1562 | (I915_READ(DSPFW3) & ~DSPFW_CURSOR_SR_MASK) | |
| 1563 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
| 1564 | I915_WRITE(DSPFW9_CHV, |
| 1565 | (I915_READ(DSPFW9_CHV) & ~(DSPFW_PLANEC_MASK | |
| 1566 | DSPFW_CURSORC_MASK)) | |
| 1567 | (planec_wm << DSPFW_PLANEC_SHIFT) | |
| 1568 | (cursorc_wm << DSPFW_CURSORC_SHIFT)); |
| 1569 | |
| 1570 | if (cxsr_enabled) |
| 1571 | intel_set_memory_cxsr(dev_priv, true); |
| 1572 | } |
| 1573 | |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1574 | static void valleyview_update_sprite_wm(struct drm_plane *plane, |
| 1575 | struct drm_crtc *crtc, |
| 1576 | uint32_t sprite_width, |
| 1577 | uint32_t sprite_height, |
| 1578 | int pixel_size, |
| 1579 | bool enabled, bool scaled) |
| 1580 | { |
| 1581 | struct drm_device *dev = crtc->dev; |
| 1582 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1583 | int pipe = to_intel_plane(plane)->pipe; |
| 1584 | int sprite = to_intel_plane(plane)->plane; |
| 1585 | int drain_latency; |
| 1586 | int plane_prec; |
| 1587 | int sprite_dl; |
| 1588 | int prec_mult; |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1589 | const int high_precision = IS_CHERRYVIEW(dev) ? |
| 1590 | DRAIN_LATENCY_PRECISION_32 : DRAIN_LATENCY_PRECISION_64; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1591 | |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1592 | sprite_dl = I915_READ(VLV_DDL(pipe)) & ~(DDL_SPRITE_PRECISION_HIGH(sprite) | |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1593 | (DRAIN_LATENCY_MASK << DDL_SPRITE_SHIFT(sprite))); |
| 1594 | |
| 1595 | if (enabled && vlv_compute_drain_latency(crtc, pixel_size, &prec_mult, |
| 1596 | &drain_latency)) { |
Rodrigo Vivi | 5e56ba4 | 2014-10-17 08:05:08 -0700 | [diff] [blame] | 1597 | plane_prec = (prec_mult == high_precision) ? |
| 1598 | DDL_SPRITE_PRECISION_HIGH(sprite) : |
| 1599 | DDL_SPRITE_PRECISION_LOW(sprite); |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 1600 | sprite_dl |= plane_prec | |
| 1601 | (drain_latency << DDL_SPRITE_SHIFT(sprite)); |
| 1602 | } |
| 1603 | |
| 1604 | I915_WRITE(VLV_DDL(pipe), sprite_dl); |
| 1605 | } |
| 1606 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1607 | static void g4x_update_wm(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1608 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1609 | struct drm_device *dev = crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1610 | static const int sr_latency_ns = 12000; |
| 1611 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1612 | int planea_wm, planeb_wm, cursora_wm, cursorb_wm; |
| 1613 | int plane_sr, cursor_sr; |
| 1614 | unsigned int enabled = 0; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1615 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1616 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1617 | if (g4x_compute_wm0(dev, PIPE_A, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1618 | &g4x_wm_info, pessimal_latency_ns, |
| 1619 | &g4x_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1620 | &planea_wm, &cursora_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1621 | enabled |= 1 << PIPE_A; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1622 | |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1623 | if (g4x_compute_wm0(dev, PIPE_B, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1624 | &g4x_wm_info, pessimal_latency_ns, |
| 1625 | &g4x_cursor_wm_info, pessimal_latency_ns, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1626 | &planeb_wm, &cursorb_wm)) |
Ville Syrjälä | 51cea1f | 2013-03-21 13:10:44 +0200 | [diff] [blame] | 1627 | enabled |= 1 << PIPE_B; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1628 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1629 | if (single_plane_enabled(enabled) && |
| 1630 | g4x_compute_srwm(dev, ffs(enabled) - 1, |
| 1631 | sr_latency_ns, |
| 1632 | &g4x_wm_info, |
| 1633 | &g4x_cursor_wm_info, |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1634 | &plane_sr, &cursor_sr)) { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1635 | cxsr_enabled = true; |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1636 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1637 | cxsr_enabled = false; |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1638 | intel_set_memory_cxsr(dev_priv, false); |
Chris Wilson | 52bd02d | 2012-12-07 10:43:24 +0000 | [diff] [blame] | 1639 | plane_sr = cursor_sr = 0; |
| 1640 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1641 | |
Ville Syrjälä | a504345 | 2014-06-28 02:04:18 +0300 | [diff] [blame] | 1642 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: plane=%d, cursor=%d, " |
| 1643 | "B: plane=%d, cursor=%d, SR: plane=%d, cursor=%d\n", |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1644 | planea_wm, cursora_wm, |
| 1645 | planeb_wm, cursorb_wm, |
| 1646 | plane_sr, cursor_sr); |
| 1647 | |
| 1648 | I915_WRITE(DSPFW1, |
| 1649 | (plane_sr << DSPFW_SR_SHIFT) | |
| 1650 | (cursorb_wm << DSPFW_CURSORB_SHIFT) | |
| 1651 | (planeb_wm << DSPFW_PLANEB_SHIFT) | |
Ville Syrjälä | 0a56067 | 2014-06-11 16:51:18 +0300 | [diff] [blame] | 1652 | (planea_wm << DSPFW_PLANEA_SHIFT)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1653 | I915_WRITE(DSPFW2, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 1654 | (I915_READ(DSPFW2) & ~DSPFW_CURSORA_MASK) | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1655 | (cursora_wm << DSPFW_CURSORA_SHIFT)); |
| 1656 | /* HPLL off in SR has some issues on G4x... disable it */ |
| 1657 | I915_WRITE(DSPFW3, |
Chris Wilson | 8c919b2 | 2012-12-04 16:33:19 +0000 | [diff] [blame] | 1658 | (I915_READ(DSPFW3) & ~(DSPFW_HPLL_SR_EN | DSPFW_CURSOR_SR_MASK)) | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1659 | (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1660 | |
| 1661 | if (cxsr_enabled) |
| 1662 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1663 | } |
| 1664 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1665 | static void i965_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1666 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1667 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1668 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1669 | struct drm_crtc *crtc; |
| 1670 | int srwm = 1; |
| 1671 | int cursor_sr = 16; |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1672 | bool cxsr_enabled; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1673 | |
| 1674 | /* Calc sr entries for one plane configs */ |
| 1675 | crtc = single_enabled_crtc(dev); |
| 1676 | if (crtc) { |
| 1677 | /* self-refresh has much higher latency */ |
| 1678 | static const int sr_latency_ns = 12000; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1679 | const struct drm_display_mode *adjusted_mode = |
| 1680 | &to_intel_crtc(crtc)->config.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1681 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1682 | int htotal = adjusted_mode->crtc_htotal; |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 1683 | int hdisplay = to_intel_crtc(crtc)->config.pipe_src_w; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1684 | int pixel_size = crtc->primary->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1685 | unsigned long line_time_us; |
| 1686 | int entries; |
| 1687 | |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 1688 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1689 | |
| 1690 | /* Use ns/us then divide to preserve precision */ |
| 1691 | entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 1692 | pixel_size * hdisplay; |
| 1693 | entries = DIV_ROUND_UP(entries, I915_FIFO_LINE_SIZE); |
| 1694 | srwm = I965_FIFO_SIZE - entries; |
| 1695 | if (srwm < 0) |
| 1696 | srwm = 1; |
| 1697 | srwm &= 0x1ff; |
| 1698 | DRM_DEBUG_KMS("self-refresh entries: %d, wm: %d\n", |
| 1699 | entries, srwm); |
| 1700 | |
| 1701 | entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
Chris Wilson | 7bb836d | 2014-03-26 12:38:14 +0000 | [diff] [blame] | 1702 | pixel_size * to_intel_crtc(crtc)->cursor_width; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1703 | entries = DIV_ROUND_UP(entries, |
| 1704 | i965_cursor_wm_info.cacheline_size); |
| 1705 | cursor_sr = i965_cursor_wm_info.fifo_size - |
| 1706 | (entries + i965_cursor_wm_info.guard_size); |
| 1707 | |
| 1708 | if (cursor_sr > i965_cursor_wm_info.max_wm) |
| 1709 | cursor_sr = i965_cursor_wm_info.max_wm; |
| 1710 | |
| 1711 | DRM_DEBUG_KMS("self-refresh watermark: display plane %d " |
| 1712 | "cursor %d\n", srwm, cursor_sr); |
| 1713 | |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1714 | cxsr_enabled = true; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1715 | } else { |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1716 | cxsr_enabled = false; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1717 | /* Turn off self refresh if both pipes are enabled */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1718 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1719 | } |
| 1720 | |
| 1721 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: 8, B: 8, C: 8, SR %d\n", |
| 1722 | srwm); |
| 1723 | |
| 1724 | /* 965 has limitations... */ |
| 1725 | I915_WRITE(DSPFW1, (srwm << DSPFW_SR_SHIFT) | |
Ville Syrjälä | 0a56067 | 2014-06-11 16:51:18 +0300 | [diff] [blame] | 1726 | (8 << DSPFW_CURSORB_SHIFT) | |
| 1727 | (8 << DSPFW_PLANEB_SHIFT) | |
| 1728 | (8 << DSPFW_PLANEA_SHIFT)); |
| 1729 | I915_WRITE(DSPFW2, (8 << DSPFW_CURSORA_SHIFT) | |
| 1730 | (8 << DSPFW_PLANEC_SHIFT_OLD)); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1731 | /* update cursor SR watermark */ |
| 1732 | I915_WRITE(DSPFW3, (cursor_sr << DSPFW_CURSOR_SR_SHIFT)); |
Imre Deak | 9858425 | 2014-06-13 14:54:20 +0300 | [diff] [blame] | 1733 | |
| 1734 | if (cxsr_enabled) |
| 1735 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1736 | } |
| 1737 | |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1738 | static void i9xx_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1739 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1740 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1741 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1742 | const struct intel_watermark_params *wm_info; |
| 1743 | uint32_t fwater_lo; |
| 1744 | uint32_t fwater_hi; |
| 1745 | int cwm, srwm = 1; |
| 1746 | int fifo_size; |
| 1747 | int planea_wm, planeb_wm; |
| 1748 | struct drm_crtc *crtc, *enabled = NULL; |
| 1749 | |
| 1750 | if (IS_I945GM(dev)) |
| 1751 | wm_info = &i945_wm_info; |
| 1752 | else if (!IS_GEN2(dev)) |
| 1753 | wm_info = &i915_wm_info; |
| 1754 | else |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1755 | wm_info = &i830_a_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1756 | |
| 1757 | fifo_size = dev_priv->display.get_fifo_size(dev, 0); |
| 1758 | crtc = intel_get_crtc_for_plane(dev, 0); |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 1759 | if (intel_crtc_active(crtc)) { |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1760 | const struct drm_display_mode *adjusted_mode; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1761 | int cpp = crtc->primary->fb->bits_per_pixel / 8; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1762 | if (IS_GEN2(dev)) |
| 1763 | cpp = 4; |
| 1764 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1765 | adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode; |
| 1766 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1767 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1768 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1769 | enabled = crtc; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1770 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1771 | planea_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1772 | if (planea_wm > (long)wm_info->max_wm) |
| 1773 | planea_wm = wm_info->max_wm; |
| 1774 | } |
| 1775 | |
| 1776 | if (IS_GEN2(dev)) |
| 1777 | wm_info = &i830_bc_wm_info; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1778 | |
| 1779 | fifo_size = dev_priv->display.get_fifo_size(dev, 1); |
| 1780 | crtc = intel_get_crtc_for_plane(dev, 1); |
Chris Wilson | 3490ea5 | 2013-01-07 10:11:40 +0000 | [diff] [blame] | 1781 | if (intel_crtc_active(crtc)) { |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1782 | const struct drm_display_mode *adjusted_mode; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1783 | int cpp = crtc->primary->fb->bits_per_pixel / 8; |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1784 | if (IS_GEN2(dev)) |
| 1785 | cpp = 4; |
| 1786 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1787 | adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode; |
| 1788 | planeb_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Chris Wilson | b9e0bda | 2012-10-22 12:32:15 +0100 | [diff] [blame] | 1789 | wm_info, fifo_size, cpp, |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1790 | pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1791 | if (enabled == NULL) |
| 1792 | enabled = crtc; |
| 1793 | else |
| 1794 | enabled = NULL; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1795 | } else { |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1796 | planeb_wm = fifo_size - wm_info->guard_size; |
Ville Syrjälä | 9d53910 | 2014-08-15 01:21:53 +0300 | [diff] [blame] | 1797 | if (planeb_wm > (long)wm_info->max_wm) |
| 1798 | planeb_wm = wm_info->max_wm; |
| 1799 | } |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1800 | |
| 1801 | DRM_DEBUG_KMS("FIFO watermarks - A: %d, B: %d\n", planea_wm, planeb_wm); |
| 1802 | |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1803 | if (IS_I915GM(dev) && enabled) { |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 1804 | struct drm_i915_gem_object *obj; |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1805 | |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 1806 | obj = intel_fb_obj(enabled->primary->fb); |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1807 | |
| 1808 | /* self-refresh seems busted with untiled */ |
Matt Roper | 2ff8fde | 2014-07-08 07:50:07 -0700 | [diff] [blame] | 1809 | if (obj->tiling_mode == I915_TILING_NONE) |
Daniel Vetter | 2ab1bc9 | 2014-04-07 08:54:21 +0200 | [diff] [blame] | 1810 | enabled = NULL; |
| 1811 | } |
| 1812 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1813 | /* |
| 1814 | * Overlay gets an aggressive default since video jitter is bad. |
| 1815 | */ |
| 1816 | cwm = 2; |
| 1817 | |
| 1818 | /* Play safe and disable self-refresh before adjusting watermarks. */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1819 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1820 | |
| 1821 | /* Calc sr entries for one plane configs */ |
| 1822 | if (HAS_FW_BLC(dev) && enabled) { |
| 1823 | /* self-refresh has much higher latency */ |
| 1824 | static const int sr_latency_ns = 6000; |
Ville Syrjälä | 4fe8590 | 2013-09-04 18:25:22 +0300 | [diff] [blame] | 1825 | const struct drm_display_mode *adjusted_mode = |
| 1826 | &to_intel_crtc(enabled)->config.adjusted_mode; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1827 | int clock = adjusted_mode->crtc_clock; |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 1828 | int htotal = adjusted_mode->crtc_htotal; |
Daniel Vetter | f727b49 | 2013-11-20 15:02:10 +0100 | [diff] [blame] | 1829 | int hdisplay = to_intel_crtc(enabled)->config.pipe_src_w; |
Matt Roper | f4510a2 | 2014-04-01 15:22:40 -0700 | [diff] [blame] | 1830 | int pixel_size = enabled->primary->fb->bits_per_pixel / 8; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1831 | unsigned long line_time_us; |
| 1832 | int entries; |
| 1833 | |
Ville Syrjälä | 922044c | 2014-02-14 14:18:57 +0200 | [diff] [blame] | 1834 | line_time_us = max(htotal * 1000 / clock, 1); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1835 | |
| 1836 | /* Use ns/us then divide to preserve precision */ |
| 1837 | entries = (((sr_latency_ns / line_time_us) + 1000) / 1000) * |
| 1838 | pixel_size * hdisplay; |
| 1839 | entries = DIV_ROUND_UP(entries, wm_info->cacheline_size); |
| 1840 | DRM_DEBUG_KMS("self-refresh entries: %d\n", entries); |
| 1841 | srwm = wm_info->fifo_size - entries; |
| 1842 | if (srwm < 0) |
| 1843 | srwm = 1; |
| 1844 | |
| 1845 | if (IS_I945G(dev) || IS_I945GM(dev)) |
| 1846 | I915_WRITE(FW_BLC_SELF, |
| 1847 | FW_BLC_SELF_FIFO_MASK | (srwm & 0xff)); |
| 1848 | else if (IS_I915GM(dev)) |
| 1849 | I915_WRITE(FW_BLC_SELF, srwm & 0x3f); |
| 1850 | } |
| 1851 | |
| 1852 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d, B: %d, C: %d, SR %d\n", |
| 1853 | planea_wm, planeb_wm, cwm, srwm); |
| 1854 | |
| 1855 | fwater_lo = ((planeb_wm & 0x3f) << 16) | (planea_wm & 0x3f); |
| 1856 | fwater_hi = (cwm & 0x1f); |
| 1857 | |
| 1858 | /* Set request length to 8 cachelines per fetch */ |
| 1859 | fwater_lo = fwater_lo | (1 << 24) | (1 << 8); |
| 1860 | fwater_hi = fwater_hi | (1 << 8); |
| 1861 | |
| 1862 | I915_WRITE(FW_BLC, fwater_lo); |
| 1863 | I915_WRITE(FW_BLC2, fwater_hi); |
| 1864 | |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 1865 | if (enabled) |
| 1866 | intel_set_memory_cxsr(dev_priv, true); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1867 | } |
| 1868 | |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 1869 | static void i845_update_wm(struct drm_crtc *unused_crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1870 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 1871 | struct drm_device *dev = unused_crtc->dev; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1872 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 1873 | struct drm_crtc *crtc; |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1874 | const struct drm_display_mode *adjusted_mode; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1875 | uint32_t fwater_lo; |
| 1876 | int planea_wm; |
| 1877 | |
| 1878 | crtc = single_enabled_crtc(dev); |
| 1879 | if (crtc == NULL) |
| 1880 | return; |
| 1881 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1882 | adjusted_mode = &to_intel_crtc(crtc)->config.adjusted_mode; |
| 1883 | planea_wm = intel_calculate_wm(adjusted_mode->crtc_clock, |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 1884 | &i845_wm_info, |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1885 | dev_priv->display.get_fifo_size(dev, 0), |
Chris Wilson | 5aef600 | 2014-09-03 11:56:07 +0100 | [diff] [blame] | 1886 | 4, pessimal_latency_ns); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 1887 | fwater_lo = I915_READ(FW_BLC) & ~0xfff; |
| 1888 | fwater_lo |= (3<<8) | planea_wm; |
| 1889 | |
| 1890 | DRM_DEBUG_KMS("Setting FIFO watermarks - A: %d\n", planea_wm); |
| 1891 | |
| 1892 | I915_WRITE(FW_BLC, fwater_lo); |
| 1893 | } |
| 1894 | |
Ville Syrjälä | 3658729 | 2013-07-05 11:57:16 +0300 | [diff] [blame] | 1895 | static uint32_t ilk_pipe_pixel_rate(struct drm_device *dev, |
| 1896 | struct drm_crtc *crtc) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1897 | { |
| 1898 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 1899 | uint32_t pixel_rate; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1900 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 1901 | pixel_rate = intel_crtc->config.adjusted_mode.crtc_clock; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1902 | |
| 1903 | /* We only use IF-ID interlacing. If we ever use PF-ID we'll need to |
| 1904 | * adjust the pixel_rate here. */ |
| 1905 | |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 1906 | if (intel_crtc->config.pch_pfit.enabled) { |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1907 | uint64_t pipe_w, pipe_h, pfit_w, pfit_h; |
Chris Wilson | fd4daa9 | 2013-08-27 17:04:17 +0100 | [diff] [blame] | 1908 | uint32_t pfit_size = intel_crtc->config.pch_pfit.size; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1909 | |
Ville Syrjälä | 37327ab | 2013-09-04 18:25:28 +0300 | [diff] [blame] | 1910 | pipe_w = intel_crtc->config.pipe_src_w; |
| 1911 | pipe_h = intel_crtc->config.pipe_src_h; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1912 | pfit_w = (pfit_size >> 16) & 0xFFFF; |
| 1913 | pfit_h = pfit_size & 0xFFFF; |
| 1914 | if (pipe_w < pfit_w) |
| 1915 | pipe_w = pfit_w; |
| 1916 | if (pipe_h < pfit_h) |
| 1917 | pipe_h = pfit_h; |
| 1918 | |
| 1919 | pixel_rate = div_u64((uint64_t) pixel_rate * pipe_w * pipe_h, |
| 1920 | pfit_w * pfit_h); |
| 1921 | } |
| 1922 | |
| 1923 | return pixel_rate; |
| 1924 | } |
| 1925 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1926 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1927 | 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] | 1928 | uint32_t latency) |
| 1929 | { |
| 1930 | uint64_t ret; |
| 1931 | |
Ville Syrjälä | 3312ba6 | 2013-08-01 16:18:53 +0300 | [diff] [blame] | 1932 | if (WARN(latency == 0, "Latency value missing\n")) |
| 1933 | return UINT_MAX; |
| 1934 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1935 | ret = (uint64_t) pixel_rate * bytes_per_pixel * latency; |
| 1936 | ret = DIV_ROUND_UP_ULL(ret, 64 * 10000) + 2; |
| 1937 | |
| 1938 | return ret; |
| 1939 | } |
| 1940 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1941 | /* latency must be in 0.1us units. */ |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1942 | 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] | 1943 | uint32_t horiz_pixels, uint8_t bytes_per_pixel, |
| 1944 | uint32_t latency) |
| 1945 | { |
| 1946 | uint32_t ret; |
| 1947 | |
Ville Syrjälä | 3312ba6 | 2013-08-01 16:18:53 +0300 | [diff] [blame] | 1948 | if (WARN(latency == 0, "Latency value missing\n")) |
| 1949 | return UINT_MAX; |
| 1950 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1951 | ret = (latency * pixel_rate) / (pipe_htotal * 10000); |
| 1952 | ret = (ret + 1) * horiz_pixels * bytes_per_pixel; |
| 1953 | ret = DIV_ROUND_UP(ret, 64) + 2; |
| 1954 | return ret; |
| 1955 | } |
| 1956 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 1957 | 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] | 1958 | uint8_t bytes_per_pixel) |
| 1959 | { |
| 1960 | return DIV_ROUND_UP(pri_val * 64, horiz_pixels * bytes_per_pixel) + 2; |
| 1961 | } |
| 1962 | |
Pradeep Bhat | 2ac96d2 | 2014-11-04 17:06:40 +0000 | [diff] [blame] | 1963 | struct skl_pipe_wm_parameters { |
| 1964 | bool active; |
| 1965 | uint32_t pipe_htotal; |
| 1966 | uint32_t pixel_rate; /* in KHz */ |
| 1967 | struct intel_plane_wm_parameters plane[I915_MAX_PLANES]; |
| 1968 | struct intel_plane_wm_parameters cursor; |
| 1969 | }; |
| 1970 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1971 | struct ilk_pipe_wm_parameters { |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1972 | bool active; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1973 | uint32_t pipe_htotal; |
| 1974 | uint32_t pixel_rate; |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 1975 | struct intel_plane_wm_parameters pri; |
| 1976 | struct intel_plane_wm_parameters spr; |
| 1977 | struct intel_plane_wm_parameters cur; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 1978 | }; |
| 1979 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1980 | struct ilk_wm_maximums { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 1981 | uint16_t pri; |
| 1982 | uint16_t spr; |
| 1983 | uint16_t cur; |
| 1984 | uint16_t fbc; |
| 1985 | }; |
| 1986 | |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1987 | /* used in computing the new watermarks state */ |
| 1988 | struct intel_wm_config { |
| 1989 | unsigned int num_pipes_active; |
| 1990 | bool sprites_enabled; |
| 1991 | bool sprites_scaled; |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 1992 | }; |
| 1993 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 1994 | /* |
| 1995 | * For both WM_PIPE and WM_LP. |
| 1996 | * mem_value must be in 0.1us units. |
| 1997 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 1998 | 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] | 1999 | uint32_t mem_value, |
| 2000 | bool is_lp) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2001 | { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2002 | uint32_t method1, method2; |
| 2003 | |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2004 | if (!params->active || !params->pri.enabled) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2005 | return 0; |
| 2006 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 2007 | method1 = ilk_wm_method1(params->pixel_rate, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2008 | params->pri.bytes_per_pixel, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2009 | mem_value); |
| 2010 | |
| 2011 | if (!is_lp) |
| 2012 | return method1; |
| 2013 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 2014 | method2 = ilk_wm_method2(params->pixel_rate, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2015 | params->pipe_htotal, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2016 | params->pri.horiz_pixels, |
| 2017 | params->pri.bytes_per_pixel, |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2018 | mem_value); |
| 2019 | |
| 2020 | return min(method1, method2); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2021 | } |
| 2022 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2023 | /* |
| 2024 | * For both WM_PIPE and WM_LP. |
| 2025 | * mem_value must be in 0.1us units. |
| 2026 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2027 | 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] | 2028 | uint32_t mem_value) |
| 2029 | { |
| 2030 | uint32_t method1, method2; |
| 2031 | |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2032 | if (!params->active || !params->spr.enabled) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2033 | return 0; |
| 2034 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 2035 | method1 = ilk_wm_method1(params->pixel_rate, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2036 | params->spr.bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2037 | mem_value); |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 2038 | method2 = ilk_wm_method2(params->pixel_rate, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2039 | params->pipe_htotal, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2040 | params->spr.horiz_pixels, |
| 2041 | params->spr.bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2042 | mem_value); |
| 2043 | return min(method1, method2); |
| 2044 | } |
| 2045 | |
Ville Syrjälä | 3712646 | 2013-08-01 16:18:55 +0300 | [diff] [blame] | 2046 | /* |
| 2047 | * For both WM_PIPE and WM_LP. |
| 2048 | * mem_value must be in 0.1us units. |
| 2049 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2050 | 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] | 2051 | uint32_t mem_value) |
| 2052 | { |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2053 | if (!params->active || !params->cur.enabled) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2054 | return 0; |
| 2055 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 2056 | return ilk_wm_method2(params->pixel_rate, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2057 | params->pipe_htotal, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2058 | params->cur.horiz_pixels, |
| 2059 | params->cur.bytes_per_pixel, |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2060 | mem_value); |
| 2061 | } |
| 2062 | |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2063 | /* Only for WM_LP. */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2064 | 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] | 2065 | uint32_t pri_val) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2066 | { |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2067 | if (!params->active || !params->pri.enabled) |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2068 | return 0; |
| 2069 | |
Ville Syrjälä | 2329704 | 2013-07-05 11:57:17 +0300 | [diff] [blame] | 2070 | return ilk_wm_fbc(pri_val, |
Ville Syrjälä | c35426d | 2013-08-07 13:29:50 +0300 | [diff] [blame] | 2071 | params->pri.horiz_pixels, |
| 2072 | params->pri.bytes_per_pixel); |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2073 | } |
| 2074 | |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2075 | static unsigned int ilk_display_fifo_size(const struct drm_device *dev) |
| 2076 | { |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2077 | if (INTEL_INFO(dev)->gen >= 8) |
| 2078 | return 3072; |
| 2079 | else if (INTEL_INFO(dev)->gen >= 7) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2080 | return 768; |
| 2081 | else |
| 2082 | return 512; |
| 2083 | } |
| 2084 | |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2085 | static unsigned int ilk_plane_wm_reg_max(const struct drm_device *dev, |
| 2086 | int level, bool is_sprite) |
| 2087 | { |
| 2088 | if (INTEL_INFO(dev)->gen >= 8) |
| 2089 | /* BDW primary/sprite plane watermarks */ |
| 2090 | return level == 0 ? 255 : 2047; |
| 2091 | else if (INTEL_INFO(dev)->gen >= 7) |
| 2092 | /* IVB/HSW primary/sprite plane watermarks */ |
| 2093 | return level == 0 ? 127 : 1023; |
| 2094 | else if (!is_sprite) |
| 2095 | /* ILK/SNB primary plane watermarks */ |
| 2096 | return level == 0 ? 127 : 511; |
| 2097 | else |
| 2098 | /* ILK/SNB sprite plane watermarks */ |
| 2099 | return level == 0 ? 63 : 255; |
| 2100 | } |
| 2101 | |
| 2102 | static unsigned int ilk_cursor_wm_reg_max(const struct drm_device *dev, |
| 2103 | int level) |
| 2104 | { |
| 2105 | if (INTEL_INFO(dev)->gen >= 7) |
| 2106 | return level == 0 ? 63 : 255; |
| 2107 | else |
| 2108 | return level == 0 ? 31 : 63; |
| 2109 | } |
| 2110 | |
| 2111 | static unsigned int ilk_fbc_wm_reg_max(const struct drm_device *dev) |
| 2112 | { |
| 2113 | if (INTEL_INFO(dev)->gen >= 8) |
| 2114 | return 31; |
| 2115 | else |
| 2116 | return 15; |
| 2117 | } |
| 2118 | |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2119 | /* Calculate the maximum primary/sprite plane watermark */ |
| 2120 | static unsigned int ilk_plane_wm_max(const struct drm_device *dev, |
| 2121 | int level, |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2122 | const struct intel_wm_config *config, |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2123 | enum intel_ddb_partitioning ddb_partitioning, |
| 2124 | bool is_sprite) |
| 2125 | { |
| 2126 | unsigned int fifo_size = ilk_display_fifo_size(dev); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2127 | |
| 2128 | /* if sprites aren't enabled, sprites get nothing */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2129 | if (is_sprite && !config->sprites_enabled) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2130 | return 0; |
| 2131 | |
| 2132 | /* HSW allows LP1+ watermarks even with multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2133 | if (level == 0 || config->num_pipes_active > 1) { |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2134 | fifo_size /= INTEL_INFO(dev)->num_pipes; |
| 2135 | |
| 2136 | /* |
| 2137 | * For some reason the non self refresh |
| 2138 | * FIFO size is only half of the self |
| 2139 | * refresh FIFO size on ILK/SNB. |
| 2140 | */ |
| 2141 | if (INTEL_INFO(dev)->gen <= 6) |
| 2142 | fifo_size /= 2; |
| 2143 | } |
| 2144 | |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2145 | if (config->sprites_enabled) { |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2146 | /* level 0 is always calculated with 1:1 split */ |
| 2147 | if (level > 0 && ddb_partitioning == INTEL_DDB_PART_5_6) { |
| 2148 | if (is_sprite) |
| 2149 | fifo_size *= 5; |
| 2150 | fifo_size /= 6; |
| 2151 | } else { |
| 2152 | fifo_size /= 2; |
| 2153 | } |
| 2154 | } |
| 2155 | |
| 2156 | /* clamp to max that the registers can hold */ |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2157 | 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] | 2158 | } |
| 2159 | |
| 2160 | /* Calculate the maximum cursor plane watermark */ |
| 2161 | 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] | 2162 | int level, |
| 2163 | const struct intel_wm_config *config) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2164 | { |
| 2165 | /* HSW LP1+ watermarks w/ multiple pipes */ |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2166 | if (level > 0 && config->num_pipes_active > 1) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2167 | return 64; |
| 2168 | |
| 2169 | /* otherwise just report max that registers can hold */ |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2170 | return ilk_cursor_wm_reg_max(dev, level); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2171 | } |
| 2172 | |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 2173 | static void ilk_compute_wm_maximums(const struct drm_device *dev, |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 2174 | int level, |
| 2175 | const struct intel_wm_config *config, |
| 2176 | enum intel_ddb_partitioning ddb_partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2177 | struct ilk_wm_maximums *max) |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2178 | { |
Ville Syrjälä | 240264f | 2013-08-07 13:29:12 +0300 | [diff] [blame] | 2179 | max->pri = ilk_plane_wm_max(dev, level, config, ddb_partitioning, false); |
| 2180 | max->spr = ilk_plane_wm_max(dev, level, config, ddb_partitioning, true); |
| 2181 | max->cur = ilk_cursor_wm_max(dev, level, config); |
Ville Syrjälä | 4e97508 | 2014-03-07 18:32:11 +0200 | [diff] [blame] | 2182 | max->fbc = ilk_fbc_wm_reg_max(dev); |
Ville Syrjälä | 158ae64 | 2013-08-07 13:28:19 +0300 | [diff] [blame] | 2183 | } |
| 2184 | |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2185 | static void ilk_compute_wm_reg_maximums(struct drm_device *dev, |
| 2186 | int level, |
| 2187 | struct ilk_wm_maximums *max) |
| 2188 | { |
| 2189 | max->pri = ilk_plane_wm_reg_max(dev, level, false); |
| 2190 | max->spr = ilk_plane_wm_reg_max(dev, level, true); |
| 2191 | max->cur = ilk_cursor_wm_reg_max(dev, level); |
| 2192 | max->fbc = ilk_fbc_wm_reg_max(dev); |
| 2193 | } |
| 2194 | |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 2195 | static bool ilk_validate_wm_level(int level, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2196 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | d939565 | 2013-10-09 19:18:10 +0300 | [diff] [blame] | 2197 | struct intel_wm_level *result) |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2198 | { |
| 2199 | bool ret; |
| 2200 | |
| 2201 | /* already determined to be invalid? */ |
| 2202 | if (!result->enable) |
| 2203 | return false; |
| 2204 | |
| 2205 | result->enable = result->pri_val <= max->pri && |
| 2206 | result->spr_val <= max->spr && |
| 2207 | result->cur_val <= max->cur; |
| 2208 | |
| 2209 | ret = result->enable; |
| 2210 | |
| 2211 | /* |
| 2212 | * HACK until we can pre-compute everything, |
| 2213 | * and thus fail gracefully if LP0 watermarks |
| 2214 | * are exceeded... |
| 2215 | */ |
| 2216 | if (level == 0 && !result->enable) { |
| 2217 | if (result->pri_val > max->pri) |
| 2218 | DRM_DEBUG_KMS("Primary WM%d too large %u (max %u)\n", |
| 2219 | level, result->pri_val, max->pri); |
| 2220 | if (result->spr_val > max->spr) |
| 2221 | DRM_DEBUG_KMS("Sprite WM%d too large %u (max %u)\n", |
| 2222 | level, result->spr_val, max->spr); |
| 2223 | if (result->cur_val > max->cur) |
| 2224 | DRM_DEBUG_KMS("Cursor WM%d too large %u (max %u)\n", |
| 2225 | level, result->cur_val, max->cur); |
| 2226 | |
| 2227 | result->pri_val = min_t(uint32_t, result->pri_val, max->pri); |
| 2228 | result->spr_val = min_t(uint32_t, result->spr_val, max->spr); |
| 2229 | result->cur_val = min_t(uint32_t, result->cur_val, max->cur); |
| 2230 | result->enable = true; |
| 2231 | } |
| 2232 | |
Ville Syrjälä | a9786a1 | 2013-08-07 13:24:47 +0300 | [diff] [blame] | 2233 | return ret; |
| 2234 | } |
| 2235 | |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 2236 | 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] | 2237 | int level, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2238 | const struct ilk_pipe_wm_parameters *p, |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 2239 | struct intel_wm_level *result) |
Ville Syrjälä | 6f5ddd1 | 2013-08-06 22:24:02 +0300 | [diff] [blame] | 2240 | { |
| 2241 | uint16_t pri_latency = dev_priv->wm.pri_latency[level]; |
| 2242 | uint16_t spr_latency = dev_priv->wm.spr_latency[level]; |
| 2243 | uint16_t cur_latency = dev_priv->wm.cur_latency[level]; |
| 2244 | |
| 2245 | /* WM1+ latency values stored in 0.5us units */ |
| 2246 | if (level > 0) { |
| 2247 | pri_latency *= 5; |
| 2248 | spr_latency *= 5; |
| 2249 | cur_latency *= 5; |
| 2250 | } |
| 2251 | |
| 2252 | result->pri_val = ilk_compute_pri_wm(p, pri_latency, level); |
| 2253 | result->spr_val = ilk_compute_spr_wm(p, spr_latency); |
| 2254 | result->cur_val = ilk_compute_cur_wm(p, cur_latency); |
| 2255 | result->fbc_val = ilk_compute_fbc_wm(p, result->pri_val); |
| 2256 | result->enable = true; |
| 2257 | } |
| 2258 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2259 | static uint32_t |
| 2260 | hsw_compute_linetime_wm(struct drm_device *dev, struct drm_crtc *crtc) |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2261 | { |
| 2262 | struct drm_i915_private *dev_priv = dev->dev_private; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2263 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2264 | struct drm_display_mode *mode = &intel_crtc->config.adjusted_mode; |
Paulo Zanoni | 85a02de | 2013-05-03 17:23:43 -0300 | [diff] [blame] | 2265 | u32 linetime, ips_linetime; |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2266 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2267 | if (!intel_crtc_active(crtc)) |
| 2268 | return 0; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2269 | |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2270 | /* The WM are computed with base on how long it takes to fill a single |
| 2271 | * row at the given clock rate, multiplied by 8. |
| 2272 | * */ |
Jesse Barnes | fec8cba | 2013-11-27 11:10:26 -0800 | [diff] [blame] | 2273 | linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8, |
| 2274 | mode->crtc_clock); |
| 2275 | ips_linetime = DIV_ROUND_CLOSEST(mode->crtc_htotal * 1000 * 8, |
Paulo Zanoni | 85a02de | 2013-05-03 17:23:43 -0300 | [diff] [blame] | 2276 | intel_ddi_get_cdclk_freq(dev_priv)); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2277 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2278 | return PIPE_WM_LINETIME_IPS_LINETIME(ips_linetime) | |
| 2279 | PIPE_WM_LINETIME_TIME(linetime); |
Eugeni Dodonov | 1f8eeab | 2012-05-09 15:37:24 -0300 | [diff] [blame] | 2280 | } |
| 2281 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2282 | 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] | 2283 | { |
| 2284 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2285 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2286 | if (IS_GEN9(dev)) { |
| 2287 | uint32_t val; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2288 | int ret, i; |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2289 | int level, max_level = ilk_wm_max_level(dev); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2290 | |
| 2291 | /* read the first set of memory latencies[0:3] */ |
| 2292 | val = 0; /* data0 to be programmed to 0 for first set */ |
| 2293 | mutex_lock(&dev_priv->rps.hw_lock); |
| 2294 | ret = sandybridge_pcode_read(dev_priv, |
| 2295 | GEN9_PCODE_READ_MEM_LATENCY, |
| 2296 | &val); |
| 2297 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 2298 | |
| 2299 | if (ret) { |
| 2300 | DRM_ERROR("SKL Mailbox read error = %d\n", ret); |
| 2301 | return; |
| 2302 | } |
| 2303 | |
| 2304 | wm[0] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2305 | wm[1] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 2306 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2307 | wm[2] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 2308 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2309 | wm[3] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 2310 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2311 | |
| 2312 | /* read the second set of memory latencies[4:7] */ |
| 2313 | val = 1; /* data0 to be programmed to 1 for second set */ |
| 2314 | mutex_lock(&dev_priv->rps.hw_lock); |
| 2315 | ret = sandybridge_pcode_read(dev_priv, |
| 2316 | GEN9_PCODE_READ_MEM_LATENCY, |
| 2317 | &val); |
| 2318 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 2319 | if (ret) { |
| 2320 | DRM_ERROR("SKL Mailbox read error = %d\n", ret); |
| 2321 | return; |
| 2322 | } |
| 2323 | |
| 2324 | wm[4] = val & GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2325 | wm[5] = (val >> GEN9_MEM_LATENCY_LEVEL_1_5_SHIFT) & |
| 2326 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2327 | wm[6] = (val >> GEN9_MEM_LATENCY_LEVEL_2_6_SHIFT) & |
| 2328 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2329 | wm[7] = (val >> GEN9_MEM_LATENCY_LEVEL_3_7_SHIFT) & |
| 2330 | GEN9_MEM_LATENCY_LEVEL_MASK; |
| 2331 | |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2332 | /* |
| 2333 | * punit doesn't take into account the read latency so we need |
| 2334 | * to add 2us to the various latency levels we retrieve from |
| 2335 | * the punit. |
| 2336 | * - W0 is a bit special in that it's the only level that |
| 2337 | * can't be disabled if we want to have display working, so |
| 2338 | * we always add 2us there. |
| 2339 | * - For levels >=1, punit returns 0us latency when they are |
| 2340 | * disabled, so we respect that and don't add 2us then |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2341 | * |
| 2342 | * Additionally, if a level n (n > 1) has a 0us latency, all |
| 2343 | * levels m (m >= n) need to be disabled. We make sure to |
| 2344 | * sanitize the values out of the punit to satisfy this |
| 2345 | * requirement. |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2346 | */ |
| 2347 | wm[0] += 2; |
| 2348 | for (level = 1; level <= max_level; level++) |
| 2349 | if (wm[level] != 0) |
| 2350 | wm[level] += 2; |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2351 | else { |
| 2352 | for (i = level + 1; i <= max_level; i++) |
| 2353 | wm[i] = 0; |
Vandana Kannan | 367294b | 2014-11-04 17:06:46 +0000 | [diff] [blame] | 2354 | |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 2355 | break; |
| 2356 | } |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2357 | } else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2358 | uint64_t sskpd = I915_READ64(MCH_SSKPD); |
| 2359 | |
| 2360 | wm[0] = (sskpd >> 56) & 0xFF; |
| 2361 | if (wm[0] == 0) |
| 2362 | wm[0] = sskpd & 0xF; |
Ville Syrjälä | e5d5019 | 2013-07-05 11:57:22 +0300 | [diff] [blame] | 2363 | wm[1] = (sskpd >> 4) & 0xFF; |
| 2364 | wm[2] = (sskpd >> 12) & 0xFF; |
| 2365 | wm[3] = (sskpd >> 20) & 0x1FF; |
| 2366 | wm[4] = (sskpd >> 32) & 0x1FF; |
Ville Syrjälä | 63cf9a1 | 2013-07-05 11:57:23 +0300 | [diff] [blame] | 2367 | } else if (INTEL_INFO(dev)->gen >= 6) { |
| 2368 | uint32_t sskpd = I915_READ(MCH_SSKPD); |
| 2369 | |
| 2370 | wm[0] = (sskpd >> SSKPD_WM0_SHIFT) & SSKPD_WM_MASK; |
| 2371 | wm[1] = (sskpd >> SSKPD_WM1_SHIFT) & SSKPD_WM_MASK; |
| 2372 | wm[2] = (sskpd >> SSKPD_WM2_SHIFT) & SSKPD_WM_MASK; |
| 2373 | wm[3] = (sskpd >> SSKPD_WM3_SHIFT) & SSKPD_WM_MASK; |
Ville Syrjälä | 3a88d0a | 2013-08-01 16:18:49 +0300 | [diff] [blame] | 2374 | } else if (INTEL_INFO(dev)->gen >= 5) { |
| 2375 | uint32_t mltr = I915_READ(MLTR_ILK); |
| 2376 | |
| 2377 | /* ILK primary LP0 latency is 700 ns */ |
| 2378 | wm[0] = 7; |
| 2379 | wm[1] = (mltr >> MLTR_WM1_SHIFT) & ILK_SRLT_MASK; |
| 2380 | wm[2] = (mltr >> MLTR_WM2_SHIFT) & ILK_SRLT_MASK; |
Ville Syrjälä | 12b134d | 2013-07-05 11:57:21 +0300 | [diff] [blame] | 2381 | } |
| 2382 | } |
| 2383 | |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2384 | static void intel_fixup_spr_wm_latency(struct drm_device *dev, uint16_t wm[5]) |
| 2385 | { |
| 2386 | /* ILK sprite LP0 latency is 1300 ns */ |
| 2387 | if (INTEL_INFO(dev)->gen == 5) |
| 2388 | wm[0] = 13; |
| 2389 | } |
| 2390 | |
| 2391 | static void intel_fixup_cur_wm_latency(struct drm_device *dev, uint16_t wm[5]) |
| 2392 | { |
| 2393 | /* ILK cursor LP0 latency is 1300 ns */ |
| 2394 | if (INTEL_INFO(dev)->gen == 5) |
| 2395 | wm[0] = 13; |
| 2396 | |
| 2397 | /* WaDoubleCursorLP3Latency:ivb */ |
| 2398 | if (IS_IVYBRIDGE(dev)) |
| 2399 | wm[3] *= 2; |
| 2400 | } |
| 2401 | |
Damien Lespiau | 546c81f | 2014-05-13 15:30:26 +0100 | [diff] [blame] | 2402 | int ilk_wm_max_level(const struct drm_device *dev) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2403 | { |
| 2404 | /* how many WM levels are we expecting */ |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2405 | if (IS_GEN9(dev)) |
| 2406 | return 7; |
| 2407 | else if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2408 | return 4; |
| 2409 | else if (INTEL_INFO(dev)->gen >= 6) |
| 2410 | return 3; |
| 2411 | else |
| 2412 | return 2; |
| 2413 | } |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 2414 | |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2415 | static void intel_print_wm_latency(struct drm_device *dev, |
| 2416 | const char *name, |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2417 | const uint16_t wm[8]) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2418 | { |
Ville Syrjälä | ad0d6dc | 2013-08-30 14:30:25 +0300 | [diff] [blame] | 2419 | int level, max_level = ilk_wm_max_level(dev); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2420 | |
| 2421 | for (level = 0; level <= max_level; level++) { |
| 2422 | unsigned int latency = wm[level]; |
| 2423 | |
| 2424 | if (latency == 0) { |
| 2425 | DRM_ERROR("%s WM%d latency not provided\n", |
| 2426 | name, level); |
| 2427 | continue; |
| 2428 | } |
| 2429 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2430 | /* |
| 2431 | * - latencies are in us on gen9. |
| 2432 | * - before then, WM1+ latency values are in 0.5us units |
| 2433 | */ |
| 2434 | if (IS_GEN9(dev)) |
| 2435 | latency *= 10; |
| 2436 | else if (level > 0) |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2437 | latency *= 5; |
| 2438 | |
| 2439 | DRM_DEBUG_KMS("%s WM%d latency %u (%u.%u usec)\n", |
| 2440 | name, level, wm[level], |
| 2441 | latency / 10, latency % 10); |
| 2442 | } |
| 2443 | } |
| 2444 | |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 2445 | static bool ilk_increase_wm_latency(struct drm_i915_private *dev_priv, |
| 2446 | uint16_t wm[5], uint16_t min) |
| 2447 | { |
| 2448 | int level, max_level = ilk_wm_max_level(dev_priv->dev); |
| 2449 | |
| 2450 | if (wm[0] >= min) |
| 2451 | return false; |
| 2452 | |
| 2453 | wm[0] = max(wm[0], min); |
| 2454 | for (level = 1; level <= max_level; level++) |
| 2455 | wm[level] = max_t(uint16_t, wm[level], DIV_ROUND_UP(min, 5)); |
| 2456 | |
| 2457 | return true; |
| 2458 | } |
| 2459 | |
| 2460 | static void snb_wm_latency_quirk(struct drm_device *dev) |
| 2461 | { |
| 2462 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2463 | bool changed; |
| 2464 | |
| 2465 | /* |
| 2466 | * The BIOS provided WM memory latency values are often |
| 2467 | * inadequate for high resolution displays. Adjust them. |
| 2468 | */ |
| 2469 | changed = ilk_increase_wm_latency(dev_priv, dev_priv->wm.pri_latency, 12) | |
| 2470 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.spr_latency, 12) | |
| 2471 | ilk_increase_wm_latency(dev_priv, dev_priv->wm.cur_latency, 12); |
| 2472 | |
| 2473 | if (!changed) |
| 2474 | return; |
| 2475 | |
| 2476 | DRM_DEBUG_KMS("WM latency values increased to avoid potential underruns\n"); |
| 2477 | intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency); |
| 2478 | intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency); |
| 2479 | intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency); |
| 2480 | } |
| 2481 | |
Damien Lespiau | fa50ad6 | 2014-03-17 18:01:16 +0000 | [diff] [blame] | 2482 | static void ilk_setup_wm_latency(struct drm_device *dev) |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2483 | { |
| 2484 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2485 | |
| 2486 | intel_read_wm_latency(dev, dev_priv->wm.pri_latency); |
| 2487 | |
| 2488 | memcpy(dev_priv->wm.spr_latency, dev_priv->wm.pri_latency, |
| 2489 | sizeof(dev_priv->wm.pri_latency)); |
| 2490 | memcpy(dev_priv->wm.cur_latency, dev_priv->wm.pri_latency, |
| 2491 | sizeof(dev_priv->wm.pri_latency)); |
| 2492 | |
| 2493 | intel_fixup_spr_wm_latency(dev, dev_priv->wm.spr_latency); |
| 2494 | intel_fixup_cur_wm_latency(dev, dev_priv->wm.cur_latency); |
Ville Syrjälä | 26ec971 | 2013-08-01 16:18:52 +0300 | [diff] [blame] | 2495 | |
| 2496 | intel_print_wm_latency(dev, "Primary", dev_priv->wm.pri_latency); |
| 2497 | intel_print_wm_latency(dev, "Sprite", dev_priv->wm.spr_latency); |
| 2498 | intel_print_wm_latency(dev, "Cursor", dev_priv->wm.cur_latency); |
Ville Syrjälä | e95a2f7 | 2014-05-08 15:09:19 +0300 | [diff] [blame] | 2499 | |
| 2500 | if (IS_GEN6(dev)) |
| 2501 | snb_wm_latency_quirk(dev); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 2502 | } |
| 2503 | |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 2504 | static void skl_setup_wm_latency(struct drm_device *dev) |
| 2505 | { |
| 2506 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2507 | |
| 2508 | intel_read_wm_latency(dev, dev_priv->wm.skl_latency); |
| 2509 | intel_print_wm_latency(dev, "Gen9 Plane", dev_priv->wm.skl_latency); |
| 2510 | } |
| 2511 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2512 | static void ilk_compute_wm_parameters(struct drm_crtc *crtc, |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2513 | struct ilk_pipe_wm_parameters *p) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2514 | { |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 2515 | struct drm_device *dev = crtc->dev; |
| 2516 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 2517 | enum pipe pipe = intel_crtc->pipe; |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 2518 | struct drm_plane *plane; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2519 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2520 | if (!intel_crtc_active(crtc)) |
| 2521 | return; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2522 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2523 | p->active = true; |
| 2524 | p->pipe_htotal = intel_crtc->config.adjusted_mode.crtc_htotal; |
| 2525 | p->pixel_rate = ilk_pipe_pixel_rate(dev, crtc); |
| 2526 | p->pri.bytes_per_pixel = crtc->primary->fb->bits_per_pixel / 8; |
| 2527 | p->cur.bytes_per_pixel = 4; |
| 2528 | p->pri.horiz_pixels = intel_crtc->config.pipe_src_w; |
| 2529 | p->cur.horiz_pixels = intel_crtc->cursor_width; |
| 2530 | /* TODO: for now, assume primary and cursor planes are always enabled. */ |
| 2531 | p->pri.enabled = true; |
| 2532 | p->cur.enabled = true; |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 2533 | |
Matt Roper | af2b653 | 2014-04-01 15:22:32 -0700 | [diff] [blame] | 2534 | drm_for_each_legacy_plane(plane, &dev->mode_config.plane_list) { |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2535 | struct intel_plane *intel_plane = to_intel_plane(plane); |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2536 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2537 | if (intel_plane->pipe == pipe) { |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 2538 | p->spr = intel_plane->wm; |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2539 | break; |
| 2540 | } |
| 2541 | } |
| 2542 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2543 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2544 | static void ilk_compute_wm_config(struct drm_device *dev, |
| 2545 | struct intel_wm_config *config) |
| 2546 | { |
| 2547 | struct intel_crtc *intel_crtc; |
| 2548 | |
| 2549 | /* Compute the currently _active_ config */ |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 2550 | for_each_intel_crtc(dev, intel_crtc) { |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2551 | const struct intel_pipe_wm *wm = &intel_crtc->wm.active; |
| 2552 | |
| 2553 | if (!wm->pipe_enabled) |
| 2554 | continue; |
| 2555 | |
| 2556 | config->sprites_enabled |= wm->sprites_enabled; |
| 2557 | config->sprites_scaled |= wm->sprites_scaled; |
| 2558 | config->num_pipes_active++; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2559 | } |
| 2560 | } |
| 2561 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2562 | /* Compute new watermarks for the pipe */ |
| 2563 | static bool intel_compute_pipe_wm(struct drm_crtc *crtc, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2564 | const struct ilk_pipe_wm_parameters *params, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2565 | struct intel_pipe_wm *pipe_wm) |
| 2566 | { |
| 2567 | struct drm_device *dev = crtc->dev; |
Damien Lespiau | d34ff9c | 2014-01-06 19:17:23 +0000 | [diff] [blame] | 2568 | const struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2569 | int level, max_level = ilk_wm_max_level(dev); |
| 2570 | /* LP0 watermark maximums depend on this pipe alone */ |
| 2571 | struct intel_wm_config config = { |
| 2572 | .num_pipes_active = 1, |
| 2573 | .sprites_enabled = params->spr.enabled, |
| 2574 | .sprites_scaled = params->spr.scaled, |
| 2575 | }; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2576 | struct ilk_wm_maximums max; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2577 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 2578 | pipe_wm->pipe_enabled = params->active; |
| 2579 | pipe_wm->sprites_enabled = params->spr.enabled; |
| 2580 | pipe_wm->sprites_scaled = params->spr.scaled; |
| 2581 | |
Ville Syrjälä | 7b39a0b | 2013-12-05 15:51:30 +0200 | [diff] [blame] | 2582 | /* ILK/SNB: LP2+ watermarks only w/o sprites */ |
| 2583 | if (INTEL_INFO(dev)->gen <= 6 && params->spr.enabled) |
| 2584 | max_level = 1; |
| 2585 | |
| 2586 | /* ILK/SNB/IVB: LP1+ watermarks only w/o scaling */ |
| 2587 | if (params->spr.scaled) |
| 2588 | max_level = 0; |
| 2589 | |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2590 | 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] | 2591 | |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 2592 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ce0e071 | 2013-12-05 15:51:36 +0200 | [diff] [blame] | 2593 | pipe_wm->linetime = hsw_compute_linetime_wm(dev, crtc); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2594 | |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2595 | /* LP0 watermarks always use 1/2 DDB partitioning */ |
| 2596 | ilk_compute_wm_maximums(dev, 0, &config, INTEL_DDB_PART_1_2, &max); |
| 2597 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2598 | /* At least LP0 must be valid */ |
Ville Syrjälä | a3cb404 | 2014-04-28 15:44:56 +0300 | [diff] [blame] | 2599 | if (!ilk_validate_wm_level(0, &max, &pipe_wm->wm[0])) |
| 2600 | return false; |
| 2601 | |
| 2602 | ilk_compute_wm_reg_maximums(dev, 1, &max); |
| 2603 | |
| 2604 | for (level = 1; level <= max_level; level++) { |
| 2605 | struct intel_wm_level wm = {}; |
| 2606 | |
| 2607 | ilk_compute_wm_level(dev_priv, level, params, &wm); |
| 2608 | |
| 2609 | /* |
| 2610 | * Disable any watermark level that exceeds the |
| 2611 | * register maximums since such watermarks are |
| 2612 | * always invalid. |
| 2613 | */ |
| 2614 | if (!ilk_validate_wm_level(level, &max, &wm)) |
| 2615 | break; |
| 2616 | |
| 2617 | pipe_wm->wm[level] = wm; |
| 2618 | } |
| 2619 | |
| 2620 | return true; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2621 | } |
| 2622 | |
| 2623 | /* |
| 2624 | * Merge the watermarks from all active pipes for a specific level. |
| 2625 | */ |
| 2626 | static void ilk_merge_wm_level(struct drm_device *dev, |
| 2627 | int level, |
| 2628 | struct intel_wm_level *ret_wm) |
| 2629 | { |
| 2630 | const struct intel_crtc *intel_crtc; |
| 2631 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2632 | ret_wm->enable = true; |
| 2633 | |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 2634 | for_each_intel_crtc(dev, intel_crtc) { |
Ville Syrjälä | fe392ef | 2014-03-07 18:32:10 +0200 | [diff] [blame] | 2635 | const struct intel_pipe_wm *active = &intel_crtc->wm.active; |
| 2636 | const struct intel_wm_level *wm = &active->wm[level]; |
| 2637 | |
| 2638 | if (!active->pipe_enabled) |
| 2639 | continue; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2640 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2641 | /* |
| 2642 | * The watermark values may have been used in the past, |
| 2643 | * so we must maintain them in the registers for some |
| 2644 | * time even if the level is now disabled. |
| 2645 | */ |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2646 | if (!wm->enable) |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2647 | ret_wm->enable = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2648 | |
| 2649 | ret_wm->pri_val = max(ret_wm->pri_val, wm->pri_val); |
| 2650 | ret_wm->spr_val = max(ret_wm->spr_val, wm->spr_val); |
| 2651 | ret_wm->cur_val = max(ret_wm->cur_val, wm->cur_val); |
| 2652 | ret_wm->fbc_val = max(ret_wm->fbc_val, wm->fbc_val); |
| 2653 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2654 | } |
| 2655 | |
| 2656 | /* |
| 2657 | * Merge all low power watermarks for all active pipes. |
| 2658 | */ |
| 2659 | static void ilk_wm_merge(struct drm_device *dev, |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 2660 | const struct intel_wm_config *config, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2661 | const struct ilk_wm_maximums *max, |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2662 | struct intel_pipe_wm *merged) |
| 2663 | { |
| 2664 | int level, max_level = ilk_wm_max_level(dev); |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2665 | int last_enabled_level = max_level; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2666 | |
Ville Syrjälä | 0ba22e2 | 2013-12-05 15:51:34 +0200 | [diff] [blame] | 2667 | /* ILK/SNB/IVB: LP1+ watermarks only w/ single pipe */ |
| 2668 | if ((INTEL_INFO(dev)->gen <= 6 || IS_IVYBRIDGE(dev)) && |
| 2669 | config->num_pipes_active > 1) |
| 2670 | return; |
| 2671 | |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 2672 | /* ILK: FBC WM must be disabled always */ |
| 2673 | merged->fbc_wm_enabled = INTEL_INFO(dev)->gen >= 6; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2674 | |
| 2675 | /* merge each WM1+ level */ |
| 2676 | for (level = 1; level <= max_level; level++) { |
| 2677 | struct intel_wm_level *wm = &merged->wm[level]; |
| 2678 | |
| 2679 | ilk_merge_wm_level(dev, level, wm); |
| 2680 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2681 | if (level > last_enabled_level) |
| 2682 | wm->enable = false; |
| 2683 | else if (!ilk_validate_wm_level(level, max, wm)) |
| 2684 | /* make sure all following levels get disabled */ |
| 2685 | last_enabled_level = level - 1; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2686 | |
| 2687 | /* |
| 2688 | * The spec says it is preferred to disable |
| 2689 | * FBC WMs instead of disabling a WM level. |
| 2690 | */ |
| 2691 | if (wm->fbc_val > max->fbc) { |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2692 | if (wm->enable) |
| 2693 | merged->fbc_wm_enabled = false; |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2694 | wm->fbc_val = 0; |
| 2695 | } |
| 2696 | } |
Ville Syrjälä | 6c8b6c2 | 2013-12-05 15:51:35 +0200 | [diff] [blame] | 2697 | |
| 2698 | /* ILK: LP2+ must be disabled when FBC WM is disabled but FBC enabled */ |
| 2699 | /* |
| 2700 | * FIXME this is racy. FBC might get enabled later. |
| 2701 | * What we should check here is whether FBC can be |
| 2702 | * enabled sometime later. |
| 2703 | */ |
| 2704 | if (IS_GEN5(dev) && !merged->fbc_wm_enabled && intel_fbc_enabled(dev)) { |
| 2705 | for (level = 2; level <= max_level; level++) { |
| 2706 | struct intel_wm_level *wm = &merged->wm[level]; |
| 2707 | |
| 2708 | wm->enable = false; |
| 2709 | } |
| 2710 | } |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2711 | } |
| 2712 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 2713 | static int ilk_wm_lp_to_level(int wm_lp, const struct intel_pipe_wm *pipe_wm) |
| 2714 | { |
| 2715 | /* LP1,LP2,LP3 levels are either 1,2,3 or 1,3,4 */ |
| 2716 | return wm_lp + (wm_lp >= 2 && pipe_wm->wm[4].enable); |
| 2717 | } |
| 2718 | |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 2719 | /* The value we need to program into the WM_LPx latency field */ |
| 2720 | static unsigned int ilk_wm_lp_latency(struct drm_device *dev, int level) |
| 2721 | { |
| 2722 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2723 | |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 2724 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 2725 | return 2 * level; |
| 2726 | else |
| 2727 | return dev_priv->wm.pri_latency[level]; |
| 2728 | } |
| 2729 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2730 | static void ilk_compute_wm_results(struct drm_device *dev, |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 2731 | const struct intel_pipe_wm *merged, |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 2732 | enum intel_ddb_partitioning partitioning, |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2733 | struct ilk_wm_values *results) |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2734 | { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2735 | struct intel_crtc *intel_crtc; |
| 2736 | int level, wm_lp; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2737 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 2738 | results->enable_fbc_wm = merged->fbc_wm_enabled; |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 2739 | results->partitioning = partitioning; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2740 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2741 | /* LP1+ register values */ |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2742 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
Ville Syrjälä | 1fd527c | 2013-08-06 22:24:05 +0300 | [diff] [blame] | 2743 | const struct intel_wm_level *r; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2744 | |
Ville Syrjälä | b380ca3 | 2013-10-09 19:18:01 +0300 | [diff] [blame] | 2745 | level = ilk_wm_lp_to_level(wm_lp, merged); |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2746 | |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 2747 | r = &merged->wm[level]; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2748 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2749 | /* |
| 2750 | * Maintain the watermark values even if the level is |
| 2751 | * disabled. Doing otherwise could cause underruns. |
| 2752 | */ |
| 2753 | results->wm_lp[wm_lp - 1] = |
Ville Syrjälä | a68d68e | 2013-12-05 15:51:29 +0200 | [diff] [blame] | 2754 | (ilk_wm_lp_latency(dev, level) << WM1_LP_LATENCY_SHIFT) | |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2755 | (r->pri_val << WM1_LP_SR_SHIFT) | |
| 2756 | r->cur_val; |
| 2757 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2758 | if (r->enable) |
| 2759 | results->wm_lp[wm_lp - 1] |= WM1_LP_SR_EN; |
| 2760 | |
Ville Syrjälä | 416f472 | 2013-11-02 21:07:46 -0700 | [diff] [blame] | 2761 | if (INTEL_INFO(dev)->gen >= 8) |
| 2762 | results->wm_lp[wm_lp - 1] |= |
| 2763 | r->fbc_val << WM1_LP_FBC_SHIFT_BDW; |
| 2764 | else |
| 2765 | results->wm_lp[wm_lp - 1] |= |
| 2766 | r->fbc_val << WM1_LP_FBC_SHIFT; |
| 2767 | |
Ville Syrjälä | d52fea5 | 2014-04-28 15:44:57 +0300 | [diff] [blame] | 2768 | /* |
| 2769 | * Always set WM1S_LP_EN when spr_val != 0, even if the |
| 2770 | * level is disabled. Doing otherwise could cause underruns. |
| 2771 | */ |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 2772 | if (INTEL_INFO(dev)->gen <= 6 && r->spr_val) { |
| 2773 | WARN_ON(wm_lp != 1); |
| 2774 | results->wm_lp_spr[wm_lp - 1] = WM1S_LP_EN | r->spr_val; |
| 2775 | } else |
| 2776 | results->wm_lp_spr[wm_lp - 1] = r->spr_val; |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2777 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2778 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2779 | /* LP0 register values */ |
Damien Lespiau | d3fcc80 | 2014-05-13 23:32:22 +0100 | [diff] [blame] | 2780 | for_each_intel_crtc(dev, intel_crtc) { |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2781 | enum pipe pipe = intel_crtc->pipe; |
| 2782 | const struct intel_wm_level *r = |
| 2783 | &intel_crtc->wm.active.wm[0]; |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2784 | |
Ville Syrjälä | 0b2ae6d | 2013-10-09 19:17:55 +0300 | [diff] [blame] | 2785 | if (WARN_ON(!r->enable)) |
| 2786 | continue; |
| 2787 | |
| 2788 | results->wm_linetime[pipe] = intel_crtc->wm.active.linetime; |
| 2789 | |
| 2790 | results->wm_pipe[pipe] = |
| 2791 | (r->pri_val << WM0_PIPE_PLANE_SHIFT) | |
| 2792 | (r->spr_val << WM0_PIPE_SPRITE_SHIFT) | |
| 2793 | r->cur_val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2794 | } |
| 2795 | } |
| 2796 | |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2797 | /* Find the result with the highest level enabled. Check for enable_fbc_wm in |
| 2798 | * 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] | 2799 | 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] | 2800 | struct intel_pipe_wm *r1, |
| 2801 | struct intel_pipe_wm *r2) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2802 | { |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2803 | int level, max_level = ilk_wm_max_level(dev); |
| 2804 | int level1 = 0, level2 = 0; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2805 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2806 | for (level = 1; level <= max_level; level++) { |
| 2807 | if (r1->wm[level].enable) |
| 2808 | level1 = level; |
| 2809 | if (r2->wm[level].enable) |
| 2810 | level2 = level; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2811 | } |
| 2812 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2813 | if (level1 == level2) { |
| 2814 | if (r2->fbc_wm_enabled && !r1->fbc_wm_enabled) |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2815 | return r2; |
| 2816 | else |
| 2817 | return r1; |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 2818 | } else if (level1 > level2) { |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 2819 | return r1; |
| 2820 | } else { |
| 2821 | return r2; |
| 2822 | } |
| 2823 | } |
| 2824 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2825 | /* dirty bits used to track which watermarks need changes */ |
| 2826 | #define WM_DIRTY_PIPE(pipe) (1 << (pipe)) |
| 2827 | #define WM_DIRTY_LINETIME(pipe) (1 << (8 + (pipe))) |
| 2828 | #define WM_DIRTY_LP(wm_lp) (1 << (15 + (wm_lp))) |
| 2829 | #define WM_DIRTY_LP_ALL (WM_DIRTY_LP(1) | WM_DIRTY_LP(2) | WM_DIRTY_LP(3)) |
| 2830 | #define WM_DIRTY_FBC (1 << 24) |
| 2831 | #define WM_DIRTY_DDB (1 << 25) |
| 2832 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2833 | 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] | 2834 | const struct ilk_wm_values *old, |
| 2835 | const struct ilk_wm_values *new) |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2836 | { |
| 2837 | unsigned int dirty = 0; |
| 2838 | enum pipe pipe; |
| 2839 | int wm_lp; |
| 2840 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2841 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2842 | if (old->wm_linetime[pipe] != new->wm_linetime[pipe]) { |
| 2843 | dirty |= WM_DIRTY_LINETIME(pipe); |
| 2844 | /* Must disable LP1+ watermarks too */ |
| 2845 | dirty |= WM_DIRTY_LP_ALL; |
| 2846 | } |
| 2847 | |
| 2848 | if (old->wm_pipe[pipe] != new->wm_pipe[pipe]) { |
| 2849 | dirty |= WM_DIRTY_PIPE(pipe); |
| 2850 | /* Must disable LP1+ watermarks too */ |
| 2851 | dirty |= WM_DIRTY_LP_ALL; |
| 2852 | } |
| 2853 | } |
| 2854 | |
| 2855 | if (old->enable_fbc_wm != new->enable_fbc_wm) { |
| 2856 | dirty |= WM_DIRTY_FBC; |
| 2857 | /* Must disable LP1+ watermarks too */ |
| 2858 | dirty |= WM_DIRTY_LP_ALL; |
| 2859 | } |
| 2860 | |
| 2861 | if (old->partitioning != new->partitioning) { |
| 2862 | dirty |= WM_DIRTY_DDB; |
| 2863 | /* Must disable LP1+ watermarks too */ |
| 2864 | dirty |= WM_DIRTY_LP_ALL; |
| 2865 | } |
| 2866 | |
| 2867 | /* LP1+ watermarks already deemed dirty, no need to continue */ |
| 2868 | if (dirty & WM_DIRTY_LP_ALL) |
| 2869 | return dirty; |
| 2870 | |
| 2871 | /* Find the lowest numbered LP1+ watermark in need of an update... */ |
| 2872 | for (wm_lp = 1; wm_lp <= 3; wm_lp++) { |
| 2873 | if (old->wm_lp[wm_lp - 1] != new->wm_lp[wm_lp - 1] || |
| 2874 | old->wm_lp_spr[wm_lp - 1] != new->wm_lp_spr[wm_lp - 1]) |
| 2875 | break; |
| 2876 | } |
| 2877 | |
| 2878 | /* ...and mark it and all higher numbered LP1+ watermarks as dirty */ |
| 2879 | for (; wm_lp <= 3; wm_lp++) |
| 2880 | dirty |= WM_DIRTY_LP(wm_lp); |
| 2881 | |
| 2882 | return dirty; |
| 2883 | } |
| 2884 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2885 | static bool _ilk_disable_lp_wm(struct drm_i915_private *dev_priv, |
| 2886 | unsigned int dirty) |
| 2887 | { |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2888 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2889 | bool changed = false; |
| 2890 | |
| 2891 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp[2] & WM1_LP_SR_EN) { |
| 2892 | previous->wm_lp[2] &= ~WM1_LP_SR_EN; |
| 2893 | I915_WRITE(WM3_LP_ILK, previous->wm_lp[2]); |
| 2894 | changed = true; |
| 2895 | } |
| 2896 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp[1] & WM1_LP_SR_EN) { |
| 2897 | previous->wm_lp[1] &= ~WM1_LP_SR_EN; |
| 2898 | I915_WRITE(WM2_LP_ILK, previous->wm_lp[1]); |
| 2899 | changed = true; |
| 2900 | } |
| 2901 | if (dirty & WM_DIRTY_LP(1) && previous->wm_lp[0] & WM1_LP_SR_EN) { |
| 2902 | previous->wm_lp[0] &= ~WM1_LP_SR_EN; |
| 2903 | I915_WRITE(WM1_LP_ILK, previous->wm_lp[0]); |
| 2904 | changed = true; |
| 2905 | } |
| 2906 | |
| 2907 | /* |
| 2908 | * Don't touch WM1S_LP_EN here. |
| 2909 | * Doing so could cause underruns. |
| 2910 | */ |
| 2911 | |
| 2912 | return changed; |
| 2913 | } |
| 2914 | |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2915 | /* |
| 2916 | * The spec says we shouldn't write when we don't need, because every write |
| 2917 | * causes WMs to be re-evaluated, expending some power. |
| 2918 | */ |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2919 | static void ilk_write_wm_values(struct drm_i915_private *dev_priv, |
| 2920 | struct ilk_wm_values *results) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2921 | { |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 2922 | struct drm_device *dev = dev_priv->dev; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 2923 | struct ilk_wm_values *previous = &dev_priv->wm.hw; |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2924 | unsigned int dirty; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2925 | uint32_t val; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2926 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 2927 | dirty = ilk_compute_wm_dirty(dev_priv, previous, results); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2928 | if (!dirty) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2929 | return; |
| 2930 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2931 | _ilk_disable_lp_wm(dev_priv, dirty); |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 2932 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2933 | if (dirty & WM_DIRTY_PIPE(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2934 | I915_WRITE(WM0_PIPEA_ILK, results->wm_pipe[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2935 | if (dirty & WM_DIRTY_PIPE(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2936 | I915_WRITE(WM0_PIPEB_ILK, results->wm_pipe[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2937 | if (dirty & WM_DIRTY_PIPE(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2938 | I915_WRITE(WM0_PIPEC_IVB, results->wm_pipe[2]); |
| 2939 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2940 | if (dirty & WM_DIRTY_LINETIME(PIPE_A)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2941 | I915_WRITE(PIPE_WM_LINETIME(PIPE_A), results->wm_linetime[0]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2942 | if (dirty & WM_DIRTY_LINETIME(PIPE_B)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2943 | I915_WRITE(PIPE_WM_LINETIME(PIPE_B), results->wm_linetime[1]); |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2944 | if (dirty & WM_DIRTY_LINETIME(PIPE_C)) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2945 | I915_WRITE(PIPE_WM_LINETIME(PIPE_C), results->wm_linetime[2]); |
| 2946 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2947 | if (dirty & WM_DIRTY_DDB) { |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 2948 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) { |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 2949 | val = I915_READ(WM_MISC); |
| 2950 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 2951 | val &= ~WM_MISC_DATA_PARTITION_5_6; |
| 2952 | else |
| 2953 | val |= WM_MISC_DATA_PARTITION_5_6; |
| 2954 | I915_WRITE(WM_MISC, val); |
| 2955 | } else { |
| 2956 | val = I915_READ(DISP_ARB_CTL2); |
| 2957 | if (results->partitioning == INTEL_DDB_PART_1_2) |
| 2958 | val &= ~DISP_DATA_PARTITION_5_6; |
| 2959 | else |
| 2960 | val |= DISP_DATA_PARTITION_5_6; |
| 2961 | I915_WRITE(DISP_ARB_CTL2, val); |
| 2962 | } |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 2963 | } |
| 2964 | |
Ville Syrjälä | 49a687c | 2013-10-11 19:39:52 +0300 | [diff] [blame] | 2965 | if (dirty & WM_DIRTY_FBC) { |
Paulo Zanoni | cca32e9 | 2013-05-31 11:45:06 -0300 | [diff] [blame] | 2966 | val = I915_READ(DISP_ARB_CTL); |
| 2967 | if (results->enable_fbc_wm) |
| 2968 | val &= ~DISP_FBC_WM_DIS; |
| 2969 | else |
| 2970 | val |= DISP_FBC_WM_DIS; |
| 2971 | I915_WRITE(DISP_ARB_CTL, val); |
| 2972 | } |
| 2973 | |
Imre Deak | 954911e | 2013-12-17 14:46:34 +0200 | [diff] [blame] | 2974 | if (dirty & WM_DIRTY_LP(1) && |
| 2975 | previous->wm_lp_spr[0] != results->wm_lp_spr[0]) |
| 2976 | I915_WRITE(WM1S_LP_ILK, results->wm_lp_spr[0]); |
| 2977 | |
| 2978 | if (INTEL_INFO(dev)->gen >= 7) { |
Ville Syrjälä | 6cef2b8a | 2013-12-05 15:51:32 +0200 | [diff] [blame] | 2979 | if (dirty & WM_DIRTY_LP(2) && previous->wm_lp_spr[1] != results->wm_lp_spr[1]) |
| 2980 | I915_WRITE(WM2S_LP_IVB, results->wm_lp_spr[1]); |
| 2981 | if (dirty & WM_DIRTY_LP(3) && previous->wm_lp_spr[2] != results->wm_lp_spr[2]) |
| 2982 | I915_WRITE(WM3S_LP_IVB, results->wm_lp_spr[2]); |
| 2983 | } |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2984 | |
Ville Syrjälä | facd619 | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 2985 | 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] | 2986 | I915_WRITE(WM1_LP_ILK, results->wm_lp[0]); |
Ville Syrjälä | facd619 | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 2987 | 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] | 2988 | I915_WRITE(WM2_LP_ILK, results->wm_lp[1]); |
Ville Syrjälä | facd619 | 2013-12-05 15:51:33 +0200 | [diff] [blame] | 2989 | 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] | 2990 | I915_WRITE(WM3_LP_ILK, results->wm_lp[2]); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 2991 | |
| 2992 | dev_priv->wm.hw = *results; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 2993 | } |
| 2994 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 2995 | static bool ilk_disable_lp_wm(struct drm_device *dev) |
| 2996 | { |
| 2997 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 2998 | |
| 2999 | return _ilk_disable_lp_wm(dev_priv, WM_DIRTY_LP_ALL); |
| 3000 | } |
| 3001 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3002 | /* |
| 3003 | * On gen9, we need to allocate Display Data Buffer (DDB) portions to the |
| 3004 | * different active planes. |
| 3005 | */ |
| 3006 | |
| 3007 | #define SKL_DDB_SIZE 896 /* in blocks */ |
| 3008 | |
| 3009 | static void |
| 3010 | skl_ddb_get_pipe_allocation_limits(struct drm_device *dev, |
| 3011 | struct drm_crtc *for_crtc, |
| 3012 | const struct intel_wm_config *config, |
| 3013 | const struct skl_pipe_wm_parameters *params, |
| 3014 | struct skl_ddb_entry *alloc /* out */) |
| 3015 | { |
| 3016 | struct drm_crtc *crtc; |
| 3017 | unsigned int pipe_size, ddb_size; |
| 3018 | int nth_active_pipe; |
| 3019 | |
| 3020 | if (!params->active) { |
| 3021 | alloc->start = 0; |
| 3022 | alloc->end = 0; |
| 3023 | return; |
| 3024 | } |
| 3025 | |
| 3026 | ddb_size = SKL_DDB_SIZE; |
| 3027 | |
| 3028 | ddb_size -= 4; /* 4 blocks for bypass path allocation */ |
| 3029 | |
| 3030 | nth_active_pipe = 0; |
| 3031 | for_each_crtc(dev, crtc) { |
| 3032 | if (!intel_crtc_active(crtc)) |
| 3033 | continue; |
| 3034 | |
| 3035 | if (crtc == for_crtc) |
| 3036 | break; |
| 3037 | |
| 3038 | nth_active_pipe++; |
| 3039 | } |
| 3040 | |
| 3041 | pipe_size = ddb_size / config->num_pipes_active; |
| 3042 | alloc->start = nth_active_pipe * ddb_size / config->num_pipes_active; |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 3043 | alloc->end = alloc->start + pipe_size; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3044 | } |
| 3045 | |
| 3046 | static unsigned int skl_cursor_allocation(const struct intel_wm_config *config) |
| 3047 | { |
| 3048 | if (config->num_pipes_active == 1) |
| 3049 | return 32; |
| 3050 | |
| 3051 | return 8; |
| 3052 | } |
| 3053 | |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3054 | static void skl_ddb_entry_init_from_hw(struct skl_ddb_entry *entry, u32 reg) |
| 3055 | { |
| 3056 | entry->start = reg & 0x3ff; |
| 3057 | entry->end = (reg >> 16) & 0x3ff; |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 3058 | if (entry->end) |
| 3059 | entry->end += 1; |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3060 | } |
| 3061 | |
Damien Lespiau | 08db665 | 2014-11-04 17:06:52 +0000 | [diff] [blame] | 3062 | void skl_ddb_get_hw_state(struct drm_i915_private *dev_priv, |
| 3063 | struct skl_ddb_allocation *ddb /* out */) |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3064 | { |
| 3065 | struct drm_device *dev = dev_priv->dev; |
| 3066 | enum pipe pipe; |
| 3067 | int plane; |
| 3068 | u32 val; |
| 3069 | |
| 3070 | for_each_pipe(dev_priv, pipe) { |
| 3071 | for_each_plane(pipe, plane) { |
| 3072 | val = I915_READ(PLANE_BUF_CFG(pipe, plane)); |
| 3073 | skl_ddb_entry_init_from_hw(&ddb->plane[pipe][plane], |
| 3074 | val); |
| 3075 | } |
| 3076 | |
| 3077 | val = I915_READ(CUR_BUF_CFG(pipe)); |
| 3078 | skl_ddb_entry_init_from_hw(&ddb->cursor[pipe], val); |
| 3079 | } |
| 3080 | } |
| 3081 | |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3082 | static unsigned int |
| 3083 | skl_plane_relative_data_rate(const struct intel_plane_wm_parameters *p) |
| 3084 | { |
| 3085 | return p->horiz_pixels * p->vert_pixels * p->bytes_per_pixel; |
| 3086 | } |
| 3087 | |
| 3088 | /* |
| 3089 | * We don't overflow 32 bits. Worst case is 3 planes enabled, each fetching |
| 3090 | * a 8192x4096@32bpp framebuffer: |
| 3091 | * 3 * 4096 * 8192 * 4 < 2^32 |
| 3092 | */ |
| 3093 | static unsigned int |
| 3094 | skl_get_total_relative_data_rate(struct intel_crtc *intel_crtc, |
| 3095 | const struct skl_pipe_wm_parameters *params) |
| 3096 | { |
| 3097 | unsigned int total_data_rate = 0; |
| 3098 | int plane; |
| 3099 | |
| 3100 | for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) { |
| 3101 | const struct intel_plane_wm_parameters *p; |
| 3102 | |
| 3103 | p = ¶ms->plane[plane]; |
| 3104 | if (!p->enabled) |
| 3105 | continue; |
| 3106 | |
| 3107 | total_data_rate += skl_plane_relative_data_rate(p); |
| 3108 | } |
| 3109 | |
| 3110 | return total_data_rate; |
| 3111 | } |
| 3112 | |
| 3113 | static void |
| 3114 | skl_allocate_pipe_ddb(struct drm_crtc *crtc, |
| 3115 | const struct intel_wm_config *config, |
| 3116 | const struct skl_pipe_wm_parameters *params, |
| 3117 | struct skl_ddb_allocation *ddb /* out */) |
| 3118 | { |
| 3119 | struct drm_device *dev = crtc->dev; |
| 3120 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3121 | enum pipe pipe = intel_crtc->pipe; |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 3122 | struct skl_ddb_entry *alloc = &ddb->pipe[pipe]; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3123 | uint16_t alloc_size, start, cursor_blocks; |
| 3124 | unsigned int total_data_rate; |
| 3125 | int plane; |
| 3126 | |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 3127 | skl_ddb_get_pipe_allocation_limits(dev, crtc, config, params, alloc); |
| 3128 | alloc_size = skl_ddb_entry_size(alloc); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3129 | if (alloc_size == 0) { |
| 3130 | memset(ddb->plane[pipe], 0, sizeof(ddb->plane[pipe])); |
| 3131 | memset(&ddb->cursor[pipe], 0, sizeof(ddb->cursor[pipe])); |
| 3132 | return; |
| 3133 | } |
| 3134 | |
| 3135 | cursor_blocks = skl_cursor_allocation(config); |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 3136 | ddb->cursor[pipe].start = alloc->end - cursor_blocks; |
| 3137 | ddb->cursor[pipe].end = alloc->end; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3138 | |
| 3139 | alloc_size -= cursor_blocks; |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 3140 | alloc->end -= cursor_blocks; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3141 | |
| 3142 | /* |
| 3143 | * Each active plane get a portion of the remaining space, in |
| 3144 | * proportion to the amount of data they need to fetch from memory. |
| 3145 | * |
| 3146 | * FIXME: we may not allocate every single block here. |
| 3147 | */ |
| 3148 | total_data_rate = skl_get_total_relative_data_rate(intel_crtc, params); |
| 3149 | |
Damien Lespiau | 34bb56a | 2014-11-04 17:07:01 +0000 | [diff] [blame] | 3150 | start = alloc->start; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3151 | for (plane = 0; plane < intel_num_planes(intel_crtc); plane++) { |
| 3152 | const struct intel_plane_wm_parameters *p; |
| 3153 | unsigned int data_rate; |
| 3154 | uint16_t plane_blocks; |
| 3155 | |
| 3156 | p = ¶ms->plane[plane]; |
| 3157 | if (!p->enabled) |
| 3158 | continue; |
| 3159 | |
| 3160 | data_rate = skl_plane_relative_data_rate(p); |
| 3161 | |
| 3162 | /* |
| 3163 | * promote the expression to 64 bits to avoid overflowing, the |
| 3164 | * result is < available as data_rate / total_data_rate < 1 |
| 3165 | */ |
| 3166 | plane_blocks = div_u64((uint64_t)alloc_size * data_rate, |
| 3167 | total_data_rate); |
| 3168 | |
| 3169 | ddb->plane[pipe][plane].start = start; |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 3170 | ddb->plane[pipe][plane].end = start + plane_blocks; |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3171 | |
| 3172 | start += plane_blocks; |
| 3173 | } |
| 3174 | |
| 3175 | } |
| 3176 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3177 | static uint32_t skl_pipe_pixel_rate(const struct intel_crtc_config *config) |
| 3178 | { |
| 3179 | /* TODO: Take into account the scalers once we support them */ |
| 3180 | return config->adjusted_mode.crtc_clock; |
| 3181 | } |
| 3182 | |
| 3183 | /* |
| 3184 | * The max latency should be 257 (max the punit can code is 255 and we add 2us |
| 3185 | * for the read latency) and bytes_per_pixel should always be <= 8, so that |
| 3186 | * should allow pixel_rate up to ~2 GHz which seems sufficient since max |
| 3187 | * 2xcdclk is 1350 MHz and the pixel rate should never exceed that. |
| 3188 | */ |
| 3189 | static uint32_t skl_wm_method1(uint32_t pixel_rate, uint8_t bytes_per_pixel, |
| 3190 | uint32_t latency) |
| 3191 | { |
| 3192 | uint32_t wm_intermediate_val, ret; |
| 3193 | |
| 3194 | if (latency == 0) |
| 3195 | return UINT_MAX; |
| 3196 | |
| 3197 | wm_intermediate_val = latency * pixel_rate * bytes_per_pixel; |
| 3198 | ret = DIV_ROUND_UP(wm_intermediate_val, 1000); |
| 3199 | |
| 3200 | return ret; |
| 3201 | } |
| 3202 | |
| 3203 | static uint32_t skl_wm_method2(uint32_t pixel_rate, uint32_t pipe_htotal, |
| 3204 | uint32_t horiz_pixels, uint8_t bytes_per_pixel, |
| 3205 | uint32_t latency) |
| 3206 | { |
| 3207 | uint32_t ret, plane_bytes_per_line, wm_intermediate_val; |
| 3208 | |
| 3209 | if (latency == 0) |
| 3210 | return UINT_MAX; |
| 3211 | |
| 3212 | plane_bytes_per_line = horiz_pixels * bytes_per_pixel; |
| 3213 | wm_intermediate_val = latency * pixel_rate; |
| 3214 | ret = DIV_ROUND_UP(wm_intermediate_val, pipe_htotal * 1000) * |
| 3215 | plane_bytes_per_line; |
| 3216 | |
| 3217 | return ret; |
| 3218 | } |
| 3219 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3220 | static bool skl_ddb_allocation_changed(const struct skl_ddb_allocation *new_ddb, |
| 3221 | const struct intel_crtc *intel_crtc) |
| 3222 | { |
| 3223 | struct drm_device *dev = intel_crtc->base.dev; |
| 3224 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3225 | const struct skl_ddb_allocation *cur_ddb = &dev_priv->wm.skl_hw.ddb; |
| 3226 | enum pipe pipe = intel_crtc->pipe; |
| 3227 | |
| 3228 | if (memcmp(new_ddb->plane[pipe], cur_ddb->plane[pipe], |
| 3229 | sizeof(new_ddb->plane[pipe]))) |
| 3230 | return true; |
| 3231 | |
| 3232 | if (memcmp(&new_ddb->cursor[pipe], &cur_ddb->cursor[pipe], |
| 3233 | sizeof(new_ddb->cursor[pipe]))) |
| 3234 | return true; |
| 3235 | |
| 3236 | return false; |
| 3237 | } |
| 3238 | |
| 3239 | static void skl_compute_wm_global_parameters(struct drm_device *dev, |
| 3240 | struct intel_wm_config *config) |
| 3241 | { |
| 3242 | struct drm_crtc *crtc; |
| 3243 | struct drm_plane *plane; |
| 3244 | |
| 3245 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) |
| 3246 | config->num_pipes_active += intel_crtc_active(crtc); |
| 3247 | |
| 3248 | /* FIXME: I don't think we need those two global parameters on SKL */ |
| 3249 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) { |
| 3250 | struct intel_plane *intel_plane = to_intel_plane(plane); |
| 3251 | |
| 3252 | config->sprites_enabled |= intel_plane->wm.enabled; |
| 3253 | config->sprites_scaled |= intel_plane->wm.scaled; |
| 3254 | } |
| 3255 | } |
| 3256 | |
| 3257 | static void skl_compute_wm_pipe_parameters(struct drm_crtc *crtc, |
| 3258 | struct skl_pipe_wm_parameters *p) |
| 3259 | { |
| 3260 | struct drm_device *dev = crtc->dev; |
| 3261 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3262 | enum pipe pipe = intel_crtc->pipe; |
| 3263 | struct drm_plane *plane; |
| 3264 | int i = 1; /* Index for sprite planes start */ |
| 3265 | |
| 3266 | p->active = intel_crtc_active(crtc); |
| 3267 | if (p->active) { |
| 3268 | p->pipe_htotal = intel_crtc->config.adjusted_mode.crtc_htotal; |
| 3269 | p->pixel_rate = skl_pipe_pixel_rate(&intel_crtc->config); |
| 3270 | |
| 3271 | /* |
| 3272 | * For now, assume primary and cursor planes are always enabled. |
| 3273 | */ |
| 3274 | p->plane[0].enabled = true; |
| 3275 | p->plane[0].bytes_per_pixel = |
| 3276 | crtc->primary->fb->bits_per_pixel / 8; |
| 3277 | p->plane[0].horiz_pixels = intel_crtc->config.pipe_src_w; |
| 3278 | p->plane[0].vert_pixels = intel_crtc->config.pipe_src_h; |
| 3279 | |
| 3280 | p->cursor.enabled = true; |
| 3281 | p->cursor.bytes_per_pixel = 4; |
| 3282 | p->cursor.horiz_pixels = intel_crtc->cursor_width ? |
| 3283 | intel_crtc->cursor_width : 64; |
| 3284 | } |
| 3285 | |
| 3286 | list_for_each_entry(plane, &dev->mode_config.plane_list, head) { |
| 3287 | struct intel_plane *intel_plane = to_intel_plane(plane); |
| 3288 | |
| 3289 | if (intel_plane->pipe == pipe) |
| 3290 | p->plane[i++] = intel_plane->wm; |
| 3291 | } |
| 3292 | } |
| 3293 | |
| 3294 | static bool skl_compute_plane_wm(struct skl_pipe_wm_parameters *p, |
Damien Lespiau | afb024a | 2014-11-04 17:06:59 +0000 | [diff] [blame] | 3295 | struct intel_plane_wm_parameters *p_params, |
| 3296 | uint16_t ddb_allocation, |
| 3297 | uint32_t mem_value, |
| 3298 | uint16_t *out_blocks, /* out */ |
| 3299 | uint8_t *out_lines /* out */) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3300 | { |
Damien Lespiau | e6d6617 | 2014-11-04 17:06:55 +0000 | [diff] [blame] | 3301 | uint32_t method1, method2, plane_bytes_per_line, res_blocks, res_lines; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3302 | uint32_t result_bytes; |
| 3303 | |
Vandana Kannan | 4f94738 | 2014-11-04 17:06:47 +0000 | [diff] [blame] | 3304 | if (mem_value == 0 || !p->active || !p_params->enabled) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3305 | return false; |
| 3306 | |
| 3307 | method1 = skl_wm_method1(p->pixel_rate, |
| 3308 | p_params->bytes_per_pixel, |
| 3309 | mem_value); |
| 3310 | method2 = skl_wm_method2(p->pixel_rate, |
| 3311 | p->pipe_htotal, |
| 3312 | p_params->horiz_pixels, |
| 3313 | p_params->bytes_per_pixel, |
| 3314 | mem_value); |
| 3315 | |
| 3316 | plane_bytes_per_line = p_params->horiz_pixels * |
| 3317 | p_params->bytes_per_pixel; |
| 3318 | |
| 3319 | /* For now xtile and linear */ |
Damien Lespiau | 21fca25 | 2014-11-04 17:06:54 +0000 | [diff] [blame] | 3320 | if (((ddb_allocation * 512) / plane_bytes_per_line) >= 1) |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3321 | result_bytes = min(method1, method2); |
| 3322 | else |
| 3323 | result_bytes = method1; |
| 3324 | |
Damien Lespiau | e6d6617 | 2014-11-04 17:06:55 +0000 | [diff] [blame] | 3325 | res_blocks = DIV_ROUND_UP(result_bytes, 512) + 1; |
| 3326 | res_lines = DIV_ROUND_UP(result_bytes, plane_bytes_per_line); |
| 3327 | |
| 3328 | if (res_blocks > ddb_allocation || res_lines > 31) |
| 3329 | return false; |
| 3330 | |
| 3331 | *out_blocks = res_blocks; |
| 3332 | *out_lines = res_lines; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3333 | |
| 3334 | return true; |
| 3335 | } |
| 3336 | |
| 3337 | static void skl_compute_wm_level(const struct drm_i915_private *dev_priv, |
| 3338 | struct skl_ddb_allocation *ddb, |
| 3339 | struct skl_pipe_wm_parameters *p, |
| 3340 | enum pipe pipe, |
| 3341 | int level, |
| 3342 | int num_planes, |
| 3343 | struct skl_wm_level *result) |
| 3344 | { |
| 3345 | uint16_t latency = dev_priv->wm.skl_latency[level]; |
| 3346 | uint16_t ddb_blocks; |
| 3347 | int i; |
| 3348 | |
| 3349 | for (i = 0; i < num_planes; i++) { |
| 3350 | ddb_blocks = skl_ddb_entry_size(&ddb->plane[pipe][i]); |
| 3351 | |
| 3352 | result->plane_en[i] = skl_compute_plane_wm(p, &p->plane[i], |
| 3353 | ddb_blocks, |
| 3354 | latency, |
| 3355 | &result->plane_res_b[i], |
| 3356 | &result->plane_res_l[i]); |
| 3357 | } |
| 3358 | |
| 3359 | ddb_blocks = skl_ddb_entry_size(&ddb->cursor[pipe]); |
| 3360 | result->cursor_en = skl_compute_plane_wm(p, &p->cursor, ddb_blocks, |
| 3361 | latency, &result->cursor_res_b, |
| 3362 | &result->cursor_res_l); |
| 3363 | } |
| 3364 | |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 3365 | static uint32_t |
| 3366 | skl_compute_linetime_wm(struct drm_crtc *crtc, struct skl_pipe_wm_parameters *p) |
| 3367 | { |
| 3368 | if (!intel_crtc_active(crtc)) |
| 3369 | return 0; |
| 3370 | |
| 3371 | return DIV_ROUND_UP(8 * p->pipe_htotal * 1000, p->pixel_rate); |
| 3372 | |
| 3373 | } |
| 3374 | |
| 3375 | static void skl_compute_transition_wm(struct drm_crtc *crtc, |
| 3376 | struct skl_pipe_wm_parameters *params, |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 3377 | struct skl_wm_level *trans_wm /* out */) |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 3378 | { |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 3379 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3380 | int i; |
| 3381 | |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 3382 | if (!params->active) |
| 3383 | return; |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 3384 | |
| 3385 | /* Until we know more, just disable transition WMs */ |
| 3386 | for (i = 0; i < intel_num_planes(intel_crtc); i++) |
| 3387 | trans_wm->plane_en[i] = false; |
| 3388 | trans_wm->cursor_en = false; |
Damien Lespiau | 407b50f | 2014-11-04 17:06:57 +0000 | [diff] [blame] | 3389 | } |
| 3390 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3391 | static void skl_compute_pipe_wm(struct drm_crtc *crtc, |
| 3392 | struct skl_ddb_allocation *ddb, |
| 3393 | struct skl_pipe_wm_parameters *params, |
| 3394 | struct skl_pipe_wm *pipe_wm) |
| 3395 | { |
| 3396 | struct drm_device *dev = crtc->dev; |
| 3397 | const struct drm_i915_private *dev_priv = dev->dev_private; |
| 3398 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3399 | int level, max_level = ilk_wm_max_level(dev); |
| 3400 | |
| 3401 | for (level = 0; level <= max_level; level++) { |
| 3402 | skl_compute_wm_level(dev_priv, ddb, params, intel_crtc->pipe, |
| 3403 | level, intel_num_planes(intel_crtc), |
| 3404 | &pipe_wm->wm[level]); |
| 3405 | } |
| 3406 | pipe_wm->linetime = skl_compute_linetime_wm(crtc, params); |
| 3407 | |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 3408 | skl_compute_transition_wm(crtc, params, &pipe_wm->trans_wm); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3409 | } |
| 3410 | |
| 3411 | static void skl_compute_wm_results(struct drm_device *dev, |
| 3412 | struct skl_pipe_wm_parameters *p, |
| 3413 | struct skl_pipe_wm *p_wm, |
| 3414 | struct skl_wm_values *r, |
| 3415 | struct intel_crtc *intel_crtc) |
| 3416 | { |
| 3417 | int level, max_level = ilk_wm_max_level(dev); |
| 3418 | enum pipe pipe = intel_crtc->pipe; |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 3419 | uint32_t temp; |
| 3420 | int i; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3421 | |
| 3422 | for (level = 0; level <= max_level; level++) { |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3423 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 3424 | temp = 0; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3425 | |
| 3426 | temp |= p_wm->wm[level].plane_res_l[i] << |
| 3427 | PLANE_WM_LINES_SHIFT; |
| 3428 | temp |= p_wm->wm[level].plane_res_b[i]; |
| 3429 | if (p_wm->wm[level].plane_en[i]) |
| 3430 | temp |= PLANE_WM_EN; |
| 3431 | |
| 3432 | r->plane[pipe][i][level] = temp; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3433 | } |
| 3434 | |
| 3435 | temp = 0; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3436 | |
| 3437 | temp |= p_wm->wm[level].cursor_res_l << PLANE_WM_LINES_SHIFT; |
| 3438 | temp |= p_wm->wm[level].cursor_res_b; |
| 3439 | |
| 3440 | if (p_wm->wm[level].cursor_en) |
| 3441 | temp |= PLANE_WM_EN; |
| 3442 | |
| 3443 | r->cursor[pipe][level] = temp; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3444 | |
| 3445 | } |
| 3446 | |
Damien Lespiau | 9414f56 | 2014-11-04 17:06:58 +0000 | [diff] [blame] | 3447 | /* transition WMs */ |
| 3448 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 3449 | temp = 0; |
| 3450 | temp |= p_wm->trans_wm.plane_res_l[i] << PLANE_WM_LINES_SHIFT; |
| 3451 | temp |= p_wm->trans_wm.plane_res_b[i]; |
| 3452 | if (p_wm->trans_wm.plane_en[i]) |
| 3453 | temp |= PLANE_WM_EN; |
| 3454 | |
| 3455 | r->plane_trans[pipe][i] = temp; |
| 3456 | } |
| 3457 | |
| 3458 | temp = 0; |
| 3459 | temp |= p_wm->trans_wm.cursor_res_l << PLANE_WM_LINES_SHIFT; |
| 3460 | temp |= p_wm->trans_wm.cursor_res_b; |
| 3461 | if (p_wm->trans_wm.cursor_en) |
| 3462 | temp |= PLANE_WM_EN; |
| 3463 | |
| 3464 | r->cursor_trans[pipe] = temp; |
| 3465 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3466 | r->wm_linetime[pipe] = p_wm->linetime; |
| 3467 | } |
| 3468 | |
Damien Lespiau | 16160e3 | 2014-11-04 17:06:53 +0000 | [diff] [blame] | 3469 | static void skl_ddb_entry_write(struct drm_i915_private *dev_priv, uint32_t reg, |
| 3470 | const struct skl_ddb_entry *entry) |
| 3471 | { |
| 3472 | if (entry->end) |
| 3473 | I915_WRITE(reg, (entry->end - 1) << 16 | entry->start); |
| 3474 | else |
| 3475 | I915_WRITE(reg, 0); |
| 3476 | } |
| 3477 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3478 | static void skl_write_wm_values(struct drm_i915_private *dev_priv, |
| 3479 | const struct skl_wm_values *new) |
| 3480 | { |
| 3481 | struct drm_device *dev = dev_priv->dev; |
| 3482 | struct intel_crtc *crtc; |
| 3483 | |
| 3484 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, base.head) { |
| 3485 | int i, level, max_level = ilk_wm_max_level(dev); |
| 3486 | enum pipe pipe = crtc->pipe; |
| 3487 | |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 3488 | if (!new->dirty[pipe]) |
| 3489 | continue; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3490 | |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 3491 | I915_WRITE(PIPE_WM_LINETIME(pipe), new->wm_linetime[pipe]); |
| 3492 | |
| 3493 | for (level = 0; level <= max_level; level++) { |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3494 | for (i = 0; i < intel_num_planes(crtc); i++) |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 3495 | I915_WRITE(PLANE_WM(pipe, i, level), |
| 3496 | new->plane[pipe][i][level]); |
| 3497 | I915_WRITE(CUR_WM(pipe, level), |
| 3498 | new->cursor[pipe][level]); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3499 | } |
Damien Lespiau | 5d374d9 | 2014-11-04 17:07:00 +0000 | [diff] [blame] | 3500 | for (i = 0; i < intel_num_planes(crtc); i++) |
| 3501 | I915_WRITE(PLANE_WM_TRANS(pipe, i), |
| 3502 | new->plane_trans[pipe][i]); |
| 3503 | I915_WRITE(CUR_WM_TRANS(pipe), new->cursor_trans[pipe]); |
| 3504 | |
| 3505 | for (i = 0; i < intel_num_planes(crtc); i++) |
| 3506 | skl_ddb_entry_write(dev_priv, |
| 3507 | PLANE_BUF_CFG(pipe, i), |
| 3508 | &new->ddb.plane[pipe][i]); |
| 3509 | |
| 3510 | skl_ddb_entry_write(dev_priv, CUR_BUF_CFG(pipe), |
| 3511 | &new->ddb.cursor[pipe]); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3512 | } |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3513 | } |
| 3514 | |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame^] | 3515 | /* |
| 3516 | * When setting up a new DDB allocation arrangement, we need to correctly |
| 3517 | * sequence the times at which the new allocations for the pipes are taken into |
| 3518 | * account or we'll have pipes fetching from space previously allocated to |
| 3519 | * another pipe. |
| 3520 | * |
| 3521 | * Roughly the sequence looks like: |
| 3522 | * 1. re-allocate the pipe(s) with the allocation being reduced and not |
| 3523 | * overlapping with a previous light-up pipe (another way to put it is: |
| 3524 | * pipes with their new allocation strickly included into their old ones). |
| 3525 | * 2. re-allocate the other pipes that get their allocation reduced |
| 3526 | * 3. allocate the pipes having their allocation increased |
| 3527 | * |
| 3528 | * Steps 1. and 2. are here to take care of the following case: |
| 3529 | * - Initially DDB looks like this: |
| 3530 | * | B | C | |
| 3531 | * - enable pipe A. |
| 3532 | * - pipe B has a reduced DDB allocation that overlaps with the old pipe C |
| 3533 | * allocation |
| 3534 | * | A | B | C | |
| 3535 | * |
| 3536 | * We need to sequence the re-allocation: C, B, A (and not B, C, A). |
| 3537 | */ |
| 3538 | |
| 3539 | static void skl_wm_flush_pipe(struct drm_i915_private *dev_priv, enum pipe pipe) |
| 3540 | { |
| 3541 | struct drm_device *dev = dev_priv->dev; |
| 3542 | int plane; |
| 3543 | |
| 3544 | for_each_plane(pipe, plane) { |
| 3545 | I915_WRITE(PLANE_SURF(pipe, plane), |
| 3546 | I915_READ(PLANE_SURF(pipe, plane))); |
| 3547 | } |
| 3548 | I915_WRITE(CURBASE(pipe), I915_READ(CURBASE(pipe))); |
| 3549 | } |
| 3550 | |
| 3551 | static bool |
| 3552 | skl_ddb_allocation_included(const struct skl_ddb_allocation *old, |
| 3553 | const struct skl_ddb_allocation *new, |
| 3554 | enum pipe pipe) |
| 3555 | { |
| 3556 | uint16_t old_size, new_size; |
| 3557 | |
| 3558 | old_size = skl_ddb_entry_size(&old->pipe[pipe]); |
| 3559 | new_size = skl_ddb_entry_size(&new->pipe[pipe]); |
| 3560 | |
| 3561 | return old_size != new_size && |
| 3562 | new->pipe[pipe].start >= old->pipe[pipe].start && |
| 3563 | new->pipe[pipe].end <= old->pipe[pipe].end; |
| 3564 | } |
| 3565 | |
| 3566 | static void skl_flush_wm_values(struct drm_i915_private *dev_priv, |
| 3567 | struct skl_wm_values *new_values) |
| 3568 | { |
| 3569 | struct drm_device *dev = dev_priv->dev; |
| 3570 | struct skl_ddb_allocation *cur_ddb, *new_ddb; |
| 3571 | bool reallocated[I915_MAX_PIPES] = {false, false, false}; |
| 3572 | struct intel_crtc *crtc; |
| 3573 | enum pipe pipe; |
| 3574 | |
| 3575 | new_ddb = &new_values->ddb; |
| 3576 | cur_ddb = &dev_priv->wm.skl_hw.ddb; |
| 3577 | |
| 3578 | /* |
| 3579 | * First pass: flush the pipes with the new allocation contained into |
| 3580 | * the old space. |
| 3581 | * |
| 3582 | * We'll wait for the vblank on those pipes to ensure we can safely |
| 3583 | * re-allocate the freed space without this pipe fetching from it. |
| 3584 | */ |
| 3585 | for_each_intel_crtc(dev, crtc) { |
| 3586 | if (!crtc->active) |
| 3587 | continue; |
| 3588 | |
| 3589 | pipe = crtc->pipe; |
| 3590 | |
| 3591 | if (!skl_ddb_allocation_included(cur_ddb, new_ddb, pipe)) |
| 3592 | continue; |
| 3593 | |
| 3594 | skl_wm_flush_pipe(dev_priv, pipe); |
| 3595 | intel_wait_for_vblank(dev, pipe); |
| 3596 | |
| 3597 | reallocated[pipe] = true; |
| 3598 | } |
| 3599 | |
| 3600 | |
| 3601 | /* |
| 3602 | * Second pass: flush the pipes that are having their allocation |
| 3603 | * reduced, but overlapping with a previous allocation. |
| 3604 | * |
| 3605 | * Here as well we need to wait for the vblank to make sure the freed |
| 3606 | * space is not used anymore. |
| 3607 | */ |
| 3608 | for_each_intel_crtc(dev, crtc) { |
| 3609 | if (!crtc->active) |
| 3610 | continue; |
| 3611 | |
| 3612 | pipe = crtc->pipe; |
| 3613 | |
| 3614 | if (reallocated[pipe]) |
| 3615 | continue; |
| 3616 | |
| 3617 | if (skl_ddb_entry_size(&new_ddb->pipe[pipe]) < |
| 3618 | skl_ddb_entry_size(&cur_ddb->pipe[pipe])) { |
| 3619 | skl_wm_flush_pipe(dev_priv, pipe); |
| 3620 | intel_wait_for_vblank(dev, pipe); |
| 3621 | } |
| 3622 | |
| 3623 | reallocated[pipe] = true; |
| 3624 | } |
| 3625 | |
| 3626 | /* |
| 3627 | * Third pass: flush the pipes that got more space allocated. |
| 3628 | * |
| 3629 | * We don't need to actively wait for the update here, next vblank |
| 3630 | * will just get more DDB space with the correct WM values. |
| 3631 | */ |
| 3632 | for_each_intel_crtc(dev, crtc) { |
| 3633 | if (!crtc->active) |
| 3634 | continue; |
| 3635 | |
| 3636 | pipe = crtc->pipe; |
| 3637 | |
| 3638 | /* |
| 3639 | * At this point, only the pipes more space than before are |
| 3640 | * left to re-allocate. |
| 3641 | */ |
| 3642 | if (reallocated[pipe]) |
| 3643 | continue; |
| 3644 | |
| 3645 | skl_wm_flush_pipe(dev_priv, pipe); |
| 3646 | } |
| 3647 | } |
| 3648 | |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3649 | static bool skl_update_pipe_wm(struct drm_crtc *crtc, |
| 3650 | struct skl_pipe_wm_parameters *params, |
| 3651 | struct intel_wm_config *config, |
| 3652 | struct skl_ddb_allocation *ddb, /* out */ |
| 3653 | struct skl_pipe_wm *pipe_wm /* out */) |
| 3654 | { |
| 3655 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3656 | |
| 3657 | skl_compute_wm_pipe_parameters(crtc, params); |
Damien Lespiau | b9cec07 | 2014-11-04 17:06:43 +0000 | [diff] [blame] | 3658 | skl_allocate_pipe_ddb(crtc, config, params, ddb); |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3659 | skl_compute_pipe_wm(crtc, ddb, params, pipe_wm); |
| 3660 | |
| 3661 | if (!memcmp(&intel_crtc->wm.skl_active, pipe_wm, sizeof(*pipe_wm))) |
| 3662 | return false; |
| 3663 | |
| 3664 | intel_crtc->wm.skl_active = *pipe_wm; |
| 3665 | return true; |
| 3666 | } |
| 3667 | |
| 3668 | static void skl_update_other_pipe_wm(struct drm_device *dev, |
| 3669 | struct drm_crtc *crtc, |
| 3670 | struct intel_wm_config *config, |
| 3671 | struct skl_wm_values *r) |
| 3672 | { |
| 3673 | struct intel_crtc *intel_crtc; |
| 3674 | struct intel_crtc *this_crtc = to_intel_crtc(crtc); |
| 3675 | |
| 3676 | /* |
| 3677 | * If the WM update hasn't changed the allocation for this_crtc (the |
| 3678 | * crtc we are currently computing the new WM values for), other |
| 3679 | * enabled crtcs will keep the same allocation and we don't need to |
| 3680 | * recompute anything for them. |
| 3681 | */ |
| 3682 | if (!skl_ddb_allocation_changed(&r->ddb, this_crtc)) |
| 3683 | return; |
| 3684 | |
| 3685 | /* |
| 3686 | * Otherwise, because of this_crtc being freshly enabled/disabled, the |
| 3687 | * other active pipes need new DDB allocation and WM values. |
| 3688 | */ |
| 3689 | list_for_each_entry(intel_crtc, &dev->mode_config.crtc_list, |
| 3690 | base.head) { |
| 3691 | struct skl_pipe_wm_parameters params = {}; |
| 3692 | struct skl_pipe_wm pipe_wm = {}; |
| 3693 | bool wm_changed; |
| 3694 | |
| 3695 | if (this_crtc->pipe == intel_crtc->pipe) |
| 3696 | continue; |
| 3697 | |
| 3698 | if (!intel_crtc->active) |
| 3699 | continue; |
| 3700 | |
| 3701 | wm_changed = skl_update_pipe_wm(&intel_crtc->base, |
| 3702 | ¶ms, config, |
| 3703 | &r->ddb, &pipe_wm); |
| 3704 | |
| 3705 | /* |
| 3706 | * If we end up re-computing the other pipe WM values, it's |
| 3707 | * because it was really needed, so we expect the WM values to |
| 3708 | * be different. |
| 3709 | */ |
| 3710 | WARN_ON(!wm_changed); |
| 3711 | |
| 3712 | skl_compute_wm_results(dev, ¶ms, &pipe_wm, r, intel_crtc); |
| 3713 | r->dirty[intel_crtc->pipe] = true; |
| 3714 | } |
| 3715 | } |
| 3716 | |
| 3717 | static void skl_update_wm(struct drm_crtc *crtc) |
| 3718 | { |
| 3719 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3720 | struct drm_device *dev = crtc->dev; |
| 3721 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3722 | struct skl_pipe_wm_parameters params = {}; |
| 3723 | struct skl_wm_values *results = &dev_priv->wm.skl_results; |
| 3724 | struct skl_pipe_wm pipe_wm = {}; |
| 3725 | struct intel_wm_config config = {}; |
| 3726 | |
| 3727 | memset(results, 0, sizeof(*results)); |
| 3728 | |
| 3729 | skl_compute_wm_global_parameters(dev, &config); |
| 3730 | |
| 3731 | if (!skl_update_pipe_wm(crtc, ¶ms, &config, |
| 3732 | &results->ddb, &pipe_wm)) |
| 3733 | return; |
| 3734 | |
| 3735 | skl_compute_wm_results(dev, ¶ms, &pipe_wm, results, intel_crtc); |
| 3736 | results->dirty[intel_crtc->pipe] = true; |
| 3737 | |
| 3738 | skl_update_other_pipe_wm(dev, crtc, &config, results); |
| 3739 | skl_write_wm_values(dev_priv, results); |
Damien Lespiau | 0e8fb7b | 2014-11-04 17:07:02 +0000 | [diff] [blame^] | 3740 | skl_flush_wm_values(dev_priv, results); |
Damien Lespiau | 53b0deb | 2014-11-04 17:06:48 +0000 | [diff] [blame] | 3741 | |
| 3742 | /* store the new configuration */ |
| 3743 | dev_priv->wm.skl_hw = *results; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 3744 | } |
| 3745 | |
| 3746 | static void |
| 3747 | skl_update_sprite_wm(struct drm_plane *plane, struct drm_crtc *crtc, |
| 3748 | uint32_t sprite_width, uint32_t sprite_height, |
| 3749 | int pixel_size, bool enabled, bool scaled) |
| 3750 | { |
| 3751 | struct intel_plane *intel_plane = to_intel_plane(plane); |
| 3752 | |
| 3753 | intel_plane->wm.enabled = enabled; |
| 3754 | intel_plane->wm.scaled = scaled; |
| 3755 | intel_plane->wm.horiz_pixels = sprite_width; |
| 3756 | intel_plane->wm.vert_pixels = sprite_height; |
| 3757 | intel_plane->wm.bytes_per_pixel = pixel_size; |
| 3758 | |
| 3759 | skl_update_wm(crtc); |
| 3760 | } |
| 3761 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3762 | static void ilk_update_wm(struct drm_crtc *crtc) |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3763 | { |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 3764 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 3765 | struct drm_device *dev = crtc->dev; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3766 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3767 | struct ilk_wm_maximums max; |
| 3768 | struct ilk_pipe_wm_parameters params = {}; |
| 3769 | struct ilk_wm_values results = {}; |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 3770 | enum intel_ddb_partitioning partitioning; |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 3771 | struct intel_pipe_wm pipe_wm = {}; |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3772 | 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] | 3773 | struct intel_wm_config config = {}; |
Paulo Zanoni | 801bcff | 2013-05-31 10:08:35 -0300 | [diff] [blame] | 3774 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 3775 | ilk_compute_wm_parameters(crtc, ¶ms); |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3776 | |
Ville Syrjälä | 7c4a395 | 2013-10-09 19:17:56 +0300 | [diff] [blame] | 3777 | intel_compute_pipe_wm(crtc, ¶ms, &pipe_wm); |
| 3778 | |
| 3779 | if (!memcmp(&intel_crtc->wm.active, &pipe_wm, sizeof(pipe_wm))) |
| 3780 | return; |
| 3781 | |
| 3782 | intel_crtc->wm.active = pipe_wm; |
| 3783 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 3784 | ilk_compute_wm_config(dev, &config); |
| 3785 | |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 3786 | 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] | 3787 | ilk_wm_merge(dev, &config, &max, &lp_wm_1_2); |
Ville Syrjälä | 0362c78 | 2013-10-09 19:17:57 +0300 | [diff] [blame] | 3788 | |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 3789 | /* 5/6 split only in single pipe config on IVB+ */ |
Ville Syrjälä | ec98c8d | 2013-10-11 15:26:26 +0300 | [diff] [blame] | 3790 | if (INTEL_INFO(dev)->gen >= 7 && |
| 3791 | config.num_pipes_active == 1 && config.sprites_enabled) { |
Ville Syrjälä | 34982fe | 2013-10-09 19:18:09 +0300 | [diff] [blame] | 3792 | 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] | 3793 | ilk_wm_merge(dev, &config, &max, &lp_wm_5_6); |
Ville Syrjälä | a485bfb | 2013-10-09 19:17:59 +0300 | [diff] [blame] | 3794 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3795 | 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] | 3796 | } else { |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3797 | best_lp_wm = &lp_wm_1_2; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3798 | } |
| 3799 | |
Ville Syrjälä | 198a1e9 | 2013-10-09 19:17:58 +0300 | [diff] [blame] | 3800 | partitioning = (best_lp_wm == &lp_wm_1_2) ? |
Ville Syrjälä | 77c122b | 2013-08-06 22:24:04 +0300 | [diff] [blame] | 3801 | INTEL_DDB_PART_1_2 : INTEL_DDB_PART_5_6; |
Paulo Zanoni | 861f338 | 2013-05-31 10:19:21 -0300 | [diff] [blame] | 3802 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3803 | ilk_compute_wm_results(dev, best_lp_wm, partitioning, &results); |
Ville Syrjälä | 609cede | 2013-10-09 19:18:03 +0300 | [diff] [blame] | 3804 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3805 | ilk_write_wm_values(dev_priv, &results); |
Paulo Zanoni | 1011d8c | 2013-05-09 16:55:50 -0300 | [diff] [blame] | 3806 | } |
| 3807 | |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 3808 | static void |
| 3809 | ilk_update_sprite_wm(struct drm_plane *plane, |
| 3810 | struct drm_crtc *crtc, |
| 3811 | uint32_t sprite_width, uint32_t sprite_height, |
| 3812 | int pixel_size, bool enabled, bool scaled) |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3813 | { |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3814 | struct drm_device *dev = plane->dev; |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3815 | struct intel_plane *intel_plane = to_intel_plane(plane); |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3816 | |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3817 | intel_plane->wm.enabled = enabled; |
| 3818 | intel_plane->wm.scaled = scaled; |
| 3819 | intel_plane->wm.horiz_pixels = sprite_width; |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 3820 | intel_plane->wm.vert_pixels = sprite_width; |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 3821 | intel_plane->wm.bytes_per_pixel = pixel_size; |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3822 | |
Ville Syrjälä | 8553c18 | 2013-12-05 15:51:39 +0200 | [diff] [blame] | 3823 | /* |
| 3824 | * IVB workaround: must disable low power watermarks for at least |
| 3825 | * one frame before enabling scaling. LP watermarks can be re-enabled |
| 3826 | * when scaling is disabled. |
| 3827 | * |
| 3828 | * WaCxSRDisabledForSpriteScaling:ivb |
| 3829 | */ |
| 3830 | if (IS_IVYBRIDGE(dev) && scaled && ilk_disable_lp_wm(dev)) |
| 3831 | intel_wait_for_vblank(dev, intel_plane->pipe); |
| 3832 | |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3833 | ilk_update_wm(crtc); |
Paulo Zanoni | 526682e | 2013-05-24 11:59:18 -0300 | [diff] [blame] | 3834 | } |
| 3835 | |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 3836 | static void skl_pipe_wm_active_state(uint32_t val, |
| 3837 | struct skl_pipe_wm *active, |
| 3838 | bool is_transwm, |
| 3839 | bool is_cursor, |
| 3840 | int i, |
| 3841 | int level) |
| 3842 | { |
| 3843 | bool is_enabled = (val & PLANE_WM_EN) != 0; |
| 3844 | |
| 3845 | if (!is_transwm) { |
| 3846 | if (!is_cursor) { |
| 3847 | active->wm[level].plane_en[i] = is_enabled; |
| 3848 | active->wm[level].plane_res_b[i] = |
| 3849 | val & PLANE_WM_BLOCKS_MASK; |
| 3850 | active->wm[level].plane_res_l[i] = |
| 3851 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3852 | PLANE_WM_LINES_MASK; |
| 3853 | } else { |
| 3854 | active->wm[level].cursor_en = is_enabled; |
| 3855 | active->wm[level].cursor_res_b = |
| 3856 | val & PLANE_WM_BLOCKS_MASK; |
| 3857 | active->wm[level].cursor_res_l = |
| 3858 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3859 | PLANE_WM_LINES_MASK; |
| 3860 | } |
| 3861 | } else { |
| 3862 | if (!is_cursor) { |
| 3863 | active->trans_wm.plane_en[i] = is_enabled; |
| 3864 | active->trans_wm.plane_res_b[i] = |
| 3865 | val & PLANE_WM_BLOCKS_MASK; |
| 3866 | active->trans_wm.plane_res_l[i] = |
| 3867 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3868 | PLANE_WM_LINES_MASK; |
| 3869 | } else { |
| 3870 | active->trans_wm.cursor_en = is_enabled; |
| 3871 | active->trans_wm.cursor_res_b = |
| 3872 | val & PLANE_WM_BLOCKS_MASK; |
| 3873 | active->trans_wm.cursor_res_l = |
| 3874 | (val >> PLANE_WM_LINES_SHIFT) & |
| 3875 | PLANE_WM_LINES_MASK; |
| 3876 | } |
| 3877 | } |
| 3878 | } |
| 3879 | |
| 3880 | static void skl_pipe_wm_get_hw_state(struct drm_crtc *crtc) |
| 3881 | { |
| 3882 | struct drm_device *dev = crtc->dev; |
| 3883 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3884 | struct skl_wm_values *hw = &dev_priv->wm.skl_hw; |
| 3885 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3886 | struct skl_pipe_wm *active = &intel_crtc->wm.skl_active; |
| 3887 | enum pipe pipe = intel_crtc->pipe; |
| 3888 | int level, i, max_level; |
| 3889 | uint32_t temp; |
| 3890 | |
| 3891 | max_level = ilk_wm_max_level(dev); |
| 3892 | |
| 3893 | hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe)); |
| 3894 | |
| 3895 | for (level = 0; level <= max_level; level++) { |
| 3896 | for (i = 0; i < intel_num_planes(intel_crtc); i++) |
| 3897 | hw->plane[pipe][i][level] = |
| 3898 | I915_READ(PLANE_WM(pipe, i, level)); |
| 3899 | hw->cursor[pipe][level] = I915_READ(CUR_WM(pipe, level)); |
| 3900 | } |
| 3901 | |
| 3902 | for (i = 0; i < intel_num_planes(intel_crtc); i++) |
| 3903 | hw->plane_trans[pipe][i] = I915_READ(PLANE_WM_TRANS(pipe, i)); |
| 3904 | hw->cursor_trans[pipe] = I915_READ(CUR_WM_TRANS(pipe)); |
| 3905 | |
| 3906 | if (!intel_crtc_active(crtc)) |
| 3907 | return; |
| 3908 | |
| 3909 | hw->dirty[pipe] = true; |
| 3910 | |
| 3911 | active->linetime = hw->wm_linetime[pipe]; |
| 3912 | |
| 3913 | for (level = 0; level <= max_level; level++) { |
| 3914 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 3915 | temp = hw->plane[pipe][i][level]; |
| 3916 | skl_pipe_wm_active_state(temp, active, false, |
| 3917 | false, i, level); |
| 3918 | } |
| 3919 | temp = hw->cursor[pipe][level]; |
| 3920 | skl_pipe_wm_active_state(temp, active, false, true, i, level); |
| 3921 | } |
| 3922 | |
| 3923 | for (i = 0; i < intel_num_planes(intel_crtc); i++) { |
| 3924 | temp = hw->plane_trans[pipe][i]; |
| 3925 | skl_pipe_wm_active_state(temp, active, true, false, i, 0); |
| 3926 | } |
| 3927 | |
| 3928 | temp = hw->cursor_trans[pipe]; |
| 3929 | skl_pipe_wm_active_state(temp, active, true, true, i, 0); |
| 3930 | } |
| 3931 | |
| 3932 | void skl_wm_get_hw_state(struct drm_device *dev) |
| 3933 | { |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3934 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 3935 | struct skl_ddb_allocation *ddb = &dev_priv->wm.skl_hw.ddb; |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 3936 | struct drm_crtc *crtc; |
| 3937 | |
Damien Lespiau | a269c58 | 2014-11-04 17:06:49 +0000 | [diff] [blame] | 3938 | skl_ddb_get_hw_state(dev_priv, ddb); |
Pradeep Bhat | 3078999 | 2014-11-04 17:06:45 +0000 | [diff] [blame] | 3939 | list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) |
| 3940 | skl_pipe_wm_get_hw_state(crtc); |
| 3941 | } |
| 3942 | |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3943 | static void ilk_pipe_wm_get_hw_state(struct drm_crtc *crtc) |
| 3944 | { |
| 3945 | struct drm_device *dev = crtc->dev; |
| 3946 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3947 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3948 | struct intel_crtc *intel_crtc = to_intel_crtc(crtc); |
| 3949 | struct intel_pipe_wm *active = &intel_crtc->wm.active; |
| 3950 | enum pipe pipe = intel_crtc->pipe; |
| 3951 | static const unsigned int wm0_pipe_reg[] = { |
| 3952 | [PIPE_A] = WM0_PIPEA_ILK, |
| 3953 | [PIPE_B] = WM0_PIPEB_ILK, |
| 3954 | [PIPE_C] = WM0_PIPEC_IVB, |
| 3955 | }; |
| 3956 | |
| 3957 | hw->wm_pipe[pipe] = I915_READ(wm0_pipe_reg[pipe]); |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 3958 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ce0e071 | 2013-12-05 15:51:36 +0200 | [diff] [blame] | 3959 | hw->wm_linetime[pipe] = I915_READ(PIPE_WM_LINETIME(pipe)); |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3960 | |
Ville Syrjälä | 2a44b76 | 2014-03-07 18:32:09 +0200 | [diff] [blame] | 3961 | active->pipe_enabled = intel_crtc_active(crtc); |
| 3962 | |
| 3963 | if (active->pipe_enabled) { |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3964 | u32 tmp = hw->wm_pipe[pipe]; |
| 3965 | |
| 3966 | /* |
| 3967 | * For active pipes LP0 watermark is marked as |
| 3968 | * enabled, and LP1+ watermaks as disabled since |
| 3969 | * we can't really reverse compute them in case |
| 3970 | * multiple pipes are active. |
| 3971 | */ |
| 3972 | active->wm[0].enable = true; |
| 3973 | active->wm[0].pri_val = (tmp & WM0_PIPE_PLANE_MASK) >> WM0_PIPE_PLANE_SHIFT; |
| 3974 | active->wm[0].spr_val = (tmp & WM0_PIPE_SPRITE_MASK) >> WM0_PIPE_SPRITE_SHIFT; |
| 3975 | active->wm[0].cur_val = tmp & WM0_PIPE_CURSOR_MASK; |
| 3976 | active->linetime = hw->wm_linetime[pipe]; |
| 3977 | } else { |
| 3978 | int level, max_level = ilk_wm_max_level(dev); |
| 3979 | |
| 3980 | /* |
| 3981 | * For inactive pipes, all watermark levels |
| 3982 | * should be marked as enabled but zeroed, |
| 3983 | * which is what we'd compute them to. |
| 3984 | */ |
| 3985 | for (level = 0; level <= max_level; level++) |
| 3986 | active->wm[level].enable = true; |
| 3987 | } |
| 3988 | } |
| 3989 | |
| 3990 | void ilk_wm_get_hw_state(struct drm_device *dev) |
| 3991 | { |
| 3992 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 820c198 | 2013-12-17 14:46:36 +0200 | [diff] [blame] | 3993 | struct ilk_wm_values *hw = &dev_priv->wm.hw; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3994 | struct drm_crtc *crtc; |
| 3995 | |
Damien Lespiau | 70e1e0e | 2014-05-13 23:32:24 +0100 | [diff] [blame] | 3996 | for_each_crtc(dev, crtc) |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 3997 | ilk_pipe_wm_get_hw_state(crtc); |
| 3998 | |
| 3999 | hw->wm_lp[0] = I915_READ(WM1_LP_ILK); |
| 4000 | hw->wm_lp[1] = I915_READ(WM2_LP_ILK); |
| 4001 | hw->wm_lp[2] = I915_READ(WM3_LP_ILK); |
| 4002 | |
| 4003 | hw->wm_lp_spr[0] = I915_READ(WM1S_LP_ILK); |
Ville Syrjälä | cfa7698 | 2014-03-07 18:32:08 +0200 | [diff] [blame] | 4004 | if (INTEL_INFO(dev)->gen >= 7) { |
| 4005 | hw->wm_lp_spr[1] = I915_READ(WM2S_LP_IVB); |
| 4006 | hw->wm_lp_spr[2] = I915_READ(WM3S_LP_IVB); |
| 4007 | } |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 4008 | |
Ville Syrjälä | a42a571 | 2014-01-07 16:14:08 +0200 | [diff] [blame] | 4009 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Ville Syrjälä | ac9545f | 2013-12-05 15:51:28 +0200 | [diff] [blame] | 4010 | hw->partitioning = (I915_READ(WM_MISC) & WM_MISC_DATA_PARTITION_5_6) ? |
| 4011 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
| 4012 | else if (IS_IVYBRIDGE(dev)) |
| 4013 | hw->partitioning = (I915_READ(DISP_ARB_CTL2) & DISP_DATA_PARTITION_5_6) ? |
| 4014 | INTEL_DDB_PART_5_6 : INTEL_DDB_PART_1_2; |
Ville Syrjälä | 243e6a4 | 2013-10-14 14:55:24 +0300 | [diff] [blame] | 4015 | |
| 4016 | hw->enable_fbc_wm = |
| 4017 | !(I915_READ(DISP_ARB_CTL) & DISP_FBC_WM_DIS); |
| 4018 | } |
| 4019 | |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4020 | /** |
| 4021 | * intel_update_watermarks - update FIFO watermark values based on current modes |
| 4022 | * |
| 4023 | * Calculate watermark values for the various WM regs based on current mode |
| 4024 | * and plane configuration. |
| 4025 | * |
| 4026 | * There are several cases to deal with here: |
| 4027 | * - normal (i.e. non-self-refresh) |
| 4028 | * - self-refresh (SR) mode |
| 4029 | * - lines are large relative to FIFO size (buffer can hold up to 2) |
| 4030 | * - lines are small relative to FIFO size (buffer can hold more than 2 |
| 4031 | * lines), so need to account for TLB latency |
| 4032 | * |
| 4033 | * The normal calculation is: |
| 4034 | * watermark = dotclock * bytes per pixel * latency |
| 4035 | * where latency is platform & configuration dependent (we assume pessimal |
| 4036 | * values here). |
| 4037 | * |
| 4038 | * The SR calculation is: |
| 4039 | * watermark = (trunc(latency/line time)+1) * surface width * |
| 4040 | * bytes per pixel |
| 4041 | * where |
| 4042 | * line time = htotal / dotclock |
| 4043 | * surface width = hdisplay for normal plane and 64 for cursor |
| 4044 | * and latency is assumed to be high, as above. |
| 4045 | * |
| 4046 | * The final value programmed to the register should always be rounded up, |
| 4047 | * and include an extra 2 entries to account for clock crossings. |
| 4048 | * |
| 4049 | * We don't use the sprite, so we can ignore that. And on Crestline we have |
| 4050 | * to set the non-SR watermarks to 8. |
| 4051 | */ |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 4052 | void intel_update_watermarks(struct drm_crtc *crtc) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4053 | { |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 4054 | struct drm_i915_private *dev_priv = crtc->dev->dev_private; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4055 | |
| 4056 | if (dev_priv->display.update_wm) |
Ville Syrjälä | 46ba614 | 2013-09-10 11:40:40 +0300 | [diff] [blame] | 4057 | dev_priv->display.update_wm(crtc); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4058 | } |
| 4059 | |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 4060 | void intel_update_sprite_watermarks(struct drm_plane *plane, |
| 4061 | struct drm_crtc *crtc, |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 4062 | uint32_t sprite_width, |
| 4063 | uint32_t sprite_height, |
| 4064 | int pixel_size, |
Ville Syrjälä | 39db4a4 | 2013-08-06 22:24:00 +0300 | [diff] [blame] | 4065 | bool enabled, bool scaled) |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4066 | { |
Ville Syrjälä | adf3d35 | 2013-08-06 22:24:11 +0300 | [diff] [blame] | 4067 | struct drm_i915_private *dev_priv = plane->dev->dev_private; |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4068 | |
| 4069 | if (dev_priv->display.update_sprite_wm) |
Damien Lespiau | ed57cb8 | 2014-07-15 09:21:24 +0200 | [diff] [blame] | 4070 | dev_priv->display.update_sprite_wm(plane, crtc, |
| 4071 | sprite_width, sprite_height, |
Ville Syrjälä | 39db4a4 | 2013-08-06 22:24:00 +0300 | [diff] [blame] | 4072 | pixel_size, enabled, scaled); |
Eugeni Dodonov | b445e3b | 2012-04-16 22:20:35 -0300 | [diff] [blame] | 4073 | } |
| 4074 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4075 | static struct drm_i915_gem_object * |
| 4076 | intel_alloc_context_page(struct drm_device *dev) |
| 4077 | { |
| 4078 | struct drm_i915_gem_object *ctx; |
| 4079 | int ret; |
| 4080 | |
| 4081 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 4082 | |
| 4083 | ctx = i915_gem_alloc_object(dev, 4096); |
| 4084 | if (!ctx) { |
| 4085 | DRM_DEBUG("failed to alloc power context, RC6 disabled\n"); |
| 4086 | return NULL; |
| 4087 | } |
| 4088 | |
Daniel Vetter | c69766f | 2014-02-14 14:01:17 +0100 | [diff] [blame] | 4089 | ret = i915_gem_obj_ggtt_pin(ctx, 4096, 0); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4090 | if (ret) { |
| 4091 | DRM_ERROR("failed to pin power context: %d\n", ret); |
| 4092 | goto err_unref; |
| 4093 | } |
| 4094 | |
| 4095 | ret = i915_gem_object_set_to_gtt_domain(ctx, 1); |
| 4096 | if (ret) { |
| 4097 | DRM_ERROR("failed to set-domain on power context: %d\n", ret); |
| 4098 | goto err_unpin; |
| 4099 | } |
| 4100 | |
| 4101 | return ctx; |
| 4102 | |
| 4103 | err_unpin: |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 4104 | i915_gem_object_ggtt_unpin(ctx); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4105 | err_unref: |
| 4106 | drm_gem_object_unreference(&ctx->base); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4107 | return NULL; |
| 4108 | } |
| 4109 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4110 | /** |
| 4111 | * Lock protecting IPS related data structures |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4112 | */ |
| 4113 | DEFINE_SPINLOCK(mchdev_lock); |
| 4114 | |
| 4115 | /* Global for IPS driver to get at the current i915 device. Protected by |
| 4116 | * mchdev_lock. */ |
| 4117 | static struct drm_i915_private *i915_mch_dev; |
| 4118 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4119 | bool ironlake_set_drps(struct drm_device *dev, u8 val) |
| 4120 | { |
| 4121 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4122 | u16 rgvswctl; |
| 4123 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4124 | assert_spin_locked(&mchdev_lock); |
| 4125 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4126 | rgvswctl = I915_READ16(MEMSWCTL); |
| 4127 | if (rgvswctl & MEMCTL_CMD_STS) { |
| 4128 | DRM_DEBUG("gpu busy, RCS change rejected\n"); |
| 4129 | return false; /* still busy with another command */ |
| 4130 | } |
| 4131 | |
| 4132 | rgvswctl = (MEMCTL_CMD_CHFREQ << MEMCTL_CMD_SHIFT) | |
| 4133 | (val << MEMCTL_FREQ_SHIFT) | MEMCTL_SFCAVM; |
| 4134 | I915_WRITE16(MEMSWCTL, rgvswctl); |
| 4135 | POSTING_READ16(MEMSWCTL); |
| 4136 | |
| 4137 | rgvswctl |= MEMCTL_CMD_STS; |
| 4138 | I915_WRITE16(MEMSWCTL, rgvswctl); |
| 4139 | |
| 4140 | return true; |
| 4141 | } |
| 4142 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 4143 | static void ironlake_enable_drps(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4144 | { |
| 4145 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4146 | u32 rgvmodectl = I915_READ(MEMMODECTL); |
| 4147 | u8 fmax, fmin, fstart, vstart; |
| 4148 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4149 | spin_lock_irq(&mchdev_lock); |
| 4150 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4151 | /* Enable temp reporting */ |
| 4152 | I915_WRITE16(PMMISC, I915_READ(PMMISC) | MCPPCE_EN); |
| 4153 | I915_WRITE16(TSC1, I915_READ(TSC1) | TSE); |
| 4154 | |
| 4155 | /* 100ms RC evaluation intervals */ |
| 4156 | I915_WRITE(RCUPEI, 100000); |
| 4157 | I915_WRITE(RCDNEI, 100000); |
| 4158 | |
| 4159 | /* Set max/min thresholds to 90ms and 80ms respectively */ |
| 4160 | I915_WRITE(RCBMAXAVG, 90000); |
| 4161 | I915_WRITE(RCBMINAVG, 80000); |
| 4162 | |
| 4163 | I915_WRITE(MEMIHYST, 1); |
| 4164 | |
| 4165 | /* Set up min, max, and cur for interrupt handling */ |
| 4166 | fmax = (rgvmodectl & MEMMODE_FMAX_MASK) >> MEMMODE_FMAX_SHIFT; |
| 4167 | fmin = (rgvmodectl & MEMMODE_FMIN_MASK); |
| 4168 | fstart = (rgvmodectl & MEMMODE_FSTART_MASK) >> |
| 4169 | MEMMODE_FSTART_SHIFT; |
| 4170 | |
| 4171 | vstart = (I915_READ(PXVFREQ_BASE + (fstart * 4)) & PXVFREQ_PX_MASK) >> |
| 4172 | PXVFREQ_PX_SHIFT; |
| 4173 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 4174 | dev_priv->ips.fmax = fmax; /* IPS callback will increase this */ |
| 4175 | dev_priv->ips.fstart = fstart; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4176 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 4177 | dev_priv->ips.max_delay = fstart; |
| 4178 | dev_priv->ips.min_delay = fmin; |
| 4179 | dev_priv->ips.cur_delay = fstart; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4180 | |
| 4181 | DRM_DEBUG_DRIVER("fmax: %d, fmin: %d, fstart: %d\n", |
| 4182 | fmax, fmin, fstart); |
| 4183 | |
| 4184 | I915_WRITE(MEMINTREN, MEMINT_CX_SUPR_EN | MEMINT_EVAL_CHG_EN); |
| 4185 | |
| 4186 | /* |
| 4187 | * Interrupts will be enabled in ironlake_irq_postinstall |
| 4188 | */ |
| 4189 | |
| 4190 | I915_WRITE(VIDSTART, vstart); |
| 4191 | POSTING_READ(VIDSTART); |
| 4192 | |
| 4193 | rgvmodectl |= MEMMODE_SWMODE_EN; |
| 4194 | I915_WRITE(MEMMODECTL, rgvmodectl); |
| 4195 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4196 | if (wait_for_atomic((I915_READ(MEMSWCTL) & MEMCTL_CMD_STS) == 0, 10)) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4197 | DRM_ERROR("stuck trying to change perf mode\n"); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4198 | mdelay(1); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4199 | |
| 4200 | ironlake_set_drps(dev, fstart); |
| 4201 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 4202 | dev_priv->ips.last_count1 = I915_READ(0x112e4) + I915_READ(0x112e8) + |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4203 | I915_READ(0x112e0); |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 4204 | dev_priv->ips.last_time1 = jiffies_to_msecs(jiffies); |
| 4205 | dev_priv->ips.last_count2 = I915_READ(0x112f4); |
Thomas Gleixner | 5ed0bdf | 2014-07-16 21:05:06 +0000 | [diff] [blame] | 4206 | dev_priv->ips.last_time2 = ktime_get_raw_ns(); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4207 | |
| 4208 | spin_unlock_irq(&mchdev_lock); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4209 | } |
| 4210 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 4211 | static void ironlake_disable_drps(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4212 | { |
| 4213 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4214 | u16 rgvswctl; |
| 4215 | |
| 4216 | spin_lock_irq(&mchdev_lock); |
| 4217 | |
| 4218 | rgvswctl = I915_READ16(MEMSWCTL); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4219 | |
| 4220 | /* Ack interrupts, disable EFC interrupt */ |
| 4221 | I915_WRITE(MEMINTREN, I915_READ(MEMINTREN) & ~MEMINT_EVAL_CHG_EN); |
| 4222 | I915_WRITE(MEMINTRSTS, MEMINT_EVAL_CHG); |
| 4223 | I915_WRITE(DEIER, I915_READ(DEIER) & ~DE_PCU_EVENT); |
| 4224 | I915_WRITE(DEIIR, DE_PCU_EVENT); |
| 4225 | I915_WRITE(DEIMR, I915_READ(DEIMR) | DE_PCU_EVENT); |
| 4226 | |
| 4227 | /* Go back to the starting frequency */ |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 4228 | ironlake_set_drps(dev, dev_priv->ips.fstart); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4229 | mdelay(1); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4230 | rgvswctl |= MEMCTL_CMD_STS; |
| 4231 | I915_WRITE(MEMSWCTL, rgvswctl); |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4232 | mdelay(1); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4233 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 4234 | spin_unlock_irq(&mchdev_lock); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4235 | } |
| 4236 | |
Daniel Vetter | acbe947 | 2012-07-26 11:50:05 +0200 | [diff] [blame] | 4237 | /* There's a funny hw issue where the hw returns all 0 when reading from |
| 4238 | * GEN6_RP_INTERRUPT_LIMITS. Hence we always need to compute the desired value |
| 4239 | * ourselves, instead of doing a rmw cycle (which might result in us clearing |
| 4240 | * all limits and the gpu stuck at whatever frequency it is at atm). |
| 4241 | */ |
Chris Wilson | 6917c7b | 2013-11-06 13:56:26 -0200 | [diff] [blame] | 4242 | 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] | 4243 | { |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4244 | u32 limits; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4245 | |
Daniel Vetter | 20b46e5 | 2012-07-26 11:16:14 +0200 | [diff] [blame] | 4246 | /* Only set the down limit when we've reached the lowest level to avoid |
| 4247 | * getting more interrupts, otherwise leave this clear. This prevents a |
| 4248 | * race in the hw when coming out of rc6: There's a tiny window where |
| 4249 | * the hw runs at the minimal clock before selecting the desired |
| 4250 | * frequency, if the down threshold expires in that window we will not |
| 4251 | * receive a down interrupt. */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4252 | limits = dev_priv->rps.max_freq_softlimit << 24; |
| 4253 | if (val <= dev_priv->rps.min_freq_softlimit) |
| 4254 | limits |= dev_priv->rps.min_freq_softlimit << 16; |
Daniel Vetter | 20b46e5 | 2012-07-26 11:16:14 +0200 | [diff] [blame] | 4255 | |
| 4256 | return limits; |
| 4257 | } |
| 4258 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4259 | static void gen6_set_rps_thresholds(struct drm_i915_private *dev_priv, u8 val) |
| 4260 | { |
| 4261 | int new_power; |
| 4262 | |
| 4263 | new_power = dev_priv->rps.power; |
| 4264 | switch (dev_priv->rps.power) { |
| 4265 | case LOW_POWER: |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4266 | 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] | 4267 | new_power = BETWEEN; |
| 4268 | break; |
| 4269 | |
| 4270 | case BETWEEN: |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4271 | 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] | 4272 | new_power = LOW_POWER; |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4273 | 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] | 4274 | new_power = HIGH_POWER; |
| 4275 | break; |
| 4276 | |
| 4277 | case HIGH_POWER: |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4278 | 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] | 4279 | new_power = BETWEEN; |
| 4280 | break; |
| 4281 | } |
| 4282 | /* Max/min bins are special */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4283 | if (val == dev_priv->rps.min_freq_softlimit) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4284 | new_power = LOW_POWER; |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4285 | if (val == dev_priv->rps.max_freq_softlimit) |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4286 | new_power = HIGH_POWER; |
| 4287 | if (new_power == dev_priv->rps.power) |
| 4288 | return; |
| 4289 | |
| 4290 | /* Note the units here are not exactly 1us, but 1280ns. */ |
| 4291 | switch (new_power) { |
| 4292 | case LOW_POWER: |
| 4293 | /* Upclock if more than 95% busy over 16ms */ |
| 4294 | I915_WRITE(GEN6_RP_UP_EI, 12500); |
| 4295 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 11800); |
| 4296 | |
| 4297 | /* Downclock if less than 85% busy over 32ms */ |
| 4298 | I915_WRITE(GEN6_RP_DOWN_EI, 25000); |
| 4299 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 21250); |
| 4300 | |
| 4301 | I915_WRITE(GEN6_RP_CONTROL, |
| 4302 | GEN6_RP_MEDIA_TURBO | |
| 4303 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 4304 | GEN6_RP_MEDIA_IS_GFX | |
| 4305 | GEN6_RP_ENABLE | |
| 4306 | GEN6_RP_UP_BUSY_AVG | |
| 4307 | GEN6_RP_DOWN_IDLE_AVG); |
| 4308 | break; |
| 4309 | |
| 4310 | case BETWEEN: |
| 4311 | /* Upclock if more than 90% busy over 13ms */ |
| 4312 | I915_WRITE(GEN6_RP_UP_EI, 10250); |
| 4313 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 9225); |
| 4314 | |
| 4315 | /* Downclock if less than 75% busy over 32ms */ |
| 4316 | I915_WRITE(GEN6_RP_DOWN_EI, 25000); |
| 4317 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 18750); |
| 4318 | |
| 4319 | I915_WRITE(GEN6_RP_CONTROL, |
| 4320 | GEN6_RP_MEDIA_TURBO | |
| 4321 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 4322 | GEN6_RP_MEDIA_IS_GFX | |
| 4323 | GEN6_RP_ENABLE | |
| 4324 | GEN6_RP_UP_BUSY_AVG | |
| 4325 | GEN6_RP_DOWN_IDLE_AVG); |
| 4326 | break; |
| 4327 | |
| 4328 | case HIGH_POWER: |
| 4329 | /* Upclock if more than 85% busy over 10ms */ |
| 4330 | I915_WRITE(GEN6_RP_UP_EI, 8000); |
| 4331 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 6800); |
| 4332 | |
| 4333 | /* Downclock if less than 60% busy over 32ms */ |
| 4334 | I915_WRITE(GEN6_RP_DOWN_EI, 25000); |
| 4335 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 15000); |
| 4336 | |
| 4337 | I915_WRITE(GEN6_RP_CONTROL, |
| 4338 | GEN6_RP_MEDIA_TURBO | |
| 4339 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 4340 | GEN6_RP_MEDIA_IS_GFX | |
| 4341 | GEN6_RP_ENABLE | |
| 4342 | GEN6_RP_UP_BUSY_AVG | |
| 4343 | GEN6_RP_DOWN_IDLE_AVG); |
| 4344 | break; |
| 4345 | } |
| 4346 | |
| 4347 | dev_priv->rps.power = new_power; |
| 4348 | dev_priv->rps.last_adj = 0; |
| 4349 | } |
| 4350 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 4351 | static u32 gen6_rps_pm_mask(struct drm_i915_private *dev_priv, u8 val) |
| 4352 | { |
| 4353 | u32 mask = 0; |
| 4354 | |
| 4355 | if (val > dev_priv->rps.min_freq_softlimit) |
| 4356 | mask |= GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_DOWN_TIMEOUT; |
| 4357 | if (val < dev_priv->rps.max_freq_softlimit) |
| 4358 | mask |= GEN6_PM_RP_UP_THRESHOLD; |
| 4359 | |
Chris Wilson | 7b3c29f | 2014-07-10 20:31:19 +0100 | [diff] [blame] | 4360 | mask |= dev_priv->pm_rps_events & (GEN6_PM_RP_DOWN_EI_EXPIRED | GEN6_PM_RP_UP_EI_EXPIRED); |
| 4361 | mask &= dev_priv->pm_rps_events; |
| 4362 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 4363 | /* IVB and SNB hard hangs on looping batchbuffer |
| 4364 | * if GEN6_PM_UP_EI_EXPIRED is masked. |
| 4365 | */ |
| 4366 | if (INTEL_INFO(dev_priv->dev)->gen <= 7 && !IS_HASWELL(dev_priv->dev)) |
| 4367 | mask |= GEN6_PM_RP_UP_EI_EXPIRED; |
| 4368 | |
Deepak S | baccd45 | 2014-05-15 20:58:09 +0300 | [diff] [blame] | 4369 | if (IS_GEN8(dev_priv->dev)) |
| 4370 | mask |= GEN8_PMINTR_REDIRECT_TO_NON_DISP; |
| 4371 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 4372 | return ~mask; |
| 4373 | } |
| 4374 | |
Jeff McGee | b8a5ff8 | 2014-02-04 11:37:01 -0600 | [diff] [blame] | 4375 | /* gen6_set_rps is called to update the frequency request, but should also be |
| 4376 | * called when the range (min_delay and max_delay) is modified so that we can |
| 4377 | * update the GEN6_RP_INTERRUPT_LIMITS register accordingly. */ |
Daniel Vetter | 20b46e5 | 2012-07-26 11:16:14 +0200 | [diff] [blame] | 4378 | void gen6_set_rps(struct drm_device *dev, u8 val) |
| 4379 | { |
| 4380 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4381 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4382 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4383 | WARN_ON(val > dev_priv->rps.max_freq_softlimit); |
| 4384 | WARN_ON(val < dev_priv->rps.min_freq_softlimit); |
Daniel Vetter | 004777c | 2012-08-09 15:07:01 +0200 | [diff] [blame] | 4385 | |
Chris Wilson | eb64cad | 2014-03-27 08:24:20 +0000 | [diff] [blame] | 4386 | /* min/max delay may still have been modified so be sure to |
| 4387 | * write the limits value. |
| 4388 | */ |
| 4389 | if (val != dev_priv->rps.cur_freq) { |
| 4390 | gen6_set_rps_thresholds(dev_priv, val); |
Jeff McGee | b8a5ff8 | 2014-02-04 11:37:01 -0600 | [diff] [blame] | 4391 | |
Ben Widawsky | 50e6a2a | 2014-03-31 17:16:43 -0700 | [diff] [blame] | 4392 | if (IS_HASWELL(dev) || IS_BROADWELL(dev)) |
Chris Wilson | eb64cad | 2014-03-27 08:24:20 +0000 | [diff] [blame] | 4393 | I915_WRITE(GEN6_RPNSWREQ, |
| 4394 | HSW_FREQUENCY(val)); |
| 4395 | else |
| 4396 | I915_WRITE(GEN6_RPNSWREQ, |
| 4397 | GEN6_FREQUENCY(val) | |
| 4398 | GEN6_OFFSET(0) | |
| 4399 | GEN6_AGGRESSIVE_TURBO); |
Jeff McGee | b8a5ff8 | 2014-02-04 11:37:01 -0600 | [diff] [blame] | 4400 | } |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4401 | |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4402 | /* Make sure we continue to get interrupts |
| 4403 | * until we hit the minimum or maximum frequencies. |
| 4404 | */ |
Chris Wilson | eb64cad | 2014-03-27 08:24:20 +0000 | [diff] [blame] | 4405 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, gen6_rps_limits(dev_priv, val)); |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 4406 | I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val)); |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4407 | |
Ben Widawsky | d5570a7 | 2012-09-07 19:43:41 -0700 | [diff] [blame] | 4408 | POSTING_READ(GEN6_RPNSWREQ); |
| 4409 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4410 | dev_priv->rps.cur_freq = val; |
Daniel Vetter | be2cde9 | 2012-08-30 13:26:48 +0200 | [diff] [blame] | 4411 | trace_intel_gpu_freq_change(val * 50); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4412 | } |
| 4413 | |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4414 | /* vlv_set_rps_idle: Set the frequency to Rpn if Gfx clocks are down |
| 4415 | * |
| 4416 | * * If Gfx is Idle, then |
| 4417 | * 1. Mask Turbo interrupts |
| 4418 | * 2. Bring up Gfx clock |
| 4419 | * 3. Change the freq to Rpn and wait till P-Unit updates freq |
| 4420 | * 4. Clear the Force GFX CLK ON bit so that Gfx can down |
| 4421 | * 5. Unmask Turbo interrupts |
| 4422 | */ |
| 4423 | static void vlv_set_rps_idle(struct drm_i915_private *dev_priv) |
| 4424 | { |
Deepak S | 5549d25 | 2014-06-28 11:26:11 +0530 | [diff] [blame] | 4425 | struct drm_device *dev = dev_priv->dev; |
| 4426 | |
| 4427 | /* Latest VLV doesn't need to force the gfx clock */ |
| 4428 | if (dev->pdev->revision >= 0xd) { |
| 4429 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
| 4430 | return; |
| 4431 | } |
| 4432 | |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4433 | /* |
| 4434 | * When we are idle. Drop to min voltage state. |
| 4435 | */ |
| 4436 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4437 | if (dev_priv->rps.cur_freq <= dev_priv->rps.min_freq_softlimit) |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4438 | return; |
| 4439 | |
| 4440 | /* Mask turbo interrupt so that they will not come in between */ |
| 4441 | I915_WRITE(GEN6_PMINTRMSK, 0xffffffff); |
| 4442 | |
Imre Deak | 650ad97 | 2014-04-18 16:35:02 +0300 | [diff] [blame] | 4443 | vlv_force_gfx_clock(dev_priv, true); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4444 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4445 | dev_priv->rps.cur_freq = dev_priv->rps.min_freq_softlimit; |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4446 | |
| 4447 | vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4448 | dev_priv->rps.min_freq_softlimit); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4449 | |
| 4450 | if (wait_for(((vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS)) |
| 4451 | & GENFREQSTATUS) == 0, 5)) |
| 4452 | DRM_ERROR("timed out waiting for Punit\n"); |
| 4453 | |
Imre Deak | 650ad97 | 2014-04-18 16:35:02 +0300 | [diff] [blame] | 4454 | vlv_force_gfx_clock(dev_priv, false); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4455 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 4456 | I915_WRITE(GEN6_PMINTRMSK, |
| 4457 | gen6_rps_pm_mask(dev_priv, dev_priv->rps.cur_freq)); |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4458 | } |
| 4459 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4460 | void gen6_rps_idle(struct drm_i915_private *dev_priv) |
| 4461 | { |
Damien Lespiau | 691bb71 | 2013-12-12 14:36:36 +0000 | [diff] [blame] | 4462 | struct drm_device *dev = dev_priv->dev; |
| 4463 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4464 | mutex_lock(&dev_priv->rps.hw_lock); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 4465 | if (dev_priv->rps.enabled) { |
Deepak S | 3463811 | 2014-06-28 11:26:26 +0530 | [diff] [blame] | 4466 | if (IS_CHERRYVIEW(dev)) |
| 4467 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
| 4468 | else if (IS_VALLEYVIEW(dev)) |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 4469 | vlv_set_rps_idle(dev_priv); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4470 | else |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4471 | gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 4472 | dev_priv->rps.last_adj = 0; |
| 4473 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4474 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4475 | } |
| 4476 | |
| 4477 | void gen6_rps_boost(struct drm_i915_private *dev_priv) |
| 4478 | { |
Damien Lespiau | 691bb71 | 2013-12-12 14:36:36 +0000 | [diff] [blame] | 4479 | struct drm_device *dev = dev_priv->dev; |
| 4480 | |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4481 | mutex_lock(&dev_priv->rps.hw_lock); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 4482 | if (dev_priv->rps.enabled) { |
Damien Lespiau | 691bb71 | 2013-12-12 14:36:36 +0000 | [diff] [blame] | 4483 | if (IS_VALLEYVIEW(dev)) |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4484 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.max_freq_softlimit); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4485 | else |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4486 | gen6_set_rps(dev_priv->dev, dev_priv->rps.max_freq_softlimit); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 4487 | dev_priv->rps.last_adj = 0; |
| 4488 | } |
Chris Wilson | b29c19b | 2013-09-25 17:34:56 +0100 | [diff] [blame] | 4489 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4490 | } |
| 4491 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4492 | void valleyview_set_rps(struct drm_device *dev, u8 val) |
| 4493 | { |
| 4494 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 7a67092 | 2013-06-25 19:21:06 +0300 | [diff] [blame] | 4495 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4496 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4497 | WARN_ON(val > dev_priv->rps.max_freq_softlimit); |
| 4498 | WARN_ON(val < dev_priv->rps.min_freq_softlimit); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4499 | |
Ville Syrjälä | 1c14762 | 2014-08-18 14:42:43 +0300 | [diff] [blame] | 4500 | if (WARN_ONCE(IS_CHERRYVIEW(dev) && (val & 1), |
| 4501 | "Odd GPU freq value\n")) |
| 4502 | val &= ~1; |
| 4503 | |
Ville Syrjälä | 6795686 | 2014-09-02 15:12:17 +0300 | [diff] [blame] | 4504 | if (val != dev_priv->rps.cur_freq) { |
| 4505 | DRM_DEBUG_DRIVER("GPU freq request from %d MHz (%u) to %d MHz (%u)\n", |
| 4506 | vlv_gpu_freq(dev_priv, dev_priv->rps.cur_freq), |
| 4507 | dev_priv->rps.cur_freq, |
| 4508 | vlv_gpu_freq(dev_priv, val), val); |
| 4509 | |
Chris Wilson | 2876ce7 | 2014-03-28 08:03:34 +0000 | [diff] [blame] | 4510 | vlv_punit_write(dev_priv, PUNIT_REG_GPU_FREQ_REQ, val); |
Ville Syrjälä | 6795686 | 2014-09-02 15:12:17 +0300 | [diff] [blame] | 4511 | } |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4512 | |
Imre Deak | 09c87db | 2014-04-03 20:02:42 +0300 | [diff] [blame] | 4513 | I915_WRITE(GEN6_PMINTRMSK, gen6_rps_pm_mask(dev_priv, val)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4514 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4515 | dev_priv->rps.cur_freq = val; |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 4516 | trace_intel_gpu_freq_change(vlv_gpu_freq(dev_priv, val)); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 4517 | } |
| 4518 | |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 4519 | static void gen8_disable_rps_interrupts(struct drm_device *dev) |
| 4520 | { |
| 4521 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4522 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4523 | I915_WRITE(GEN6_PMINTRMSK, ~GEN8_PMINTR_REDIRECT_TO_NON_DISP); |
| 4524 | I915_WRITE(GEN8_GT_IER(2), I915_READ(GEN8_GT_IER(2)) & |
| 4525 | ~dev_priv->pm_rps_events); |
| 4526 | /* Complete PM interrupt masking here doesn't race with the rps work |
| 4527 | * item again unmasking PM interrupts because that is using a different |
| 4528 | * register (GEN8_GT_IMR(2)) to mask PM interrupts. The only risk is in |
| 4529 | * leaving stale bits in GEN8_GT_IIR(2) and GEN8_GT_IMR(2) which |
| 4530 | * gen8_enable_rps will clean up. */ |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 4531 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4532 | spin_lock_irq(&dev_priv->irq_lock); |
| 4533 | dev_priv->rps.pm_iir = 0; |
| 4534 | spin_unlock_irq(&dev_priv->irq_lock); |
| 4535 | |
| 4536 | I915_WRITE(GEN8_GT_IIR(2), dev_priv->pm_rps_events); |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 4537 | } |
| 4538 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4539 | static void gen6_disable_rps_interrupts(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4540 | { |
| 4541 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4542 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4543 | I915_WRITE(GEN6_PMINTRMSK, 0xffffffff); |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 4544 | I915_WRITE(GEN6_PMIER, I915_READ(GEN6_PMIER) & |
| 4545 | ~dev_priv->pm_rps_events); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4546 | /* Complete PM interrupt masking here doesn't race with the rps work |
| 4547 | * item again unmasking PM interrupts because that is using a different |
| 4548 | * register (PMIMR) to mask PM interrupts. The only risk is in leaving |
| 4549 | * stale bits in PMIIR and PMIMR which gen6_enable_rps will clean up. */ |
| 4550 | |
Daniel Vetter | 59cdb63 | 2013-07-04 23:35:28 +0200 | [diff] [blame] | 4551 | spin_lock_irq(&dev_priv->irq_lock); |
Daniel Vetter | c6a828d | 2012-08-08 23:35:35 +0200 | [diff] [blame] | 4552 | dev_priv->rps.pm_iir = 0; |
Daniel Vetter | 59cdb63 | 2013-07-04 23:35:28 +0200 | [diff] [blame] | 4553 | spin_unlock_irq(&dev_priv->irq_lock); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4554 | |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 4555 | I915_WRITE(GEN6_PMIIR, dev_priv->pm_rps_events); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4556 | } |
| 4557 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4558 | static void gen6_disable_rps(struct drm_device *dev) |
| 4559 | { |
| 4560 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4561 | |
| 4562 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4563 | I915_WRITE(GEN6_RPNSWREQ, 1 << 31); |
| 4564 | |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 4565 | if (IS_BROADWELL(dev)) |
| 4566 | gen8_disable_rps_interrupts(dev); |
| 4567 | else |
| 4568 | gen6_disable_rps_interrupts(dev); |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4569 | } |
| 4570 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4571 | static void cherryview_disable_rps(struct drm_device *dev) |
| 4572 | { |
| 4573 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4574 | |
| 4575 | I915_WRITE(GEN6_RC_CONTROL, 0); |
Deepak S | 3497a56 | 2014-07-10 13:16:26 +0530 | [diff] [blame] | 4576 | |
| 4577 | gen8_disable_rps_interrupts(dev); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 4578 | } |
| 4579 | |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4580 | static void valleyview_disable_rps(struct drm_device *dev) |
| 4581 | { |
| 4582 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4583 | |
Deepak S | 98a2e5f | 2014-08-18 10:35:27 -0700 | [diff] [blame] | 4584 | /* we're doing forcewake before Disabling RC6, |
| 4585 | * This what the BIOS expects when going into suspend */ |
| 4586 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
| 4587 | |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4588 | I915_WRITE(GEN6_RC_CONTROL, 0); |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4589 | |
Deepak S | 98a2e5f | 2014-08-18 10:35:27 -0700 | [diff] [blame] | 4590 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
| 4591 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4592 | gen6_disable_rps_interrupts(dev); |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 4593 | } |
| 4594 | |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4595 | static void intel_print_rc6_info(struct drm_device *dev, u32 mode) |
| 4596 | { |
Imre Deak | 91ca689 | 2014-04-14 20:24:25 +0300 | [diff] [blame] | 4597 | if (IS_VALLEYVIEW(dev)) { |
| 4598 | if (mode & (GEN7_RC_CTL_TO_MODE | GEN6_RC_CTL_EI_MODE(1))) |
| 4599 | mode = GEN6_RC_CTL_RC6_ENABLE; |
| 4600 | else |
| 4601 | mode = 0; |
| 4602 | } |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 4603 | if (HAS_RC6p(dev)) |
| 4604 | DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s RC6p %s RC6pp %s\n", |
| 4605 | (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off", |
| 4606 | (mode & GEN6_RC_CTL_RC6p_ENABLE) ? "on" : "off", |
| 4607 | (mode & GEN6_RC_CTL_RC6pp_ENABLE) ? "on" : "off"); |
| 4608 | |
| 4609 | else |
| 4610 | DRM_DEBUG_KMS("Enabling RC6 states: RC6 %s\n", |
| 4611 | (mode & GEN6_RC_CTL_RC6_ENABLE) ? "on" : "off"); |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4612 | } |
| 4613 | |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4614 | 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] | 4615 | { |
Damien Lespiau | eb4926e | 2013-06-07 17:41:14 +0100 | [diff] [blame] | 4616 | /* No RC6 before Ironlake */ |
| 4617 | if (INTEL_INFO(dev)->gen < 5) |
| 4618 | return 0; |
| 4619 | |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4620 | /* RC6 is only on Ironlake mobile not on desktop */ |
| 4621 | if (INTEL_INFO(dev)->gen == 5 && !IS_IRONLAKE_M(dev)) |
| 4622 | return 0; |
| 4623 | |
Daniel Vetter | 456470e | 2012-08-08 23:35:40 +0200 | [diff] [blame] | 4624 | /* Respect the kernel parameter if it is set */ |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4625 | if (enable_rc6 >= 0) { |
| 4626 | int mask; |
| 4627 | |
Rodrigo Vivi | 58abf1d | 2014-10-07 07:06:50 -0700 | [diff] [blame] | 4628 | if (HAS_RC6p(dev)) |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4629 | mask = INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE | |
| 4630 | INTEL_RC6pp_ENABLE; |
| 4631 | else |
| 4632 | mask = INTEL_RC6_ENABLE; |
| 4633 | |
| 4634 | if ((enable_rc6 & mask) != enable_rc6) |
Daniel Vetter | 8dfd1f0 | 2014-08-04 11:15:56 +0200 | [diff] [blame] | 4635 | DRM_DEBUG_KMS("Adjusting RC6 mask to %d (requested %d, valid %d)\n", |
| 4636 | enable_rc6 & mask, enable_rc6, mask); |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4637 | |
| 4638 | return enable_rc6 & mask; |
| 4639 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4640 | |
Chris Wilson | 6567d74 | 2012-11-10 10:00:06 +0000 | [diff] [blame] | 4641 | /* Disable RC6 on Ironlake */ |
| 4642 | if (INTEL_INFO(dev)->gen == 5) |
| 4643 | return 0; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4644 | |
Ben Widawsky | 8bade1a | 2014-01-28 20:25:39 -0800 | [diff] [blame] | 4645 | if (IS_IVYBRIDGE(dev)) |
Ben Widawsky | cca84a1 | 2014-01-28 20:25:38 -0800 | [diff] [blame] | 4646 | return (INTEL_RC6_ENABLE | INTEL_RC6p_ENABLE); |
Ben Widawsky | 8bade1a | 2014-01-28 20:25:39 -0800 | [diff] [blame] | 4647 | |
| 4648 | return INTEL_RC6_ENABLE; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4649 | } |
| 4650 | |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 4651 | int intel_enable_rc6(const struct drm_device *dev) |
| 4652 | { |
| 4653 | return i915.enable_rc6; |
| 4654 | } |
| 4655 | |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 4656 | static void gen8_enable_rps_interrupts(struct drm_device *dev) |
| 4657 | { |
| 4658 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4659 | |
| 4660 | spin_lock_irq(&dev_priv->irq_lock); |
| 4661 | WARN_ON(dev_priv->rps.pm_iir); |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 4662 | gen8_enable_pm_irq(dev_priv, dev_priv->pm_rps_events); |
Ben Widawsky | 0961021 | 2014-05-15 20:58:08 +0300 | [diff] [blame] | 4663 | I915_WRITE(GEN8_GT_IIR(2), dev_priv->pm_rps_events); |
| 4664 | spin_unlock_irq(&dev_priv->irq_lock); |
| 4665 | } |
| 4666 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4667 | static void gen6_enable_rps_interrupts(struct drm_device *dev) |
| 4668 | { |
| 4669 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4670 | |
| 4671 | spin_lock_irq(&dev_priv->irq_lock); |
Daniel Vetter | a0b3335 | 2013-07-04 23:35:34 +0200 | [diff] [blame] | 4672 | WARN_ON(dev_priv->rps.pm_iir); |
Daniel Vetter | 480c803 | 2014-07-16 09:49:40 +0200 | [diff] [blame] | 4673 | gen6_enable_pm_irq(dev_priv, dev_priv->pm_rps_events); |
Deepak S | a6706b4 | 2014-03-15 20:23:22 +0530 | [diff] [blame] | 4674 | I915_WRITE(GEN6_PMIIR, dev_priv->pm_rps_events); |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4675 | spin_unlock_irq(&dev_priv->irq_lock); |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4676 | } |
| 4677 | |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4678 | static void parse_rp_state_cap(struct drm_i915_private *dev_priv, u32 rp_state_cap) |
| 4679 | { |
| 4680 | /* All of these values are in units of 50MHz */ |
| 4681 | dev_priv->rps.cur_freq = 0; |
| 4682 | /* static values from HW: RP0 < RPe < RP1 < RPn (min_freq) */ |
| 4683 | dev_priv->rps.rp1_freq = (rp_state_cap >> 8) & 0xff; |
| 4684 | dev_priv->rps.rp0_freq = (rp_state_cap >> 0) & 0xff; |
| 4685 | dev_priv->rps.min_freq = (rp_state_cap >> 16) & 0xff; |
| 4686 | /* XXX: only BYT has a special efficient freq */ |
| 4687 | dev_priv->rps.efficient_freq = dev_priv->rps.rp1_freq; |
| 4688 | /* hw_max = RP0 until we check for overclocking */ |
| 4689 | dev_priv->rps.max_freq = dev_priv->rps.rp0_freq; |
| 4690 | |
| 4691 | /* Preserve min/max settings in case of re-init */ |
| 4692 | if (dev_priv->rps.max_freq_softlimit == 0) |
| 4693 | dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq; |
| 4694 | |
| 4695 | if (dev_priv->rps.min_freq_softlimit == 0) |
| 4696 | dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq; |
| 4697 | } |
| 4698 | |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4699 | static void gen8_enable_rps(struct drm_device *dev) |
| 4700 | { |
| 4701 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 4702 | struct intel_engine_cs *ring; |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4703 | uint32_t rc6_mask = 0, rp_state_cap; |
| 4704 | int unused; |
| 4705 | |
| 4706 | /* 1a: Software RC state - RC0 */ |
| 4707 | I915_WRITE(GEN6_RC_STATE, 0); |
| 4708 | |
| 4709 | /* 1c & 1d: Get forcewake during program sequence. Although the driver |
| 4710 | * hasn't enabled a state yet where we need forcewake, BIOS may have.*/ |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4711 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4712 | |
| 4713 | /* 2a: Disable RC states. */ |
| 4714 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4715 | |
| 4716 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4717 | parse_rp_state_cap(dev_priv, rp_state_cap); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4718 | |
| 4719 | /* 2b: Program RC6 thresholds.*/ |
| 4720 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16); |
| 4721 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */ |
| 4722 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */ |
| 4723 | for_each_ring(ring, dev_priv, unused) |
| 4724 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 4725 | I915_WRITE(GEN6_RC_SLEEP, 0); |
Tom O'Rourke | 0d68b25 | 2014-04-09 11:44:06 -0700 | [diff] [blame] | 4726 | if (IS_BROADWELL(dev)) |
| 4727 | I915_WRITE(GEN6_RC6_THRESHOLD, 625); /* 800us/1.28 for TO */ |
| 4728 | else |
| 4729 | I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4730 | |
| 4731 | /* 3: Enable RC6 */ |
| 4732 | if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE) |
| 4733 | rc6_mask = GEN6_RC_CTL_RC6_ENABLE; |
Ben Widawsky | abbf9d2 | 2014-01-28 20:25:41 -0800 | [diff] [blame] | 4734 | intel_print_rc6_info(dev, rc6_mask); |
Tom O'Rourke | 0d68b25 | 2014-04-09 11:44:06 -0700 | [diff] [blame] | 4735 | if (IS_BROADWELL(dev)) |
| 4736 | I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE | |
| 4737 | GEN7_RC_CTL_TO_MODE | |
| 4738 | rc6_mask); |
| 4739 | else |
| 4740 | I915_WRITE(GEN6_RC_CONTROL, GEN6_RC_CTL_HW_ENABLE | |
| 4741 | GEN6_RC_CTL_EI_MODE(1) | |
| 4742 | rc6_mask); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4743 | |
| 4744 | /* 4 Program defaults and thresholds for RPS*/ |
Ben Widawsky | f9bdc58 | 2014-03-31 17:16:41 -0700 | [diff] [blame] | 4745 | I915_WRITE(GEN6_RPNSWREQ, |
| 4746 | HSW_FREQUENCY(dev_priv->rps.rp1_freq)); |
| 4747 | I915_WRITE(GEN6_RC_VIDEO_FREQ, |
| 4748 | HSW_FREQUENCY(dev_priv->rps.rp1_freq)); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4749 | /* NB: Docs say 1s, and 1000000 - which aren't equivalent */ |
| 4750 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 100000000 / 128); /* 1 second timeout */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4751 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4752 | /* Docs recommend 900MHz, and 300 MHz respectively */ |
| 4753 | I915_WRITE(GEN6_RP_INTERRUPT_LIMITS, |
| 4754 | dev_priv->rps.max_freq_softlimit << 24 | |
| 4755 | dev_priv->rps.min_freq_softlimit << 16); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4756 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4757 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 7600000 / 128); /* 76ms busyness per EI, 90% */ |
| 4758 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 31300000 / 128); /* 313ms busyness per EI, 70%*/ |
| 4759 | I915_WRITE(GEN6_RP_UP_EI, 66000); /* 84.48ms, XXX: random? */ |
| 4760 | I915_WRITE(GEN6_RP_DOWN_EI, 350000); /* 448ms, XXX: random? */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4761 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4762 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4763 | |
| 4764 | /* 5: Enable RPS */ |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4765 | I915_WRITE(GEN6_RP_CONTROL, |
| 4766 | GEN6_RP_MEDIA_TURBO | |
| 4767 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 4768 | GEN6_RP_MEDIA_IS_GFX | |
| 4769 | GEN6_RP_ENABLE | |
| 4770 | GEN6_RP_UP_BUSY_AVG | |
| 4771 | GEN6_RP_DOWN_IDLE_AVG); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4772 | |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4773 | /* 6: Ring frequency + overclocking (our driver does this later */ |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4774 | |
| 4775 | gen6_set_rps(dev, (I915_READ(GEN6_GT_PERF_STATUS) & 0xff00) >> 8); |
Daniel Vetter | 7526ed7 | 2014-09-29 15:07:19 +0200 | [diff] [blame] | 4776 | |
| 4777 | gen8_enable_rps_interrupts(dev); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4778 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4779 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 4780 | } |
| 4781 | |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4782 | static void gen6_enable_rps(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4783 | { |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4784 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 4785 | struct intel_engine_cs *ring; |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 4786 | u32 rp_state_cap; |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4787 | u32 rc6vids, pcu_mbox = 0, rc6_mask = 0; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4788 | u32 gtfifodbg; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4789 | int rc6_mode; |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4790 | int i, ret; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4791 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4792 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4793 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4794 | /* Here begins a magic sequence of register writes to enable |
| 4795 | * auto-downclocking. |
| 4796 | * |
| 4797 | * Perhaps there might be some value in exposing these to |
| 4798 | * userspace... |
| 4799 | */ |
| 4800 | I915_WRITE(GEN6_RC_STATE, 0); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4801 | |
| 4802 | /* Clear the DBG now so we don't confuse earlier errors */ |
| 4803 | if ((gtfifodbg = I915_READ(GTFIFODBG))) { |
| 4804 | DRM_ERROR("GT fifo had a previous error %x\n", gtfifodbg); |
| 4805 | I915_WRITE(GTFIFODBG, gtfifodbg); |
| 4806 | } |
| 4807 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4808 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4809 | |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4810 | rp_state_cap = I915_READ(GEN6_RP_STATE_CAP); |
Chris Wilson | 7b9e0ae | 2012-04-28 08:56:39 +0100 | [diff] [blame] | 4811 | |
Ben Widawsky | 3280e8b | 2014-03-31 17:16:42 -0700 | [diff] [blame] | 4812 | parse_rp_state_cap(dev_priv, rp_state_cap); |
Jeff McGee | dd0a1aa | 2014-02-04 11:32:31 -0600 | [diff] [blame] | 4813 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4814 | /* disable the counters and set deterministic thresholds */ |
| 4815 | I915_WRITE(GEN6_RC_CONTROL, 0); |
| 4816 | |
| 4817 | I915_WRITE(GEN6_RC1_WAKE_RATE_LIMIT, 1000 << 16); |
| 4818 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16 | 30); |
| 4819 | I915_WRITE(GEN6_RC6pp_WAKE_RATE_LIMIT, 30); |
| 4820 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); |
| 4821 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); |
| 4822 | |
Chris Wilson | b451951 | 2012-05-11 14:29:30 +0100 | [diff] [blame] | 4823 | for_each_ring(ring, dev_priv, i) |
| 4824 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4825 | |
| 4826 | I915_WRITE(GEN6_RC_SLEEP, 0); |
| 4827 | I915_WRITE(GEN6_RC1e_THRESHOLD, 1000); |
Daniel Vetter | 29c78f6 | 2013-11-16 16:04:26 +0100 | [diff] [blame] | 4828 | if (IS_IVYBRIDGE(dev)) |
Stéphane Marchesin | 351aa56 | 2013-08-13 11:55:17 -0700 | [diff] [blame] | 4829 | I915_WRITE(GEN6_RC6_THRESHOLD, 125000); |
| 4830 | else |
| 4831 | I915_WRITE(GEN6_RC6_THRESHOLD, 50000); |
Stéphane Marchesin | 0920a48 | 2013-01-29 19:41:59 -0800 | [diff] [blame] | 4832 | I915_WRITE(GEN6_RC6p_THRESHOLD, 150000); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4833 | I915_WRITE(GEN6_RC6pp_THRESHOLD, 64000); /* unused */ |
| 4834 | |
Eugeni Dodonov | 5a7dc92 | 2012-07-02 11:51:05 -0300 | [diff] [blame] | 4835 | /* Check if we are enabling RC6 */ |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4836 | rc6_mode = intel_enable_rc6(dev_priv->dev); |
| 4837 | if (rc6_mode & INTEL_RC6_ENABLE) |
| 4838 | rc6_mask |= GEN6_RC_CTL_RC6_ENABLE; |
| 4839 | |
Eugeni Dodonov | 5a7dc92 | 2012-07-02 11:51:05 -0300 | [diff] [blame] | 4840 | /* We don't use those on Haswell */ |
| 4841 | if (!IS_HASWELL(dev)) { |
| 4842 | if (rc6_mode & INTEL_RC6p_ENABLE) |
| 4843 | rc6_mask |= GEN6_RC_CTL_RC6p_ENABLE; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4844 | |
Eugeni Dodonov | 5a7dc92 | 2012-07-02 11:51:05 -0300 | [diff] [blame] | 4845 | if (rc6_mode & INTEL_RC6pp_ENABLE) |
| 4846 | rc6_mask |= GEN6_RC_CTL_RC6pp_ENABLE; |
| 4847 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4848 | |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 4849 | intel_print_rc6_info(dev, rc6_mask); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4850 | |
| 4851 | I915_WRITE(GEN6_RC_CONTROL, |
| 4852 | rc6_mask | |
| 4853 | GEN6_RC_CTL_EI_MODE(1) | |
| 4854 | GEN6_RC_CTL_HW_ENABLE); |
| 4855 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4856 | /* Power down if completely idle for over 50ms */ |
| 4857 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 50000); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4858 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4859 | |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4860 | 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] | 4861 | if (ret) |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4862 | DRM_DEBUG_DRIVER("Failed to set the min frequency\n"); |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4863 | |
| 4864 | ret = sandybridge_pcode_read(dev_priv, GEN6_READ_OC_PARAMS, &pcu_mbox); |
| 4865 | if (!ret && (pcu_mbox & (1<<31))) { /* OC supported */ |
| 4866 | DRM_DEBUG_DRIVER("Overclocking supported. Max: %dMHz, Overclock max: %dMHz\n", |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4867 | (dev_priv->rps.max_freq_softlimit & 0xff) * 50, |
Ben Widawsky | d060c16 | 2014-03-19 18:31:08 -0700 | [diff] [blame] | 4868 | (pcu_mbox & 0xff) * 50); |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4869 | dev_priv->rps.max_freq = pcu_mbox & 0xff; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4870 | } |
| 4871 | |
Chris Wilson | dd75fdc | 2013-09-25 17:34:57 +0100 | [diff] [blame] | 4872 | dev_priv->rps.power = HIGH_POWER; /* force a reset */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4873 | gen6_set_rps(dev_priv->dev, dev_priv->rps.min_freq_softlimit); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4874 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 4875 | gen6_enable_rps_interrupts(dev); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4876 | |
Ben Widawsky | 31643d5 | 2012-09-26 10:34:01 -0700 | [diff] [blame] | 4877 | rc6vids = 0; |
| 4878 | ret = sandybridge_pcode_read(dev_priv, GEN6_PCODE_READ_RC6VIDS, &rc6vids); |
| 4879 | if (IS_GEN6(dev) && ret) { |
| 4880 | DRM_DEBUG_DRIVER("Couldn't check for BIOS workaround\n"); |
| 4881 | } else if (IS_GEN6(dev) && (GEN6_DECODE_RC6_VID(rc6vids & 0xff) < 450)) { |
| 4882 | DRM_DEBUG_DRIVER("You should update your BIOS. Correcting minimum rc6 voltage (%dmV->%dmV)\n", |
| 4883 | GEN6_DECODE_RC6_VID(rc6vids & 0xff), 450); |
| 4884 | rc6vids &= 0xffff00; |
| 4885 | rc6vids |= GEN6_ENCODE_RC6_VID(450); |
| 4886 | ret = sandybridge_pcode_write(dev_priv, GEN6_PCODE_WRITE_RC6VIDS, rc6vids); |
| 4887 | if (ret) |
| 4888 | DRM_ERROR("Couldn't fix incorrect rc6 voltage\n"); |
| 4889 | } |
| 4890 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 4891 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4892 | } |
| 4893 | |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 4894 | static void __gen6_update_ring_freq(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4895 | { |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4896 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4897 | int min_freq = 15; |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4898 | unsigned int gpu_freq; |
| 4899 | unsigned int max_ia_freq, min_ring_freq; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4900 | int scaling_factor = 180; |
Ben Widawsky | eda7964 | 2013-10-07 17:15:48 -0300 | [diff] [blame] | 4901 | struct cpufreq_policy *policy; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4902 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 4903 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 4904 | |
Ben Widawsky | eda7964 | 2013-10-07 17:15:48 -0300 | [diff] [blame] | 4905 | policy = cpufreq_cpu_get(0); |
| 4906 | if (policy) { |
| 4907 | max_ia_freq = policy->cpuinfo.max_freq; |
| 4908 | cpufreq_cpu_put(policy); |
| 4909 | } else { |
| 4910 | /* |
| 4911 | * Default to measured freq if none found, PCU will ensure we |
| 4912 | * don't go over |
| 4913 | */ |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4914 | max_ia_freq = tsc_khz; |
Ben Widawsky | eda7964 | 2013-10-07 17:15:48 -0300 | [diff] [blame] | 4915 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4916 | |
| 4917 | /* Convert from kHz to MHz */ |
| 4918 | max_ia_freq /= 1000; |
| 4919 | |
Ben Widawsky | 153b4b95 | 2013-10-22 22:05:09 -0700 | [diff] [blame] | 4920 | min_ring_freq = I915_READ(DCLK) & 0xf; |
Ben Widawsky | f6aca45 | 2013-10-02 09:25:02 -0700 | [diff] [blame] | 4921 | /* convert DDR frequency from units of 266.6MHz to bandwidth */ |
| 4922 | min_ring_freq = mult_frac(min_ring_freq, 8, 3); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4923 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4924 | /* |
| 4925 | * For each potential GPU frequency, load a ring frequency we'd like |
| 4926 | * to use for memory access. We do this by specifying the IA frequency |
| 4927 | * the PCU should use as a reference to determine the ring frequency. |
| 4928 | */ |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4929 | for (gpu_freq = dev_priv->rps.max_freq_softlimit; gpu_freq >= dev_priv->rps.min_freq_softlimit; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4930 | gpu_freq--) { |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 4931 | int diff = dev_priv->rps.max_freq_softlimit - gpu_freq; |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4932 | unsigned int ia_freq = 0, ring_freq = 0; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4933 | |
Ben Widawsky | 46c764d | 2013-11-02 21:07:49 -0700 | [diff] [blame] | 4934 | if (INTEL_INFO(dev)->gen >= 8) { |
| 4935 | /* max(2 * GT, DDR). NB: GT is 50MHz units */ |
| 4936 | ring_freq = max(min_ring_freq, gpu_freq); |
| 4937 | } else if (IS_HASWELL(dev)) { |
Ben Widawsky | f6aca45 | 2013-10-02 09:25:02 -0700 | [diff] [blame] | 4938 | ring_freq = mult_frac(gpu_freq, 5, 4); |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4939 | ring_freq = max(min_ring_freq, ring_freq); |
| 4940 | /* leave ia_freq as the default, chosen by cpufreq */ |
| 4941 | } else { |
| 4942 | /* On older processors, there is no separate ring |
| 4943 | * clock domain, so in order to boost the bandwidth |
| 4944 | * of the ring, we need to upclock the CPU (ia_freq). |
| 4945 | * |
| 4946 | * For GPU frequencies less than 750MHz, |
| 4947 | * just use the lowest ring freq. |
| 4948 | */ |
| 4949 | if (gpu_freq < min_freq) |
| 4950 | ia_freq = 800; |
| 4951 | else |
| 4952 | ia_freq = max_ia_freq - ((diff * scaling_factor) / 2); |
| 4953 | ia_freq = DIV_ROUND_CLOSEST(ia_freq, 100); |
| 4954 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4955 | |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 4956 | sandybridge_pcode_write(dev_priv, |
| 4957 | GEN6_PCODE_WRITE_MIN_FREQ_TABLE, |
Chris Wilson | 3ebecd0 | 2013-04-12 19:10:13 +0100 | [diff] [blame] | 4958 | ia_freq << GEN6_PCODE_FREQ_IA_RATIO_SHIFT | |
| 4959 | ring_freq << GEN6_PCODE_FREQ_RING_RATIO_SHIFT | |
| 4960 | gpu_freq); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4961 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 4962 | } |
| 4963 | |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 4964 | void gen6_update_ring_freq(struct drm_device *dev) |
| 4965 | { |
| 4966 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 4967 | |
| 4968 | if (INTEL_INFO(dev)->gen < 6 || IS_VALLEYVIEW(dev)) |
| 4969 | return; |
| 4970 | |
| 4971 | mutex_lock(&dev_priv->rps.hw_lock); |
| 4972 | __gen6_update_ring_freq(dev); |
| 4973 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 4974 | } |
| 4975 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 4976 | static int cherryview_rps_max_freq(struct drm_i915_private *dev_priv) |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 4977 | { |
| 4978 | u32 val, rp0; |
| 4979 | |
| 4980 | val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG); |
| 4981 | rp0 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) & PUNIT_GPU_STATUS_MAX_FREQ_MASK; |
| 4982 | |
| 4983 | return rp0; |
| 4984 | } |
| 4985 | |
| 4986 | static int cherryview_rps_rpe_freq(struct drm_i915_private *dev_priv) |
| 4987 | { |
| 4988 | u32 val, rpe; |
| 4989 | |
| 4990 | val = vlv_punit_read(dev_priv, PUNIT_GPU_DUTYCYCLE_REG); |
| 4991 | rpe = (val >> PUNIT_GPU_DUTYCYCLE_RPE_FREQ_SHIFT) & PUNIT_GPU_DUTYCYCLE_RPE_FREQ_MASK; |
| 4992 | |
| 4993 | return rpe; |
| 4994 | } |
| 4995 | |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 4996 | static int cherryview_rps_guar_freq(struct drm_i915_private *dev_priv) |
| 4997 | { |
| 4998 | u32 val, rp1; |
| 4999 | |
| 5000 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 5001 | rp1 = (val >> PUNIT_GPU_STATUS_MAX_FREQ_SHIFT) & PUNIT_GPU_STATUS_MAX_FREQ_MASK; |
| 5002 | |
| 5003 | return rp1; |
| 5004 | } |
| 5005 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 5006 | static int cherryview_rps_min_freq(struct drm_i915_private *dev_priv) |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5007 | { |
| 5008 | u32 val, rpn; |
| 5009 | |
| 5010 | val = vlv_punit_read(dev_priv, PUNIT_GPU_STATUS_REG); |
| 5011 | rpn = (val >> PUNIT_GPU_STATIS_GFX_MIN_FREQ_SHIFT) & PUNIT_GPU_STATUS_GFX_MIN_FREQ_MASK; |
| 5012 | return rpn; |
| 5013 | } |
| 5014 | |
Deepak S | f8f2b00 | 2014-07-10 13:16:21 +0530 | [diff] [blame] | 5015 | static int valleyview_rps_guar_freq(struct drm_i915_private *dev_priv) |
| 5016 | { |
| 5017 | u32 val, rp1; |
| 5018 | |
| 5019 | val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE); |
| 5020 | |
| 5021 | rp1 = (val & FB_GFX_FGUARANTEED_FREQ_FUSE_MASK) >> FB_GFX_FGUARANTEED_FREQ_FUSE_SHIFT; |
| 5022 | |
| 5023 | return rp1; |
| 5024 | } |
| 5025 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 5026 | static int valleyview_rps_max_freq(struct drm_i915_private *dev_priv) |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5027 | { |
| 5028 | u32 val, rp0; |
| 5029 | |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 5030 | val = vlv_nc_read(dev_priv, IOSF_NC_FB_GFX_FREQ_FUSE); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5031 | |
| 5032 | rp0 = (val & FB_GFX_MAX_FREQ_FUSE_MASK) >> FB_GFX_MAX_FREQ_FUSE_SHIFT; |
| 5033 | /* Clamp to max */ |
| 5034 | rp0 = min_t(u32, rp0, 0xea); |
| 5035 | |
| 5036 | return rp0; |
| 5037 | } |
| 5038 | |
| 5039 | static int valleyview_rps_rpe_freq(struct drm_i915_private *dev_priv) |
| 5040 | { |
| 5041 | u32 val, rpe; |
| 5042 | |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 5043 | 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] | 5044 | 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] | 5045 | 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] | 5046 | rpe |= (val & FB_FMAX_VMIN_FREQ_HI_MASK) << 5; |
| 5047 | |
| 5048 | return rpe; |
| 5049 | } |
| 5050 | |
Ville Syrjälä | 03af204 | 2014-06-28 02:03:53 +0300 | [diff] [blame] | 5051 | static int valleyview_rps_min_freq(struct drm_i915_private *dev_priv) |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5052 | { |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 5053 | return vlv_punit_read(dev_priv, PUNIT_REG_GPU_LFM) & 0xff; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5054 | } |
| 5055 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 5056 | /* Check that the pctx buffer wasn't move under us. */ |
| 5057 | static void valleyview_check_pctx(struct drm_i915_private *dev_priv) |
| 5058 | { |
| 5059 | unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095; |
| 5060 | |
| 5061 | WARN_ON(pctx_addr != dev_priv->mm.stolen_base + |
| 5062 | dev_priv->vlv_pctx->stolen->start); |
| 5063 | } |
| 5064 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5065 | |
| 5066 | /* Check that the pcbr address is not empty. */ |
| 5067 | static void cherryview_check_pctx(struct drm_i915_private *dev_priv) |
| 5068 | { |
| 5069 | unsigned long pctx_addr = I915_READ(VLV_PCBR) & ~4095; |
| 5070 | |
| 5071 | WARN_ON((pctx_addr >> VLV_PCBR_ADDR_SHIFT) == 0); |
| 5072 | } |
| 5073 | |
| 5074 | static void cherryview_setup_pctx(struct drm_device *dev) |
| 5075 | { |
| 5076 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5077 | unsigned long pctx_paddr, paddr; |
| 5078 | struct i915_gtt *gtt = &dev_priv->gtt; |
| 5079 | u32 pcbr; |
| 5080 | int pctx_size = 32*1024; |
| 5081 | |
| 5082 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 5083 | |
| 5084 | pcbr = I915_READ(VLV_PCBR); |
| 5085 | if ((pcbr >> VLV_PCBR_ADDR_SHIFT) == 0) { |
| 5086 | paddr = (dev_priv->mm.stolen_base + |
| 5087 | (gtt->stolen_size - pctx_size)); |
| 5088 | |
| 5089 | pctx_paddr = (paddr & (~4095)); |
| 5090 | I915_WRITE(VLV_PCBR, pctx_paddr); |
| 5091 | } |
| 5092 | } |
| 5093 | |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 5094 | static void valleyview_setup_pctx(struct drm_device *dev) |
| 5095 | { |
| 5096 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5097 | struct drm_i915_gem_object *pctx; |
| 5098 | unsigned long pctx_paddr; |
| 5099 | u32 pcbr; |
| 5100 | int pctx_size = 24*1024; |
| 5101 | |
Imre Deak | 17b0c1f | 2014-02-11 21:39:06 +0200 | [diff] [blame] | 5102 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 5103 | |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 5104 | pcbr = I915_READ(VLV_PCBR); |
| 5105 | if (pcbr) { |
| 5106 | /* BIOS set it up already, grab the pre-alloc'd space */ |
| 5107 | int pcbr_offset; |
| 5108 | |
| 5109 | pcbr_offset = (pcbr & (~4095)) - dev_priv->mm.stolen_base; |
| 5110 | pctx = i915_gem_object_create_stolen_for_preallocated(dev_priv->dev, |
| 5111 | pcbr_offset, |
Daniel Vetter | 190d6cd | 2013-07-04 13:06:28 +0200 | [diff] [blame] | 5112 | I915_GTT_OFFSET_NONE, |
Jesse Barnes | c9cddff | 2013-05-08 10:45:13 -0700 | [diff] [blame] | 5113 | pctx_size); |
| 5114 | goto out; |
| 5115 | } |
| 5116 | |
| 5117 | /* |
| 5118 | * From the Gunit register HAS: |
| 5119 | * The Gfx driver is expected to program this register and ensure |
| 5120 | * proper allocation within Gfx stolen memory. For example, this |
| 5121 | * register should be programmed such than the PCBR range does not |
| 5122 | * overlap with other ranges, such as the frame buffer, protected |
| 5123 | * memory, or any other relevant ranges. |
| 5124 | */ |
| 5125 | pctx = i915_gem_object_create_stolen(dev, pctx_size); |
| 5126 | if (!pctx) { |
| 5127 | DRM_DEBUG("not enough stolen space for PCTX, disabling\n"); |
| 5128 | return; |
| 5129 | } |
| 5130 | |
| 5131 | pctx_paddr = dev_priv->mm.stolen_base + pctx->stolen->start; |
| 5132 | I915_WRITE(VLV_PCBR, pctx_paddr); |
| 5133 | |
| 5134 | out: |
| 5135 | dev_priv->vlv_pctx = pctx; |
| 5136 | } |
| 5137 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 5138 | static void valleyview_cleanup_pctx(struct drm_device *dev) |
| 5139 | { |
| 5140 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5141 | |
| 5142 | if (WARN_ON(!dev_priv->vlv_pctx)) |
| 5143 | return; |
| 5144 | |
| 5145 | drm_gem_object_unreference(&dev_priv->vlv_pctx->base); |
| 5146 | dev_priv->vlv_pctx = NULL; |
| 5147 | } |
| 5148 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5149 | static void valleyview_init_gt_powersave(struct drm_device *dev) |
| 5150 | { |
| 5151 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 5152 | u32 val; |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5153 | |
| 5154 | valleyview_setup_pctx(dev); |
| 5155 | |
| 5156 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5157 | |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 5158 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 5159 | switch ((val >> 6) & 3) { |
| 5160 | case 0: |
| 5161 | case 1: |
| 5162 | dev_priv->mem_freq = 800; |
| 5163 | break; |
| 5164 | case 2: |
| 5165 | dev_priv->mem_freq = 1066; |
| 5166 | break; |
| 5167 | case 3: |
| 5168 | dev_priv->mem_freq = 1333; |
| 5169 | break; |
| 5170 | } |
| 5171 | DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq); |
| 5172 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5173 | dev_priv->rps.max_freq = valleyview_rps_max_freq(dev_priv); |
| 5174 | dev_priv->rps.rp0_freq = dev_priv->rps.max_freq; |
| 5175 | DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n", |
| 5176 | vlv_gpu_freq(dev_priv, dev_priv->rps.max_freq), |
| 5177 | dev_priv->rps.max_freq); |
| 5178 | |
| 5179 | dev_priv->rps.efficient_freq = valleyview_rps_rpe_freq(dev_priv); |
| 5180 | DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n", |
| 5181 | vlv_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
| 5182 | dev_priv->rps.efficient_freq); |
| 5183 | |
Deepak S | f8f2b00 | 2014-07-10 13:16:21 +0530 | [diff] [blame] | 5184 | dev_priv->rps.rp1_freq = valleyview_rps_guar_freq(dev_priv); |
| 5185 | DRM_DEBUG_DRIVER("RP1(Guar Freq) GPU freq: %d MHz (%u)\n", |
| 5186 | vlv_gpu_freq(dev_priv, dev_priv->rps.rp1_freq), |
| 5187 | dev_priv->rps.rp1_freq); |
| 5188 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5189 | dev_priv->rps.min_freq = valleyview_rps_min_freq(dev_priv); |
| 5190 | DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n", |
| 5191 | vlv_gpu_freq(dev_priv, dev_priv->rps.min_freq), |
| 5192 | dev_priv->rps.min_freq); |
| 5193 | |
| 5194 | /* Preserve min/max settings in case of re-init */ |
| 5195 | if (dev_priv->rps.max_freq_softlimit == 0) |
| 5196 | dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq; |
| 5197 | |
| 5198 | if (dev_priv->rps.min_freq_softlimit == 0) |
| 5199 | dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq; |
| 5200 | |
| 5201 | mutex_unlock(&dev_priv->rps.hw_lock); |
| 5202 | } |
| 5203 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5204 | static void cherryview_init_gt_powersave(struct drm_device *dev) |
| 5205 | { |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5206 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 5207 | u32 val; |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5208 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5209 | cherryview_setup_pctx(dev); |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5210 | |
| 5211 | mutex_lock(&dev_priv->rps.hw_lock); |
| 5212 | |
Ville Syrjälä | 2bb25c1 | 2014-08-18 14:42:44 +0300 | [diff] [blame] | 5213 | val = vlv_punit_read(dev_priv, CCK_FUSE_REG); |
| 5214 | switch ((val >> 2) & 0x7) { |
| 5215 | case 0: |
| 5216 | case 1: |
| 5217 | dev_priv->rps.cz_freq = 200; |
| 5218 | dev_priv->mem_freq = 1600; |
| 5219 | break; |
| 5220 | case 2: |
| 5221 | dev_priv->rps.cz_freq = 267; |
| 5222 | dev_priv->mem_freq = 1600; |
| 5223 | break; |
| 5224 | case 3: |
| 5225 | dev_priv->rps.cz_freq = 333; |
| 5226 | dev_priv->mem_freq = 2000; |
| 5227 | break; |
| 5228 | case 4: |
| 5229 | dev_priv->rps.cz_freq = 320; |
| 5230 | dev_priv->mem_freq = 1600; |
| 5231 | break; |
| 5232 | case 5: |
| 5233 | dev_priv->rps.cz_freq = 400; |
| 5234 | dev_priv->mem_freq = 1600; |
| 5235 | break; |
| 5236 | } |
| 5237 | DRM_DEBUG_DRIVER("DDR speed: %d MHz", dev_priv->mem_freq); |
| 5238 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5239 | dev_priv->rps.max_freq = cherryview_rps_max_freq(dev_priv); |
| 5240 | dev_priv->rps.rp0_freq = dev_priv->rps.max_freq; |
| 5241 | DRM_DEBUG_DRIVER("max GPU freq: %d MHz (%u)\n", |
| 5242 | vlv_gpu_freq(dev_priv, dev_priv->rps.max_freq), |
| 5243 | dev_priv->rps.max_freq); |
| 5244 | |
| 5245 | dev_priv->rps.efficient_freq = cherryview_rps_rpe_freq(dev_priv); |
| 5246 | DRM_DEBUG_DRIVER("RPe GPU freq: %d MHz (%u)\n", |
| 5247 | vlv_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
| 5248 | dev_priv->rps.efficient_freq); |
| 5249 | |
Deepak S | 7707df4 | 2014-07-12 18:46:14 +0530 | [diff] [blame] | 5250 | dev_priv->rps.rp1_freq = cherryview_rps_guar_freq(dev_priv); |
| 5251 | DRM_DEBUG_DRIVER("RP1(Guar) GPU freq: %d MHz (%u)\n", |
| 5252 | vlv_gpu_freq(dev_priv, dev_priv->rps.rp1_freq), |
| 5253 | dev_priv->rps.rp1_freq); |
| 5254 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5255 | dev_priv->rps.min_freq = cherryview_rps_min_freq(dev_priv); |
| 5256 | DRM_DEBUG_DRIVER("min GPU freq: %d MHz (%u)\n", |
| 5257 | vlv_gpu_freq(dev_priv, dev_priv->rps.min_freq), |
| 5258 | dev_priv->rps.min_freq); |
| 5259 | |
Ville Syrjälä | 1c14762 | 2014-08-18 14:42:43 +0300 | [diff] [blame] | 5260 | WARN_ONCE((dev_priv->rps.max_freq | |
| 5261 | dev_priv->rps.efficient_freq | |
| 5262 | dev_priv->rps.rp1_freq | |
| 5263 | dev_priv->rps.min_freq) & 1, |
| 5264 | "Odd GPU freq values\n"); |
| 5265 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5266 | /* Preserve min/max settings in case of re-init */ |
| 5267 | if (dev_priv->rps.max_freq_softlimit == 0) |
| 5268 | dev_priv->rps.max_freq_softlimit = dev_priv->rps.max_freq; |
| 5269 | |
| 5270 | if (dev_priv->rps.min_freq_softlimit == 0) |
| 5271 | dev_priv->rps.min_freq_softlimit = dev_priv->rps.min_freq; |
| 5272 | |
| 5273 | mutex_unlock(&dev_priv->rps.hw_lock); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5274 | } |
| 5275 | |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 5276 | static void valleyview_cleanup_gt_powersave(struct drm_device *dev) |
| 5277 | { |
| 5278 | valleyview_cleanup_pctx(dev); |
| 5279 | } |
| 5280 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5281 | static void cherryview_enable_rps(struct drm_device *dev) |
| 5282 | { |
| 5283 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5284 | struct intel_engine_cs *ring; |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5285 | u32 gtfifodbg, val, rc6_mode = 0, pcbr; |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5286 | int i; |
| 5287 | |
| 5288 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
| 5289 | |
| 5290 | gtfifodbg = I915_READ(GTFIFODBG); |
| 5291 | if (gtfifodbg) { |
| 5292 | DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n", |
| 5293 | gtfifodbg); |
| 5294 | I915_WRITE(GTFIFODBG, gtfifodbg); |
| 5295 | } |
| 5296 | |
| 5297 | cherryview_check_pctx(dev_priv); |
| 5298 | |
| 5299 | /* 1a & 1b: Get forcewake during program sequence. Although the driver |
| 5300 | * hasn't enabled a state yet where we need forcewake, BIOS may have.*/ |
| 5301 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
| 5302 | |
| 5303 | /* 2a: Program RC6 thresholds.*/ |
| 5304 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 40 << 16); |
| 5305 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); /* 12500 * 1280ns */ |
| 5306 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); /* 25 * 1280ns */ |
| 5307 | |
| 5308 | for_each_ring(ring, dev_priv, i) |
| 5309 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 5310 | I915_WRITE(GEN6_RC_SLEEP, 0); |
| 5311 | |
| 5312 | I915_WRITE(GEN6_RC6_THRESHOLD, 50000); /* 50/125ms per EI */ |
| 5313 | |
| 5314 | /* allows RC6 residency counter to work */ |
| 5315 | I915_WRITE(VLV_COUNTER_CONTROL, |
| 5316 | _MASKED_BIT_ENABLE(VLV_COUNT_RANGE_HIGH | |
| 5317 | VLV_MEDIA_RC6_COUNT_EN | |
| 5318 | VLV_RENDER_RC6_COUNT_EN)); |
| 5319 | |
| 5320 | /* For now we assume BIOS is allocating and populating the PCBR */ |
| 5321 | pcbr = I915_READ(VLV_PCBR); |
| 5322 | |
| 5323 | DRM_DEBUG_DRIVER("PCBR offset : 0x%x\n", pcbr); |
| 5324 | |
| 5325 | /* 3: Enable RC6 */ |
| 5326 | if ((intel_enable_rc6(dev) & INTEL_RC6_ENABLE) && |
| 5327 | (pcbr >> VLV_PCBR_ADDR_SHIFT)) |
| 5328 | rc6_mode = GEN6_RC_CTL_EI_MODE(1); |
| 5329 | |
| 5330 | I915_WRITE(GEN6_RC_CONTROL, rc6_mode); |
| 5331 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5332 | /* 4 Program defaults and thresholds for RPS*/ |
| 5333 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400); |
| 5334 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000); |
| 5335 | I915_WRITE(GEN6_RP_UP_EI, 66000); |
| 5336 | I915_WRITE(GEN6_RP_DOWN_EI, 350000); |
| 5337 | |
| 5338 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
| 5339 | |
Tom O'Rourke | 7405f42 | 2014-06-10 16:26:34 -0700 | [diff] [blame] | 5340 | /* WaDisablePwrmtrEvent:chv (pre-production hw) */ |
| 5341 | I915_WRITE(0xA80C, I915_READ(0xA80C) & 0x00ffffff); |
| 5342 | I915_WRITE(0xA810, I915_READ(0xA810) & 0xffffff00); |
| 5343 | |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5344 | /* 5: Enable RPS */ |
| 5345 | I915_WRITE(GEN6_RP_CONTROL, |
| 5346 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
Tom O'Rourke | 7405f42 | 2014-06-10 16:26:34 -0700 | [diff] [blame] | 5347 | GEN6_RP_MEDIA_IS_GFX | /* WaSetMaskForGfxBusyness:chv (pre-production hw ?) */ |
Deepak S | 2b6b3a0 | 2014-05-27 15:59:30 +0530 | [diff] [blame] | 5348 | GEN6_RP_ENABLE | |
| 5349 | GEN6_RP_UP_BUSY_AVG | |
| 5350 | GEN6_RP_DOWN_IDLE_AVG); |
| 5351 | |
| 5352 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
| 5353 | |
| 5354 | DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no"); |
| 5355 | DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val); |
| 5356 | |
| 5357 | dev_priv->rps.cur_freq = (val >> 8) & 0xff; |
| 5358 | DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n", |
| 5359 | vlv_gpu_freq(dev_priv, dev_priv->rps.cur_freq), |
| 5360 | dev_priv->rps.cur_freq); |
| 5361 | |
| 5362 | DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n", |
| 5363 | vlv_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
| 5364 | dev_priv->rps.efficient_freq); |
| 5365 | |
| 5366 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq); |
| 5367 | |
Deepak S | 3497a56 | 2014-07-10 13:16:26 +0530 | [diff] [blame] | 5368 | gen8_enable_rps_interrupts(dev); |
| 5369 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 5370 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
| 5371 | } |
| 5372 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5373 | static void valleyview_enable_rps(struct drm_device *dev) |
| 5374 | { |
| 5375 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 5376 | struct intel_engine_cs *ring; |
Ben Widawsky | 2a5913a | 2014-03-19 18:31:13 -0700 | [diff] [blame] | 5377 | u32 gtfifodbg, val, rc6_mode = 0; |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5378 | int i; |
| 5379 | |
| 5380 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
| 5381 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 5382 | valleyview_check_pctx(dev_priv); |
| 5383 | |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5384 | if ((gtfifodbg = I915_READ(GTFIFODBG))) { |
Jesse Barnes | f7d85c1 | 2013-09-27 10:40:54 -0700 | [diff] [blame] | 5385 | DRM_DEBUG_DRIVER("GT fifo had a previous error %x\n", |
| 5386 | gtfifodbg); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5387 | I915_WRITE(GTFIFODBG, gtfifodbg); |
| 5388 | } |
| 5389 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 5390 | /* If VLV, Forcewake all wells, else re-direct to regular path */ |
| 5391 | gen6_gt_force_wake_get(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5392 | |
| 5393 | I915_WRITE(GEN6_RP_UP_THRESHOLD, 59400); |
| 5394 | I915_WRITE(GEN6_RP_DOWN_THRESHOLD, 245000); |
| 5395 | I915_WRITE(GEN6_RP_UP_EI, 66000); |
| 5396 | I915_WRITE(GEN6_RP_DOWN_EI, 350000); |
| 5397 | |
| 5398 | I915_WRITE(GEN6_RP_IDLE_HYSTERSIS, 10); |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 5399 | I915_WRITE(GEN6_RP_DOWN_TIMEOUT, 0xf4240); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5400 | |
| 5401 | I915_WRITE(GEN6_RP_CONTROL, |
| 5402 | GEN6_RP_MEDIA_TURBO | |
| 5403 | GEN6_RP_MEDIA_HW_NORMAL_MODE | |
| 5404 | GEN6_RP_MEDIA_IS_GFX | |
| 5405 | GEN6_RP_ENABLE | |
| 5406 | GEN6_RP_UP_BUSY_AVG | |
| 5407 | GEN6_RP_DOWN_IDLE_CONT); |
| 5408 | |
| 5409 | I915_WRITE(GEN6_RC6_WAKE_RATE_LIMIT, 0x00280000); |
| 5410 | I915_WRITE(GEN6_RC_EVALUATION_INTERVAL, 125000); |
| 5411 | I915_WRITE(GEN6_RC_IDLE_HYSTERSIS, 25); |
| 5412 | |
| 5413 | for_each_ring(ring, dev_priv, i) |
| 5414 | I915_WRITE(RING_MAX_IDLE(ring->mmio_base), 10); |
| 5415 | |
Jesse Barnes | 2f0aa30 | 2013-11-15 09:32:11 -0800 | [diff] [blame] | 5416 | I915_WRITE(GEN6_RC6_THRESHOLD, 0x557); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5417 | |
| 5418 | /* allows RC6 residency counter to work */ |
Jesse Barnes | 49798eb | 2013-09-26 17:55:57 -0700 | [diff] [blame] | 5419 | I915_WRITE(VLV_COUNTER_CONTROL, |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 5420 | _MASKED_BIT_ENABLE(VLV_MEDIA_RC0_COUNT_EN | |
| 5421 | VLV_RENDER_RC0_COUNT_EN | |
Jesse Barnes | 49798eb | 2013-09-26 17:55:57 -0700 | [diff] [blame] | 5422 | VLV_MEDIA_RC6_COUNT_EN | |
| 5423 | VLV_RENDER_RC6_COUNT_EN)); |
Deepak S | 31685c2 | 2014-07-03 17:33:01 -0400 | [diff] [blame] | 5424 | |
Jesse Barnes | a2b23fe | 2013-09-19 09:33:13 -0700 | [diff] [blame] | 5425 | if (intel_enable_rc6(dev) & INTEL_RC6_ENABLE) |
Jesse Barnes | 6b88f29 | 2013-11-15 09:32:12 -0800 | [diff] [blame] | 5426 | 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] | 5427 | |
| 5428 | intel_print_rc6_info(dev, rc6_mode); |
| 5429 | |
Jesse Barnes | a2b23fe | 2013-09-19 09:33:13 -0700 | [diff] [blame] | 5430 | I915_WRITE(GEN6_RC_CONTROL, rc6_mode); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5431 | |
Jani Nikula | 6493625 | 2013-05-22 15:36:20 +0300 | [diff] [blame] | 5432 | val = vlv_punit_read(dev_priv, PUNIT_REG_GPU_FREQ_STS); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5433 | |
| 5434 | DRM_DEBUG_DRIVER("GPLL enabled? %s\n", val & 0x10 ? "yes" : "no"); |
| 5435 | DRM_DEBUG_DRIVER("GPU status: 0x%08x\n", val); |
| 5436 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 5437 | dev_priv->rps.cur_freq = (val >> 8) & 0xff; |
Ville Syrjälä | 73008b9 | 2013-06-25 19:21:01 +0300 | [diff] [blame] | 5438 | DRM_DEBUG_DRIVER("current GPU freq: %d MHz (%u)\n", |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 5439 | vlv_gpu_freq(dev_priv, dev_priv->rps.cur_freq), |
| 5440 | dev_priv->rps.cur_freq); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5441 | |
Ville Syrjälä | 73008b9 | 2013-06-25 19:21:01 +0300 | [diff] [blame] | 5442 | DRM_DEBUG_DRIVER("setting GPU freq to %d MHz (%u)\n", |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 5443 | vlv_gpu_freq(dev_priv, dev_priv->rps.efficient_freq), |
| 5444 | dev_priv->rps.efficient_freq); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5445 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 5446 | valleyview_set_rps(dev_priv->dev, dev_priv->rps.efficient_freq); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5447 | |
Daniel Vetter | 44fc7d5 | 2013-07-12 22:43:27 +0200 | [diff] [blame] | 5448 | gen6_enable_rps_interrupts(dev); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5449 | |
Deepak S | c8d9a59 | 2013-11-23 14:55:42 +0530 | [diff] [blame] | 5450 | gen6_gt_force_wake_put(dev_priv, FORCEWAKE_ALL); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 5451 | } |
| 5452 | |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 5453 | void ironlake_teardown_rc6(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5454 | { |
| 5455 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5456 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 5457 | if (dev_priv->ips.renderctx) { |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 5458 | i915_gem_object_ggtt_unpin(dev_priv->ips.renderctx); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 5459 | drm_gem_object_unreference(&dev_priv->ips.renderctx->base); |
| 5460 | dev_priv->ips.renderctx = NULL; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5461 | } |
| 5462 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 5463 | if (dev_priv->ips.pwrctx) { |
Ben Widawsky | d7f46fc | 2013-12-06 14:10:55 -0800 | [diff] [blame] | 5464 | i915_gem_object_ggtt_unpin(dev_priv->ips.pwrctx); |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 5465 | drm_gem_object_unreference(&dev_priv->ips.pwrctx->base); |
| 5466 | dev_priv->ips.pwrctx = NULL; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5467 | } |
| 5468 | } |
| 5469 | |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 5470 | static void ironlake_disable_rc6(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5471 | { |
| 5472 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5473 | |
| 5474 | if (I915_READ(PWRCTXA)) { |
| 5475 | /* Wake the GPU, prevent RC6, then restore RSTDBYCTL */ |
| 5476 | I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) | RCX_SW_EXIT); |
| 5477 | wait_for(((I915_READ(RSTDBYCTL) & RSX_STATUS_MASK) == RSX_STATUS_ON), |
| 5478 | 50); |
| 5479 | |
| 5480 | I915_WRITE(PWRCTXA, 0); |
| 5481 | POSTING_READ(PWRCTXA); |
| 5482 | |
| 5483 | I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT); |
| 5484 | POSTING_READ(RSTDBYCTL); |
| 5485 | } |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5486 | } |
| 5487 | |
| 5488 | static int ironlake_setup_rc6(struct drm_device *dev) |
| 5489 | { |
| 5490 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 5491 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 5492 | if (dev_priv->ips.renderctx == NULL) |
| 5493 | dev_priv->ips.renderctx = intel_alloc_context_page(dev); |
| 5494 | if (!dev_priv->ips.renderctx) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5495 | return -ENOMEM; |
| 5496 | |
Daniel Vetter | 3e37394 | 2012-11-02 19:55:04 +0100 | [diff] [blame] | 5497 | if (dev_priv->ips.pwrctx == NULL) |
| 5498 | dev_priv->ips.pwrctx = intel_alloc_context_page(dev); |
| 5499 | if (!dev_priv->ips.pwrctx) { |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5500 | ironlake_teardown_rc6(dev); |
| 5501 | return -ENOMEM; |
| 5502 | } |
| 5503 | |
| 5504 | return 0; |
| 5505 | } |
| 5506 | |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 5507 | static void ironlake_enable_rc6(struct drm_device *dev) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5508 | { |
| 5509 | struct drm_i915_private *dev_priv = dev->dev_private; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 5510 | struct intel_engine_cs *ring = &dev_priv->ring[RCS]; |
Chris Wilson | 3e96050 | 2012-11-27 16:22:54 +0000 | [diff] [blame] | 5511 | bool was_interruptible; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5512 | int ret; |
| 5513 | |
| 5514 | /* rc6 disabled by default due to repeated reports of hanging during |
| 5515 | * boot and resume. |
| 5516 | */ |
| 5517 | if (!intel_enable_rc6(dev)) |
| 5518 | return; |
| 5519 | |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 5520 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 5521 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5522 | ret = ironlake_setup_rc6(dev); |
Daniel Vetter | 79f5b2c | 2012-06-24 16:42:33 +0200 | [diff] [blame] | 5523 | if (ret) |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5524 | return; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5525 | |
Chris Wilson | 3e96050 | 2012-11-27 16:22:54 +0000 | [diff] [blame] | 5526 | was_interruptible = dev_priv->mm.interruptible; |
| 5527 | dev_priv->mm.interruptible = false; |
| 5528 | |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5529 | /* |
| 5530 | * GPU can automatically power down the render unit if given a page |
| 5531 | * to save state. |
| 5532 | */ |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 5533 | ret = intel_ring_begin(ring, 6); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5534 | if (ret) { |
| 5535 | ironlake_teardown_rc6(dev); |
Chris Wilson | 3e96050 | 2012-11-27 16:22:54 +0000 | [diff] [blame] | 5536 | dev_priv->mm.interruptible = was_interruptible; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5537 | return; |
| 5538 | } |
| 5539 | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 5540 | intel_ring_emit(ring, MI_SUSPEND_FLUSH | MI_SUSPEND_FLUSH_EN); |
| 5541 | intel_ring_emit(ring, MI_SET_CONTEXT); |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 5542 | intel_ring_emit(ring, i915_gem_obj_ggtt_offset(dev_priv->ips.renderctx) | |
Daniel Vetter | 6d90c95 | 2012-04-26 23:28:05 +0200 | [diff] [blame] | 5543 | MI_MM_SPACE_GTT | |
| 5544 | MI_SAVE_EXT_STATE_EN | |
| 5545 | MI_RESTORE_EXT_STATE_EN | |
| 5546 | MI_RESTORE_INHIBIT); |
| 5547 | intel_ring_emit(ring, MI_SUSPEND_FLUSH); |
| 5548 | intel_ring_emit(ring, MI_NOOP); |
| 5549 | intel_ring_emit(ring, MI_FLUSH); |
| 5550 | intel_ring_advance(ring); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5551 | |
| 5552 | /* |
| 5553 | * Wait for the command parser to advance past MI_SET_CONTEXT. The HW |
| 5554 | * does an implicit flush, combined with MI_FLUSH above, it should be |
| 5555 | * safe to assume that renderctx is valid |
| 5556 | */ |
Chris Wilson | 3e96050 | 2012-11-27 16:22:54 +0000 | [diff] [blame] | 5557 | ret = intel_ring_idle(ring); |
| 5558 | dev_priv->mm.interruptible = was_interruptible; |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5559 | if (ret) { |
Jani Nikula | def27a5 | 2013-03-12 10:49:19 +0200 | [diff] [blame] | 5560 | DRM_ERROR("failed to enable ironlake power savings\n"); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5561 | ironlake_teardown_rc6(dev); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5562 | return; |
| 5563 | } |
| 5564 | |
Ben Widawsky | f343c5f | 2013-07-05 14:41:04 -0700 | [diff] [blame] | 5565 | I915_WRITE(PWRCTXA, i915_gem_obj_ggtt_offset(dev_priv->ips.pwrctx) | PWRCTX_EN); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5566 | I915_WRITE(RSTDBYCTL, I915_READ(RSTDBYCTL) & ~RCX_SW_EXIT); |
Ben Widawsky | dc39fff | 2013-10-18 12:32:07 -0700 | [diff] [blame] | 5567 | |
Imre Deak | 91ca689 | 2014-04-14 20:24:25 +0300 | [diff] [blame] | 5568 | intel_print_rc6_info(dev, GEN6_RC_CTL_RC6_ENABLE); |
Eugeni Dodonov | 2b4e57b | 2012-04-18 15:29:23 -0300 | [diff] [blame] | 5569 | } |
| 5570 | |
Eugeni Dodonov | dde1888 | 2012-04-18 15:29:24 -0300 | [diff] [blame] | 5571 | static unsigned long intel_pxfreq(u32 vidfreq) |
| 5572 | { |
| 5573 | unsigned long freq; |
| 5574 | int div = (vidfreq & 0x3f0000) >> 16; |
| 5575 | int post = (vidfreq & 0x3000) >> 12; |
| 5576 | int pre = (vidfreq & 0x7); |
| 5577 | |
| 5578 | if (!pre) |
| 5579 | return 0; |
| 5580 | |
| 5581 | freq = ((div * 133333) / ((1<<post) * pre)); |
| 5582 | |
| 5583 | return freq; |
| 5584 | } |
| 5585 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5586 | static const struct cparams { |
| 5587 | u16 i; |
| 5588 | u16 t; |
| 5589 | u16 m; |
| 5590 | u16 c; |
| 5591 | } cparams[] = { |
| 5592 | { 1, 1333, 301, 28664 }, |
| 5593 | { 1, 1066, 294, 24460 }, |
| 5594 | { 1, 800, 294, 25192 }, |
| 5595 | { 0, 1333, 276, 27605 }, |
| 5596 | { 0, 1066, 276, 27605 }, |
| 5597 | { 0, 800, 231, 23784 }, |
| 5598 | }; |
| 5599 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5600 | static unsigned long __i915_chipset_val(struct drm_i915_private *dev_priv) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5601 | { |
| 5602 | u64 total_count, diff, ret; |
| 5603 | u32 count1, count2, count3, m = 0, c = 0; |
| 5604 | unsigned long now = jiffies_to_msecs(jiffies), diff1; |
| 5605 | int i; |
| 5606 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5607 | assert_spin_locked(&mchdev_lock); |
| 5608 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5609 | diff1 = now - dev_priv->ips.last_time1; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5610 | |
| 5611 | /* Prevent division-by-zero if we are asking too fast. |
| 5612 | * Also, we don't get interesting results if we are polling |
| 5613 | * faster than once in 10ms, so just return the saved value |
| 5614 | * in such cases. |
| 5615 | */ |
| 5616 | if (diff1 <= 10) |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5617 | return dev_priv->ips.chipset_power; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5618 | |
| 5619 | count1 = I915_READ(DMIEC); |
| 5620 | count2 = I915_READ(DDREC); |
| 5621 | count3 = I915_READ(CSIEC); |
| 5622 | |
| 5623 | total_count = count1 + count2 + count3; |
| 5624 | |
| 5625 | /* FIXME: handle per-counter overflow */ |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5626 | if (total_count < dev_priv->ips.last_count1) { |
| 5627 | diff = ~0UL - dev_priv->ips.last_count1; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5628 | diff += total_count; |
| 5629 | } else { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5630 | diff = total_count - dev_priv->ips.last_count1; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5631 | } |
| 5632 | |
| 5633 | for (i = 0; i < ARRAY_SIZE(cparams); i++) { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5634 | if (cparams[i].i == dev_priv->ips.c_m && |
| 5635 | cparams[i].t == dev_priv->ips.r_t) { |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5636 | m = cparams[i].m; |
| 5637 | c = cparams[i].c; |
| 5638 | break; |
| 5639 | } |
| 5640 | } |
| 5641 | |
| 5642 | diff = div_u64(diff, diff1); |
| 5643 | ret = ((m * diff) + c); |
| 5644 | ret = div_u64(ret, 10); |
| 5645 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5646 | dev_priv->ips.last_count1 = total_count; |
| 5647 | dev_priv->ips.last_time1 = now; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5648 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5649 | dev_priv->ips.chipset_power = ret; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5650 | |
| 5651 | return ret; |
| 5652 | } |
| 5653 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5654 | unsigned long i915_chipset_val(struct drm_i915_private *dev_priv) |
| 5655 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5656 | struct drm_device *dev = dev_priv->dev; |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5657 | unsigned long val; |
| 5658 | |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5659 | if (INTEL_INFO(dev)->gen != 5) |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5660 | return 0; |
| 5661 | |
| 5662 | spin_lock_irq(&mchdev_lock); |
| 5663 | |
| 5664 | val = __i915_chipset_val(dev_priv); |
| 5665 | |
| 5666 | spin_unlock_irq(&mchdev_lock); |
| 5667 | |
| 5668 | return val; |
| 5669 | } |
| 5670 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5671 | unsigned long i915_mch_val(struct drm_i915_private *dev_priv) |
| 5672 | { |
| 5673 | unsigned long m, x, b; |
| 5674 | u32 tsfs; |
| 5675 | |
| 5676 | tsfs = I915_READ(TSFS); |
| 5677 | |
| 5678 | m = ((tsfs & TSFS_SLOPE_MASK) >> TSFS_SLOPE_SHIFT); |
| 5679 | x = I915_READ8(TR1); |
| 5680 | |
| 5681 | b = tsfs & TSFS_INTR_MASK; |
| 5682 | |
| 5683 | return ((m * x) / 127) - b; |
| 5684 | } |
| 5685 | |
| 5686 | static u16 pvid_to_extvid(struct drm_i915_private *dev_priv, u8 pxvid) |
| 5687 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5688 | struct drm_device *dev = dev_priv->dev; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5689 | static const struct v_table { |
| 5690 | u16 vd; /* in .1 mil */ |
| 5691 | u16 vm; /* in .1 mil */ |
| 5692 | } v_table[] = { |
| 5693 | { 0, 0, }, |
| 5694 | { 375, 0, }, |
| 5695 | { 500, 0, }, |
| 5696 | { 625, 0, }, |
| 5697 | { 750, 0, }, |
| 5698 | { 875, 0, }, |
| 5699 | { 1000, 0, }, |
| 5700 | { 1125, 0, }, |
| 5701 | { 4125, 3000, }, |
| 5702 | { 4125, 3000, }, |
| 5703 | { 4125, 3000, }, |
| 5704 | { 4125, 3000, }, |
| 5705 | { 4125, 3000, }, |
| 5706 | { 4125, 3000, }, |
| 5707 | { 4125, 3000, }, |
| 5708 | { 4125, 3000, }, |
| 5709 | { 4125, 3000, }, |
| 5710 | { 4125, 3000, }, |
| 5711 | { 4125, 3000, }, |
| 5712 | { 4125, 3000, }, |
| 5713 | { 4125, 3000, }, |
| 5714 | { 4125, 3000, }, |
| 5715 | { 4125, 3000, }, |
| 5716 | { 4125, 3000, }, |
| 5717 | { 4125, 3000, }, |
| 5718 | { 4125, 3000, }, |
| 5719 | { 4125, 3000, }, |
| 5720 | { 4125, 3000, }, |
| 5721 | { 4125, 3000, }, |
| 5722 | { 4125, 3000, }, |
| 5723 | { 4125, 3000, }, |
| 5724 | { 4125, 3000, }, |
| 5725 | { 4250, 3125, }, |
| 5726 | { 4375, 3250, }, |
| 5727 | { 4500, 3375, }, |
| 5728 | { 4625, 3500, }, |
| 5729 | { 4750, 3625, }, |
| 5730 | { 4875, 3750, }, |
| 5731 | { 5000, 3875, }, |
| 5732 | { 5125, 4000, }, |
| 5733 | { 5250, 4125, }, |
| 5734 | { 5375, 4250, }, |
| 5735 | { 5500, 4375, }, |
| 5736 | { 5625, 4500, }, |
| 5737 | { 5750, 4625, }, |
| 5738 | { 5875, 4750, }, |
| 5739 | { 6000, 4875, }, |
| 5740 | { 6125, 5000, }, |
| 5741 | { 6250, 5125, }, |
| 5742 | { 6375, 5250, }, |
| 5743 | { 6500, 5375, }, |
| 5744 | { 6625, 5500, }, |
| 5745 | { 6750, 5625, }, |
| 5746 | { 6875, 5750, }, |
| 5747 | { 7000, 5875, }, |
| 5748 | { 7125, 6000, }, |
| 5749 | { 7250, 6125, }, |
| 5750 | { 7375, 6250, }, |
| 5751 | { 7500, 6375, }, |
| 5752 | { 7625, 6500, }, |
| 5753 | { 7750, 6625, }, |
| 5754 | { 7875, 6750, }, |
| 5755 | { 8000, 6875, }, |
| 5756 | { 8125, 7000, }, |
| 5757 | { 8250, 7125, }, |
| 5758 | { 8375, 7250, }, |
| 5759 | { 8500, 7375, }, |
| 5760 | { 8625, 7500, }, |
| 5761 | { 8750, 7625, }, |
| 5762 | { 8875, 7750, }, |
| 5763 | { 9000, 7875, }, |
| 5764 | { 9125, 8000, }, |
| 5765 | { 9250, 8125, }, |
| 5766 | { 9375, 8250, }, |
| 5767 | { 9500, 8375, }, |
| 5768 | { 9625, 8500, }, |
| 5769 | { 9750, 8625, }, |
| 5770 | { 9875, 8750, }, |
| 5771 | { 10000, 8875, }, |
| 5772 | { 10125, 9000, }, |
| 5773 | { 10250, 9125, }, |
| 5774 | { 10375, 9250, }, |
| 5775 | { 10500, 9375, }, |
| 5776 | { 10625, 9500, }, |
| 5777 | { 10750, 9625, }, |
| 5778 | { 10875, 9750, }, |
| 5779 | { 11000, 9875, }, |
| 5780 | { 11125, 10000, }, |
| 5781 | { 11250, 10125, }, |
| 5782 | { 11375, 10250, }, |
| 5783 | { 11500, 10375, }, |
| 5784 | { 11625, 10500, }, |
| 5785 | { 11750, 10625, }, |
| 5786 | { 11875, 10750, }, |
| 5787 | { 12000, 10875, }, |
| 5788 | { 12125, 11000, }, |
| 5789 | { 12250, 11125, }, |
| 5790 | { 12375, 11250, }, |
| 5791 | { 12500, 11375, }, |
| 5792 | { 12625, 11500, }, |
| 5793 | { 12750, 11625, }, |
| 5794 | { 12875, 11750, }, |
| 5795 | { 13000, 11875, }, |
| 5796 | { 13125, 12000, }, |
| 5797 | { 13250, 12125, }, |
| 5798 | { 13375, 12250, }, |
| 5799 | { 13500, 12375, }, |
| 5800 | { 13625, 12500, }, |
| 5801 | { 13750, 12625, }, |
| 5802 | { 13875, 12750, }, |
| 5803 | { 14000, 12875, }, |
| 5804 | { 14125, 13000, }, |
| 5805 | { 14250, 13125, }, |
| 5806 | { 14375, 13250, }, |
| 5807 | { 14500, 13375, }, |
| 5808 | { 14625, 13500, }, |
| 5809 | { 14750, 13625, }, |
| 5810 | { 14875, 13750, }, |
| 5811 | { 15000, 13875, }, |
| 5812 | { 15125, 14000, }, |
| 5813 | { 15250, 14125, }, |
| 5814 | { 15375, 14250, }, |
| 5815 | { 15500, 14375, }, |
| 5816 | { 15625, 14500, }, |
| 5817 | { 15750, 14625, }, |
| 5818 | { 15875, 14750, }, |
| 5819 | { 16000, 14875, }, |
| 5820 | { 16125, 15000, }, |
| 5821 | }; |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5822 | if (INTEL_INFO(dev)->is_mobile) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5823 | return v_table[pxvid].vm; |
| 5824 | else |
| 5825 | return v_table[pxvid].vd; |
| 5826 | } |
| 5827 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5828 | static void __i915_update_gfx_val(struct drm_i915_private *dev_priv) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5829 | { |
Thomas Gleixner | 5ed0bdf | 2014-07-16 21:05:06 +0000 | [diff] [blame] | 5830 | u64 now, diff, diffms; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5831 | u32 count; |
| 5832 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5833 | assert_spin_locked(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5834 | |
Thomas Gleixner | 5ed0bdf | 2014-07-16 21:05:06 +0000 | [diff] [blame] | 5835 | now = ktime_get_raw_ns(); |
| 5836 | diffms = now - dev_priv->ips.last_time2; |
| 5837 | do_div(diffms, NSEC_PER_MSEC); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5838 | |
| 5839 | /* Don't divide by 0 */ |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5840 | if (!diffms) |
| 5841 | return; |
| 5842 | |
| 5843 | count = I915_READ(GFXEC); |
| 5844 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5845 | if (count < dev_priv->ips.last_count2) { |
| 5846 | diff = ~0UL - dev_priv->ips.last_count2; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5847 | diff += count; |
| 5848 | } else { |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5849 | diff = count - dev_priv->ips.last_count2; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5850 | } |
| 5851 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5852 | dev_priv->ips.last_count2 = count; |
| 5853 | dev_priv->ips.last_time2 = now; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5854 | |
| 5855 | /* More magic constants... */ |
| 5856 | diff = diff * 1181; |
| 5857 | diff = div_u64(diff, diffms * 10); |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5858 | dev_priv->ips.gfx_power = diff; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5859 | } |
| 5860 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5861 | void i915_update_gfx_val(struct drm_i915_private *dev_priv) |
| 5862 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5863 | struct drm_device *dev = dev_priv->dev; |
| 5864 | |
| 5865 | if (INTEL_INFO(dev)->gen != 5) |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5866 | return; |
| 5867 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5868 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5869 | |
| 5870 | __i915_update_gfx_val(dev_priv); |
| 5871 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5872 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5873 | } |
| 5874 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5875 | static unsigned long __i915_gfx_val(struct drm_i915_private *dev_priv) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5876 | { |
| 5877 | unsigned long t, corr, state1, corr2, state2; |
| 5878 | u32 pxvid, ext_v; |
| 5879 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5880 | assert_spin_locked(&mchdev_lock); |
| 5881 | |
Ben Widawsky | b39fb29 | 2014-03-19 18:31:11 -0700 | [diff] [blame] | 5882 | pxvid = I915_READ(PXVFREQ_BASE + (dev_priv->rps.cur_freq * 4)); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5883 | pxvid = (pxvid >> 24) & 0x7f; |
| 5884 | ext_v = pvid_to_extvid(dev_priv, pxvid); |
| 5885 | |
| 5886 | state1 = ext_v; |
| 5887 | |
| 5888 | t = i915_mch_val(dev_priv); |
| 5889 | |
| 5890 | /* Revel in the empirically derived constants */ |
| 5891 | |
| 5892 | /* Correction factor in 1/100000 units */ |
| 5893 | if (t > 80) |
| 5894 | corr = ((t * 2349) + 135940); |
| 5895 | else if (t >= 50) |
| 5896 | corr = ((t * 964) + 29317); |
| 5897 | else /* < 50 */ |
| 5898 | corr = ((t * 301) + 1004); |
| 5899 | |
| 5900 | corr = corr * ((150142 * state1) / 10000 - 78642); |
| 5901 | corr /= 100000; |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5902 | corr2 = (corr * dev_priv->ips.corr); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5903 | |
| 5904 | state2 = (corr2 * state1) / 10000; |
| 5905 | state2 /= 100; /* convert to mW */ |
| 5906 | |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 5907 | __i915_update_gfx_val(dev_priv); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5908 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5909 | return dev_priv->ips.gfx_power + state2; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5910 | } |
| 5911 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5912 | unsigned long i915_gfx_val(struct drm_i915_private *dev_priv) |
| 5913 | { |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5914 | struct drm_device *dev = dev_priv->dev; |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5915 | unsigned long val; |
| 5916 | |
Damien Lespiau | 3d13ef2 | 2014-02-07 19:12:47 +0000 | [diff] [blame] | 5917 | if (INTEL_INFO(dev)->gen != 5) |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5918 | return 0; |
| 5919 | |
| 5920 | spin_lock_irq(&mchdev_lock); |
| 5921 | |
| 5922 | val = __i915_gfx_val(dev_priv); |
| 5923 | |
| 5924 | spin_unlock_irq(&mchdev_lock); |
| 5925 | |
| 5926 | return val; |
| 5927 | } |
| 5928 | |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5929 | /** |
| 5930 | * i915_read_mch_val - return value for IPS use |
| 5931 | * |
| 5932 | * Calculate and return a value for the IPS driver to use when deciding whether |
| 5933 | * we have thermal and power headroom to increase CPU or GPU power budget. |
| 5934 | */ |
| 5935 | unsigned long i915_read_mch_val(void) |
| 5936 | { |
| 5937 | struct drm_i915_private *dev_priv; |
| 5938 | unsigned long chipset_val, graphics_val, ret = 0; |
| 5939 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5940 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5941 | if (!i915_mch_dev) |
| 5942 | goto out_unlock; |
| 5943 | dev_priv = i915_mch_dev; |
| 5944 | |
Chris Wilson | f531dcb | 2012-09-25 10:16:12 +0100 | [diff] [blame] | 5945 | chipset_val = __i915_chipset_val(dev_priv); |
| 5946 | graphics_val = __i915_gfx_val(dev_priv); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5947 | |
| 5948 | ret = chipset_val + graphics_val; |
| 5949 | |
| 5950 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5951 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5952 | |
| 5953 | return ret; |
| 5954 | } |
| 5955 | EXPORT_SYMBOL_GPL(i915_read_mch_val); |
| 5956 | |
| 5957 | /** |
| 5958 | * i915_gpu_raise - raise GPU frequency limit |
| 5959 | * |
| 5960 | * Raise the limit; IPS indicates we have thermal headroom. |
| 5961 | */ |
| 5962 | bool i915_gpu_raise(void) |
| 5963 | { |
| 5964 | struct drm_i915_private *dev_priv; |
| 5965 | bool ret = true; |
| 5966 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5967 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5968 | if (!i915_mch_dev) { |
| 5969 | ret = false; |
| 5970 | goto out_unlock; |
| 5971 | } |
| 5972 | dev_priv = i915_mch_dev; |
| 5973 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 5974 | if (dev_priv->ips.max_delay > dev_priv->ips.fmax) |
| 5975 | dev_priv->ips.max_delay--; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5976 | |
| 5977 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5978 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5979 | |
| 5980 | return ret; |
| 5981 | } |
| 5982 | EXPORT_SYMBOL_GPL(i915_gpu_raise); |
| 5983 | |
| 5984 | /** |
| 5985 | * i915_gpu_lower - lower GPU frequency limit |
| 5986 | * |
| 5987 | * IPS indicates we're close to a thermal limit, so throttle back the GPU |
| 5988 | * frequency maximum. |
| 5989 | */ |
| 5990 | bool i915_gpu_lower(void) |
| 5991 | { |
| 5992 | struct drm_i915_private *dev_priv; |
| 5993 | bool ret = true; |
| 5994 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 5995 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 5996 | if (!i915_mch_dev) { |
| 5997 | ret = false; |
| 5998 | goto out_unlock; |
| 5999 | } |
| 6000 | dev_priv = i915_mch_dev; |
| 6001 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 6002 | if (dev_priv->ips.max_delay < dev_priv->ips.min_delay) |
| 6003 | dev_priv->ips.max_delay++; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6004 | |
| 6005 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6006 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6007 | |
| 6008 | return ret; |
| 6009 | } |
| 6010 | EXPORT_SYMBOL_GPL(i915_gpu_lower); |
| 6011 | |
| 6012 | /** |
| 6013 | * i915_gpu_busy - indicate GPU business to IPS |
| 6014 | * |
| 6015 | * Tell the IPS driver whether or not the GPU is busy. |
| 6016 | */ |
| 6017 | bool i915_gpu_busy(void) |
| 6018 | { |
| 6019 | struct drm_i915_private *dev_priv; |
Oscar Mateo | a4872ba | 2014-05-22 14:13:33 +0100 | [diff] [blame] | 6020 | struct intel_engine_cs *ring; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6021 | bool ret = false; |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 6022 | int i; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6023 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6024 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6025 | if (!i915_mch_dev) |
| 6026 | goto out_unlock; |
| 6027 | dev_priv = i915_mch_dev; |
| 6028 | |
Chris Wilson | f047e39 | 2012-07-21 12:31:41 +0100 | [diff] [blame] | 6029 | for_each_ring(ring, dev_priv, i) |
| 6030 | ret |= !list_empty(&ring->request_list); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6031 | |
| 6032 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6033 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6034 | |
| 6035 | return ret; |
| 6036 | } |
| 6037 | EXPORT_SYMBOL_GPL(i915_gpu_busy); |
| 6038 | |
| 6039 | /** |
| 6040 | * i915_gpu_turbo_disable - disable graphics turbo |
| 6041 | * |
| 6042 | * Disable graphics turbo by resetting the max frequency and setting the |
| 6043 | * current frequency to the default. |
| 6044 | */ |
| 6045 | bool i915_gpu_turbo_disable(void) |
| 6046 | { |
| 6047 | struct drm_i915_private *dev_priv; |
| 6048 | bool ret = true; |
| 6049 | |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6050 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6051 | if (!i915_mch_dev) { |
| 6052 | ret = false; |
| 6053 | goto out_unlock; |
| 6054 | } |
| 6055 | dev_priv = i915_mch_dev; |
| 6056 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 6057 | dev_priv->ips.max_delay = dev_priv->ips.fstart; |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6058 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 6059 | if (!ironlake_set_drps(dev_priv->dev, dev_priv->ips.fstart)) |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6060 | ret = false; |
| 6061 | |
| 6062 | out_unlock: |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6063 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6064 | |
| 6065 | return ret; |
| 6066 | } |
| 6067 | EXPORT_SYMBOL_GPL(i915_gpu_turbo_disable); |
| 6068 | |
| 6069 | /** |
| 6070 | * Tells the intel_ips driver that the i915 driver is now loaded, if |
| 6071 | * IPS got loaded first. |
| 6072 | * |
| 6073 | * This awkward dance is so that neither module has to depend on the |
| 6074 | * other in order for IPS to do the appropriate communication of |
| 6075 | * GPU turbo limits to i915. |
| 6076 | */ |
| 6077 | static void |
| 6078 | ips_ping_for_i915_load(void) |
| 6079 | { |
| 6080 | void (*link)(void); |
| 6081 | |
| 6082 | link = symbol_get(ips_link_to_i915_driver); |
| 6083 | if (link) { |
| 6084 | link(); |
| 6085 | symbol_put(ips_link_to_i915_driver); |
| 6086 | } |
| 6087 | } |
| 6088 | |
| 6089 | void intel_gpu_ips_init(struct drm_i915_private *dev_priv) |
| 6090 | { |
Daniel Vetter | 02d7195 | 2012-08-09 16:44:54 +0200 | [diff] [blame] | 6091 | /* We only register the i915 ips part with intel-ips once everything is |
| 6092 | * set up, to avoid intel-ips sneaking in and reading bogus values. */ |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6093 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6094 | i915_mch_dev = dev_priv; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6095 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6096 | |
| 6097 | ips_ping_for_i915_load(); |
| 6098 | } |
| 6099 | |
| 6100 | void intel_gpu_ips_teardown(void) |
| 6101 | { |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6102 | spin_lock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6103 | i915_mch_dev = NULL; |
Daniel Vetter | 9270388 | 2012-08-09 16:46:01 +0200 | [diff] [blame] | 6104 | spin_unlock_irq(&mchdev_lock); |
Daniel Vetter | eb48eb0 | 2012-04-26 23:28:12 +0200 | [diff] [blame] | 6105 | } |
Deepak S | 76c3552f | 2014-01-30 23:08:16 +0530 | [diff] [blame] | 6106 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6107 | static void intel_init_emon(struct drm_device *dev) |
Eugeni Dodonov | dde1888 | 2012-04-18 15:29:24 -0300 | [diff] [blame] | 6108 | { |
| 6109 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6110 | u32 lcfuse; |
| 6111 | u8 pxw[16]; |
| 6112 | int i; |
| 6113 | |
| 6114 | /* Disable to program */ |
| 6115 | I915_WRITE(ECR, 0); |
| 6116 | POSTING_READ(ECR); |
| 6117 | |
| 6118 | /* Program energy weights for various events */ |
| 6119 | I915_WRITE(SDEW, 0x15040d00); |
| 6120 | I915_WRITE(CSIEW0, 0x007f0000); |
| 6121 | I915_WRITE(CSIEW1, 0x1e220004); |
| 6122 | I915_WRITE(CSIEW2, 0x04000004); |
| 6123 | |
| 6124 | for (i = 0; i < 5; i++) |
| 6125 | I915_WRITE(PEW + (i * 4), 0); |
| 6126 | for (i = 0; i < 3; i++) |
| 6127 | I915_WRITE(DEW + (i * 4), 0); |
| 6128 | |
| 6129 | /* Program P-state weights to account for frequency power adjustment */ |
| 6130 | for (i = 0; i < 16; i++) { |
| 6131 | u32 pxvidfreq = I915_READ(PXVFREQ_BASE + (i * 4)); |
| 6132 | unsigned long freq = intel_pxfreq(pxvidfreq); |
| 6133 | unsigned long vid = (pxvidfreq & PXVFREQ_PX_MASK) >> |
| 6134 | PXVFREQ_PX_SHIFT; |
| 6135 | unsigned long val; |
| 6136 | |
| 6137 | val = vid * vid; |
| 6138 | val *= (freq / 1000); |
| 6139 | val *= 255; |
| 6140 | val /= (127*127*900); |
| 6141 | if (val > 0xff) |
| 6142 | DRM_ERROR("bad pxval: %ld\n", val); |
| 6143 | pxw[i] = val; |
| 6144 | } |
| 6145 | /* Render standby states get 0 weight */ |
| 6146 | pxw[14] = 0; |
| 6147 | pxw[15] = 0; |
| 6148 | |
| 6149 | for (i = 0; i < 4; i++) { |
| 6150 | u32 val = (pxw[i*4] << 24) | (pxw[(i*4)+1] << 16) | |
| 6151 | (pxw[(i*4)+2] << 8) | (pxw[(i*4)+3]); |
| 6152 | I915_WRITE(PXW + (i * 4), val); |
| 6153 | } |
| 6154 | |
| 6155 | /* Adjust magic regs to magic values (more experimental results) */ |
| 6156 | I915_WRITE(OGW0, 0); |
| 6157 | I915_WRITE(OGW1, 0); |
| 6158 | I915_WRITE(EG0, 0x00007f00); |
| 6159 | I915_WRITE(EG1, 0x0000000e); |
| 6160 | I915_WRITE(EG2, 0x000e0000); |
| 6161 | I915_WRITE(EG3, 0x68000300); |
| 6162 | I915_WRITE(EG4, 0x42000000); |
| 6163 | I915_WRITE(EG5, 0x00140031); |
| 6164 | I915_WRITE(EG6, 0); |
| 6165 | I915_WRITE(EG7, 0); |
| 6166 | |
| 6167 | for (i = 0; i < 8; i++) |
| 6168 | I915_WRITE(PXWL + (i * 4), 0); |
| 6169 | |
| 6170 | /* Enable PMON + select events */ |
| 6171 | I915_WRITE(ECR, 0x80000019); |
| 6172 | |
| 6173 | lcfuse = I915_READ(LCFUSE02); |
| 6174 | |
Daniel Vetter | 20e4d40 | 2012-08-08 23:35:39 +0200 | [diff] [blame] | 6175 | dev_priv->ips.corr = (lcfuse & LCFUSE_HIV_MASK); |
Eugeni Dodonov | dde1888 | 2012-04-18 15:29:24 -0300 | [diff] [blame] | 6176 | } |
| 6177 | |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 6178 | void intel_init_gt_powersave(struct drm_device *dev) |
| 6179 | { |
Imre Deak | e6069ca | 2014-04-18 16:01:02 +0300 | [diff] [blame] | 6180 | i915.enable_rc6 = sanitize_rc6_option(dev, i915.enable_rc6); |
| 6181 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 6182 | if (IS_CHERRYVIEW(dev)) |
| 6183 | cherryview_init_gt_powersave(dev); |
| 6184 | else if (IS_VALLEYVIEW(dev)) |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 6185 | valleyview_init_gt_powersave(dev); |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 6186 | } |
| 6187 | |
| 6188 | void intel_cleanup_gt_powersave(struct drm_device *dev) |
| 6189 | { |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 6190 | if (IS_CHERRYVIEW(dev)) |
| 6191 | return; |
| 6192 | else if (IS_VALLEYVIEW(dev)) |
Imre Deak | 4e80519 | 2014-04-14 20:24:41 +0300 | [diff] [blame] | 6193 | valleyview_cleanup_gt_powersave(dev); |
Imre Deak | ae48434 | 2014-03-31 15:10:44 +0300 | [diff] [blame] | 6194 | } |
| 6195 | |
Jesse Barnes | 156c7ca | 2014-06-12 08:35:45 -0700 | [diff] [blame] | 6196 | /** |
| 6197 | * intel_suspend_gt_powersave - suspend PM work and helper threads |
| 6198 | * @dev: drm device |
| 6199 | * |
| 6200 | * We don't want to disable RC6 or other features here, we just want |
| 6201 | * to make sure any work we've queued has finished and won't bother |
| 6202 | * us while we're suspended. |
| 6203 | */ |
| 6204 | void intel_suspend_gt_powersave(struct drm_device *dev) |
| 6205 | { |
| 6206 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6207 | |
| 6208 | /* Interrupts should be disabled already to avoid re-arming. */ |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 6209 | WARN_ON(intel_irqs_enabled(dev_priv)); |
Jesse Barnes | 156c7ca | 2014-06-12 08:35:45 -0700 | [diff] [blame] | 6210 | |
| 6211 | flush_delayed_work(&dev_priv->rps.delayed_resume_work); |
| 6212 | |
| 6213 | cancel_work_sync(&dev_priv->rps.work); |
Deepak S | b47adc1 | 2014-06-20 20:03:02 +0530 | [diff] [blame] | 6214 | |
| 6215 | /* Force GPU to min freq during suspend */ |
| 6216 | gen6_rps_idle(dev_priv); |
Jesse Barnes | 156c7ca | 2014-06-12 08:35:45 -0700 | [diff] [blame] | 6217 | } |
| 6218 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6219 | void intel_disable_gt_powersave(struct drm_device *dev) |
| 6220 | { |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 6221 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6222 | |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 6223 | /* Interrupts should be disabled already to avoid re-arming. */ |
Jesse Barnes | 9df7575f | 2014-06-20 09:29:20 -0700 | [diff] [blame] | 6224 | WARN_ON(intel_irqs_enabled(dev_priv)); |
Daniel Vetter | fd0c064 | 2013-04-24 11:13:35 +0200 | [diff] [blame] | 6225 | |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 6226 | if (IS_IRONLAKE_M(dev)) { |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6227 | ironlake_disable_drps(dev); |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 6228 | ironlake_disable_rc6(dev); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 6229 | } else if (INTEL_INFO(dev)->gen >= 6) { |
Daniel Vetter | 10d8d36 | 2014-06-12 17:48:52 +0200 | [diff] [blame] | 6230 | intel_suspend_gt_powersave(dev); |
Imre Deak | e494837 | 2014-05-12 18:35:04 +0300 | [diff] [blame] | 6231 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 6232 | mutex_lock(&dev_priv->rps.hw_lock); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 6233 | if (IS_CHERRYVIEW(dev)) |
| 6234 | cherryview_disable_rps(dev); |
| 6235 | else if (IS_VALLEYVIEW(dev)) |
Jesse Barnes | d20d4f0 | 2013-04-23 10:09:28 -0700 | [diff] [blame] | 6236 | valleyview_disable_rps(dev); |
| 6237 | else |
| 6238 | gen6_disable_rps(dev); |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 6239 | dev_priv->rps.enabled = false; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 6240 | mutex_unlock(&dev_priv->rps.hw_lock); |
Daniel Vetter | 930ebb4 | 2012-06-29 23:32:16 +0200 | [diff] [blame] | 6241 | } |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6242 | } |
| 6243 | |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 6244 | static void intel_gen6_powersave_work(struct work_struct *work) |
| 6245 | { |
| 6246 | struct drm_i915_private *dev_priv = |
| 6247 | container_of(work, struct drm_i915_private, |
| 6248 | rps.delayed_resume_work.work); |
| 6249 | struct drm_device *dev = dev_priv->dev; |
| 6250 | |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 6251 | mutex_lock(&dev_priv->rps.hw_lock); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 6252 | |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 6253 | if (IS_CHERRYVIEW(dev)) { |
| 6254 | cherryview_enable_rps(dev); |
| 6255 | } else if (IS_VALLEYVIEW(dev)) { |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 6256 | valleyview_enable_rps(dev); |
Ben Widawsky | 6edee7f | 2013-11-02 21:07:52 -0700 | [diff] [blame] | 6257 | } else if (IS_BROADWELL(dev)) { |
| 6258 | gen8_enable_rps(dev); |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 6259 | __gen6_update_ring_freq(dev); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 6260 | } else { |
| 6261 | gen6_enable_rps(dev); |
Imre Deak | c2bc2fc | 2014-04-18 16:16:23 +0300 | [diff] [blame] | 6262 | __gen6_update_ring_freq(dev); |
Jesse Barnes | 0a073b8 | 2013-04-17 15:54:58 -0700 | [diff] [blame] | 6263 | } |
Chris Wilson | c0951f0 | 2013-10-10 21:58:50 +0100 | [diff] [blame] | 6264 | dev_priv->rps.enabled = true; |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 6265 | mutex_unlock(&dev_priv->rps.hw_lock); |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 6266 | |
| 6267 | intel_runtime_pm_put(dev_priv); |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 6268 | } |
| 6269 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6270 | void intel_enable_gt_powersave(struct drm_device *dev) |
| 6271 | { |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 6272 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6273 | |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6274 | if (IS_IRONLAKE_M(dev)) { |
Imre Deak | dc1d013 | 2014-04-14 20:24:28 +0300 | [diff] [blame] | 6275 | mutex_lock(&dev->struct_mutex); |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6276 | ironlake_enable_drps(dev); |
| 6277 | ironlake_enable_rc6(dev); |
| 6278 | intel_init_emon(dev); |
Imre Deak | dc1d013 | 2014-04-14 20:24:28 +0300 | [diff] [blame] | 6279 | mutex_unlock(&dev->struct_mutex); |
Deepak S | 3880774 | 2014-05-23 21:00:15 +0530 | [diff] [blame] | 6280 | } else if (INTEL_INFO(dev)->gen >= 6) { |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 6281 | /* |
| 6282 | * PCU communication is slow and this doesn't need to be |
| 6283 | * done at any specific time, so do this out of our fast path |
| 6284 | * to make resume and init faster. |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 6285 | * |
| 6286 | * We depend on the HW RC6 power context save/restore |
| 6287 | * mechanism when entering D3 through runtime PM suspend. So |
| 6288 | * disable RPM until RPS/RC6 is properly setup. We can only |
| 6289 | * get here via the driver load/system resume/runtime resume |
| 6290 | * paths, so the _noresume version is enough (and in case of |
| 6291 | * runtime resume it's necessary). |
Jesse Barnes | 1a01ab3 | 2012-11-02 11:14:00 -0700 | [diff] [blame] | 6292 | */ |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 6293 | if (schedule_delayed_work(&dev_priv->rps.delayed_resume_work, |
| 6294 | round_jiffies_up_relative(HZ))) |
| 6295 | intel_runtime_pm_get_noresume(dev_priv); |
Daniel Vetter | 8090c6b | 2012-06-24 16:42:32 +0200 | [diff] [blame] | 6296 | } |
| 6297 | } |
| 6298 | |
Imre Deak | c6df39b | 2014-04-14 20:24:29 +0300 | [diff] [blame] | 6299 | void intel_reset_gt_powersave(struct drm_device *dev) |
| 6300 | { |
| 6301 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6302 | |
| 6303 | dev_priv->rps.enabled = false; |
| 6304 | intel_enable_gt_powersave(dev); |
| 6305 | } |
| 6306 | |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6307 | static void ibx_init_clock_gating(struct drm_device *dev) |
| 6308 | { |
| 6309 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6310 | |
| 6311 | /* |
| 6312 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 6313 | * gating for the panel power sequencer or it will fail to |
| 6314 | * start up when no ports are active. |
| 6315 | */ |
| 6316 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE); |
| 6317 | } |
| 6318 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6319 | static void g4x_disable_trickle_feed(struct drm_device *dev) |
| 6320 | { |
| 6321 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6322 | int pipe; |
| 6323 | |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6324 | for_each_pipe(dev_priv, pipe) { |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6325 | I915_WRITE(DSPCNTR(pipe), |
| 6326 | I915_READ(DSPCNTR(pipe)) | |
| 6327 | DISPPLANE_TRICKLE_FEED_DISABLE); |
Ville Syrjälä | 1dba99f | 2013-10-01 18:02:18 +0300 | [diff] [blame] | 6328 | intel_flush_primary_plane(dev_priv, pipe); |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6329 | } |
| 6330 | } |
| 6331 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6332 | static void ilk_init_lp_watermarks(struct drm_device *dev) |
| 6333 | { |
| 6334 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6335 | |
| 6336 | I915_WRITE(WM3_LP_ILK, I915_READ(WM3_LP_ILK) & ~WM1_LP_SR_EN); |
| 6337 | I915_WRITE(WM2_LP_ILK, I915_READ(WM2_LP_ILK) & ~WM1_LP_SR_EN); |
| 6338 | I915_WRITE(WM1_LP_ILK, I915_READ(WM1_LP_ILK) & ~WM1_LP_SR_EN); |
| 6339 | |
| 6340 | /* |
| 6341 | * Don't touch WM1S_LP_EN here. |
| 6342 | * Doing so could cause underruns. |
| 6343 | */ |
| 6344 | } |
| 6345 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6346 | static void ironlake_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6347 | { |
| 6348 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6349 | uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6350 | |
Damien Lespiau | f1e8fa5 | 2013-06-07 17:41:09 +0100 | [diff] [blame] | 6351 | /* |
| 6352 | * Required for FBC |
| 6353 | * WaFbcDisableDpfcClockGating:ilk |
| 6354 | */ |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6355 | dspclk_gate |= ILK_DPFCRUNIT_CLOCK_GATE_DISABLE | |
| 6356 | ILK_DPFCUNIT_CLOCK_GATE_DISABLE | |
| 6357 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6358 | |
| 6359 | I915_WRITE(PCH_3DCGDIS0, |
| 6360 | MARIUNIT_CLOCK_GATE_DISABLE | |
| 6361 | SVSMUNIT_CLOCK_GATE_DISABLE); |
| 6362 | I915_WRITE(PCH_3DCGDIS1, |
| 6363 | VFMUNIT_CLOCK_GATE_DISABLE); |
| 6364 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6365 | /* |
| 6366 | * According to the spec the following bits should be set in |
| 6367 | * order to enable memory self-refresh |
| 6368 | * The bit 22/21 of 0x42004 |
| 6369 | * The bit 5 of 0x42020 |
| 6370 | * The bit 15 of 0x45000 |
| 6371 | */ |
| 6372 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6373 | (I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6374 | ILK_DPARB_GATE | ILK_VSDPFD_FULL)); |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6375 | dspclk_gate |= ILK_DPARBUNIT_CLOCK_GATE_ENABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6376 | I915_WRITE(DISP_ARB_CTL, |
| 6377 | (I915_READ(DISP_ARB_CTL) | |
| 6378 | DISP_FBC_WM_DIS)); |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6379 | |
| 6380 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6381 | |
| 6382 | /* |
| 6383 | * Based on the document from hardware guys the following bits |
| 6384 | * should be set unconditionally in order to enable FBC. |
| 6385 | * The bit 22 of 0x42000 |
| 6386 | * The bit 22 of 0x42004 |
| 6387 | * The bit 7,8,9 of 0x42020. |
| 6388 | */ |
| 6389 | if (IS_IRONLAKE_M(dev)) { |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 6390 | /* WaFbcAsynchFlipDisableFbcQueue:ilk */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6391 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 6392 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 6393 | ILK_FBCQ_DIS); |
| 6394 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6395 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6396 | ILK_DPARB_GATE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6397 | } |
| 6398 | |
Damien Lespiau | 4d47e4f | 2012-10-19 17:55:42 +0100 | [diff] [blame] | 6399 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
| 6400 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6401 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6402 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6403 | ILK_ELPIN_409_SELECT); |
| 6404 | I915_WRITE(_3D_CHICKEN2, |
| 6405 | _3D_CHICKEN2_WM_READ_PIPELINED << 16 | |
| 6406 | _3D_CHICKEN2_WM_READ_PIPELINED); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6407 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6408 | /* WaDisableRenderCachePipelinedFlush:ilk */ |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6409 | I915_WRITE(CACHE_MODE_0, |
| 6410 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6411 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6412 | /* WaDisable_RenderCache_OperationalFlush:ilk */ |
| 6413 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6414 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6415 | g4x_disable_trickle_feed(dev); |
Ville Syrjälä | bdad2b2 | 2013-06-07 10:47:03 +0300 | [diff] [blame] | 6416 | |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6417 | ibx_init_clock_gating(dev); |
| 6418 | } |
| 6419 | |
| 6420 | static void cpt_init_clock_gating(struct drm_device *dev) |
| 6421 | { |
| 6422 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6423 | int pipe; |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6424 | uint32_t val; |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6425 | |
| 6426 | /* |
| 6427 | * On Ibex Peak and Cougar Point, we need to disable clock |
| 6428 | * gating for the panel power sequencer or it will fail to |
| 6429 | * start up when no ports are active. |
| 6430 | */ |
Jesse Barnes | cd66407 | 2013-10-02 10:34:19 -0700 | [diff] [blame] | 6431 | I915_WRITE(SOUTH_DSPCLK_GATE_D, PCH_DPLSUNIT_CLOCK_GATE_DISABLE | |
| 6432 | PCH_DPLUNIT_CLOCK_GATE_DISABLE | |
| 6433 | PCH_CPUNIT_CLOCK_GATE_DISABLE); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6434 | I915_WRITE(SOUTH_CHICKEN2, I915_READ(SOUTH_CHICKEN2) | |
| 6435 | DPLS_EDP_PPS_FIX_DIS); |
Takashi Iwai | 335c07b | 2012-12-11 11:46:29 +0100 | [diff] [blame] | 6436 | /* The below fixes the weird display corruption, a few pixels shifted |
| 6437 | * downward, on (only) LVDS of some HP laptops with IVY. |
| 6438 | */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6439 | for_each_pipe(dev_priv, pipe) { |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 6440 | val = I915_READ(TRANS_CHICKEN2(pipe)); |
| 6441 | val |= TRANS_CHICKEN2_TIMING_OVERRIDE; |
| 6442 | val &= ~TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 6443 | if (dev_priv->vbt.fdi_rx_polarity_inverted) |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6444 | val |= TRANS_CHICKEN2_FDI_POLARITY_REVERSED; |
Paulo Zanoni | dc4bd2d | 2013-04-08 15:48:08 -0300 | [diff] [blame] | 6445 | val &= ~TRANS_CHICKEN2_FRAME_START_DELAY_MASK; |
| 6446 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_COUNTER; |
| 6447 | val &= ~TRANS_CHICKEN2_DISABLE_DEEP_COLOR_MODESWITCH; |
Paulo Zanoni | 3f704fa | 2013-04-08 15:48:07 -0300 | [diff] [blame] | 6448 | I915_WRITE(TRANS_CHICKEN2(pipe), val); |
| 6449 | } |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6450 | /* WADP0ClockGatingDisable */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6451 | for_each_pipe(dev_priv, pipe) { |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6452 | I915_WRITE(TRANS_CHICKEN1(pipe), |
| 6453 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
| 6454 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6455 | } |
| 6456 | |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6457 | static void gen6_check_mch_setup(struct drm_device *dev) |
| 6458 | { |
| 6459 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6460 | uint32_t tmp; |
| 6461 | |
| 6462 | tmp = I915_READ(MCH_SSKPD); |
Daniel Vetter | df662a2 | 2014-08-04 11:17:25 +0200 | [diff] [blame] | 6463 | if ((tmp & MCH_SSKPD_WM0_MASK) != MCH_SSKPD_WM0_VAL) |
| 6464 | DRM_DEBUG_KMS("Wrong MCH_SSKPD value: 0x%08x This can cause underruns.\n", |
| 6465 | tmp); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6466 | } |
| 6467 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6468 | static void gen6_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6469 | { |
| 6470 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6471 | uint32_t dspclk_gate = ILK_VRHUNIT_CLOCK_GATE_DISABLE; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6472 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6473 | I915_WRITE(ILK_DSPCLK_GATE_D, dspclk_gate); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6474 | |
| 6475 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6476 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6477 | ILK_ELPIN_409_SELECT); |
| 6478 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6479 | /* WaDisableHiZPlanesWhenMSAAEnabled:snb */ |
Daniel Vetter | 4283908 | 2012-12-14 23:38:28 +0100 | [diff] [blame] | 6480 | I915_WRITE(_3D_CHICKEN, |
| 6481 | _MASKED_BIT_ENABLE(_3D_CHICKEN_HIZ_PLANE_DISABLE_MSAA_4X_SNB)); |
| 6482 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6483 | /* WaSetupGtModeTdRowDispatch:snb */ |
Daniel Vetter | 6547fbd | 2012-12-14 23:38:29 +0100 | [diff] [blame] | 6484 | if (IS_SNB_GT1(dev)) |
| 6485 | I915_WRITE(GEN6_GT_MODE, |
| 6486 | _MASKED_BIT_ENABLE(GEN6_TD_FOUR_ROW_DISPATCH_DISABLE)); |
| 6487 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6488 | /* WaDisable_RenderCache_OperationalFlush:snb */ |
| 6489 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6490 | |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6491 | /* |
| 6492 | * BSpec recoomends 8x4 when MSAA is used, |
| 6493 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6494 | * |
| 6495 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6496 | * disable bit, which we don't touch here, but it's good |
| 6497 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | 8d85d27 | 2014-02-04 21:59:15 +0200 | [diff] [blame] | 6498 | */ |
| 6499 | I915_WRITE(GEN6_GT_MODE, |
| 6500 | GEN6_WIZ_HASHING_MASK | GEN6_WIZ_HASHING_16x4); |
| 6501 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6502 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6503 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6504 | I915_WRITE(CACHE_MODE_0, |
Daniel Vetter | 5074329 | 2012-04-26 22:02:54 +0200 | [diff] [blame] | 6505 | _MASKED_BIT_DISABLE(CM0_STC_EVICT_DISABLE_LRA_SNB)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6506 | |
| 6507 | I915_WRITE(GEN6_UCGCTL1, |
| 6508 | I915_READ(GEN6_UCGCTL1) | |
| 6509 | GEN6_BLBUNIT_CLOCK_GATE_DISABLE | |
| 6510 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
| 6511 | |
| 6512 | /* According to the BSpec vol1g, bit 12 (RCPBUNIT) clock |
| 6513 | * gating disable must be set. Failure to set it results in |
| 6514 | * flickering pixels due to Z write ordering failures after |
| 6515 | * some amount of runtime in the Mesa "fire" demo, and Unigine |
| 6516 | * Sanctuary and Tropics, and apparently anything else with |
| 6517 | * alpha test or pixel discard. |
| 6518 | * |
| 6519 | * According to the spec, bit 11 (RCCUNIT) must also be set, |
| 6520 | * but we didn't debug actual testcases to find it out. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6521 | * |
Ville Syrjälä | ef59318 | 2014-01-22 21:32:47 +0200 | [diff] [blame] | 6522 | * WaDisableRCCUnitClockGating:snb |
| 6523 | * WaDisableRCPBUnitClockGating:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6524 | */ |
| 6525 | I915_WRITE(GEN6_UCGCTL2, |
| 6526 | GEN6_RCPBUNIT_CLOCK_GATE_DISABLE | |
| 6527 | GEN6_RCCUNIT_CLOCK_GATE_DISABLE); |
| 6528 | |
Ville Syrjälä | 5eb146d | 2014-02-04 21:59:16 +0200 | [diff] [blame] | 6529 | /* WaStripsFansDisableFastClipPerformanceFix:snb */ |
Ville Syrjälä | 743b57d | 2014-02-04 21:59:17 +0200 | [diff] [blame] | 6530 | I915_WRITE(_3D_CHICKEN3, |
| 6531 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_FASTCLIP_CULL)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6532 | |
| 6533 | /* |
Ville Syrjälä | e927ecd | 2014-02-04 21:59:18 +0200 | [diff] [blame] | 6534 | * Bspec says: |
| 6535 | * "This bit must be set if 3DSTATE_CLIP clip mode is set to normal and |
| 6536 | * 3DSTATE_SF number of SF output attributes is more than 16." |
| 6537 | */ |
| 6538 | I915_WRITE(_3D_CHICKEN3, |
| 6539 | _MASKED_BIT_ENABLE(_3D_CHICKEN3_SF_DISABLE_PIPELINED_ATTR_FETCH)); |
| 6540 | |
| 6541 | /* |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6542 | * According to the spec the following bits should be |
| 6543 | * set in order to enable memory self-refresh and fbc: |
| 6544 | * The bit21 and bit22 of 0x42000 |
| 6545 | * The bit21 and bit22 of 0x42004 |
| 6546 | * The bit5 and bit7 of 0x42020 |
| 6547 | * The bit14 of 0x70180 |
| 6548 | * The bit14 of 0x71180 |
Damien Lespiau | 4bb3533 | 2013-06-14 15:23:24 +0100 | [diff] [blame] | 6549 | * |
| 6550 | * WaFbcAsynchFlipDisableFbcQueue:snb |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6551 | */ |
| 6552 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 6553 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 6554 | ILK_FBCQ_DIS | ILK_PABSTRETCH_DIS); |
| 6555 | I915_WRITE(ILK_DISPLAY_CHICKEN2, |
| 6556 | I915_READ(ILK_DISPLAY_CHICKEN2) | |
| 6557 | ILK_DPARB_GATE | ILK_VSDPFD_FULL); |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6558 | I915_WRITE(ILK_DSPCLK_GATE_D, |
| 6559 | I915_READ(ILK_DSPCLK_GATE_D) | |
| 6560 | ILK_DPARBUNIT_CLOCK_GATE_ENABLE | |
| 6561 | ILK_DPFDUNIT_CLOCK_GATE_ENABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6562 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6563 | g4x_disable_trickle_feed(dev); |
Ben Widawsky | f8f2ac9 | 2012-10-03 19:34:24 -0700 | [diff] [blame] | 6564 | |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6565 | cpt_init_clock_gating(dev); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6566 | |
| 6567 | gen6_check_mch_setup(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6568 | } |
| 6569 | |
| 6570 | static void gen7_setup_fixed_func_scheduler(struct drm_i915_private *dev_priv) |
| 6571 | { |
| 6572 | uint32_t reg = I915_READ(GEN7_FF_THREAD_MODE); |
| 6573 | |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 6574 | /* |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6575 | * WaVSThreadDispatchOverride:ivb,vlv |
Ville Syrjälä | 3aad905 | 2014-01-22 21:32:59 +0200 | [diff] [blame] | 6576 | * |
| 6577 | * This actually overrides the dispatch |
| 6578 | * mode for all thread types. |
| 6579 | */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6580 | reg &= ~GEN7_FF_SCHED_MASK; |
| 6581 | reg |= GEN7_FF_TS_SCHED_HW; |
| 6582 | reg |= GEN7_FF_VS_SCHED_HW; |
| 6583 | reg |= GEN7_FF_DS_SCHED_HW; |
| 6584 | |
| 6585 | I915_WRITE(GEN7_FF_THREAD_MODE, reg); |
| 6586 | } |
| 6587 | |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6588 | static void lpt_init_clock_gating(struct drm_device *dev) |
| 6589 | { |
| 6590 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6591 | |
| 6592 | /* |
| 6593 | * TODO: this bit should only be enabled when really needed, then |
| 6594 | * disabled when not needed anymore in order to save power. |
| 6595 | */ |
| 6596 | if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) |
| 6597 | I915_WRITE(SOUTH_DSPCLK_GATE_D, |
| 6598 | I915_READ(SOUTH_DSPCLK_GATE_D) | |
| 6599 | PCH_LP_PARTITION_LEVEL_DISABLE); |
Paulo Zanoni | 0a790cd | 2013-04-17 18:15:49 -0300 | [diff] [blame] | 6600 | |
| 6601 | /* WADPOClockGatingDisable:hsw */ |
| 6602 | I915_WRITE(_TRANSA_CHICKEN1, |
| 6603 | I915_READ(_TRANSA_CHICKEN1) | |
| 6604 | TRANS_CHICKEN1_DP0UNIT_GC_DISABLE); |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6605 | } |
| 6606 | |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 6607 | static void lpt_suspend_hw(struct drm_device *dev) |
| 6608 | { |
| 6609 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6610 | |
| 6611 | if (dev_priv->pch_id == INTEL_PCH_LPT_LP_DEVICE_ID_TYPE) { |
| 6612 | uint32_t val = I915_READ(SOUTH_DSPCLK_GATE_D); |
| 6613 | |
| 6614 | val &= ~PCH_LP_PARTITION_LEVEL_DISABLE; |
| 6615 | I915_WRITE(SOUTH_DSPCLK_GATE_D, val); |
| 6616 | } |
| 6617 | } |
| 6618 | |
Paulo Zanoni | 47c2bd9 | 2014-08-21 17:09:37 -0300 | [diff] [blame] | 6619 | static void broadwell_init_clock_gating(struct drm_device *dev) |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6620 | { |
| 6621 | struct drm_i915_private *dev_priv = dev->dev_private; |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 6622 | enum pipe pipe; |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6623 | |
| 6624 | I915_WRITE(WM3_LP_ILK, 0); |
| 6625 | I915_WRITE(WM2_LP_ILK, 0); |
| 6626 | I915_WRITE(WM1_LP_ILK, 0); |
Ben Widawsky | 50ed5fb | 2013-11-02 21:07:40 -0700 | [diff] [blame] | 6627 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6628 | /* WaSwitchSolVfFArbitrationPriority:bdw */ |
Ben Widawsky | 50ed5fb | 2013-11-02 21:07:40 -0700 | [diff] [blame] | 6629 | 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] | 6630 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6631 | /* WaPsrDPAMaskVBlankInSRD:bdw */ |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6632 | I915_WRITE(CHICKEN_PAR1_1, |
| 6633 | I915_READ(CHICKEN_PAR1_1) | DPA_MASK_VBLANK_SRD); |
| 6634 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6635 | /* WaPsrDPRSUnmaskVBlankInSRD:bdw */ |
Damien Lespiau | 055e393 | 2014-08-18 13:49:10 +0100 | [diff] [blame] | 6636 | for_each_pipe(dev_priv, pipe) { |
Damien Lespiau | 07d27e2 | 2014-03-03 17:31:46 +0000 | [diff] [blame] | 6637 | I915_WRITE(CHICKEN_PIPESL_1(pipe), |
Ville Syrjälä | c7c6562 | 2014-03-05 13:05:45 +0200 | [diff] [blame] | 6638 | I915_READ(CHICKEN_PIPESL_1(pipe)) | |
Ville Syrjälä | 8f670bb | 2014-03-05 13:05:47 +0200 | [diff] [blame] | 6639 | BDW_DPRS_MASK_VBLANK_SRD); |
Ben Widawsky | fe4ab3c | 2013-11-02 21:07:54 -0700 | [diff] [blame] | 6640 | } |
Ben Widawsky | 63801f2 | 2013-12-12 17:26:03 -0800 | [diff] [blame] | 6641 | |
Ben Widawsky | ab57fff | 2013-12-12 15:28:04 -0800 | [diff] [blame] | 6642 | /* WaVSRefCountFullforceMissDisable:bdw */ |
| 6643 | /* WaDSRefCountFullforceMissDisable:bdw */ |
| 6644 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6645 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 6646 | ~(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] | 6647 | |
Ville Syrjälä | 295e8bb | 2014-02-27 21:59:01 +0200 | [diff] [blame] | 6648 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6649 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 4f1ca9e | 2014-02-27 21:59:02 +0200 | [diff] [blame] | 6650 | |
| 6651 | /* WaDisableSDEUnitClockGating:bdw */ |
| 6652 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6653 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Damien Lespiau | 5d70868 | 2014-03-26 18:41:51 +0000 | [diff] [blame] | 6654 | |
Paulo Zanoni | 89d6b2b | 2014-08-21 17:09:36 -0300 | [diff] [blame] | 6655 | lpt_init_clock_gating(dev); |
Ben Widawsky | 1020a5c | 2013-11-02 21:07:06 -0700 | [diff] [blame] | 6656 | } |
| 6657 | |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6658 | static void haswell_init_clock_gating(struct drm_device *dev) |
| 6659 | { |
| 6660 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6661 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6662 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6663 | |
Francisco Jerez | f3fc488 | 2013-10-02 15:53:16 -0700 | [diff] [blame] | 6664 | /* L3 caching of data atomics doesn't work -- disable it. */ |
| 6665 | I915_WRITE(HSW_SCRATCH1, HSW_SCRATCH1_L3_DATA_ATOMICS_DISABLE); |
| 6666 | I915_WRITE(HSW_ROW_CHICKEN3, |
| 6667 | _MASKED_BIT_ENABLE(HSW_ROW_CHICKEN3_L3_GLOBAL_ATOMICS_DISABLE)); |
| 6668 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6669 | /* This is required by WaCatErrorRejectionIssue:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6670 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6671 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6672 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6673 | |
Ville Syrjälä | e36ea7f | 2014-01-22 21:33:00 +0200 | [diff] [blame] | 6674 | /* WaVSRefCountFullforceMissDisable:hsw */ |
| 6675 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6676 | I915_READ(GEN7_FF_THREAD_MODE) & ~GEN7_FF_VS_REF_CNT_FFME); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6677 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6678 | /* WaDisable_RenderCache_OperationalFlush:hsw */ |
| 6679 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6680 | |
Chia-I Wu | fe27c60 | 2014-01-28 13:29:33 +0800 | [diff] [blame] | 6681 | /* enable HiZ Raw Stall Optimization */ |
| 6682 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6683 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6684 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6685 | /* WaDisable4x2SubspanOptimization:hsw */ |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6686 | I915_WRITE(CACHE_MODE_1, |
| 6687 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Eugeni Dodonov | 1544d9d | 2012-07-02 11:51:10 -0300 | [diff] [blame] | 6688 | |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6689 | /* |
| 6690 | * BSpec recommends 8x4 when MSAA is used, |
| 6691 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6692 | * |
| 6693 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6694 | * disable bit, which we don't touch here, but it's good |
| 6695 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a12c496 | 2014-02-04 21:59:20 +0200 | [diff] [blame] | 6696 | */ |
| 6697 | I915_WRITE(GEN7_GT_MODE, |
| 6698 | GEN6_WIZ_HASHING_MASK | GEN6_WIZ_HASHING_16x4); |
| 6699 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6700 | /* WaSwitchSolVfFArbitrationPriority:hsw */ |
Ben Widawsky | e3dff58 | 2013-03-20 14:49:14 -0700 | [diff] [blame] | 6701 | I915_WRITE(GAM_ECOCHK, I915_READ(GAM_ECOCHK) | HSW_ECOCHK_ARB_PRIO_SOL); |
| 6702 | |
Paulo Zanoni | 90a8864 | 2013-05-03 17:23:45 -0300 | [diff] [blame] | 6703 | /* WaRsPkgCStateDisplayPMReq:hsw */ |
| 6704 | I915_WRITE(CHICKEN_PAR1_1, |
| 6705 | I915_READ(CHICKEN_PAR1_1) | FORCE_ARB_IDLE_PLANES); |
Eugeni Dodonov | 1544d9d | 2012-07-02 11:51:10 -0300 | [diff] [blame] | 6706 | |
Paulo Zanoni | 17a303e | 2012-11-20 15:12:07 -0200 | [diff] [blame] | 6707 | lpt_init_clock_gating(dev); |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 6708 | } |
| 6709 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6710 | static void ivybridge_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6711 | { |
| 6712 | struct drm_i915_private *dev_priv = dev->dev_private; |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6713 | uint32_t snpcr; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6714 | |
Ville Syrjälä | 017636c | 2013-12-05 15:51:37 +0200 | [diff] [blame] | 6715 | ilk_init_lp_watermarks(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6716 | |
Damien Lespiau | 231e54f | 2012-10-19 17:55:41 +0100 | [diff] [blame] | 6717 | I915_WRITE(ILK_DSPCLK_GATE_D, ILK_VRHUNIT_CLOCK_GATE_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6718 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6719 | /* WaDisableEarlyCull:ivb */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6720 | I915_WRITE(_3D_CHICKEN3, |
| 6721 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6722 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6723 | /* WaDisableBackToBackFlipFix:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6724 | I915_WRITE(IVB_CHICKEN3, |
| 6725 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6726 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6727 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6728 | /* WaDisablePSDDualDispatchEnable:ivb */ |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6729 | if (IS_IVB_GT1(dev)) |
| 6730 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
| 6731 | _MASKED_BIT_ENABLE(GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6732 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6733 | /* WaDisable_RenderCache_OperationalFlush:ivb */ |
| 6734 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6735 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6736 | /* Apply the WaDisableRHWOOptimizationForRenderHang:ivb workaround. */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6737 | I915_WRITE(GEN7_COMMON_SLICE_CHICKEN1, |
| 6738 | GEN7_CSC1_RHWO_OPT_DISABLE_IN_RCC); |
| 6739 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6740 | /* WaApplyL3ControlAndL3ChickenMode:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6741 | I915_WRITE(GEN7_L3CNTLREG1, |
| 6742 | GEN7_WA_FOR_GEN7_L3_CONTROL); |
| 6743 | I915_WRITE(GEN7_L3_CHICKEN_MODE_REGISTER, |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6744 | GEN7_WA_L3_CHICKEN_MODE); |
| 6745 | if (IS_IVB_GT1(dev)) |
| 6746 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6747 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6748 | else { |
| 6749 | /* must write both registers */ |
| 6750 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6751 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6752 | I915_WRITE(GEN7_ROW_CHICKEN2_GT2, |
| 6753 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
Ville Syrjälä | 412236c | 2014-01-22 21:32:44 +0200 | [diff] [blame] | 6754 | } |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6755 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6756 | /* WaForceL3Serialization:ivb */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6757 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6758 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6759 | |
Ville Syrjälä | 1b80a19a | 2014-01-22 21:32:53 +0200 | [diff] [blame] | 6760 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6761 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6762 | * This implements the WaDisableRCZUnitClockGating:ivb workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6763 | */ |
| 6764 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 28acf3b | 2014-01-22 21:32:48 +0200 | [diff] [blame] | 6765 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6766 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6767 | /* This is required by WaCatErrorRejectionIssue:ivb */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6768 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6769 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6770 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6771 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6772 | g4x_disable_trickle_feed(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6773 | |
| 6774 | gen7_setup_fixed_func_scheduler(dev_priv); |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6775 | |
Chris Wilson | 2272134 | 2014-03-04 09:41:43 +0000 | [diff] [blame] | 6776 | if (0) { /* causes HiZ corruption on ivb:gt1 */ |
| 6777 | /* enable HiZ Raw Stall Optimization */ |
| 6778 | I915_WRITE(CACHE_MODE_0_GEN7, |
| 6779 | _MASKED_BIT_DISABLE(HIZ_RAW_STALL_OPT_DISABLE)); |
| 6780 | } |
Chia-I Wu | 116f2b6 | 2014-01-28 13:29:34 +0800 | [diff] [blame] | 6781 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6782 | /* WaDisable4x2SubspanOptimization:ivb */ |
Daniel Vetter | 97e1930 | 2012-04-24 16:00:21 +0200 | [diff] [blame] | 6783 | I915_WRITE(CACHE_MODE_1, |
| 6784 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6785 | |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6786 | /* |
| 6787 | * BSpec recommends 8x4 when MSAA is used, |
| 6788 | * however in practice 16x4 seems fastest. |
Ville Syrjälä | c5c98a5 | 2014-02-05 12:43:47 +0200 | [diff] [blame] | 6789 | * |
| 6790 | * Note that PS/WM thread counts depend on the WIZ hashing |
| 6791 | * disable bit, which we don't touch here, but it's good |
| 6792 | * to keep in mind (see 3DSTATE_PS and 3DSTATE_WM). |
Ville Syrjälä | a607c1a | 2014-02-04 21:59:19 +0200 | [diff] [blame] | 6793 | */ |
| 6794 | I915_WRITE(GEN7_GT_MODE, |
| 6795 | GEN6_WIZ_HASHING_MASK | GEN6_WIZ_HASHING_16x4); |
| 6796 | |
Ben Widawsky | 2084822 | 2012-05-04 18:58:59 -0700 | [diff] [blame] | 6797 | snpcr = I915_READ(GEN6_MBCUNIT_SNPCR); |
| 6798 | snpcr &= ~GEN6_MBC_SNPCR_MASK; |
| 6799 | snpcr |= GEN6_MBC_SNPCR_MED; |
| 6800 | I915_WRITE(GEN6_MBCUNIT_SNPCR, snpcr); |
Daniel Vetter | 3107bd4 | 2012-10-31 22:52:31 +0100 | [diff] [blame] | 6801 | |
Ben Widawsky | ab5c608 | 2013-04-05 13:12:41 -0700 | [diff] [blame] | 6802 | if (!HAS_PCH_NOP(dev)) |
| 6803 | cpt_init_clock_gating(dev); |
Daniel Vetter | 1d7aaa0 | 2013-02-09 21:03:42 +0100 | [diff] [blame] | 6804 | |
| 6805 | gen6_check_mch_setup(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6806 | } |
| 6807 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6808 | static void valleyview_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6809 | { |
| 6810 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6811 | |
Ville Syrjälä | d7fe0cc | 2013-05-21 18:01:50 +0300 | [diff] [blame] | 6812 | I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6813 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6814 | /* WaDisableEarlyCull:vlv */ |
Jesse Barnes | 87f8020 | 2012-10-02 17:43:41 -0500 | [diff] [blame] | 6815 | I915_WRITE(_3D_CHICKEN3, |
| 6816 | _MASKED_BIT_ENABLE(_3D_CHICKEN_SF_DISABLE_OBJEND_CULL)); |
| 6817 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6818 | /* WaDisableBackToBackFlipFix:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6819 | I915_WRITE(IVB_CHICKEN3, |
| 6820 | CHICKEN3_DGMG_REQ_OUT_FIX_DISABLE | |
| 6821 | CHICKEN3_DGMG_DONE_FIX_DISABLE); |
| 6822 | |
Ville Syrjälä | fad7d36 | 2014-01-22 21:32:39 +0200 | [diff] [blame] | 6823 | /* WaPsdDispatchEnable:vlv */ |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6824 | /* WaDisablePSDDualDispatchEnable:vlv */ |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6825 | I915_WRITE(GEN7_HALF_SLICE_CHICKEN1, |
Jesse Barnes | d3bc030 | 2013-03-08 10:45:51 -0800 | [diff] [blame] | 6826 | _MASKED_BIT_ENABLE(GEN7_MAX_PS_THREAD_DEP | |
| 6827 | GEN7_PSD_SINGLE_PORT_DISPATCH_ENABLE)); |
Jesse Barnes | 12f3382 | 2012-10-25 12:15:45 -0700 | [diff] [blame] | 6828 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6829 | /* WaDisable_RenderCache_OperationalFlush:vlv */ |
| 6830 | I915_WRITE(CACHE_MODE_0_GEN7, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6831 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6832 | /* WaForceL3Serialization:vlv */ |
Jesse Barnes | 61939d9 | 2012-10-02 17:43:38 -0500 | [diff] [blame] | 6833 | I915_WRITE(GEN7_L3SQCREG4, I915_READ(GEN7_L3SQCREG4) & |
| 6834 | ~L3SQ_URB_READ_CAM_MATCH_DISABLE); |
| 6835 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6836 | /* WaDisableDopClockGating:vlv */ |
Jesse Barnes | 8ab4397 | 2012-10-25 12:15:42 -0700 | [diff] [blame] | 6837 | I915_WRITE(GEN7_ROW_CHICKEN2, |
| 6838 | _MASKED_BIT_ENABLE(DOP_CLOCK_GATING_DISABLE)); |
| 6839 | |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6840 | /* This is required by WaCatErrorRejectionIssue:vlv */ |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6841 | I915_WRITE(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG, |
| 6842 | I915_READ(GEN7_SQ_CHICKEN_MBCUNIT_CONFIG) | |
| 6843 | GEN7_SQ_CHICKEN_MBCUNIT_SQINTMOB); |
| 6844 | |
Ville Syrjälä | 46680e0 | 2014-01-22 21:33:01 +0200 | [diff] [blame] | 6845 | gen7_setup_fixed_func_scheduler(dev_priv); |
| 6846 | |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6847 | /* |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6848 | * According to the spec, bit 13 (RCZUNIT) must be set on IVB. |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6849 | * This implements the WaDisableRCZUnitClockGating:vlv workaround. |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6850 | */ |
| 6851 | I915_WRITE(GEN6_UCGCTL2, |
Ville Syrjälä | 3c0edae | 2014-01-22 21:32:56 +0200 | [diff] [blame] | 6852 | GEN6_RCZUNIT_CLOCK_GATE_DISABLE); |
Jesse Barnes | 0f846f8 | 2012-06-14 11:04:47 -0700 | [diff] [blame] | 6853 | |
Akash Goel | c98f506 | 2014-03-24 23:00:07 +0530 | [diff] [blame] | 6854 | /* WaDisableL3Bank2xClockGate:vlv |
| 6855 | * Disabling L3 clock gating- MMIO 940c[25] = 1 |
| 6856 | * Set bit 25, to disable L3_BANK_2x_CLK_GATING */ |
| 6857 | I915_WRITE(GEN7_UCGCTL4, |
| 6858 | I915_READ(GEN7_UCGCTL4) | GEN7_L3BANK2X_CLOCK_GATE_DISABLE); |
Jesse Barnes | e3f33d4 | 2012-06-14 11:04:50 -0700 | [diff] [blame] | 6859 | |
Ville Syrjälä | e0d8d59 | 2013-06-12 22:11:18 +0300 | [diff] [blame] | 6860 | I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6861 | |
Ville Syrjälä | afd58e7 | 2014-01-22 21:33:03 +0200 | [diff] [blame] | 6862 | /* |
| 6863 | * BSpec says this must be set, even though |
| 6864 | * WaDisable4x2SubspanOptimization isn't listed for VLV. |
| 6865 | */ |
Daniel Vetter | 6b26c86 | 2012-04-24 14:04:12 +0200 | [diff] [blame] | 6866 | I915_WRITE(CACHE_MODE_1, |
| 6867 | _MASKED_BIT_ENABLE(PIXEL_SUBSPAN_COLLECT_OPT_DISABLE)); |
Jesse Barnes | 7983117 | 2012-06-20 10:53:12 -0700 | [diff] [blame] | 6868 | |
| 6869 | /* |
Ville Syrjälä | 031994e | 2014-01-22 21:32:46 +0200 | [diff] [blame] | 6870 | * WaIncreaseL3CreditsForVLVB0:vlv |
| 6871 | * This is the hardware default actually. |
| 6872 | */ |
| 6873 | I915_WRITE(GEN7_L3SQCREG1, VLV_B0_WA_L3SQCREG1_VALUE); |
| 6874 | |
| 6875 | /* |
Damien Lespiau | ecdb4eb7 | 2013-05-03 18:48:10 +0100 | [diff] [blame] | 6876 | * WaDisableVLVClockGating_VBIIssue:vlv |
Jesse Barnes | 2d80957 | 2012-10-25 12:15:44 -0700 | [diff] [blame] | 6877 | * Disable clock gating on th GCFG unit to prevent a delay |
| 6878 | * in the reporting of vblank events. |
| 6879 | */ |
Ville Syrjälä | 7a0d1ee | 2014-01-22 21:33:04 +0200 | [diff] [blame] | 6880 | I915_WRITE(VLV_GUNIT_CLOCK_GATE, GCFG_DIS); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6881 | } |
| 6882 | |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6883 | static void cherryview_init_clock_gating(struct drm_device *dev) |
| 6884 | { |
| 6885 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6886 | |
| 6887 | I915_WRITE(DSPCLK_GATE_D, VRHUNIT_CLOCK_GATE_DISABLE); |
| 6888 | |
| 6889 | I915_WRITE(MI_ARB_VLV, MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE); |
Ville Syrjälä | dd811e7 | 2014-04-09 13:28:33 +0300 | [diff] [blame] | 6890 | |
Ville Syrjälä | 232ce33 | 2014-04-09 13:28:35 +0300 | [diff] [blame] | 6891 | /* WaVSRefCountFullforceMissDisable:chv */ |
| 6892 | /* WaDSRefCountFullforceMissDisable:chv */ |
| 6893 | I915_WRITE(GEN7_FF_THREAD_MODE, |
| 6894 | I915_READ(GEN7_FF_THREAD_MODE) & |
| 6895 | ~(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] | 6896 | |
| 6897 | /* WaDisableSemaphoreAndSyncFlipWait:chv */ |
| 6898 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6899 | _MASKED_BIT_ENABLE(GEN8_RC_SEMA_IDLE_MSG_DISABLE)); |
Ville Syrjälä | 0846697 | 2014-04-09 13:28:37 +0300 | [diff] [blame] | 6900 | |
| 6901 | /* WaDisableCSUnitClockGating:chv */ |
| 6902 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 6903 | GEN6_CSUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | c631780 | 2014-04-09 13:28:38 +0300 | [diff] [blame] | 6904 | |
| 6905 | /* WaDisableSDEUnitClockGating:chv */ |
| 6906 | I915_WRITE(GEN8_UCGCTL6, I915_READ(GEN8_UCGCTL6) | |
| 6907 | GEN8_SDEUNIT_CLOCK_GATE_DISABLE); |
Rafael Barbalho | e0d34ce | 2014-04-09 13:28:40 +0300 | [diff] [blame] | 6908 | |
Ville Syrjälä | e4443e4 | 2014-04-09 13:28:41 +0300 | [diff] [blame] | 6909 | /* WaDisableGunitClockGating:chv (pre-production hw) */ |
| 6910 | I915_WRITE(VLV_GUNIT_CLOCK_GATE, I915_READ(VLV_GUNIT_CLOCK_GATE) | |
| 6911 | GINT_DIS); |
| 6912 | |
| 6913 | /* WaDisableFfDopClockGating:chv (pre-production hw) */ |
| 6914 | I915_WRITE(GEN6_RC_SLEEP_PSMI_CONTROL, |
| 6915 | _MASKED_BIT_ENABLE(GEN8_FF_DOP_CLOCK_GATE_DISABLE)); |
| 6916 | |
| 6917 | /* WaDisableDopClockGating:chv (pre-production hw) */ |
Ville Syrjälä | e4443e4 | 2014-04-09 13:28:41 +0300 | [diff] [blame] | 6918 | I915_WRITE(GEN6_UCGCTL1, I915_READ(GEN6_UCGCTL1) | |
| 6919 | GEN6_EU_TCUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 6920 | } |
| 6921 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6922 | static void g4x_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6923 | { |
| 6924 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6925 | uint32_t dspclk_gate; |
| 6926 | |
| 6927 | I915_WRITE(RENCLK_GATE_D1, 0); |
| 6928 | I915_WRITE(RENCLK_GATE_D2, VF_UNIT_CLOCK_GATE_DISABLE | |
| 6929 | GS_UNIT_CLOCK_GATE_DISABLE | |
| 6930 | CL_UNIT_CLOCK_GATE_DISABLE); |
| 6931 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 6932 | dspclk_gate = VRHUNIT_CLOCK_GATE_DISABLE | |
| 6933 | OVRUNIT_CLOCK_GATE_DISABLE | |
| 6934 | OVCUNIT_CLOCK_GATE_DISABLE; |
| 6935 | if (IS_GM45(dev)) |
| 6936 | dspclk_gate |= DSSUNIT_CLOCK_GATE_DISABLE; |
| 6937 | I915_WRITE(DSPCLK_GATE_D, dspclk_gate); |
Daniel Vetter | 4358a37 | 2012-10-18 11:49:51 +0200 | [diff] [blame] | 6938 | |
| 6939 | /* WaDisableRenderCachePipelinedFlush */ |
| 6940 | I915_WRITE(CACHE_MODE_0, |
| 6941 | _MASKED_BIT_ENABLE(CM0_PIPELINED_RENDER_FLUSH_DISABLE)); |
Ville Syrjälä | de1aa62 | 2013-06-07 10:47:01 +0300 | [diff] [blame] | 6942 | |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6943 | /* WaDisable_RenderCache_OperationalFlush:g4x */ |
| 6944 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
| 6945 | |
Ville Syrjälä | 0e088b8 | 2013-06-07 10:47:04 +0300 | [diff] [blame] | 6946 | g4x_disable_trickle_feed(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6947 | } |
| 6948 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6949 | static void crestline_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6950 | { |
| 6951 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6952 | |
| 6953 | I915_WRITE(RENCLK_GATE_D1, I965_RCC_CLOCK_GATE_DISABLE); |
| 6954 | I915_WRITE(RENCLK_GATE_D2, 0); |
| 6955 | I915_WRITE(DSPCLK_GATE_D, 0); |
| 6956 | I915_WRITE(RAMCLK_GATE_D, 0); |
| 6957 | I915_WRITE16(DEUC, 0); |
Ville Syrjälä | 20f9496 | 2013-06-07 10:47:02 +0300 | [diff] [blame] | 6958 | I915_WRITE(MI_ARB_STATE, |
| 6959 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6960 | |
| 6961 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
| 6962 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6963 | } |
| 6964 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6965 | static void broadwater_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6966 | { |
| 6967 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6968 | |
| 6969 | I915_WRITE(RENCLK_GATE_D1, I965_RCZ_CLOCK_GATE_DISABLE | |
| 6970 | I965_RCC_CLOCK_GATE_DISABLE | |
| 6971 | I965_RCPB_CLOCK_GATE_DISABLE | |
| 6972 | I965_ISC_CLOCK_GATE_DISABLE | |
| 6973 | I965_FBC_CLOCK_GATE_DISABLE); |
| 6974 | I915_WRITE(RENCLK_GATE_D2, 0); |
Ville Syrjälä | 20f9496 | 2013-06-07 10:47:02 +0300 | [diff] [blame] | 6975 | I915_WRITE(MI_ARB_STATE, |
| 6976 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Akash Goel | 4e04632 | 2014-04-04 17:14:38 +0530 | [diff] [blame] | 6977 | |
| 6978 | /* WaDisable_RenderCache_OperationalFlush:gen4 */ |
| 6979 | I915_WRITE(CACHE_MODE_0, _MASKED_BIT_DISABLE(RC_OP_FLUSH_ENABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6980 | } |
| 6981 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 6982 | static void gen3_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 6983 | { |
| 6984 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 6985 | u32 dstate = I915_READ(D_STATE); |
| 6986 | |
| 6987 | dstate |= DSTATE_PLL_D3_OFF | DSTATE_GFX_CLOCK_GATING | |
| 6988 | DSTATE_DOT_CLOCK_GATING; |
| 6989 | I915_WRITE(D_STATE, dstate); |
Chris Wilson | 13a86b8 | 2012-04-24 14:51:43 +0100 | [diff] [blame] | 6990 | |
| 6991 | if (IS_PINEVIEW(dev)) |
| 6992 | I915_WRITE(ECOSKPD, _MASKED_BIT_ENABLE(ECO_GATING_CX_ONLY)); |
Daniel Vetter | 974a3b0 | 2012-09-09 11:54:16 +0200 | [diff] [blame] | 6993 | |
| 6994 | /* IIR "flip pending" means done if this bit is set */ |
| 6995 | I915_WRITE(ECOSKPD, _MASKED_BIT_DISABLE(ECO_FLIP_DONE)); |
Ville Syrjälä | 12fabbcb9 | 2014-02-25 15:13:38 +0200 | [diff] [blame] | 6996 | |
| 6997 | /* interrupts should cause a wake up from C3 */ |
Ville Syrjälä | 3299254 | 2014-02-25 15:13:39 +0200 | [diff] [blame] | 6998 | I915_WRITE(INSTPM, _MASKED_BIT_ENABLE(INSTPM_AGPBUSY_INT_EN)); |
Ville Syrjälä | dbb4274 | 2014-02-25 15:13:41 +0200 | [diff] [blame] | 6999 | |
| 7000 | /* On GEN3 we really need to make sure the ARB C3 LP bit is set */ |
| 7001 | 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] | 7002 | |
| 7003 | I915_WRITE(MI_ARB_STATE, |
| 7004 | _MASKED_BIT_ENABLE(MI_ARB_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7005 | } |
| 7006 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7007 | static void i85x_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7008 | { |
| 7009 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7010 | |
| 7011 | I915_WRITE(RENCLK_GATE_D1, SV_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 54e472a | 2014-02-25 15:13:40 +0200 | [diff] [blame] | 7012 | |
| 7013 | /* interrupts should cause a wake up from C3 */ |
| 7014 | I915_WRITE(MI_STATE, _MASKED_BIT_ENABLE(MI_AGPBUSY_INT_EN) | |
| 7015 | _MASKED_BIT_DISABLE(MI_AGPBUSY_830_MODE)); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7016 | |
| 7017 | I915_WRITE(MEM_MODE, |
| 7018 | _MASKED_BIT_ENABLE(MEM_DISPLAY_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7019 | } |
| 7020 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7021 | static void i830_init_clock_gating(struct drm_device *dev) |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7022 | { |
| 7023 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7024 | |
| 7025 | I915_WRITE(DSPCLK_GATE_D, OVRUNIT_CLOCK_GATE_DISABLE); |
Ville Syrjälä | 1038392 | 2014-08-15 01:21:54 +0300 | [diff] [blame] | 7026 | |
| 7027 | I915_WRITE(MEM_MODE, |
| 7028 | _MASKED_BIT_ENABLE(MEM_DISPLAY_A_TRICKLE_FEED_DISABLE) | |
| 7029 | _MASKED_BIT_ENABLE(MEM_DISPLAY_B_TRICKLE_FEED_DISABLE)); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7030 | } |
| 7031 | |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7032 | void intel_init_clock_gating(struct drm_device *dev) |
| 7033 | { |
| 7034 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7035 | |
| 7036 | dev_priv->display.init_clock_gating(dev); |
Eugeni Dodonov | 6f1d69b | 2012-04-18 15:29:25 -0300 | [diff] [blame] | 7037 | } |
| 7038 | |
Imre Deak | 7d708ee | 2013-04-17 14:04:50 +0300 | [diff] [blame] | 7039 | void intel_suspend_hw(struct drm_device *dev) |
| 7040 | { |
| 7041 | if (HAS_PCH_LPT(dev)) |
| 7042 | lpt_suspend_hw(dev); |
| 7043 | } |
| 7044 | |
Paulo Zanoni | d2dee86 | 2014-09-19 16:04:54 -0300 | [diff] [blame] | 7045 | static void intel_init_fbc(struct drm_i915_private *dev_priv) |
| 7046 | { |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 7047 | if (!HAS_FBC(dev_priv)) { |
| 7048 | dev_priv->fbc.enabled = false; |
Paulo Zanoni | d2dee86 | 2014-09-19 16:04:54 -0300 | [diff] [blame] | 7049 | return; |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 7050 | } |
Paulo Zanoni | d2dee86 | 2014-09-19 16:04:54 -0300 | [diff] [blame] | 7051 | |
| 7052 | if (INTEL_INFO(dev_priv)->gen >= 7) { |
| 7053 | dev_priv->display.fbc_enabled = ironlake_fbc_enabled; |
| 7054 | dev_priv->display.enable_fbc = gen7_enable_fbc; |
| 7055 | dev_priv->display.disable_fbc = ironlake_disable_fbc; |
| 7056 | } else if (INTEL_INFO(dev_priv)->gen >= 5) { |
| 7057 | dev_priv->display.fbc_enabled = ironlake_fbc_enabled; |
| 7058 | dev_priv->display.enable_fbc = ironlake_enable_fbc; |
| 7059 | dev_priv->display.disable_fbc = ironlake_disable_fbc; |
| 7060 | } else if (IS_GM45(dev_priv)) { |
| 7061 | dev_priv->display.fbc_enabled = g4x_fbc_enabled; |
| 7062 | dev_priv->display.enable_fbc = g4x_enable_fbc; |
| 7063 | dev_priv->display.disable_fbc = g4x_disable_fbc; |
| 7064 | } else { |
| 7065 | dev_priv->display.fbc_enabled = i8xx_fbc_enabled; |
| 7066 | dev_priv->display.enable_fbc = i8xx_enable_fbc; |
| 7067 | dev_priv->display.disable_fbc = i8xx_disable_fbc; |
| 7068 | |
| 7069 | /* This value was pulled out of someone's hat */ |
| 7070 | I915_WRITE(FBC_CONTROL, 500 << FBC_CTL_INTERVAL_SHIFT); |
| 7071 | } |
Paulo Zanoni | 9adccc6 | 2014-09-19 16:04:55 -0300 | [diff] [blame] | 7072 | |
| 7073 | dev_priv->fbc.enabled = dev_priv->display.fbc_enabled(dev_priv->dev); |
Paulo Zanoni | d2dee86 | 2014-09-19 16:04:54 -0300 | [diff] [blame] | 7074 | } |
| 7075 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7076 | /* Set up chip specific power management-related functions */ |
| 7077 | void intel_init_pm(struct drm_device *dev) |
| 7078 | { |
| 7079 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7080 | |
Paulo Zanoni | d2dee86 | 2014-09-19 16:04:54 -0300 | [diff] [blame] | 7081 | intel_init_fbc(dev_priv); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7082 | |
Daniel Vetter | c921aba | 2012-04-26 23:28:17 +0200 | [diff] [blame] | 7083 | /* For cxsr */ |
| 7084 | if (IS_PINEVIEW(dev)) |
| 7085 | i915_pineview_get_mem_freq(dev); |
| 7086 | else if (IS_GEN5(dev)) |
| 7087 | i915_ironlake_get_mem_freq(dev); |
| 7088 | |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7089 | /* For FIFO watermark updates */ |
Damien Lespiau | c83155a | 2014-03-28 00:18:35 +0530 | [diff] [blame] | 7090 | if (IS_GEN9(dev)) { |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 7091 | skl_setup_wm_latency(dev); |
| 7092 | |
Damien Lespiau | c83155a | 2014-03-28 00:18:35 +0530 | [diff] [blame] | 7093 | dev_priv->display.init_clock_gating = gen9_init_clock_gating; |
Pradeep Bhat | 2d41c0b | 2014-11-04 17:06:42 +0000 | [diff] [blame] | 7094 | dev_priv->display.update_wm = skl_update_wm; |
| 7095 | dev_priv->display.update_sprite_wm = skl_update_sprite_wm; |
Damien Lespiau | c83155a | 2014-03-28 00:18:35 +0530 | [diff] [blame] | 7096 | } else if (HAS_PCH_SPLIT(dev)) { |
Damien Lespiau | fa50ad6 | 2014-03-17 18:01:16 +0000 | [diff] [blame] | 7097 | ilk_setup_wm_latency(dev); |
Ville Syrjälä | 53615a5 | 2013-08-01 16:18:50 +0300 | [diff] [blame] | 7098 | |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7099 | if ((IS_GEN5(dev) && dev_priv->wm.pri_latency[1] && |
| 7100 | dev_priv->wm.spr_latency[1] && dev_priv->wm.cur_latency[1]) || |
| 7101 | (!IS_GEN5(dev) && dev_priv->wm.pri_latency[0] && |
| 7102 | dev_priv->wm.spr_latency[0] && dev_priv->wm.cur_latency[0])) { |
| 7103 | dev_priv->display.update_wm = ilk_update_wm; |
| 7104 | dev_priv->display.update_sprite_wm = ilk_update_sprite_wm; |
| 7105 | } else { |
| 7106 | DRM_DEBUG_KMS("Failed to read display plane latency. " |
| 7107 | "Disable CxSR\n"); |
| 7108 | } |
| 7109 | |
| 7110 | if (IS_GEN5(dev)) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7111 | dev_priv->display.init_clock_gating = ironlake_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7112 | else if (IS_GEN6(dev)) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7113 | dev_priv->display.init_clock_gating = gen6_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7114 | else if (IS_IVYBRIDGE(dev)) |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7115 | dev_priv->display.init_clock_gating = ivybridge_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7116 | else if (IS_HASWELL(dev)) |
Eugeni Dodonov | cad2a2d | 2012-07-02 11:51:09 -0300 | [diff] [blame] | 7117 | dev_priv->display.init_clock_gating = haswell_init_clock_gating; |
Ville Syrjälä | bd602544 | 2014-01-07 16:14:10 +0200 | [diff] [blame] | 7118 | else if (INTEL_INFO(dev)->gen == 8) |
Paulo Zanoni | 47c2bd9 | 2014-08-21 17:09:37 -0300 | [diff] [blame] | 7119 | dev_priv->display.init_clock_gating = broadwell_init_clock_gating; |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 7120 | } else if (IS_CHERRYVIEW(dev)) { |
Ville Syrjälä | 3c2777f | 2014-06-26 17:03:06 +0300 | [diff] [blame] | 7121 | dev_priv->display.update_wm = cherryview_update_wm; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 7122 | dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm; |
Ville Syrjälä | a4565da | 2014-04-09 13:28:10 +0300 | [diff] [blame] | 7123 | dev_priv->display.init_clock_gating = |
| 7124 | cherryview_init_clock_gating; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7125 | } else if (IS_VALLEYVIEW(dev)) { |
| 7126 | dev_priv->display.update_wm = valleyview_update_wm; |
Gajanan Bhat | 01e184c | 2014-08-07 17:03:30 +0530 | [diff] [blame] | 7127 | dev_priv->display.update_sprite_wm = valleyview_update_sprite_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7128 | dev_priv->display.init_clock_gating = |
| 7129 | valleyview_init_clock_gating; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7130 | } else if (IS_PINEVIEW(dev)) { |
| 7131 | if (!intel_get_cxsr_latency(IS_PINEVIEW_G(dev), |
| 7132 | dev_priv->is_ddr3, |
| 7133 | dev_priv->fsb_freq, |
| 7134 | dev_priv->mem_freq)) { |
| 7135 | DRM_INFO("failed to find known CxSR latency " |
| 7136 | "(found ddr%s fsb freq %d, mem freq %d), " |
| 7137 | "disabling CxSR\n", |
| 7138 | (dev_priv->is_ddr3 == 1) ? "3" : "2", |
| 7139 | dev_priv->fsb_freq, dev_priv->mem_freq); |
| 7140 | /* Disable CxSR and never update its watermark again */ |
Imre Deak | 5209b1f | 2014-07-01 12:36:17 +0300 | [diff] [blame] | 7141 | intel_set_memory_cxsr(dev_priv, false); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7142 | dev_priv->display.update_wm = NULL; |
| 7143 | } else |
| 7144 | dev_priv->display.update_wm = pineview_update_wm; |
| 7145 | dev_priv->display.init_clock_gating = gen3_init_clock_gating; |
| 7146 | } else if (IS_G4X(dev)) { |
| 7147 | dev_priv->display.update_wm = g4x_update_wm; |
| 7148 | dev_priv->display.init_clock_gating = g4x_init_clock_gating; |
| 7149 | } else if (IS_GEN4(dev)) { |
| 7150 | dev_priv->display.update_wm = i965_update_wm; |
| 7151 | if (IS_CRESTLINE(dev)) |
| 7152 | dev_priv->display.init_clock_gating = crestline_init_clock_gating; |
| 7153 | else if (IS_BROADWATER(dev)) |
| 7154 | dev_priv->display.init_clock_gating = broadwater_init_clock_gating; |
| 7155 | } else if (IS_GEN3(dev)) { |
| 7156 | dev_priv->display.update_wm = i9xx_update_wm; |
| 7157 | dev_priv->display.get_fifo_size = i9xx_get_fifo_size; |
| 7158 | dev_priv->display.init_clock_gating = gen3_init_clock_gating; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7159 | } else if (IS_GEN2(dev)) { |
| 7160 | if (INTEL_INFO(dev)->num_pipes == 1) { |
| 7161 | dev_priv->display.update_wm = i845_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7162 | dev_priv->display.get_fifo_size = i845_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7163 | } else { |
| 7164 | dev_priv->display.update_wm = i9xx_update_wm; |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7165 | dev_priv->display.get_fifo_size = i830_get_fifo_size; |
Daniel Vetter | feb56b9 | 2013-12-14 20:38:30 -0200 | [diff] [blame] | 7166 | } |
| 7167 | |
| 7168 | if (IS_I85X(dev) || IS_I865G(dev)) |
| 7169 | dev_priv->display.init_clock_gating = i85x_init_clock_gating; |
| 7170 | else |
| 7171 | dev_priv->display.init_clock_gating = i830_init_clock_gating; |
| 7172 | } else { |
| 7173 | DRM_ERROR("unexpected fall-through in intel_init_pm\n"); |
Eugeni Dodonov | 1fa6110 | 2012-04-18 15:29:26 -0300 | [diff] [blame] | 7174 | } |
| 7175 | } |
| 7176 | |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 7177 | int sandybridge_pcode_read(struct drm_i915_private *dev_priv, u8 mbox, u32 *val) |
| 7178 | { |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 7179 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 7180 | |
| 7181 | if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) { |
| 7182 | DRM_DEBUG_DRIVER("warning: pcode (read) mailbox access failed\n"); |
| 7183 | return -EAGAIN; |
| 7184 | } |
| 7185 | |
| 7186 | I915_WRITE(GEN6_PCODE_DATA, *val); |
Pradeep Bhat | 2af30a5 | 2014-11-04 17:06:38 +0000 | [diff] [blame] | 7187 | if (INTEL_INFO(dev_priv)->gen >= 9) |
| 7188 | I915_WRITE(GEN9_PCODE_DATA1, 0); |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 7189 | I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox); |
| 7190 | |
| 7191 | if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0, |
| 7192 | 500)) { |
| 7193 | DRM_ERROR("timeout waiting for pcode read (%d) to finish\n", mbox); |
| 7194 | return -ETIMEDOUT; |
| 7195 | } |
| 7196 | |
| 7197 | *val = I915_READ(GEN6_PCODE_DATA); |
| 7198 | I915_WRITE(GEN6_PCODE_DATA, 0); |
| 7199 | |
| 7200 | return 0; |
| 7201 | } |
| 7202 | |
| 7203 | int sandybridge_pcode_write(struct drm_i915_private *dev_priv, u8 mbox, u32 val) |
| 7204 | { |
Jesse Barnes | 4fc688c | 2012-11-02 11:14:01 -0700 | [diff] [blame] | 7205 | WARN_ON(!mutex_is_locked(&dev_priv->rps.hw_lock)); |
Ben Widawsky | 42c0526 | 2012-09-26 10:34:00 -0700 | [diff] [blame] | 7206 | |
| 7207 | if (I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) { |
| 7208 | DRM_DEBUG_DRIVER("warning: pcode (write) mailbox access failed\n"); |
| 7209 | return -EAGAIN; |
| 7210 | } |
| 7211 | |
| 7212 | I915_WRITE(GEN6_PCODE_DATA, val); |
| 7213 | I915_WRITE(GEN6_PCODE_MAILBOX, GEN6_PCODE_READY | mbox); |
| 7214 | |
| 7215 | if (wait_for((I915_READ(GEN6_PCODE_MAILBOX) & GEN6_PCODE_READY) == 0, |
| 7216 | 500)) { |
| 7217 | DRM_ERROR("timeout waiting for pcode write (%d) to finish\n", mbox); |
| 7218 | return -ETIMEDOUT; |
| 7219 | } |
| 7220 | |
| 7221 | I915_WRITE(GEN6_PCODE_DATA, 0); |
| 7222 | |
| 7223 | return 0; |
| 7224 | } |
Jesse Barnes | a0e4e19 | 2013-04-02 11:23:05 -0700 | [diff] [blame] | 7225 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 7226 | static int byt_gpu_freq(struct drm_i915_private *dev_priv, int val) |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7227 | { |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7228 | int div; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7229 | |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7230 | /* 4 x czclk */ |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 7231 | switch (dev_priv->mem_freq) { |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7232 | case 800: |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7233 | div = 10; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7234 | break; |
| 7235 | case 1066: |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7236 | div = 12; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7237 | break; |
| 7238 | case 1333: |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7239 | div = 16; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7240 | break; |
| 7241 | default: |
| 7242 | return -1; |
| 7243 | } |
| 7244 | |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 7245 | return DIV_ROUND_CLOSEST(dev_priv->mem_freq * (val + 6 - 0xbd), 4 * div); |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7246 | } |
| 7247 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 7248 | 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] | 7249 | { |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7250 | int mul; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7251 | |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7252 | /* 4 x czclk */ |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 7253 | switch (dev_priv->mem_freq) { |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7254 | case 800: |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7255 | mul = 10; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7256 | break; |
| 7257 | case 1066: |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7258 | mul = 12; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7259 | break; |
| 7260 | case 1333: |
Ville Syrjälä | 07ab118 | 2013-11-05 22:42:28 +0200 | [diff] [blame] | 7261 | mul = 16; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7262 | break; |
| 7263 | default: |
| 7264 | return -1; |
| 7265 | } |
| 7266 | |
Ville Syrjälä | 2ec3815 | 2013-11-05 22:42:29 +0200 | [diff] [blame] | 7267 | return DIV_ROUND_CLOSEST(4 * mul * val, dev_priv->mem_freq) + 0xbd - 6; |
Jesse Barnes | 855ba3b | 2013-04-17 15:54:57 -0700 | [diff] [blame] | 7268 | } |
| 7269 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 7270 | 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] | 7271 | { |
| 7272 | int div, freq; |
| 7273 | |
| 7274 | switch (dev_priv->rps.cz_freq) { |
| 7275 | case 200: |
| 7276 | div = 5; |
| 7277 | break; |
| 7278 | case 267: |
| 7279 | div = 6; |
| 7280 | break; |
| 7281 | case 320: |
| 7282 | case 333: |
| 7283 | case 400: |
| 7284 | div = 8; |
| 7285 | break; |
| 7286 | default: |
| 7287 | return -1; |
| 7288 | } |
| 7289 | |
| 7290 | freq = (DIV_ROUND_CLOSEST((dev_priv->rps.cz_freq * val), 2 * div) / 2); |
| 7291 | |
| 7292 | return freq; |
| 7293 | } |
| 7294 | |
Fengguang Wu | b55dd64 | 2014-07-12 11:21:39 +0200 | [diff] [blame] | 7295 | 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] | 7296 | { |
| 7297 | int mul, opcode; |
| 7298 | |
| 7299 | switch (dev_priv->rps.cz_freq) { |
| 7300 | case 200: |
| 7301 | mul = 5; |
| 7302 | break; |
| 7303 | case 267: |
| 7304 | mul = 6; |
| 7305 | break; |
| 7306 | case 320: |
| 7307 | case 333: |
| 7308 | case 400: |
| 7309 | mul = 8; |
| 7310 | break; |
| 7311 | default: |
| 7312 | return -1; |
| 7313 | } |
| 7314 | |
Ville Syrjälä | 1c14762 | 2014-08-18 14:42:43 +0300 | [diff] [blame] | 7315 | /* CHV needs even values */ |
Deepak S | 22b1b2f | 2014-07-12 14:54:33 +0530 | [diff] [blame] | 7316 | opcode = (DIV_ROUND_CLOSEST((val * 2 * mul), dev_priv->rps.cz_freq) * 2); |
| 7317 | |
| 7318 | return opcode; |
| 7319 | } |
| 7320 | |
| 7321 | int vlv_gpu_freq(struct drm_i915_private *dev_priv, int val) |
| 7322 | { |
| 7323 | int ret = -1; |
| 7324 | |
| 7325 | if (IS_CHERRYVIEW(dev_priv->dev)) |
| 7326 | ret = chv_gpu_freq(dev_priv, val); |
| 7327 | else if (IS_VALLEYVIEW(dev_priv->dev)) |
| 7328 | ret = byt_gpu_freq(dev_priv, val); |
| 7329 | |
| 7330 | return ret; |
| 7331 | } |
| 7332 | |
| 7333 | int vlv_freq_opcode(struct drm_i915_private *dev_priv, int val) |
| 7334 | { |
| 7335 | int ret = -1; |
| 7336 | |
| 7337 | if (IS_CHERRYVIEW(dev_priv->dev)) |
| 7338 | ret = chv_freq_opcode(dev_priv, val); |
| 7339 | else if (IS_VALLEYVIEW(dev_priv->dev)) |
| 7340 | ret = byt_freq_opcode(dev_priv, val); |
| 7341 | |
| 7342 | return ret; |
| 7343 | } |
| 7344 | |
Daniel Vetter | f742a55 | 2013-12-06 10:17:53 +0100 | [diff] [blame] | 7345 | void intel_pm_setup(struct drm_device *dev) |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7346 | { |
| 7347 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 7348 | |
Daniel Vetter | f742a55 | 2013-12-06 10:17:53 +0100 | [diff] [blame] | 7349 | mutex_init(&dev_priv->rps.hw_lock); |
| 7350 | |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7351 | INIT_DELAYED_WORK(&dev_priv->rps.delayed_resume_work, |
| 7352 | intel_gen6_powersave_work); |
Paulo Zanoni | 5d584b2 | 2014-03-07 20:08:15 -0300 | [diff] [blame] | 7353 | |
Paulo Zanoni | 33688d9 | 2014-03-07 20:08:19 -0300 | [diff] [blame] | 7354 | dev_priv->pm.suspended = false; |
Chris Wilson | 907b28c | 2013-07-19 20:36:52 +0100 | [diff] [blame] | 7355 | } |