Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2014 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 |
| 21 | * DEALINGS IN THE SOFTWARE. |
| 22 | */ |
| 23 | |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 24 | /** |
| 25 | * DOC: Frame Buffer Compression (FBC) |
| 26 | * |
| 27 | * FBC tries to save memory bandwidth (and so power consumption) by |
| 28 | * compressing the amount of memory used by the display. It is total |
| 29 | * transparent to user space and completely handled in the kernel. |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 30 | * |
| 31 | * The benefits of FBC are mostly visible with solid backgrounds and |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 32 | * variation-less patterns. It comes from keeping the memory footprint small |
| 33 | * and having fewer memory pages opened and accessed for refreshing the display. |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 34 | * |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 35 | * i915 is responsible to reserve stolen memory for FBC and configure its |
| 36 | * offset on proper registers. The hardware takes care of all |
| 37 | * compress/decompress. However there are many known cases where we have to |
| 38 | * forcibly disable it to allow proper screen updates. |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 39 | */ |
| 40 | |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 41 | #include "intel_drv.h" |
| 42 | #include "i915_drv.h" |
| 43 | |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 44 | static inline bool fbc_supported(struct drm_i915_private *dev_priv) |
| 45 | { |
| 46 | return dev_priv->fbc.enable_fbc != NULL; |
| 47 | } |
| 48 | |
Paulo Zanoni | 5710502 | 2015-11-04 17:10:46 -0200 | [diff] [blame] | 49 | static inline bool fbc_on_pipe_a_only(struct drm_i915_private *dev_priv) |
| 50 | { |
| 51 | return IS_HASWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 8; |
| 52 | } |
| 53 | |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 54 | /* |
| 55 | * In some platforms where the CRTC's x:0/y:0 coordinates doesn't match the |
| 56 | * frontbuffer's x:0/y:0 coordinates we lie to the hardware about the plane's |
| 57 | * origin so the x and y offsets can actually fit the registers. As a |
| 58 | * consequence, the fence doesn't really start exactly at the display plane |
| 59 | * address we program because it starts at the real start of the buffer, so we |
| 60 | * have to take this into consideration here. |
| 61 | */ |
| 62 | static unsigned int get_crtc_fence_y_offset(struct intel_crtc *crtc) |
| 63 | { |
| 64 | return crtc->base.y - crtc->adjusted_y; |
| 65 | } |
| 66 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 67 | static void i8xx_fbc_disable(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 68 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 69 | u32 fbc_ctl; |
| 70 | |
| 71 | dev_priv->fbc.enabled = false; |
| 72 | |
| 73 | /* Disable compression */ |
| 74 | fbc_ctl = I915_READ(FBC_CONTROL); |
| 75 | if ((fbc_ctl & FBC_CTL_EN) == 0) |
| 76 | return; |
| 77 | |
| 78 | fbc_ctl &= ~FBC_CTL_EN; |
| 79 | I915_WRITE(FBC_CONTROL, fbc_ctl); |
| 80 | |
| 81 | /* Wait for compressing bit to clear */ |
| 82 | if (wait_for((I915_READ(FBC_STATUS) & FBC_STAT_COMPRESSING) == 0, 10)) { |
| 83 | DRM_DEBUG_KMS("FBC idle timed out\n"); |
| 84 | return; |
| 85 | } |
| 86 | |
| 87 | DRM_DEBUG_KMS("disabled FBC\n"); |
| 88 | } |
| 89 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 90 | static void i8xx_fbc_enable(struct intel_crtc *crtc) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 91 | { |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 92 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 93 | struct drm_framebuffer *fb = crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 94 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 95 | int cfb_pitch; |
| 96 | int i; |
| 97 | u32 fbc_ctl; |
| 98 | |
| 99 | dev_priv->fbc.enabled = true; |
| 100 | |
Jani Nikula | 60ee5cd | 2015-02-05 12:04:27 +0200 | [diff] [blame] | 101 | /* Note: fbc.threshold == 1 for i8xx */ |
| 102 | cfb_pitch = dev_priv->fbc.uncompressed_size / FBC_LL_SIZE; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 103 | if (fb->pitches[0] < cfb_pitch) |
| 104 | cfb_pitch = fb->pitches[0]; |
| 105 | |
| 106 | /* FBC_CTL wants 32B or 64B units */ |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 107 | if (IS_GEN2(dev_priv)) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 108 | cfb_pitch = (cfb_pitch / 32) - 1; |
| 109 | else |
| 110 | cfb_pitch = (cfb_pitch / 64) - 1; |
| 111 | |
| 112 | /* Clear old tags */ |
| 113 | for (i = 0; i < (FBC_LL_SIZE / 32) + 1; i++) |
Ville Syrjälä | 4d110c7 | 2015-09-18 20:03:18 +0300 | [diff] [blame] | 114 | I915_WRITE(FBC_TAG(i), 0); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 115 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 116 | if (IS_GEN4(dev_priv)) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 117 | u32 fbc_ctl2; |
| 118 | |
| 119 | /* Set it up... */ |
| 120 | fbc_ctl2 = FBC_CTL_FENCE_DBL | FBC_CTL_IDLE_IMM | FBC_CTL_CPU_FENCE; |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 121 | fbc_ctl2 |= FBC_CTL_PLANE(crtc->plane); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 122 | I915_WRITE(FBC_CONTROL2, fbc_ctl2); |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 123 | I915_WRITE(FBC_FENCE_OFF, get_crtc_fence_y_offset(crtc)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /* enable it... */ |
| 127 | fbc_ctl = I915_READ(FBC_CONTROL); |
| 128 | fbc_ctl &= 0x3fff << FBC_CTL_INTERVAL_SHIFT; |
| 129 | fbc_ctl |= FBC_CTL_EN | FBC_CTL_PERIODIC; |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 130 | if (IS_I945GM(dev_priv)) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 131 | fbc_ctl |= FBC_CTL_C3_IDLE; /* 945 needs special SR handling */ |
| 132 | fbc_ctl |= (cfb_pitch & 0xff) << FBC_CTL_STRIDE_SHIFT; |
| 133 | fbc_ctl |= obj->fence_reg; |
| 134 | I915_WRITE(FBC_CONTROL, fbc_ctl); |
| 135 | |
| 136 | DRM_DEBUG_KMS("enabled FBC, pitch %d, yoff %d, plane %c\n", |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 137 | cfb_pitch, crtc->base.y, plane_name(crtc->plane)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 138 | } |
| 139 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 140 | static bool i8xx_fbc_enabled(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 141 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 142 | return I915_READ(FBC_CONTROL) & FBC_CTL_EN; |
| 143 | } |
| 144 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 145 | static void g4x_fbc_enable(struct intel_crtc *crtc) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 146 | { |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 147 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 148 | struct drm_framebuffer *fb = crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 149 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 150 | u32 dpfc_ctl; |
| 151 | |
| 152 | dev_priv->fbc.enabled = true; |
| 153 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 154 | dpfc_ctl = DPFC_CTL_PLANE(crtc->plane) | DPFC_SR_EN; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 155 | if (drm_format_plane_cpp(fb->pixel_format, 0) == 2) |
| 156 | dpfc_ctl |= DPFC_CTL_LIMIT_2X; |
| 157 | else |
| 158 | dpfc_ctl |= DPFC_CTL_LIMIT_1X; |
| 159 | dpfc_ctl |= DPFC_CTL_FENCE_EN | obj->fence_reg; |
| 160 | |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 161 | I915_WRITE(DPFC_FENCE_YOFF, get_crtc_fence_y_offset(crtc)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 162 | |
| 163 | /* enable it... */ |
| 164 | I915_WRITE(DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN); |
| 165 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 166 | DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(crtc->plane)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 167 | } |
| 168 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 169 | static void g4x_fbc_disable(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 170 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 171 | u32 dpfc_ctl; |
| 172 | |
| 173 | dev_priv->fbc.enabled = false; |
| 174 | |
| 175 | /* Disable compression */ |
| 176 | dpfc_ctl = I915_READ(DPFC_CONTROL); |
| 177 | if (dpfc_ctl & DPFC_CTL_EN) { |
| 178 | dpfc_ctl &= ~DPFC_CTL_EN; |
| 179 | I915_WRITE(DPFC_CONTROL, dpfc_ctl); |
| 180 | |
| 181 | DRM_DEBUG_KMS("disabled FBC\n"); |
| 182 | } |
| 183 | } |
| 184 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 185 | static bool g4x_fbc_enabled(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 186 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 187 | return I915_READ(DPFC_CONTROL) & DPFC_CTL_EN; |
| 188 | } |
| 189 | |
Paulo Zanoni | d5ce416 | 2015-11-04 17:10:45 -0200 | [diff] [blame] | 190 | /* This function forces a CFB recompression through the nuke operation. */ |
| 191 | static void intel_fbc_recompress(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 192 | { |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 193 | I915_WRITE(MSG_FBC_REND_STATE, FBC_REND_NUKE); |
| 194 | POSTING_READ(MSG_FBC_REND_STATE); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 195 | } |
| 196 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 197 | static void ilk_fbc_enable(struct intel_crtc *crtc) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 198 | { |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 199 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 200 | struct drm_framebuffer *fb = crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 201 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 202 | u32 dpfc_ctl; |
Paulo Zanoni | ce65e47 | 2015-06-30 10:53:05 -0300 | [diff] [blame] | 203 | int threshold = dev_priv->fbc.threshold; |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 204 | unsigned int y_offset; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 205 | |
| 206 | dev_priv->fbc.enabled = true; |
| 207 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 208 | dpfc_ctl = DPFC_CTL_PLANE(crtc->plane); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 209 | if (drm_format_plane_cpp(fb->pixel_format, 0) == 2) |
Paulo Zanoni | ce65e47 | 2015-06-30 10:53:05 -0300 | [diff] [blame] | 210 | threshold++; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 211 | |
Paulo Zanoni | ce65e47 | 2015-06-30 10:53:05 -0300 | [diff] [blame] | 212 | switch (threshold) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 213 | case 4: |
| 214 | case 3: |
| 215 | dpfc_ctl |= DPFC_CTL_LIMIT_4X; |
| 216 | break; |
| 217 | case 2: |
| 218 | dpfc_ctl |= DPFC_CTL_LIMIT_2X; |
| 219 | break; |
| 220 | case 1: |
| 221 | dpfc_ctl |= DPFC_CTL_LIMIT_1X; |
| 222 | break; |
| 223 | } |
| 224 | dpfc_ctl |= DPFC_CTL_FENCE_EN; |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 225 | if (IS_GEN5(dev_priv)) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 226 | dpfc_ctl |= obj->fence_reg; |
| 227 | |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 228 | y_offset = get_crtc_fence_y_offset(crtc); |
| 229 | I915_WRITE(ILK_DPFC_FENCE_YOFF, y_offset); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 230 | I915_WRITE(ILK_FBC_RT_BASE, i915_gem_obj_ggtt_offset(obj) | ILK_FBC_RT_VALID); |
| 231 | /* enable it... */ |
| 232 | I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN); |
| 233 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 234 | if (IS_GEN6(dev_priv)) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 235 | I915_WRITE(SNB_DPFC_CTL_SA, |
| 236 | SNB_CPU_FENCE_ENABLE | obj->fence_reg); |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 237 | I915_WRITE(DPFC_CPU_FENCE_OFFSET, y_offset); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 238 | } |
| 239 | |
Paulo Zanoni | d5ce416 | 2015-11-04 17:10:45 -0200 | [diff] [blame] | 240 | intel_fbc_recompress(dev_priv); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 241 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 242 | DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(crtc->plane)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 243 | } |
| 244 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 245 | static void ilk_fbc_disable(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 246 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 247 | u32 dpfc_ctl; |
| 248 | |
| 249 | dev_priv->fbc.enabled = false; |
| 250 | |
| 251 | /* Disable compression */ |
| 252 | dpfc_ctl = I915_READ(ILK_DPFC_CONTROL); |
| 253 | if (dpfc_ctl & DPFC_CTL_EN) { |
| 254 | dpfc_ctl &= ~DPFC_CTL_EN; |
| 255 | I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl); |
| 256 | |
| 257 | DRM_DEBUG_KMS("disabled FBC\n"); |
| 258 | } |
| 259 | } |
| 260 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 261 | static bool ilk_fbc_enabled(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 262 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 263 | return I915_READ(ILK_DPFC_CONTROL) & DPFC_CTL_EN; |
| 264 | } |
| 265 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 266 | static void gen7_fbc_enable(struct intel_crtc *crtc) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 267 | { |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 268 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 269 | struct drm_framebuffer *fb = crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 270 | struct drm_i915_gem_object *obj = intel_fb_obj(fb); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 271 | u32 dpfc_ctl; |
Paulo Zanoni | ce65e47 | 2015-06-30 10:53:05 -0300 | [diff] [blame] | 272 | int threshold = dev_priv->fbc.threshold; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 273 | |
| 274 | dev_priv->fbc.enabled = true; |
| 275 | |
Paulo Zanoni | d8514d6 | 2015-06-12 14:36:21 -0300 | [diff] [blame] | 276 | dpfc_ctl = 0; |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 277 | if (IS_IVYBRIDGE(dev_priv)) |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 278 | dpfc_ctl |= IVB_DPFC_CTL_PLANE(crtc->plane); |
Paulo Zanoni | d8514d6 | 2015-06-12 14:36:21 -0300 | [diff] [blame] | 279 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 280 | if (drm_format_plane_cpp(fb->pixel_format, 0) == 2) |
Paulo Zanoni | ce65e47 | 2015-06-30 10:53:05 -0300 | [diff] [blame] | 281 | threshold++; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 282 | |
Paulo Zanoni | ce65e47 | 2015-06-30 10:53:05 -0300 | [diff] [blame] | 283 | switch (threshold) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 284 | case 4: |
| 285 | case 3: |
| 286 | dpfc_ctl |= DPFC_CTL_LIMIT_4X; |
| 287 | break; |
| 288 | case 2: |
| 289 | dpfc_ctl |= DPFC_CTL_LIMIT_2X; |
| 290 | break; |
| 291 | case 1: |
| 292 | dpfc_ctl |= DPFC_CTL_LIMIT_1X; |
| 293 | break; |
| 294 | } |
| 295 | |
| 296 | dpfc_ctl |= IVB_DPFC_CTL_FENCE_EN; |
| 297 | |
| 298 | if (dev_priv->fbc.false_color) |
| 299 | dpfc_ctl |= FBC_CTL_FALSE_COLOR; |
| 300 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 301 | if (IS_IVYBRIDGE(dev_priv)) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 302 | /* WaFbcAsynchFlipDisableFbcQueue:ivb */ |
| 303 | I915_WRITE(ILK_DISPLAY_CHICKEN1, |
| 304 | I915_READ(ILK_DISPLAY_CHICKEN1) | |
| 305 | ILK_FBCQ_DIS); |
Paulo Zanoni | 40f4022 | 2015-09-14 15:20:01 -0300 | [diff] [blame] | 306 | } else if (IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 307 | /* WaFbcAsynchFlipDisableFbcQueue:hsw,bdw */ |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 308 | I915_WRITE(CHICKEN_PIPESL_1(crtc->pipe), |
| 309 | I915_READ(CHICKEN_PIPESL_1(crtc->pipe)) | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 310 | HSW_FBCQ_DIS); |
| 311 | } |
| 312 | |
Paulo Zanoni | 57012be9 | 2015-09-14 15:20:00 -0300 | [diff] [blame] | 313 | I915_WRITE(ILK_DPFC_CONTROL, dpfc_ctl | DPFC_CTL_EN); |
| 314 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 315 | I915_WRITE(SNB_DPFC_CTL_SA, |
| 316 | SNB_CPU_FENCE_ENABLE | obj->fence_reg); |
Paulo Zanoni | 2db3366 | 2015-09-14 15:20:03 -0300 | [diff] [blame] | 317 | I915_WRITE(DPFC_CPU_FENCE_OFFSET, get_crtc_fence_y_offset(crtc)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 318 | |
Paulo Zanoni | d5ce416 | 2015-11-04 17:10:45 -0200 | [diff] [blame] | 319 | intel_fbc_recompress(dev_priv); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 320 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 321 | DRM_DEBUG_KMS("enabled fbc on plane %c\n", plane_name(crtc->plane)); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 322 | } |
| 323 | |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 324 | /** |
| 325 | * intel_fbc_enabled - Is FBC enabled? |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 326 | * @dev_priv: i915 device instance |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 327 | * |
| 328 | * This function is used to verify the current state of FBC. |
| 329 | * FIXME: This should be tracked in the plane config eventually |
| 330 | * instead of queried at runtime for most callers. |
| 331 | */ |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 332 | bool intel_fbc_enabled(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 333 | { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 334 | return dev_priv->fbc.enabled; |
| 335 | } |
| 336 | |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 337 | static void intel_fbc_enable(const struct drm_framebuffer *fb) |
Paulo Zanoni | e8cb8d6 | 2015-09-14 15:19:55 -0300 | [diff] [blame] | 338 | { |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 339 | struct drm_i915_private *dev_priv = fb->dev->dev_private; |
| 340 | struct intel_crtc *crtc = dev_priv->fbc.crtc; |
Paulo Zanoni | e8cb8d6 | 2015-09-14 15:19:55 -0300 | [diff] [blame] | 341 | |
| 342 | dev_priv->fbc.enable_fbc(crtc); |
| 343 | |
Paulo Zanoni | e8cb8d6 | 2015-09-14 15:19:55 -0300 | [diff] [blame] | 344 | dev_priv->fbc.fb_id = fb->base.id; |
| 345 | dev_priv->fbc.y = crtc->base.y; |
| 346 | } |
| 347 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 348 | static void intel_fbc_work_fn(struct work_struct *__work) |
| 349 | { |
| 350 | struct intel_fbc_work *work = |
| 351 | container_of(to_delayed_work(__work), |
| 352 | struct intel_fbc_work, work); |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 353 | struct drm_i915_private *dev_priv = work->fb->dev->dev_private; |
| 354 | struct drm_framebuffer *crtc_fb = dev_priv->fbc.crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 355 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 356 | mutex_lock(&dev_priv->fbc.lock); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 357 | if (work == dev_priv->fbc.fbc_work) { |
| 358 | /* Double check that we haven't switched fb without cancelling |
| 359 | * the prior work. |
| 360 | */ |
Paulo Zanoni | e8cb8d6 | 2015-09-14 15:19:55 -0300 | [diff] [blame] | 361 | if (crtc_fb == work->fb) |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 362 | intel_fbc_enable(work->fb); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 363 | |
| 364 | dev_priv->fbc.fbc_work = NULL; |
| 365 | } |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 366 | mutex_unlock(&dev_priv->fbc.lock); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 367 | |
| 368 | kfree(work); |
| 369 | } |
| 370 | |
| 371 | static void intel_fbc_cancel_work(struct drm_i915_private *dev_priv) |
| 372 | { |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 373 | WARN_ON(!mutex_is_locked(&dev_priv->fbc.lock)); |
| 374 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 375 | if (dev_priv->fbc.fbc_work == NULL) |
| 376 | return; |
| 377 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 378 | /* Synchronisation is provided by struct_mutex and checking of |
| 379 | * dev_priv->fbc.fbc_work, so we can perform the cancellation |
| 380 | * entirely asynchronously. |
| 381 | */ |
| 382 | if (cancel_delayed_work(&dev_priv->fbc.fbc_work->work)) |
| 383 | /* tasklet was killed before being run, clean up */ |
| 384 | kfree(dev_priv->fbc.fbc_work); |
| 385 | |
| 386 | /* Mark the work as no longer wanted so that if it does |
| 387 | * wake-up (because the work was already running and waiting |
| 388 | * for our mutex), it will discover that is no longer |
| 389 | * necessary to run. |
| 390 | */ |
| 391 | dev_priv->fbc.fbc_work = NULL; |
| 392 | } |
| 393 | |
Paulo Zanoni | e8cb8d6 | 2015-09-14 15:19:55 -0300 | [diff] [blame] | 394 | static void intel_fbc_schedule_enable(struct intel_crtc *crtc) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 395 | { |
| 396 | struct intel_fbc_work *work; |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 397 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 398 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 399 | WARN_ON(!mutex_is_locked(&dev_priv->fbc.lock)); |
| 400 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 401 | intel_fbc_cancel_work(dev_priv); |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 402 | dev_priv->fbc.crtc = crtc; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 403 | |
| 404 | work = kzalloc(sizeof(*work), GFP_KERNEL); |
| 405 | if (work == NULL) { |
| 406 | DRM_ERROR("Failed to allocate FBC work structure\n"); |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 407 | intel_fbc_enable(crtc->base.primary->fb); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 408 | return; |
| 409 | } |
| 410 | |
Paulo Zanoni | 220285f | 2015-07-07 15:26:05 -0300 | [diff] [blame] | 411 | work->fb = crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 412 | INIT_DELAYED_WORK(&work->work, intel_fbc_work_fn); |
| 413 | |
| 414 | dev_priv->fbc.fbc_work = work; |
| 415 | |
| 416 | /* Delay the actual enabling to let pageflipping cease and the |
| 417 | * display to settle before starting the compression. Note that |
| 418 | * this delay also serves a second purpose: it allows for a |
| 419 | * vblank to pass after disabling the FBC before we attempt |
| 420 | * to modify the control registers. |
| 421 | * |
| 422 | * A more complicated solution would involve tracking vblanks |
| 423 | * following the termination of the page-flipping sequence |
| 424 | * and indeed performing the enable as a co-routine and not |
| 425 | * waiting synchronously upon the vblank. |
| 426 | * |
| 427 | * WaFbcWaitForVBlankBeforeEnable:ilk,snb |
| 428 | */ |
| 429 | schedule_delayed_work(&work->work, msecs_to_jiffies(50)); |
| 430 | } |
| 431 | |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 432 | static void intel_fbc_deactivate(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 433 | { |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 434 | WARN_ON(!mutex_is_locked(&dev_priv->fbc.lock)); |
| 435 | |
| 436 | intel_fbc_cancel_work(dev_priv); |
| 437 | |
Paulo Zanoni | c68ae339 | 2015-11-04 17:10:51 -0200 | [diff] [blame] | 438 | if (dev_priv->fbc.enabled) |
| 439 | dev_priv->fbc.disable_fbc(dev_priv); |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 440 | } |
| 441 | |
| 442 | static void __intel_fbc_disable(struct drm_i915_private *dev_priv) |
| 443 | { |
| 444 | intel_fbc_deactivate(dev_priv); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 445 | dev_priv->fbc.crtc = NULL; |
| 446 | } |
| 447 | |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 448 | /** |
| 449 | * intel_fbc_disable - disable FBC |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 450 | * @dev_priv: i915 device instance |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 451 | * |
| 452 | * This function disables FBC. |
| 453 | */ |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 454 | void intel_fbc_disable(struct drm_i915_private *dev_priv) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 455 | { |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 456 | if (!fbc_supported(dev_priv)) |
Paulo Zanoni | 0bf73c3 | 2015-07-03 15:40:54 -0300 | [diff] [blame] | 457 | return; |
| 458 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 459 | mutex_lock(&dev_priv->fbc.lock); |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 460 | __intel_fbc_disable(dev_priv); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 461 | mutex_unlock(&dev_priv->fbc.lock); |
| 462 | } |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 463 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 464 | /* |
| 465 | * intel_fbc_disable_crtc - disable FBC if it's associated with crtc |
| 466 | * @crtc: the CRTC |
| 467 | * |
| 468 | * This function disables FBC if it's associated with the provided CRTC. |
| 469 | */ |
| 470 | void intel_fbc_disable_crtc(struct intel_crtc *crtc) |
| 471 | { |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 472 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 473 | |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 474 | if (!fbc_supported(dev_priv)) |
Paulo Zanoni | 0bf73c3 | 2015-07-03 15:40:54 -0300 | [diff] [blame] | 475 | return; |
| 476 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 477 | mutex_lock(&dev_priv->fbc.lock); |
| 478 | if (dev_priv->fbc.crtc == crtc) |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 479 | __intel_fbc_disable(dev_priv); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 480 | mutex_unlock(&dev_priv->fbc.lock); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 481 | } |
| 482 | |
Paulo Zanoni | 2e8144a | 2015-06-12 14:36:20 -0300 | [diff] [blame] | 483 | static void set_no_fbc_reason(struct drm_i915_private *dev_priv, |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 484 | const char *reason) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 485 | { |
| 486 | if (dev_priv->fbc.no_fbc_reason == reason) |
Paulo Zanoni | 2e8144a | 2015-06-12 14:36:20 -0300 | [diff] [blame] | 487 | return; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 488 | |
| 489 | dev_priv->fbc.no_fbc_reason = reason; |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 490 | DRM_DEBUG_KMS("Disabling FBC: %s\n", reason); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 491 | } |
| 492 | |
Paulo Zanoni | 30c58d5 | 2015-11-04 17:10:48 -0200 | [diff] [blame] | 493 | static bool crtc_is_valid(struct intel_crtc *crtc) |
| 494 | { |
| 495 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 496 | |
| 497 | if (fbc_on_pipe_a_only(dev_priv) && crtc->pipe != PIPE_A) |
| 498 | return false; |
| 499 | |
| 500 | if (!intel_crtc_active(&crtc->base)) |
| 501 | return false; |
| 502 | |
| 503 | if (!to_intel_plane_state(crtc->base.primary->state)->visible) |
| 504 | return false; |
| 505 | |
| 506 | return true; |
| 507 | } |
| 508 | |
Paulo Zanoni | 232fd93 | 2015-07-07 15:26:07 -0300 | [diff] [blame] | 509 | static bool multiple_pipes_ok(struct drm_i915_private *dev_priv) |
| 510 | { |
| 511 | enum pipe pipe; |
| 512 | int n_pipes = 0; |
| 513 | struct drm_crtc *crtc; |
| 514 | |
| 515 | if (INTEL_INFO(dev_priv)->gen > 4) |
| 516 | return true; |
| 517 | |
| 518 | for_each_pipe(dev_priv, pipe) { |
| 519 | crtc = dev_priv->pipe_to_crtc_mapping[pipe]; |
| 520 | |
| 521 | if (intel_crtc_active(crtc) && |
| 522 | to_intel_plane_state(crtc->primary->state)->visible) |
| 523 | n_pipes++; |
| 524 | } |
| 525 | |
| 526 | return (n_pipes < 2); |
| 527 | } |
| 528 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 529 | static int find_compression_threshold(struct drm_i915_private *dev_priv, |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 530 | struct drm_mm_node *node, |
| 531 | int size, |
| 532 | int fb_cpp) |
| 533 | { |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 534 | int compression_threshold = 1; |
| 535 | int ret; |
Paulo Zanoni | a9da512 | 2015-09-14 15:19:57 -0300 | [diff] [blame] | 536 | u64 end; |
| 537 | |
| 538 | /* The FBC hardware for BDW/SKL doesn't have access to the stolen |
| 539 | * reserved range size, so it always assumes the maximum (8mb) is used. |
| 540 | * If we enable FBC using a CFB on that memory range we'll get FIFO |
| 541 | * underruns, even if that range is not reserved by the BIOS. */ |
Rodrigo Vivi | ef11bdb | 2015-10-28 04:16:45 -0700 | [diff] [blame] | 542 | if (IS_BROADWELL(dev_priv) || |
| 543 | IS_SKYLAKE(dev_priv) || IS_KABYLAKE(dev_priv)) |
Paulo Zanoni | a9da512 | 2015-09-14 15:19:57 -0300 | [diff] [blame] | 544 | end = dev_priv->gtt.stolen_size - 8 * 1024 * 1024; |
| 545 | else |
| 546 | end = dev_priv->gtt.stolen_usable_size; |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 547 | |
| 548 | /* HACK: This code depends on what we will do in *_enable_fbc. If that |
| 549 | * code changes, this code needs to change as well. |
| 550 | * |
| 551 | * The enable_fbc code will attempt to use one of our 2 compression |
| 552 | * thresholds, therefore, in that case, we only have 1 resort. |
| 553 | */ |
| 554 | |
| 555 | /* Try to over-allocate to reduce reallocations and fragmentation. */ |
Paulo Zanoni | a9da512 | 2015-09-14 15:19:57 -0300 | [diff] [blame] | 556 | ret = i915_gem_stolen_insert_node_in_range(dev_priv, node, size <<= 1, |
| 557 | 4096, 0, end); |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 558 | if (ret == 0) |
| 559 | return compression_threshold; |
| 560 | |
| 561 | again: |
| 562 | /* HW's ability to limit the CFB is 1:4 */ |
| 563 | if (compression_threshold > 4 || |
| 564 | (fb_cpp == 2 && compression_threshold == 2)) |
| 565 | return 0; |
| 566 | |
Paulo Zanoni | a9da512 | 2015-09-14 15:19:57 -0300 | [diff] [blame] | 567 | ret = i915_gem_stolen_insert_node_in_range(dev_priv, node, size >>= 1, |
| 568 | 4096, 0, end); |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 569 | if (ret && INTEL_INFO(dev_priv)->gen <= 4) { |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 570 | return 0; |
| 571 | } else if (ret) { |
| 572 | compression_threshold <<= 1; |
| 573 | goto again; |
| 574 | } else { |
| 575 | return compression_threshold; |
| 576 | } |
| 577 | } |
| 578 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 579 | static int intel_fbc_alloc_cfb(struct drm_i915_private *dev_priv, int size, |
| 580 | int fb_cpp) |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 581 | { |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 582 | struct drm_mm_node *uninitialized_var(compressed_llb); |
| 583 | int ret; |
| 584 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 585 | ret = find_compression_threshold(dev_priv, &dev_priv->fbc.compressed_fb, |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 586 | size, fb_cpp); |
| 587 | if (!ret) |
| 588 | goto err_llb; |
| 589 | else if (ret > 1) { |
| 590 | DRM_INFO("Reducing the compressed framebuffer size. This may lead to less power savings than a non-reduced-size. Try to increase stolen memory size if available in BIOS.\n"); |
| 591 | |
| 592 | } |
| 593 | |
| 594 | dev_priv->fbc.threshold = ret; |
| 595 | |
| 596 | if (INTEL_INFO(dev_priv)->gen >= 5) |
| 597 | I915_WRITE(ILK_DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start); |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 598 | else if (IS_GM45(dev_priv)) { |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 599 | I915_WRITE(DPFC_CB_BASE, dev_priv->fbc.compressed_fb.start); |
| 600 | } else { |
| 601 | compressed_llb = kzalloc(sizeof(*compressed_llb), GFP_KERNEL); |
| 602 | if (!compressed_llb) |
| 603 | goto err_fb; |
| 604 | |
| 605 | ret = i915_gem_stolen_insert_node(dev_priv, compressed_llb, |
| 606 | 4096, 4096); |
| 607 | if (ret) |
| 608 | goto err_fb; |
| 609 | |
| 610 | dev_priv->fbc.compressed_llb = compressed_llb; |
| 611 | |
| 612 | I915_WRITE(FBC_CFB_BASE, |
| 613 | dev_priv->mm.stolen_base + dev_priv->fbc.compressed_fb.start); |
| 614 | I915_WRITE(FBC_LL_BASE, |
| 615 | dev_priv->mm.stolen_base + compressed_llb->start); |
| 616 | } |
| 617 | |
| 618 | dev_priv->fbc.uncompressed_size = size; |
| 619 | |
Paulo Zanoni | b8bf5d7 | 2015-09-14 15:19:58 -0300 | [diff] [blame] | 620 | DRM_DEBUG_KMS("reserved %llu bytes of contiguous stolen space for FBC, threshold: %d\n", |
| 621 | dev_priv->fbc.compressed_fb.size, |
| 622 | dev_priv->fbc.threshold); |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 623 | |
| 624 | return 0; |
| 625 | |
| 626 | err_fb: |
| 627 | kfree(compressed_llb); |
| 628 | i915_gem_stolen_remove_node(dev_priv, &dev_priv->fbc.compressed_fb); |
| 629 | err_llb: |
| 630 | pr_info_once("drm: not enough stolen space for compressed buffer (need %d more bytes), disabling. Hint: you may be able to increase stolen memory size in the BIOS to avoid this.\n", size); |
| 631 | return -ENOSPC; |
| 632 | } |
| 633 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 634 | static void __intel_fbc_cleanup_cfb(struct drm_i915_private *dev_priv) |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 635 | { |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 636 | if (dev_priv->fbc.uncompressed_size == 0) |
| 637 | return; |
| 638 | |
| 639 | i915_gem_stolen_remove_node(dev_priv, &dev_priv->fbc.compressed_fb); |
| 640 | |
| 641 | if (dev_priv->fbc.compressed_llb) { |
| 642 | i915_gem_stolen_remove_node(dev_priv, |
| 643 | dev_priv->fbc.compressed_llb); |
| 644 | kfree(dev_priv->fbc.compressed_llb); |
| 645 | } |
| 646 | |
| 647 | dev_priv->fbc.uncompressed_size = 0; |
| 648 | } |
| 649 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 650 | void intel_fbc_cleanup_cfb(struct drm_i915_private *dev_priv) |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 651 | { |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 652 | if (!fbc_supported(dev_priv)) |
Paulo Zanoni | 0bf73c3 | 2015-07-03 15:40:54 -0300 | [diff] [blame] | 653 | return; |
| 654 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 655 | mutex_lock(&dev_priv->fbc.lock); |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 656 | __intel_fbc_cleanup_cfb(dev_priv); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 657 | mutex_unlock(&dev_priv->fbc.lock); |
| 658 | } |
| 659 | |
Paulo Zanoni | c4ffd40 | 2015-10-01 19:55:57 -0300 | [diff] [blame] | 660 | /* |
| 661 | * For SKL+, the plane source size used by the hardware is based on the value we |
| 662 | * write to the PLANE_SIZE register. For BDW-, the hardware looks at the value |
| 663 | * we wrote to PIPESRC. |
| 664 | */ |
| 665 | static void intel_fbc_get_plane_source_size(struct intel_crtc *crtc, |
| 666 | int *width, int *height) |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 667 | { |
Paulo Zanoni | c4ffd40 | 2015-10-01 19:55:57 -0300 | [diff] [blame] | 668 | struct intel_plane_state *plane_state = |
| 669 | to_intel_plane_state(crtc->base.primary->state); |
| 670 | int w, h; |
| 671 | |
| 672 | if (intel_rotation_90_or_270(plane_state->base.rotation)) { |
| 673 | w = drm_rect_height(&plane_state->src) >> 16; |
| 674 | h = drm_rect_width(&plane_state->src) >> 16; |
| 675 | } else { |
| 676 | w = drm_rect_width(&plane_state->src) >> 16; |
| 677 | h = drm_rect_height(&plane_state->src) >> 16; |
| 678 | } |
| 679 | |
| 680 | if (width) |
| 681 | *width = w; |
| 682 | if (height) |
| 683 | *height = h; |
| 684 | } |
| 685 | |
| 686 | static int intel_fbc_calculate_cfb_size(struct intel_crtc *crtc) |
| 687 | { |
| 688 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 689 | struct drm_framebuffer *fb = crtc->base.primary->fb; |
| 690 | int lines; |
| 691 | |
| 692 | intel_fbc_get_plane_source_size(crtc, NULL, &lines); |
| 693 | if (INTEL_INFO(dev_priv)->gen >= 7) |
| 694 | lines = min(lines, 2048); |
| 695 | |
Paulo Zanoni | 850bfaa | 2015-11-04 17:10:55 -0200 | [diff] [blame] | 696 | /* Hardware needs the full buffer stride, not just the active area. */ |
Paulo Zanoni | c4ffd40 | 2015-10-01 19:55:57 -0300 | [diff] [blame] | 697 | return lines * fb->pitches[0]; |
| 698 | } |
| 699 | |
| 700 | static int intel_fbc_setup_cfb(struct intel_crtc *crtc) |
| 701 | { |
| 702 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 703 | struct drm_framebuffer *fb = crtc->base.primary->fb; |
| 704 | int size, cpp; |
| 705 | |
| 706 | size = intel_fbc_calculate_cfb_size(crtc); |
| 707 | cpp = drm_format_plane_cpp(fb->pixel_format, 0); |
| 708 | |
Paulo Zanoni | 90d5234 | 2015-10-16 16:44:43 -0300 | [diff] [blame] | 709 | if (drm_mm_node_allocated(&dev_priv->fbc.compressed_fb) && |
| 710 | size <= dev_priv->fbc.compressed_fb.size * dev_priv->fbc.threshold) |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 711 | return 0; |
| 712 | |
| 713 | /* Release any current block */ |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 714 | __intel_fbc_cleanup_cfb(dev_priv); |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 715 | |
Paulo Zanoni | c4ffd40 | 2015-10-01 19:55:57 -0300 | [diff] [blame] | 716 | return intel_fbc_alloc_cfb(dev_priv, size, cpp); |
Paulo Zanoni | fc78672 | 2015-07-02 19:25:08 -0300 | [diff] [blame] | 717 | } |
| 718 | |
Paulo Zanoni | adf70c6 | 2015-09-14 15:19:56 -0300 | [diff] [blame] | 719 | static bool stride_is_valid(struct drm_i915_private *dev_priv, |
| 720 | unsigned int stride) |
| 721 | { |
| 722 | /* These should have been caught earlier. */ |
| 723 | WARN_ON(stride < 512); |
| 724 | WARN_ON((stride & (64 - 1)) != 0); |
| 725 | |
| 726 | /* Below are the additional FBC restrictions. */ |
| 727 | |
| 728 | if (IS_GEN2(dev_priv) || IS_GEN3(dev_priv)) |
| 729 | return stride == 4096 || stride == 8192; |
| 730 | |
| 731 | if (IS_GEN4(dev_priv) && !IS_G4X(dev_priv) && stride < 2048) |
| 732 | return false; |
| 733 | |
| 734 | if (stride > 16384) |
| 735 | return false; |
| 736 | |
| 737 | return true; |
| 738 | } |
| 739 | |
Paulo Zanoni | b9e831d | 2015-09-21 19:48:06 -0300 | [diff] [blame] | 740 | static bool pixel_format_is_valid(struct drm_framebuffer *fb) |
| 741 | { |
| 742 | struct drm_device *dev = fb->dev; |
| 743 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 744 | |
| 745 | switch (fb->pixel_format) { |
| 746 | case DRM_FORMAT_XRGB8888: |
| 747 | case DRM_FORMAT_XBGR8888: |
| 748 | return true; |
| 749 | case DRM_FORMAT_XRGB1555: |
| 750 | case DRM_FORMAT_RGB565: |
| 751 | /* 16bpp not supported on gen2 */ |
| 752 | if (IS_GEN2(dev)) |
| 753 | return false; |
| 754 | /* WaFbcOnly1to1Ratio:ctg */ |
| 755 | if (IS_G4X(dev_priv)) |
| 756 | return false; |
| 757 | return true; |
| 758 | default: |
| 759 | return false; |
| 760 | } |
| 761 | } |
| 762 | |
Paulo Zanoni | 856312a | 2015-10-01 19:57:12 -0300 | [diff] [blame] | 763 | /* |
| 764 | * For some reason, the hardware tracking starts looking at whatever we |
| 765 | * programmed as the display plane base address register. It does not look at |
| 766 | * the X and Y offset registers. That's why we look at the crtc->adjusted{x,y} |
| 767 | * variables instead of just looking at the pipe/plane size. |
| 768 | */ |
| 769 | static bool intel_fbc_hw_tracking_covers_screen(struct intel_crtc *crtc) |
Paulo Zanoni | 3c5f174 | 2015-09-23 12:52:24 -0300 | [diff] [blame] | 770 | { |
| 771 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
Paulo Zanoni | 856312a | 2015-10-01 19:57:12 -0300 | [diff] [blame] | 772 | unsigned int effective_w, effective_h, max_w, max_h; |
Paulo Zanoni | 3c5f174 | 2015-09-23 12:52:24 -0300 | [diff] [blame] | 773 | |
| 774 | if (INTEL_INFO(dev_priv)->gen >= 8 || IS_HASWELL(dev_priv)) { |
| 775 | max_w = 4096; |
| 776 | max_h = 4096; |
| 777 | } else if (IS_G4X(dev_priv) || INTEL_INFO(dev_priv)->gen >= 5) { |
| 778 | max_w = 4096; |
| 779 | max_h = 2048; |
| 780 | } else { |
| 781 | max_w = 2048; |
| 782 | max_h = 1536; |
| 783 | } |
| 784 | |
Paulo Zanoni | 856312a | 2015-10-01 19:57:12 -0300 | [diff] [blame] | 785 | intel_fbc_get_plane_source_size(crtc, &effective_w, &effective_h); |
| 786 | effective_w += crtc->adjusted_x; |
| 787 | effective_h += crtc->adjusted_y; |
| 788 | |
| 789 | return effective_w <= max_w && effective_h <= max_h; |
Paulo Zanoni | 3c5f174 | 2015-09-23 12:52:24 -0300 | [diff] [blame] | 790 | } |
| 791 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 792 | /** |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 793 | * __intel_fbc_update - enable/disable FBC as needed, unlocked |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 794 | * @crtc: the CRTC that triggered the update |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 795 | * |
Paulo Zanoni | 548043a | 2015-11-04 17:10:50 -0200 | [diff] [blame] | 796 | * This function completely reevaluates the status of FBC, then enables, |
| 797 | * disables or maintains it on the same state. |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 798 | */ |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 799 | static void __intel_fbc_update(struct intel_crtc *crtc) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 800 | { |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 801 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 802 | struct drm_framebuffer *fb; |
| 803 | struct drm_i915_gem_object *obj; |
| 804 | const struct drm_display_mode *adjusted_mode; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 805 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 806 | WARN_ON(!mutex_is_locked(&dev_priv->fbc.lock)); |
| 807 | |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 808 | if (!multiple_pipes_ok(dev_priv)) { |
| 809 | set_no_fbc_reason(dev_priv, "more than one pipe active"); |
| 810 | goto out_disable; |
| 811 | } |
| 812 | |
| 813 | if (dev_priv->fbc.crtc != NULL && dev_priv->fbc.crtc != crtc) |
| 814 | return; |
| 815 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 816 | if (intel_vgpu_active(dev_priv->dev)) |
Yu Zhang | bd49234 | 2015-02-10 19:05:50 +0800 | [diff] [blame] | 817 | i915.enable_fbc = 0; |
| 818 | |
Paulo Zanoni | 7cc6574 | 2015-02-09 14:46:27 -0200 | [diff] [blame] | 819 | if (i915.enable_fbc < 0) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 820 | set_no_fbc_reason(dev_priv, "disabled per chip default"); |
Paulo Zanoni | 7cc6574 | 2015-02-09 14:46:27 -0200 | [diff] [blame] | 821 | goto out_disable; |
| 822 | } |
| 823 | |
Rodrigo Vivi | ab585de | 2015-03-24 12:40:09 -0700 | [diff] [blame] | 824 | if (!i915.enable_fbc) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 825 | set_no_fbc_reason(dev_priv, "disabled per module param"); |
Paulo Zanoni | 7cc6574 | 2015-02-09 14:46:27 -0200 | [diff] [blame] | 826 | goto out_disable; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 827 | } |
| 828 | |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 829 | if (!crtc_is_valid(crtc)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 830 | set_no_fbc_reason(dev_priv, "no output"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 831 | goto out_disable; |
Paulo Zanoni | 8df5dd5 | 2015-07-07 15:26:08 -0300 | [diff] [blame] | 832 | } |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 833 | |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 834 | fb = crtc->base.primary->fb; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 835 | obj = intel_fb_obj(fb); |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 836 | adjusted_mode = &crtc->config->base.adjusted_mode; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 837 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 838 | if ((adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) || |
| 839 | (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 840 | set_no_fbc_reason(dev_priv, "incompatible mode"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 841 | goto out_disable; |
| 842 | } |
| 843 | |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 844 | if (!intel_fbc_hw_tracking_covers_screen(crtc)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 845 | set_no_fbc_reason(dev_priv, "mode too large for compression"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 846 | goto out_disable; |
| 847 | } |
Paulo Zanoni | 3c5f174 | 2015-09-23 12:52:24 -0300 | [diff] [blame] | 848 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 849 | if ((INTEL_INFO(dev_priv)->gen < 4 || HAS_DDI(dev_priv)) && |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 850 | crtc->plane != PLANE_A) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 851 | set_no_fbc_reason(dev_priv, "FBC unsupported on plane"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 852 | goto out_disable; |
| 853 | } |
| 854 | |
| 855 | /* The use of a CPU fence is mandatory in order to detect writes |
| 856 | * by the CPU to the scanout and trigger updates to the FBC. |
| 857 | */ |
| 858 | if (obj->tiling_mode != I915_TILING_X || |
| 859 | obj->fence_reg == I915_FENCE_REG_NONE) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 860 | set_no_fbc_reason(dev_priv, "framebuffer not tiled or fenced"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 861 | goto out_disable; |
| 862 | } |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 863 | if (INTEL_INFO(dev_priv)->gen <= 4 && !IS_G4X(dev_priv) && |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 864 | crtc->base.primary->state->rotation != BIT(DRM_ROTATE_0)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 865 | set_no_fbc_reason(dev_priv, "rotation unsupported"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 866 | goto out_disable; |
| 867 | } |
| 868 | |
Paulo Zanoni | adf70c6 | 2015-09-14 15:19:56 -0300 | [diff] [blame] | 869 | if (!stride_is_valid(dev_priv, fb->pitches[0])) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 870 | set_no_fbc_reason(dev_priv, "framebuffer stride not supported"); |
Paulo Zanoni | adf70c6 | 2015-09-14 15:19:56 -0300 | [diff] [blame] | 871 | goto out_disable; |
| 872 | } |
| 873 | |
Paulo Zanoni | b9e831d | 2015-09-21 19:48:06 -0300 | [diff] [blame] | 874 | if (!pixel_format_is_valid(fb)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 875 | set_no_fbc_reason(dev_priv, "pixel format is invalid"); |
Paulo Zanoni | b9e831d | 2015-09-21 19:48:06 -0300 | [diff] [blame] | 876 | goto out_disable; |
| 877 | } |
| 878 | |
Paulo Zanoni | 7b24c9a | 2015-09-14 15:19:59 -0300 | [diff] [blame] | 879 | /* WaFbcExceedCdClockThreshold:hsw,bdw */ |
| 880 | if ((IS_HASWELL(dev_priv) || IS_BROADWELL(dev_priv)) && |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 881 | ilk_pipe_pixel_rate(crtc->config) >= |
Paulo Zanoni | 7b24c9a | 2015-09-14 15:19:59 -0300 | [diff] [blame] | 882 | dev_priv->cdclk_freq * 95 / 100) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 883 | set_no_fbc_reason(dev_priv, "pixel rate is too big"); |
Paulo Zanoni | 7b24c9a | 2015-09-14 15:19:59 -0300 | [diff] [blame] | 884 | goto out_disable; |
| 885 | } |
| 886 | |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 887 | if (intel_fbc_setup_cfb(crtc)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 888 | set_no_fbc_reason(dev_priv, "not enough stolen memory"); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 889 | goto out_disable; |
| 890 | } |
| 891 | |
| 892 | /* If the scanout has not changed, don't modify the FBC settings. |
| 893 | * Note that we make the fundamental assumption that the fb->obj |
| 894 | * cannot be unpinned (and have its GTT offset and fence revoked) |
| 895 | * without first being decoupled from the scanout and FBC disabled. |
| 896 | */ |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 897 | if (dev_priv->fbc.crtc == crtc && |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 898 | dev_priv->fbc.fb_id == fb->base.id && |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 899 | dev_priv->fbc.y == crtc->base.y && |
| 900 | dev_priv->fbc.enabled) |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 901 | return; |
| 902 | |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 903 | if (intel_fbc_enabled(dev_priv)) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 904 | /* We update FBC along two paths, after changing fb/crtc |
| 905 | * configuration (modeswitching) and after page-flipping |
| 906 | * finishes. For the latter, we know that not only did |
| 907 | * we disable the FBC at the start of the page-flip |
| 908 | * sequence, but also more than one vblank has passed. |
| 909 | * |
| 910 | * For the former case of modeswitching, it is possible |
| 911 | * to switch between two FBC valid configurations |
| 912 | * instantaneously so we do need to disable the FBC |
| 913 | * before we can modify its control registers. We also |
| 914 | * have to wait for the next vblank for that to take |
| 915 | * effect. However, since we delay enabling FBC we can |
| 916 | * assume that a vblank has passed since disabling and |
| 917 | * that we can safely alter the registers in the deferred |
| 918 | * callback. |
| 919 | * |
| 920 | * In the scenario that we go from a valid to invalid |
| 921 | * and then back to valid FBC configuration we have |
| 922 | * no strict enforcement that a vblank occurred since |
| 923 | * disabling the FBC. However, along all current pipe |
| 924 | * disabling paths we do need to wait for a vblank at |
| 925 | * some point. And we wait before enabling FBC anyway. |
| 926 | */ |
| 927 | DRM_DEBUG_KMS("disabling active FBC for update\n"); |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 928 | __intel_fbc_disable(dev_priv); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 929 | } |
| 930 | |
Paulo Zanoni | 45b32a2 | 2015-11-04 17:10:49 -0200 | [diff] [blame] | 931 | intel_fbc_schedule_enable(crtc); |
Paulo Zanoni | 793af07 | 2015-11-04 17:10:57 -0200 | [diff] [blame] | 932 | dev_priv->fbc.no_fbc_reason = "FBC enabled (not necessarily active)"; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 933 | return; |
| 934 | |
| 935 | out_disable: |
| 936 | /* Multiple disables should be harmless */ |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 937 | if (intel_fbc_enabled(dev_priv)) { |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 938 | DRM_DEBUG_KMS("unsupported config, disabling FBC\n"); |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 939 | __intel_fbc_disable(dev_priv); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 940 | } |
Paulo Zanoni | 7733b49 | 2015-07-07 15:26:04 -0300 | [diff] [blame] | 941 | __intel_fbc_cleanup_cfb(dev_priv); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 942 | } |
| 943 | |
| 944 | /* |
| 945 | * intel_fbc_update - enable/disable FBC as needed |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 946 | * @crtc: the CRTC that triggered the update |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 947 | * |
| 948 | * This function reevaluates the overall state and enables or disables FBC. |
| 949 | */ |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 950 | void intel_fbc_update(struct intel_crtc *crtc) |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 951 | { |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 952 | struct drm_i915_private *dev_priv = crtc->base.dev->dev_private; |
| 953 | |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 954 | if (!fbc_supported(dev_priv)) |
Paulo Zanoni | 0bf73c3 | 2015-07-03 15:40:54 -0300 | [diff] [blame] | 955 | return; |
| 956 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 957 | mutex_lock(&dev_priv->fbc.lock); |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 958 | __intel_fbc_update(crtc); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 959 | mutex_unlock(&dev_priv->fbc.lock); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 960 | } |
| 961 | |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 962 | void intel_fbc_invalidate(struct drm_i915_private *dev_priv, |
| 963 | unsigned int frontbuffer_bits, |
| 964 | enum fb_op_origin origin) |
| 965 | { |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 966 | unsigned int fbc_bits; |
| 967 | |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 968 | if (!fbc_supported(dev_priv)) |
Paulo Zanoni | 0bf73c3 | 2015-07-03 15:40:54 -0300 | [diff] [blame] | 969 | return; |
| 970 | |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 971 | if (origin == ORIGIN_GTT) |
| 972 | return; |
| 973 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 974 | mutex_lock(&dev_priv->fbc.lock); |
| 975 | |
Paulo Zanoni | e9c5fd2 | 2015-10-13 18:04:45 -0300 | [diff] [blame] | 976 | if (dev_priv->fbc.enabled || dev_priv->fbc.fbc_work) |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 977 | fbc_bits = INTEL_FRONTBUFFER_PRIMARY(dev_priv->fbc.crtc->pipe); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 978 | else |
| 979 | fbc_bits = dev_priv->fbc.possible_framebuffer_bits; |
| 980 | |
| 981 | dev_priv->fbc.busy_bits |= (fbc_bits & frontbuffer_bits); |
| 982 | |
| 983 | if (dev_priv->fbc.busy_bits) |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 984 | intel_fbc_deactivate(dev_priv); |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 985 | |
| 986 | mutex_unlock(&dev_priv->fbc.lock); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 987 | } |
| 988 | |
| 989 | void intel_fbc_flush(struct drm_i915_private *dev_priv, |
Paulo Zanoni | 6f4551f | 2015-07-14 16:29:10 -0300 | [diff] [blame] | 990 | unsigned int frontbuffer_bits, enum fb_op_origin origin) |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 991 | { |
Paulo Zanoni | 9f21833 | 2015-09-23 12:52:27 -0300 | [diff] [blame] | 992 | if (!fbc_supported(dev_priv)) |
Paulo Zanoni | 0bf73c3 | 2015-07-03 15:40:54 -0300 | [diff] [blame] | 993 | return; |
| 994 | |
Paulo Zanoni | 6f4551f | 2015-07-14 16:29:10 -0300 | [diff] [blame] | 995 | if (origin == ORIGIN_GTT) |
| 996 | return; |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 997 | |
Paulo Zanoni | 6f4551f | 2015-07-14 16:29:10 -0300 | [diff] [blame] | 998 | mutex_lock(&dev_priv->fbc.lock); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 999 | |
| 1000 | dev_priv->fbc.busy_bits &= ~frontbuffer_bits; |
| 1001 | |
Paulo Zanoni | 754d113 | 2015-10-13 19:13:25 -0300 | [diff] [blame^] | 1002 | if (!dev_priv->fbc.busy_bits && dev_priv->fbc.crtc) { |
| 1003 | intel_fbc_deactivate(dev_priv); |
| 1004 | __intel_fbc_update(dev_priv->fbc.crtc); |
Paulo Zanoni | 6f4551f | 2015-07-14 16:29:10 -0300 | [diff] [blame] | 1005 | } |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1006 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1007 | mutex_unlock(&dev_priv->fbc.lock); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 1008 | } |
| 1009 | |
Rodrigo Vivi | 94b8395 | 2014-12-08 06:46:31 -0800 | [diff] [blame] | 1010 | /** |
| 1011 | * intel_fbc_init - Initialize FBC |
| 1012 | * @dev_priv: the i915 device |
| 1013 | * |
| 1014 | * This function might be called during PM init process. |
| 1015 | */ |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1016 | void intel_fbc_init(struct drm_i915_private *dev_priv) |
| 1017 | { |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 1018 | enum pipe pipe; |
| 1019 | |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1020 | mutex_init(&dev_priv->fbc.lock); |
Paulo Zanoni | b07ea0f | 2015-11-04 17:10:52 -0200 | [diff] [blame] | 1021 | dev_priv->fbc.enabled = false; |
Paulo Zanoni | 25ad93f | 2015-07-02 19:25:10 -0300 | [diff] [blame] | 1022 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1023 | if (!HAS_FBC(dev_priv)) { |
Paulo Zanoni | bf6189c | 2015-10-27 14:50:03 -0200 | [diff] [blame] | 1024 | dev_priv->fbc.no_fbc_reason = "unsupported by this chipset"; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1025 | return; |
| 1026 | } |
| 1027 | |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 1028 | for_each_pipe(dev_priv, pipe) { |
| 1029 | dev_priv->fbc.possible_framebuffer_bits |= |
| 1030 | INTEL_FRONTBUFFER_PRIMARY(pipe); |
| 1031 | |
Paulo Zanoni | 5710502 | 2015-11-04 17:10:46 -0200 | [diff] [blame] | 1032 | if (fbc_on_pipe_a_only(dev_priv)) |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 1033 | break; |
| 1034 | } |
| 1035 | |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1036 | if (INTEL_INFO(dev_priv)->gen >= 7) { |
Paulo Zanoni | ff2a311 | 2015-07-07 15:26:03 -0300 | [diff] [blame] | 1037 | dev_priv->fbc.fbc_enabled = ilk_fbc_enabled; |
| 1038 | dev_priv->fbc.enable_fbc = gen7_fbc_enable; |
| 1039 | dev_priv->fbc.disable_fbc = ilk_fbc_disable; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1040 | } else if (INTEL_INFO(dev_priv)->gen >= 5) { |
Paulo Zanoni | ff2a311 | 2015-07-07 15:26:03 -0300 | [diff] [blame] | 1041 | dev_priv->fbc.fbc_enabled = ilk_fbc_enabled; |
| 1042 | dev_priv->fbc.enable_fbc = ilk_fbc_enable; |
| 1043 | dev_priv->fbc.disable_fbc = ilk_fbc_disable; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1044 | } else if (IS_GM45(dev_priv)) { |
Paulo Zanoni | ff2a311 | 2015-07-07 15:26:03 -0300 | [diff] [blame] | 1045 | dev_priv->fbc.fbc_enabled = g4x_fbc_enabled; |
| 1046 | dev_priv->fbc.enable_fbc = g4x_fbc_enable; |
| 1047 | dev_priv->fbc.disable_fbc = g4x_fbc_disable; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1048 | } else { |
Paulo Zanoni | ff2a311 | 2015-07-07 15:26:03 -0300 | [diff] [blame] | 1049 | dev_priv->fbc.fbc_enabled = i8xx_fbc_enabled; |
| 1050 | dev_priv->fbc.enable_fbc = i8xx_fbc_enable; |
| 1051 | dev_priv->fbc.disable_fbc = i8xx_fbc_disable; |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1052 | |
| 1053 | /* This value was pulled out of someone's hat */ |
| 1054 | I915_WRITE(FBC_CONTROL, 500 << FBC_CTL_INTERVAL_SHIFT); |
| 1055 | } |
| 1056 | |
Paulo Zanoni | b07ea0f | 2015-11-04 17:10:52 -0200 | [diff] [blame] | 1057 | /* We still don't have any sort of hardware state readout for FBC, so |
| 1058 | * disable it in case the BIOS enabled it to make sure software matches |
| 1059 | * the hardware state. */ |
| 1060 | if (dev_priv->fbc.fbc_enabled(dev_priv)) |
| 1061 | dev_priv->fbc.disable_fbc(dev_priv); |
Rodrigo Vivi | 7ff0ebc | 2014-12-08 14:09:10 -0200 | [diff] [blame] | 1062 | } |