Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 Intel Corporation |
| 3 | * |
| 4 | * DRM universal plane helper functions |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 7 | * copy of this software and associated documentation files (the "Software"), |
| 8 | * to deal in the Software without restriction, including without limitation |
| 9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 10 | * and/or sell copies of the Software, and to permit persons to whom the |
| 11 | * Software is furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice (including the next |
| 14 | * paragraph) shall be included in all copies or substantial portions of the |
| 15 | * Software. |
| 16 | * |
| 17 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 20 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 23 | * SOFTWARE. |
| 24 | */ |
| 25 | |
| 26 | #include <linux/list.h> |
| 27 | #include <drm/drmP.h> |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 28 | #include <drm/drm_plane_helper.h> |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 29 | #include <drm/drm_rect.h> |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 30 | #include <drm/drm_atomic.h> |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 31 | #include <drm/drm_crtc_helper.h> |
Laurent Pinchart | 9338203 | 2016-11-28 20:51:09 +0200 | [diff] [blame] | 32 | #include <drm/drm_encoder.h> |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 33 | #include <drm/drm_atomic_helper.h> |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 34 | |
| 35 | #define SUBPIXEL_MASK 0xffff |
| 36 | |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 37 | /** |
| 38 | * DOC: overview |
| 39 | * |
| 40 | * This helper library has two parts. The first part has support to implement |
| 41 | * primary plane support on top of the normal CRTC configuration interface. |
Daniel Vetter | 6806cdf | 2017-01-25 07:26:43 +0100 | [diff] [blame] | 42 | * Since the legacy &drm_mode_config_funcs.set_config interface ties the primary |
| 43 | * plane together with the CRTC state this does not allow userspace to disable |
| 44 | * the primary plane itself. To avoid too much duplicated code use |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 45 | * drm_plane_helper_check_update() which can be used to enforce the same |
| 46 | * restrictions as primary planes had thus. The default primary plane only |
| 47 | * expose XRBG8888 and ARGB8888 as valid pixel formats for the attached |
| 48 | * framebuffer. |
| 49 | * |
| 50 | * Drivers are highly recommended to implement proper support for primary |
| 51 | * planes, and newly merged drivers must not rely upon these transitional |
| 52 | * helpers. |
| 53 | * |
| 54 | * The second part also implements transitional helpers which allow drivers to |
| 55 | * gradually switch to the atomic helper infrastructure for plane updates. Once |
| 56 | * that switch is complete drivers shouldn't use these any longer, instead using |
| 57 | * the proper legacy implementations for update and disable plane hooks provided |
| 58 | * by the atomic helpers. |
| 59 | * |
| 60 | * Again drivers are strongly urged to switch to the new interfaces. |
Daniel Vetter | 092d01d | 2015-12-04 09:45:44 +0100 | [diff] [blame] | 61 | * |
| 62 | * The plane helpers share the function table structures with other helpers, |
Daniel Vetter | ea0dd85 | 2016-12-29 21:48:26 +0100 | [diff] [blame] | 63 | * specifically also the atomic helpers. See &struct drm_plane_helper_funcs for |
Daniel Vetter | 092d01d | 2015-12-04 09:45:44 +0100 | [diff] [blame] | 64 | * the details. |
Daniel Vetter | 3150c7d | 2014-11-06 20:53:29 +0100 | [diff] [blame] | 65 | */ |
| 66 | |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 67 | /* |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 68 | * Returns the connectors currently associated with a CRTC. This function |
| 69 | * should be called twice: once with a NULL connector list to retrieve |
| 70 | * the list size, and once with the properly allocated list to be filled in. |
| 71 | */ |
| 72 | static int get_connectors_for_crtc(struct drm_crtc *crtc, |
| 73 | struct drm_connector **connector_list, |
| 74 | int num_connectors) |
| 75 | { |
| 76 | struct drm_device *dev = crtc->dev; |
| 77 | struct drm_connector *connector; |
Daniel Vetter | c36a325 | 2016-12-15 16:58:43 +0100 | [diff] [blame] | 78 | struct drm_connector_list_iter conn_iter; |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 79 | int count = 0; |
| 80 | |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 81 | /* |
| 82 | * Note: Once we change the plane hooks to more fine-grained locking we |
| 83 | * need to grab the connection_mutex here to be able to make these |
| 84 | * checks. |
| 85 | */ |
Rob Clark | 51fd371 | 2013-11-19 12:10:12 -0500 | [diff] [blame] | 86 | WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex)); |
Daniel Vetter | 6e9f798 | 2014-05-29 23:54:47 +0200 | [diff] [blame] | 87 | |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 88 | drm_connector_list_iter_begin(dev, &conn_iter); |
Daniel Vetter | c36a325 | 2016-12-15 16:58:43 +0100 | [diff] [blame] | 89 | drm_for_each_connector_iter(connector, &conn_iter) { |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 90 | if (connector->encoder && connector->encoder->crtc == crtc) { |
| 91 | if (connector_list != NULL && count < num_connectors) |
| 92 | *(connector_list++) = connector; |
| 93 | |
| 94 | count++; |
| 95 | } |
Daniel Vetter | 9a9f5ce | 2015-07-09 23:44:34 +0200 | [diff] [blame] | 96 | } |
Thierry Reding | b982dab | 2017-02-28 15:46:43 +0100 | [diff] [blame] | 97 | drm_connector_list_iter_end(&conn_iter); |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 98 | |
| 99 | return count; |
| 100 | } |
| 101 | |
| 102 | /** |
Ville Syrjälä | df86af9 | 2016-08-08 10:55:10 +0300 | [diff] [blame] | 103 | * drm_plane_helper_check_state() - Check plane state for validity |
| 104 | * @state: plane state to check |
| 105 | * @clip: integer clipping coordinates |
| 106 | * @min_scale: minimum @src:@dest scaling factor in 16.16 fixed point |
| 107 | * @max_scale: maximum @src:@dest scaling factor in 16.16 fixed point |
| 108 | * @can_position: is it legal to position the plane such that it |
| 109 | * doesn't cover the entire crtc? This will generally |
| 110 | * only be false for primary planes. |
| 111 | * @can_update_disabled: can the plane be updated while the crtc |
| 112 | * is disabled? |
| 113 | * |
| 114 | * Checks that a desired plane update is valid, and updates various |
| 115 | * bits of derived state (clipped coordinates etc.). Drivers that provide |
| 116 | * their own plane handling rather than helper-provided implementations may |
| 117 | * still wish to call this function to avoid duplication of error checking |
| 118 | * code. |
| 119 | * |
| 120 | * RETURNS: |
| 121 | * Zero if update appears valid, error code on failure |
| 122 | */ |
| 123 | int drm_plane_helper_check_state(struct drm_plane_state *state, |
| 124 | const struct drm_rect *clip, |
| 125 | int min_scale, |
| 126 | int max_scale, |
| 127 | bool can_position, |
| 128 | bool can_update_disabled) |
| 129 | { |
| 130 | struct drm_crtc *crtc = state->crtc; |
| 131 | struct drm_framebuffer *fb = state->fb; |
| 132 | struct drm_rect *src = &state->src; |
| 133 | struct drm_rect *dst = &state->dst; |
| 134 | unsigned int rotation = state->rotation; |
| 135 | int hscale, vscale; |
| 136 | |
Rob Clark | 1638d30 | 2016-11-05 11:08:08 -0400 | [diff] [blame] | 137 | *src = drm_plane_state_src(state); |
| 138 | *dst = drm_plane_state_dest(state); |
Ville Syrjälä | df86af9 | 2016-08-08 10:55:10 +0300 | [diff] [blame] | 139 | |
| 140 | if (!fb) { |
| 141 | state->visible = false; |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | /* crtc should only be NULL when disabling (i.e., !fb) */ |
| 146 | if (WARN_ON(!crtc)) { |
| 147 | state->visible = false; |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | if (!crtc->enabled && !can_update_disabled) { |
| 152 | DRM_DEBUG_KMS("Cannot update plane of a disabled CRTC.\n"); |
| 153 | return -EINVAL; |
| 154 | } |
| 155 | |
| 156 | drm_rect_rotate(src, fb->width << 16, fb->height << 16, rotation); |
| 157 | |
| 158 | /* Check scaling */ |
| 159 | hscale = drm_rect_calc_hscale(src, dst, min_scale, max_scale); |
| 160 | vscale = drm_rect_calc_vscale(src, dst, min_scale, max_scale); |
| 161 | if (hscale < 0 || vscale < 0) { |
| 162 | DRM_DEBUG_KMS("Invalid scaling of plane\n"); |
| 163 | drm_rect_debug_print("src: ", &state->src, true); |
| 164 | drm_rect_debug_print("dst: ", &state->dst, false); |
| 165 | return -ERANGE; |
| 166 | } |
| 167 | |
| 168 | state->visible = drm_rect_clip_scaled(src, dst, clip, hscale, vscale); |
| 169 | |
| 170 | drm_rect_rotate_inv(src, fb->width << 16, fb->height << 16, rotation); |
| 171 | |
| 172 | if (!state->visible) |
| 173 | /* |
| 174 | * Plane isn't visible; some drivers can handle this |
| 175 | * so we just return success here. Drivers that can't |
| 176 | * (including those that use the primary plane helper's |
| 177 | * update function) will return an error from their |
| 178 | * update_plane handler. |
| 179 | */ |
| 180 | return 0; |
| 181 | |
| 182 | if (!can_position && !drm_rect_equals(dst, clip)) { |
| 183 | DRM_DEBUG_KMS("Plane must cover entire CRTC\n"); |
| 184 | drm_rect_debug_print("dst: ", dst, false); |
| 185 | drm_rect_debug_print("clip: ", clip, false); |
| 186 | return -EINVAL; |
| 187 | } |
| 188 | |
| 189 | return 0; |
| 190 | } |
| 191 | EXPORT_SYMBOL(drm_plane_helper_check_state); |
| 192 | |
| 193 | /** |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 194 | * drm_plane_helper_check_update() - Check plane update for validity |
| 195 | * @plane: plane object to update |
| 196 | * @crtc: owning CRTC of owning plane |
| 197 | * @fb: framebuffer to flip onto plane |
| 198 | * @src: source coordinates in 16.16 fixed point |
Daniel Vetter | 5ee4c8f | 2016-08-12 22:48:57 +0200 | [diff] [blame] | 199 | * @dst: integer destination coordinates |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 200 | * @clip: integer clipping coordinates |
Ville Syrjälä | 9b8b013 | 2016-06-17 17:13:10 +0300 | [diff] [blame] | 201 | * @rotation: plane rotation |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 202 | * @min_scale: minimum @src:@dest scaling factor in 16.16 fixed point |
| 203 | * @max_scale: maximum @src:@dest scaling factor in 16.16 fixed point |
| 204 | * @can_position: is it legal to position the plane such that it |
| 205 | * doesn't cover the entire crtc? This will generally |
| 206 | * only be false for primary planes. |
| 207 | * @can_update_disabled: can the plane be updated while the crtc |
| 208 | * is disabled? |
| 209 | * @visible: output parameter indicating whether plane is still visible after |
| 210 | * clipping |
| 211 | * |
| 212 | * Checks that a desired plane update is valid. Drivers that provide |
| 213 | * their own plane handling rather than helper-provided implementations may |
| 214 | * still wish to call this function to avoid duplication of error checking |
| 215 | * code. |
| 216 | * |
| 217 | * RETURNS: |
| 218 | * Zero if update appears valid, error code on failure |
| 219 | */ |
| 220 | int drm_plane_helper_check_update(struct drm_plane *plane, |
Ville Syrjälä | 9b8b013 | 2016-06-17 17:13:10 +0300 | [diff] [blame] | 221 | struct drm_crtc *crtc, |
| 222 | struct drm_framebuffer *fb, |
| 223 | struct drm_rect *src, |
Ville Syrjälä | df86af9 | 2016-08-08 10:55:10 +0300 | [diff] [blame] | 224 | struct drm_rect *dst, |
Ville Syrjälä | 9b8b013 | 2016-06-17 17:13:10 +0300 | [diff] [blame] | 225 | const struct drm_rect *clip, |
| 226 | unsigned int rotation, |
| 227 | int min_scale, |
| 228 | int max_scale, |
| 229 | bool can_position, |
| 230 | bool can_update_disabled, |
| 231 | bool *visible) |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 232 | { |
Ville Syrjälä | df86af9 | 2016-08-08 10:55:10 +0300 | [diff] [blame] | 233 | struct drm_plane_state state = { |
| 234 | .plane = plane, |
| 235 | .crtc = crtc, |
| 236 | .fb = fb, |
| 237 | .src_x = src->x1, |
| 238 | .src_y = src->y1, |
| 239 | .src_w = drm_rect_width(src), |
| 240 | .src_h = drm_rect_height(src), |
| 241 | .crtc_x = dst->x1, |
| 242 | .crtc_y = dst->y1, |
| 243 | .crtc_w = drm_rect_width(dst), |
| 244 | .crtc_h = drm_rect_height(dst), |
| 245 | .rotation = rotation, |
| 246 | .visible = *visible, |
| 247 | }; |
| 248 | int ret; |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 249 | |
Ville Syrjälä | df86af9 | 2016-08-08 10:55:10 +0300 | [diff] [blame] | 250 | ret = drm_plane_helper_check_state(&state, clip, |
| 251 | min_scale, max_scale, |
| 252 | can_position, |
| 253 | can_update_disabled); |
| 254 | if (ret) |
| 255 | return ret; |
Matt Roper | 7432ca5 | 2014-12-11 07:20:57 -0800 | [diff] [blame] | 256 | |
Ville Syrjälä | df86af9 | 2016-08-08 10:55:10 +0300 | [diff] [blame] | 257 | *src = state.src; |
| 258 | *dst = state.dst; |
| 259 | *visible = state.visible; |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 260 | |
| 261 | return 0; |
| 262 | } |
| 263 | EXPORT_SYMBOL(drm_plane_helper_check_update); |
| 264 | |
| 265 | /** |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 266 | * drm_primary_helper_update() - Helper for primary plane update |
| 267 | * @plane: plane object to update |
| 268 | * @crtc: owning CRTC of owning plane |
| 269 | * @fb: framebuffer to flip onto plane |
| 270 | * @crtc_x: x offset of primary plane on crtc |
| 271 | * @crtc_y: y offset of primary plane on crtc |
| 272 | * @crtc_w: width of primary plane rectangle on crtc |
| 273 | * @crtc_h: height of primary plane rectangle on crtc |
| 274 | * @src_x: x offset of @fb for panning |
| 275 | * @src_y: y offset of @fb for panning |
| 276 | * @src_w: width of source rectangle in @fb |
| 277 | * @src_h: height of source rectangle in @fb |
| 278 | * |
| 279 | * Provides a default plane update handler for primary planes. This is handler |
| 280 | * is called in response to a userspace SetPlane operation on the plane with a |
| 281 | * non-NULL framebuffer. We call the driver's modeset handler to update the |
| 282 | * framebuffer. |
| 283 | * |
| 284 | * SetPlane() on a primary plane of a disabled CRTC is not supported, and will |
| 285 | * return an error. |
| 286 | * |
| 287 | * Note that we make some assumptions about hardware limitations that may not be |
| 288 | * true for all hardware -- |
Daniel Vetter | 2e7a570 | 2016-06-01 23:40:36 +0200 | [diff] [blame] | 289 | * |
| 290 | * 1. Primary plane cannot be repositioned. |
| 291 | * 2. Primary plane cannot be scaled. |
| 292 | * 3. Primary plane must cover the entire CRTC. |
| 293 | * 4. Subpixel positioning is not supported. |
| 294 | * |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 295 | * Drivers for hardware that don't have these restrictions can provide their |
| 296 | * own implementation rather than using this helper. |
| 297 | * |
| 298 | * RETURNS: |
| 299 | * Zero on success, error code on failure |
| 300 | */ |
| 301 | int drm_primary_helper_update(struct drm_plane *plane, struct drm_crtc *crtc, |
| 302 | struct drm_framebuffer *fb, |
| 303 | int crtc_x, int crtc_y, |
| 304 | unsigned int crtc_w, unsigned int crtc_h, |
| 305 | uint32_t src_x, uint32_t src_y, |
| 306 | uint32_t src_w, uint32_t src_h) |
| 307 | { |
| 308 | struct drm_mode_set set = { |
| 309 | .crtc = crtc, |
| 310 | .fb = fb, |
| 311 | .mode = &crtc->mode, |
| 312 | .x = src_x >> 16, |
| 313 | .y = src_y >> 16, |
| 314 | }; |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 315 | struct drm_rect src = { |
| 316 | .x1 = src_x, |
| 317 | .y1 = src_y, |
| 318 | .x2 = src_x + src_w, |
| 319 | .y2 = src_y + src_h, |
| 320 | }; |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 321 | struct drm_rect dest = { |
| 322 | .x1 = crtc_x, |
| 323 | .y1 = crtc_y, |
| 324 | .x2 = crtc_x + crtc_w, |
| 325 | .y2 = crtc_y + crtc_h, |
| 326 | }; |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 327 | const struct drm_rect clip = { |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 328 | .x2 = crtc->mode.hdisplay, |
| 329 | .y2 = crtc->mode.vdisplay, |
| 330 | }; |
| 331 | struct drm_connector **connector_list; |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 332 | int num_connectors, ret; |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 333 | bool visible; |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 334 | |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 335 | ret = drm_plane_helper_check_update(plane, crtc, fb, |
| 336 | &src, &dest, &clip, |
Joonas Lahtinen | 31ad61e | 2016-07-29 08:50:05 +0300 | [diff] [blame] | 337 | DRM_ROTATE_0, |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 338 | DRM_PLANE_HELPER_NO_SCALING, |
| 339 | DRM_PLANE_HELPER_NO_SCALING, |
| 340 | false, false, &visible); |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 341 | if (ret) |
| 342 | return ret; |
| 343 | |
Matt Roper | 7daf8d5 | 2014-05-29 08:06:52 -0700 | [diff] [blame] | 344 | if (!visible) |
| 345 | /* |
| 346 | * Primary plane isn't visible. Note that unless a driver |
| 347 | * provides their own disable function, this will just |
| 348 | * wind up returning -EINVAL to userspace. |
| 349 | */ |
| 350 | return plane->funcs->disable_plane(plane); |
| 351 | |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 352 | /* Find current connectors for CRTC */ |
| 353 | num_connectors = get_connectors_for_crtc(crtc, NULL, 0); |
| 354 | BUG_ON(num_connectors == 0); |
| 355 | connector_list = kzalloc(num_connectors * sizeof(*connector_list), |
| 356 | GFP_KERNEL); |
| 357 | if (!connector_list) |
| 358 | return -ENOMEM; |
| 359 | get_connectors_for_crtc(crtc, connector_list, num_connectors); |
| 360 | |
| 361 | set.connectors = connector_list; |
| 362 | set.num_connectors = num_connectors; |
| 363 | |
| 364 | /* |
Daniel Vetter | 0fe27f0 | 2014-04-23 17:34:06 +0200 | [diff] [blame] | 365 | * We call set_config() directly here rather than using |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 366 | * drm_mode_set_config_internal. We're reprogramming the same |
| 367 | * connectors that were already in use, so we shouldn't need the extra |
| 368 | * cross-CRTC fb refcounting to accomodate stealing connectors. |
| 369 | * drm_mode_setplane() already handles the basic refcounting for the |
| 370 | * framebuffers involved in this operation. |
| 371 | */ |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 372 | ret = crtc->funcs->set_config(&set); |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 373 | |
| 374 | kfree(connector_list); |
| 375 | return ret; |
| 376 | } |
| 377 | EXPORT_SYMBOL(drm_primary_helper_update); |
| 378 | |
| 379 | /** |
| 380 | * drm_primary_helper_disable() - Helper for primary plane disable |
| 381 | * @plane: plane to disable |
| 382 | * |
| 383 | * Provides a default plane disable handler for primary planes. This is handler |
| 384 | * is called in response to a userspace SetPlane operation on the plane with a |
Daniel Vetter | b6ccd7b | 2014-04-15 10:02:43 +0200 | [diff] [blame] | 385 | * NULL framebuffer parameter. It unconditionally fails the disable call with |
| 386 | * -EINVAL the only way to disable the primary plane without driver support is |
Daniel Vetter | 6806cdf | 2017-01-25 07:26:43 +0100 | [diff] [blame] | 387 | * to disable the entire CRTC. Which does not match the plane |
| 388 | * &drm_plane_funcs.disable_plane hook. |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 389 | * |
| 390 | * Note that some hardware may be able to disable the primary plane without |
| 391 | * disabling the whole CRTC. Drivers for such hardware should provide their |
| 392 | * own disable handler that disables just the primary plane (and they'll likely |
| 393 | * need to provide their own update handler as well to properly re-enable a |
| 394 | * disabled primary plane). |
| 395 | * |
| 396 | * RETURNS: |
Daniel Vetter | b6ccd7b | 2014-04-15 10:02:43 +0200 | [diff] [blame] | 397 | * Unconditionally returns -EINVAL. |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 398 | */ |
| 399 | int drm_primary_helper_disable(struct drm_plane *plane) |
| 400 | { |
Daniel Vetter | b6ccd7b | 2014-04-15 10:02:43 +0200 | [diff] [blame] | 401 | return -EINVAL; |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 402 | } |
| 403 | EXPORT_SYMBOL(drm_primary_helper_disable); |
| 404 | |
| 405 | /** |
| 406 | * drm_primary_helper_destroy() - Helper for primary plane destruction |
| 407 | * @plane: plane to destroy |
| 408 | * |
| 409 | * Provides a default plane destroy handler for primary planes. This handler |
| 410 | * is called during CRTC destruction. We disable the primary plane, remove |
| 411 | * it from the DRM plane list, and deallocate the plane structure. |
| 412 | */ |
| 413 | void drm_primary_helper_destroy(struct drm_plane *plane) |
| 414 | { |
Matt Roper | c103d1c | 2014-04-01 15:22:35 -0700 | [diff] [blame] | 415 | drm_plane_cleanup(plane); |
| 416 | kfree(plane); |
| 417 | } |
| 418 | EXPORT_SYMBOL(drm_primary_helper_destroy); |
| 419 | |
| 420 | const struct drm_plane_funcs drm_primary_helper_funcs = { |
| 421 | .update_plane = drm_primary_helper_update, |
| 422 | .disable_plane = drm_primary_helper_disable, |
| 423 | .destroy = drm_primary_helper_destroy, |
| 424 | }; |
| 425 | EXPORT_SYMBOL(drm_primary_helper_funcs); |
| 426 | |
Daniel Vetter | 2f324b4 | 2014-10-29 11:13:47 +0100 | [diff] [blame] | 427 | int drm_plane_helper_commit(struct drm_plane *plane, |
| 428 | struct drm_plane_state *plane_state, |
| 429 | struct drm_framebuffer *old_fb) |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 430 | { |
Jani Nikula | be26a66 | 2015-03-11 11:51:06 +0200 | [diff] [blame] | 431 | const struct drm_plane_helper_funcs *plane_funcs; |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 432 | struct drm_crtc *crtc[2]; |
Jani Nikula | be26a66 | 2015-03-11 11:51:06 +0200 | [diff] [blame] | 433 | const struct drm_crtc_helper_funcs *crtc_funcs[2]; |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 434 | int i, ret = 0; |
| 435 | |
| 436 | plane_funcs = plane->helper_private; |
| 437 | |
| 438 | /* Since this is a transitional helper we can't assume that plane->state |
| 439 | * is always valid. Hence we need to use plane->crtc instead of |
| 440 | * plane->state->crtc as the old crtc. */ |
| 441 | crtc[0] = plane->crtc; |
| 442 | crtc[1] = crtc[0] != plane_state->crtc ? plane_state->crtc : NULL; |
| 443 | |
| 444 | for (i = 0; i < 2; i++) |
| 445 | crtc_funcs[i] = crtc[i] ? crtc[i]->helper_private : NULL; |
| 446 | |
| 447 | if (plane_funcs->atomic_check) { |
| 448 | ret = plane_funcs->atomic_check(plane, plane_state); |
| 449 | if (ret) |
| 450 | goto out; |
| 451 | } |
| 452 | |
Gabriel Krisman Bertazi | cd25235 | 2017-02-16 14:44:42 -0200 | [diff] [blame] | 453 | if (plane_funcs->prepare_fb && plane_state->fb != old_fb) { |
Maarten Lankhorst | 844f911 | 2015-09-02 10:42:40 +0200 | [diff] [blame] | 454 | ret = plane_funcs->prepare_fb(plane, |
Tvrtko Ursulin | d136dfe | 2015-03-03 14:22:31 +0000 | [diff] [blame] | 455 | plane_state); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 456 | if (ret) |
| 457 | goto out; |
| 458 | } |
| 459 | |
| 460 | /* Point of no return, commit sw state. */ |
| 461 | swap(plane->state, plane_state); |
| 462 | |
| 463 | for (i = 0; i < 2; i++) { |
| 464 | if (crtc_funcs[i] && crtc_funcs[i]->atomic_begin) |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 465 | crtc_funcs[i]->atomic_begin(crtc[i], crtc[i]->state); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 466 | } |
| 467 | |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 468 | /* |
| 469 | * Drivers may optionally implement the ->atomic_disable callback, so |
| 470 | * special-case that here. |
| 471 | */ |
Maarten Lankhorst | 51ffa12 | 2017-02-16 15:47:07 +0100 | [diff] [blame] | 472 | if (drm_atomic_plane_disabling(plane_state, plane->state) && |
Thierry Reding | 407b8bd | 2014-11-20 12:05:50 +0100 | [diff] [blame] | 473 | plane_funcs->atomic_disable) |
| 474 | plane_funcs->atomic_disable(plane, plane_state); |
| 475 | else |
| 476 | plane_funcs->atomic_update(plane, plane_state); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 477 | |
| 478 | for (i = 0; i < 2; i++) { |
| 479 | if (crtc_funcs[i] && crtc_funcs[i]->atomic_flush) |
Maarten Lankhorst | 613d2b2 | 2015-07-21 13:28:58 +0200 | [diff] [blame] | 480 | crtc_funcs[i]->atomic_flush(crtc[i], crtc[i]->state); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 481 | } |
| 482 | |
Matt Roper | 9289058 | 2015-01-19 08:31:49 -0800 | [diff] [blame] | 483 | /* |
| 484 | * If we only moved the plane and didn't change fb's, there's no need to |
| 485 | * wait for vblank. |
| 486 | */ |
| 487 | if (plane->state->fb == old_fb) |
| 488 | goto out; |
| 489 | |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 490 | for (i = 0; i < 2; i++) { |
| 491 | if (!crtc[i]) |
| 492 | continue; |
| 493 | |
Daniel Vetter | 2e7f43c | 2015-05-20 10:36:32 +0200 | [diff] [blame] | 494 | if (crtc[i]->cursor == plane) |
| 495 | continue; |
| 496 | |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 497 | /* There's no other way to figure out whether the crtc is running. */ |
| 498 | ret = drm_crtc_vblank_get(crtc[i]); |
| 499 | if (ret == 0) { |
| 500 | drm_crtc_wait_one_vblank(crtc[i]); |
| 501 | drm_crtc_vblank_put(crtc[i]); |
| 502 | } |
| 503 | |
| 504 | ret = 0; |
| 505 | } |
| 506 | |
Maarten Lankhorst | 844f911 | 2015-09-02 10:42:40 +0200 | [diff] [blame] | 507 | if (plane_funcs->cleanup_fb) |
| 508 | plane_funcs->cleanup_fb(plane, plane_state); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 509 | out: |
| 510 | if (plane_state) { |
| 511 | if (plane->funcs->atomic_destroy_state) |
| 512 | plane->funcs->atomic_destroy_state(plane, plane_state); |
| 513 | else |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 514 | drm_atomic_helper_plane_destroy_state(plane, plane_state); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | return ret; |
| 518 | } |
| 519 | |
| 520 | /** |
Matt Roper | 6a425c2 | 2015-01-15 18:34:22 -0800 | [diff] [blame] | 521 | * drm_plane_helper_update() - Transitional helper for plane update |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 522 | * @plane: plane object to update |
| 523 | * @crtc: owning CRTC of owning plane |
| 524 | * @fb: framebuffer to flip onto plane |
| 525 | * @crtc_x: x offset of primary plane on crtc |
| 526 | * @crtc_y: y offset of primary plane on crtc |
| 527 | * @crtc_w: width of primary plane rectangle on crtc |
| 528 | * @crtc_h: height of primary plane rectangle on crtc |
| 529 | * @src_x: x offset of @fb for panning |
| 530 | * @src_y: y offset of @fb for panning |
| 531 | * @src_w: width of source rectangle in @fb |
| 532 | * @src_h: height of source rectangle in @fb |
| 533 | * |
| 534 | * Provides a default plane update handler using the atomic plane update |
| 535 | * functions. It is fully left to the driver to check plane constraints and |
| 536 | * handle corner-cases like a fully occluded or otherwise invisible plane. |
| 537 | * |
| 538 | * This is useful for piecewise transitioning of a driver to the atomic helpers. |
| 539 | * |
| 540 | * RETURNS: |
| 541 | * Zero on success, error code on failure |
| 542 | */ |
| 543 | int drm_plane_helper_update(struct drm_plane *plane, struct drm_crtc *crtc, |
| 544 | struct drm_framebuffer *fb, |
| 545 | int crtc_x, int crtc_y, |
| 546 | unsigned int crtc_w, unsigned int crtc_h, |
| 547 | uint32_t src_x, uint32_t src_y, |
| 548 | uint32_t src_w, uint32_t src_h) |
| 549 | { |
| 550 | struct drm_plane_state *plane_state; |
| 551 | |
| 552 | if (plane->funcs->atomic_duplicate_state) |
| 553 | plane_state = plane->funcs->atomic_duplicate_state(plane); |
Daniel Vetter | e4f31ad | 2015-07-02 16:33:53 +0200 | [diff] [blame] | 554 | else { |
| 555 | if (!plane->state) |
| 556 | drm_atomic_helper_plane_reset(plane); |
| 557 | |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 558 | plane_state = drm_atomic_helper_plane_duplicate_state(plane); |
Daniel Vetter | e4f31ad | 2015-07-02 16:33:53 +0200 | [diff] [blame] | 559 | } |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 560 | if (!plane_state) |
| 561 | return -ENOMEM; |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 562 | plane_state->plane = plane; |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 563 | |
| 564 | plane_state->crtc = crtc; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 565 | drm_atomic_set_fb_for_plane(plane_state, fb); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 566 | plane_state->crtc_x = crtc_x; |
| 567 | plane_state->crtc_y = crtc_y; |
| 568 | plane_state->crtc_h = crtc_h; |
| 569 | plane_state->crtc_w = crtc_w; |
| 570 | plane_state->src_x = src_x; |
| 571 | plane_state->src_y = src_y; |
| 572 | plane_state->src_h = src_h; |
| 573 | plane_state->src_w = src_w; |
| 574 | |
Daniel Vetter | 2f324b4 | 2014-10-29 11:13:47 +0100 | [diff] [blame] | 575 | return drm_plane_helper_commit(plane, plane_state, plane->fb); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 576 | } |
| 577 | EXPORT_SYMBOL(drm_plane_helper_update); |
| 578 | |
| 579 | /** |
Matt Roper | 6a425c2 | 2015-01-15 18:34:22 -0800 | [diff] [blame] | 580 | * drm_plane_helper_disable() - Transitional helper for plane disable |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 581 | * @plane: plane to disable |
| 582 | * |
| 583 | * Provides a default plane disable handler using the atomic plane update |
| 584 | * functions. It is fully left to the driver to check plane constraints and |
| 585 | * handle corner-cases like a fully occluded or otherwise invisible plane. |
| 586 | * |
| 587 | * This is useful for piecewise transitioning of a driver to the atomic helpers. |
| 588 | * |
| 589 | * RETURNS: |
| 590 | * Zero on success, error code on failure |
| 591 | */ |
| 592 | int drm_plane_helper_disable(struct drm_plane *plane) |
| 593 | { |
| 594 | struct drm_plane_state *plane_state; |
| 595 | |
| 596 | /* crtc helpers love to call disable functions for already disabled hw |
| 597 | * functions. So cope with that. */ |
| 598 | if (!plane->crtc) |
| 599 | return 0; |
| 600 | |
| 601 | if (plane->funcs->atomic_duplicate_state) |
| 602 | plane_state = plane->funcs->atomic_duplicate_state(plane); |
Daniel Vetter | e4f31ad | 2015-07-02 16:33:53 +0200 | [diff] [blame] | 603 | else { |
| 604 | if (!plane->state) |
| 605 | drm_atomic_helper_plane_reset(plane); |
| 606 | |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 607 | plane_state = drm_atomic_helper_plane_duplicate_state(plane); |
Daniel Vetter | e4f31ad | 2015-07-02 16:33:53 +0200 | [diff] [blame] | 608 | } |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 609 | if (!plane_state) |
| 610 | return -ENOMEM; |
Daniel Vetter | 07cc0ef | 2014-11-27 15:49:39 +0100 | [diff] [blame] | 611 | plane_state->plane = plane; |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 612 | |
| 613 | plane_state->crtc = NULL; |
Daniel Vetter | 321ebf0 | 2014-11-04 22:57:27 +0100 | [diff] [blame] | 614 | drm_atomic_set_fb_for_plane(plane_state, NULL); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 615 | |
Daniel Vetter | 2f324b4 | 2014-10-29 11:13:47 +0100 | [diff] [blame] | 616 | return drm_plane_helper_commit(plane, plane_state, plane->fb); |
Daniel Vetter | acf24a3 | 2014-07-29 15:33:05 +0200 | [diff] [blame] | 617 | } |
| 618 | EXPORT_SYMBOL(drm_plane_helper_disable); |