Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +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 | * Authors: |
| 24 | * Daniel Vetter <daniel.vetter@ffwll.ch> |
| 25 | */ |
| 26 | |
| 27 | /** |
| 28 | * DOC: frontbuffer tracking |
| 29 | * |
| 30 | * Many features require us to track changes to the currently active |
Daniel Vetter | 5c323b2 | 2014-09-30 22:10:53 +0200 | [diff] [blame] | 31 | * frontbuffer, especially rendering targeted at the frontbuffer. |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 32 | * |
| 33 | * To be able to do so GEM tracks frontbuffers using a bitmask for all possible |
| 34 | * frontbuffer slots through i915_gem_track_fb(). The function in this file are |
| 35 | * then called when the contents of the frontbuffer are invalidated, when |
| 36 | * frontbuffer rendering has stopped again to flush out all the changes and when |
| 37 | * the frontbuffer is exchanged with a flip. Subsystems interested in |
| 38 | * frontbuffer changes (e.g. PSR, FBC, DRRS) should directly put their callbacks |
| 39 | * into the relevant places and filter for the frontbuffer slots that they are |
| 40 | * interested int. |
| 41 | * |
| 42 | * On a high level there are two types of powersaving features. The first one |
| 43 | * work like a special cache (FBC and PSR) and are interested when they should |
| 44 | * stop caching and when to restart caching. This is done by placing callbacks |
| 45 | * into the invalidate and the flush functions: At invalidate the caching must |
| 46 | * be stopped and at flush time it can be restarted. And maybe they need to know |
| 47 | * when the frontbuffer changes (e.g. when the hw doesn't initiate an invalidate |
| 48 | * and flush on its own) which can be achieved with placing callbacks into the |
| 49 | * flip functions. |
| 50 | * |
| 51 | * The other type of display power saving feature only cares about busyness |
| 52 | * (e.g. DRRS). In that case all three (invalidate, flush and flip) indicate |
| 53 | * busyness. There is no direct way to detect idleness. Instead an idle timer |
| 54 | * work delayed work should be started from the flush and flip functions and |
| 55 | * cancelled as soon as busyness is detected. |
| 56 | * |
| 57 | * Note that there's also an older frontbuffer activity tracking scheme which |
Daniel Vetter | 5c323b2 | 2014-09-30 22:10:53 +0200 | [diff] [blame] | 58 | * just tracks general activity. This is done by the various mark_busy and |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 59 | * mark_idle functions. For display power management features using these |
| 60 | * functions is deprecated and should be avoided. |
| 61 | */ |
| 62 | |
| 63 | #include <drm/drmP.h> |
| 64 | |
| 65 | #include "intel_drv.h" |
| 66 | #include "i915_drv.h" |
| 67 | |
| 68 | static void intel_increase_pllclock(struct drm_device *dev, |
| 69 | enum pipe pipe) |
| 70 | { |
| 71 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 72 | int dpll_reg = DPLL(pipe); |
| 73 | int dpll; |
| 74 | |
| 75 | if (!HAS_GMCH_DISPLAY(dev)) |
| 76 | return; |
| 77 | |
| 78 | if (!dev_priv->lvds_downclock_avail) |
| 79 | return; |
| 80 | |
| 81 | dpll = I915_READ(dpll_reg); |
| 82 | if (!HAS_PIPE_CXSR(dev) && (dpll & DISPLAY_RATE_SELECT_FPA1)) { |
| 83 | DRM_DEBUG_DRIVER("upclocking LVDS\n"); |
| 84 | |
| 85 | assert_panel_unlocked(dev_priv, pipe); |
| 86 | |
| 87 | dpll &= ~DISPLAY_RATE_SELECT_FPA1; |
| 88 | I915_WRITE(dpll_reg, dpll); |
| 89 | intel_wait_for_vblank(dev, pipe); |
| 90 | |
| 91 | dpll = I915_READ(dpll_reg); |
| 92 | if (dpll & DISPLAY_RATE_SELECT_FPA1) |
| 93 | DRM_DEBUG_DRIVER("failed to upclock LVDS!\n"); |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * intel_mark_fb_busy - mark given planes as busy |
| 99 | * @dev: DRM device |
| 100 | * @frontbuffer_bits: bits for the affected planes |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 101 | * |
| 102 | * This function gets called every time the screen contents change. It can be |
| 103 | * used to keep e.g. the update rate at the nominal refresh rate with DRRS. |
| 104 | */ |
| 105 | static void intel_mark_fb_busy(struct drm_device *dev, |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 106 | unsigned frontbuffer_bits) |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 107 | { |
| 108 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 109 | enum pipe pipe; |
| 110 | |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 111 | for_each_pipe(dev_priv, pipe) { |
| 112 | if (!(frontbuffer_bits & INTEL_FRONTBUFFER_ALL_MASK(pipe))) |
| 113 | continue; |
| 114 | |
| 115 | intel_increase_pllclock(dev, pipe); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 116 | } |
| 117 | } |
| 118 | |
| 119 | /** |
| 120 | * intel_fb_obj_invalidate - invalidate frontbuffer object |
| 121 | * @obj: GEM object to invalidate |
Paulo Zanoni | a4001f1 | 2015-02-13 17:23:44 -0200 | [diff] [blame] | 122 | * @origin: which operation caused the invalidation |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 123 | * |
| 124 | * This function gets called every time rendering on the given object starts and |
| 125 | * frontbuffer caching (fbc, low refresh rate for DRRS, panel self refresh) must |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 126 | * be invalidated. For ORIGIN_CS any subsequent invalidation will be delayed |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 127 | * until the rendering completes or a flip on this frontbuffer plane is |
| 128 | * scheduled. |
| 129 | */ |
| 130 | void intel_fb_obj_invalidate(struct drm_i915_gem_object *obj, |
Paulo Zanoni | a4001f1 | 2015-02-13 17:23:44 -0200 | [diff] [blame] | 131 | enum fb_op_origin origin) |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 132 | { |
| 133 | struct drm_device *dev = obj->base.dev; |
Daniel Vetter | 9fb7386 | 2015-06-18 10:30:28 +0200 | [diff] [blame^] | 134 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 135 | |
| 136 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 137 | |
| 138 | if (!obj->frontbuffer_bits) |
| 139 | return; |
| 140 | |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 141 | if (origin == ORIGIN_CS) { |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 142 | mutex_lock(&dev_priv->fb_tracking.lock); |
| 143 | dev_priv->fb_tracking.busy_bits |
| 144 | |= obj->frontbuffer_bits; |
| 145 | dev_priv->fb_tracking.flip_bits |
| 146 | &= ~obj->frontbuffer_bits; |
| 147 | mutex_unlock(&dev_priv->fb_tracking.lock); |
| 148 | } |
| 149 | |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 150 | intel_mark_fb_busy(dev, obj->frontbuffer_bits); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 151 | |
Rodrigo Vivi | 0bc12bc | 2014-11-14 08:52:28 -0800 | [diff] [blame] | 152 | intel_psr_invalidate(dev, obj->frontbuffer_bits); |
Vandana Kannan | a93fad0 | 2015-01-10 02:25:59 +0530 | [diff] [blame] | 153 | intel_edp_drrs_invalidate(dev, obj->frontbuffer_bits); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 154 | intel_fbc_invalidate(dev_priv, obj->frontbuffer_bits, origin); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | /** |
| 158 | * intel_frontbuffer_flush - flush frontbuffer |
| 159 | * @dev: DRM device |
| 160 | * @frontbuffer_bits: frontbuffer plane tracking bits |
| 161 | * |
| 162 | * This function gets called every time rendering on the given planes has |
| 163 | * completed and frontbuffer caching can be started again. Flushes will get |
Daniel Vetter | 5c323b2 | 2014-09-30 22:10:53 +0200 | [diff] [blame] | 164 | * delayed if they're blocked by some outstanding asynchronous rendering. |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 165 | * |
| 166 | * Can be called without any locks held. |
| 167 | */ |
| 168 | void intel_frontbuffer_flush(struct drm_device *dev, |
| 169 | unsigned frontbuffer_bits) |
| 170 | { |
Daniel Vetter | 9fb7386 | 2015-06-18 10:30:28 +0200 | [diff] [blame^] | 171 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 172 | |
| 173 | /* Delay flushing when rings are still busy.*/ |
| 174 | mutex_lock(&dev_priv->fb_tracking.lock); |
| 175 | frontbuffer_bits &= ~dev_priv->fb_tracking.busy_bits; |
| 176 | mutex_unlock(&dev_priv->fb_tracking.lock); |
| 177 | |
Daniel Vetter | 27e78a2 | 2015-06-18 10:30:21 +0200 | [diff] [blame] | 178 | if (!frontbuffer_bits) |
| 179 | return; |
| 180 | |
Rodrigo Vivi | 77a0d1c | 2015-06-18 11:43:24 -0700 | [diff] [blame] | 181 | intel_mark_fb_busy(dev, frontbuffer_bits); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 182 | |
Vandana Kannan | a93fad0 | 2015-01-10 02:25:59 +0530 | [diff] [blame] | 183 | intel_edp_drrs_flush(dev, frontbuffer_bits); |
Rodrigo Vivi | 0bc12bc | 2014-11-14 08:52:28 -0800 | [diff] [blame] | 184 | intel_psr_flush(dev, frontbuffer_bits); |
Paulo Zanoni | dbef0f1 | 2015-02-13 17:23:46 -0200 | [diff] [blame] | 185 | intel_fbc_flush(dev_priv, frontbuffer_bits); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | /** |
| 189 | * intel_fb_obj_flush - flush frontbuffer object |
| 190 | * @obj: GEM object to flush |
| 191 | * @retire: set when retiring asynchronous rendering |
| 192 | * |
| 193 | * This function gets called every time rendering on the given object has |
| 194 | * completed and frontbuffer caching can be started again. If @retire is true |
| 195 | * then any delayed flushes will be unblocked. |
| 196 | */ |
| 197 | void intel_fb_obj_flush(struct drm_i915_gem_object *obj, |
| 198 | bool retire) |
| 199 | { |
| 200 | struct drm_device *dev = obj->base.dev; |
Daniel Vetter | 9fb7386 | 2015-06-18 10:30:28 +0200 | [diff] [blame^] | 201 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 202 | unsigned frontbuffer_bits; |
| 203 | |
| 204 | WARN_ON(!mutex_is_locked(&dev->struct_mutex)); |
| 205 | |
| 206 | if (!obj->frontbuffer_bits) |
| 207 | return; |
| 208 | |
| 209 | frontbuffer_bits = obj->frontbuffer_bits; |
| 210 | |
| 211 | if (retire) { |
| 212 | mutex_lock(&dev_priv->fb_tracking.lock); |
| 213 | /* Filter out new bits since rendering started. */ |
| 214 | frontbuffer_bits &= dev_priv->fb_tracking.busy_bits; |
| 215 | |
| 216 | dev_priv->fb_tracking.busy_bits &= ~frontbuffer_bits; |
| 217 | mutex_unlock(&dev_priv->fb_tracking.lock); |
| 218 | } |
| 219 | |
| 220 | intel_frontbuffer_flush(dev, frontbuffer_bits); |
| 221 | } |
| 222 | |
| 223 | /** |
Daniel Vetter | 5c323b2 | 2014-09-30 22:10:53 +0200 | [diff] [blame] | 224 | * intel_frontbuffer_flip_prepare - prepare asynchronous frontbuffer flip |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 225 | * @dev: DRM device |
| 226 | * @frontbuffer_bits: frontbuffer plane tracking bits |
| 227 | * |
| 228 | * This function gets called after scheduling a flip on @obj. The actual |
| 229 | * frontbuffer flushing will be delayed until completion is signalled with |
| 230 | * intel_frontbuffer_flip_complete. If an invalidate happens in between this |
| 231 | * flush will be cancelled. |
| 232 | * |
| 233 | * Can be called without any locks held. |
| 234 | */ |
| 235 | void intel_frontbuffer_flip_prepare(struct drm_device *dev, |
| 236 | unsigned frontbuffer_bits) |
| 237 | { |
Daniel Vetter | 9fb7386 | 2015-06-18 10:30:28 +0200 | [diff] [blame^] | 238 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 239 | |
| 240 | mutex_lock(&dev_priv->fb_tracking.lock); |
Daniel Vetter | 11c9b6c | 2014-09-30 22:10:52 +0200 | [diff] [blame] | 241 | dev_priv->fb_tracking.flip_bits |= frontbuffer_bits; |
| 242 | /* Remove stale busy bits due to the old buffer. */ |
| 243 | dev_priv->fb_tracking.busy_bits &= ~frontbuffer_bits; |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 244 | mutex_unlock(&dev_priv->fb_tracking.lock); |
Rodrigo Vivi | c7240c3 | 2015-04-10 11:15:10 -0700 | [diff] [blame] | 245 | |
Daniel Vetter | 20c8838 | 2015-06-18 10:30:27 +0200 | [diff] [blame] | 246 | intel_psr_single_frame_update(dev, frontbuffer_bits); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 247 | } |
| 248 | |
| 249 | /** |
Daniel Vetter | 5c323b2 | 2014-09-30 22:10:53 +0200 | [diff] [blame] | 250 | * intel_frontbuffer_flip_complete - complete asynchronous frontbuffer flip |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 251 | * @dev: DRM device |
| 252 | * @frontbuffer_bits: frontbuffer plane tracking bits |
| 253 | * |
| 254 | * This function gets called after the flip has been latched and will complete |
Daniel Vetter | 5c323b2 | 2014-09-30 22:10:53 +0200 | [diff] [blame] | 255 | * on the next vblank. It will execute the flush if it hasn't been cancelled yet. |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 256 | * |
| 257 | * Can be called without any locks held. |
| 258 | */ |
| 259 | void intel_frontbuffer_flip_complete(struct drm_device *dev, |
| 260 | unsigned frontbuffer_bits) |
| 261 | { |
Daniel Vetter | 9fb7386 | 2015-06-18 10:30:28 +0200 | [diff] [blame^] | 262 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | b680c37 | 2014-09-19 18:27:27 +0200 | [diff] [blame] | 263 | |
| 264 | mutex_lock(&dev_priv->fb_tracking.lock); |
| 265 | /* Mask any cancelled flips. */ |
| 266 | frontbuffer_bits &= dev_priv->fb_tracking.flip_bits; |
| 267 | dev_priv->fb_tracking.flip_bits &= ~frontbuffer_bits; |
| 268 | mutex_unlock(&dev_priv->fb_tracking.lock); |
| 269 | |
| 270 | intel_frontbuffer_flush(dev, frontbuffer_bits); |
| 271 | } |
Daniel Vetter | fdbff92 | 2015-06-18 11:23:24 +0200 | [diff] [blame] | 272 | |
| 273 | /** |
| 274 | * intel_frontbuffer_flip - synchronous frontbuffer flip |
| 275 | * @dev: DRM device |
| 276 | * @frontbuffer_bits: frontbuffer plane tracking bits |
| 277 | * |
| 278 | * This function gets called after scheduling a flip on @obj. This is for |
| 279 | * synchronous plane updates which will happen on the next vblank and which will |
| 280 | * not get delayed by pending gpu rendering. |
| 281 | * |
| 282 | * Can be called without any locks held. |
| 283 | */ |
| 284 | |
| 285 | void intel_frontbuffer_flip(struct drm_device *dev, |
| 286 | unsigned frontbuffer_bits) |
| 287 | { |
Daniel Vetter | 9fb7386 | 2015-06-18 10:30:28 +0200 | [diff] [blame^] | 288 | struct drm_i915_private *dev_priv = to_i915(dev); |
Daniel Vetter | fdbff92 | 2015-06-18 11:23:24 +0200 | [diff] [blame] | 289 | |
| 290 | mutex_lock(&dev_priv->fb_tracking.lock); |
| 291 | /* Remove stale busy bits due to the old buffer. */ |
| 292 | dev_priv->fb_tracking.busy_bits &= ~frontbuffer_bits; |
| 293 | mutex_unlock(&dev_priv->fb_tracking.lock); |
| 294 | |
| 295 | intel_frontbuffer_flush(dev, frontbuffer_bits); |
| 296 | } |