blob: d2b56cc657e933593c8c8298c931876061f46e34 [file] [log] [blame]
Daniel Vetterc2fcd272014-11-05 00:14:14 +01001/*
2 * Copyright (C) 2014 Red Hat
3 * Copyright (C) 2014 Intel Corp.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21 * OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Rob Clark <robdclark@gmail.com>
25 * Daniel Vetter <daniel.vetter@ffwll.ch>
26 */
27
28#ifndef DRM_ATOMIC_HELPER_H_
29#define DRM_ATOMIC_HELPER_H_
30
Thierry Reding02549512014-11-25 12:09:47 +010031#include <drm/drm_crtc.h>
Daniel Vetter1de72fa2016-08-12 22:48:39 +020032#include <drm/drm_modeset_helper_vtables.h>
33#include <drm/drm_modeset_helper.h>
Thierry Reding02549512014-11-25 12:09:47 +010034
Rob Clarkbbb1e522015-08-25 15:35:58 -040035struct drm_atomic_state;
Ville Syrjäläa4370c72017-07-12 18:51:02 +030036struct drm_private_obj;
37struct drm_private_state;
Rob Clarkbbb1e522015-08-25 15:35:58 -040038
Daniel Vetterd9b13622014-11-26 16:57:41 +010039int drm_atomic_helper_check_modeset(struct drm_device *dev,
40 struct drm_atomic_state *state);
41int drm_atomic_helper_check_planes(struct drm_device *dev,
42 struct drm_atomic_state *state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010043int drm_atomic_helper_check(struct drm_device *dev,
44 struct drm_atomic_state *state);
Daniel Vetter9f2a7952016-06-08 14:19:02 +020045void drm_atomic_helper_commit_tail(struct drm_atomic_state *state);
Maxime Ripard81a099a2017-07-20 15:01:16 +020046void drm_atomic_helper_commit_tail_rpm(struct drm_atomic_state *state);
Daniel Vetter623369e2014-09-16 17:50:47 +020047int drm_atomic_helper_commit(struct drm_device *dev,
48 struct drm_atomic_state *state,
Maarten Lankhorst286dbb82016-04-26 16:11:34 +020049 bool nonblock);
Gustavo Padovanfef9df82017-06-30 15:03:17 -030050int drm_atomic_helper_async_check(struct drm_device *dev,
51 struct drm_atomic_state *state);
52void drm_atomic_helper_async_commit(struct drm_device *dev,
53 struct drm_atomic_state *state);
Daniel Vetter623369e2014-09-16 17:50:47 +020054
Gustavo Padovanf6ce4102016-09-12 16:08:11 -030055int drm_atomic_helper_wait_for_fences(struct drm_device *dev,
56 struct drm_atomic_state *state,
57 bool pre_swap);
John Keepingc2409062016-01-19 10:46:58 +000058
Rob Clark5ee32292014-11-11 19:38:59 -050059void drm_atomic_helper_wait_for_vblanks(struct drm_device *dev,
60 struct drm_atomic_state *old_state);
61
Boris Brezillon01086482017-06-02 10:32:06 +020062void drm_atomic_helper_wait_for_flip_done(struct drm_device *dev,
63 struct drm_atomic_state *old_state);
64
Daniel Vetter4c18d302015-05-12 15:27:37 +020065void
66drm_atomic_helper_update_legacy_modeset_state(struct drm_device *dev,
67 struct drm_atomic_state *old_state);
68
Daniel Vetter1af434a2015-02-22 12:24:19 +010069void drm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
70 struct drm_atomic_state *state);
71void drm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
Daniel Vetter623369e2014-09-16 17:50:47 +020072 struct drm_atomic_state *old_state);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010073
74int drm_atomic_helper_prepare_planes(struct drm_device *dev,
75 struct drm_atomic_state *state);
Liu Ying2b58e982016-08-29 17:12:03 +080076
77#define DRM_PLANE_COMMIT_ACTIVE_ONLY BIT(0)
78#define DRM_PLANE_COMMIT_NO_DISABLE_AFTER_MODESET BIT(1)
79
Daniel Vetterc2fcd272014-11-05 00:14:14 +010080void drm_atomic_helper_commit_planes(struct drm_device *dev,
Daniel Vetteraef9dbb2015-09-08 12:02:07 +020081 struct drm_atomic_state *state,
Liu Ying2b58e982016-08-29 17:12:03 +080082 uint32_t flags);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010083void drm_atomic_helper_cleanup_planes(struct drm_device *dev,
84 struct drm_atomic_state *old_state);
Maarten Lankhorstde28d022015-05-19 16:41:01 +020085void drm_atomic_helper_commit_planes_on_crtc(struct drm_crtc_state *old_crtc_state);
Liu Ying28500292016-08-26 15:30:39 +080086void
87drm_atomic_helper_disable_planes_on_crtc(struct drm_crtc_state *old_crtc_state,
88 bool atomic);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010089
Maarten Lankhorst8a393742017-07-11 16:33:13 +020090int __must_check drm_atomic_helper_swap_state(struct drm_atomic_state *state,
91 bool stall);
Daniel Vetterc2fcd272014-11-05 00:14:14 +010092
Daniel Vettera095caa2016-06-08 17:15:36 +020093/* nonblocking commit helpers */
94int drm_atomic_helper_setup_commit(struct drm_atomic_state *state,
95 bool nonblock);
96void drm_atomic_helper_wait_for_dependencies(struct drm_atomic_state *state);
97void drm_atomic_helper_commit_hw_done(struct drm_atomic_state *state);
98void drm_atomic_helper_commit_cleanup_done(struct drm_atomic_state *state);
99
Daniel Vetter042652e2014-07-27 13:46:52 +0200100/* implementations for legacy interfaces */
101int drm_atomic_helper_update_plane(struct drm_plane *plane,
102 struct drm_crtc *crtc,
103 struct drm_framebuffer *fb,
104 int crtc_x, int crtc_y,
105 unsigned int crtc_w, unsigned int crtc_h,
106 uint32_t src_x, uint32_t src_y,
Daniel Vetter34a2ab52017-03-22 22:50:41 +0100107 uint32_t src_w, uint32_t src_h,
108 struct drm_modeset_acquire_ctx *ctx);
Daniel Vetter19315292017-03-22 22:50:43 +0100109int drm_atomic_helper_disable_plane(struct drm_plane *plane,
110 struct drm_modeset_acquire_ctx *ctx);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400111int __drm_atomic_helper_disable_plane(struct drm_plane *plane,
112 struct drm_plane_state *plane_state);
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100113int drm_atomic_helper_set_config(struct drm_mode_set *set,
114 struct drm_modeset_acquire_ctx *ctx);
Rob Clarkbbb1e522015-08-25 15:35:58 -0400115int __drm_atomic_helper_set_config(struct drm_mode_set *set,
116 struct drm_atomic_state *state);
Daniel Vetter042652e2014-07-27 13:46:52 +0200117
Thierry Reding14942762015-12-02 17:50:04 +0100118int drm_atomic_helper_disable_all(struct drm_device *dev,
119 struct drm_modeset_acquire_ctx *ctx);
Daniel Vetter18dddad2017-03-21 17:41:49 +0100120void drm_atomic_helper_shutdown(struct drm_device *dev);
Thierry Reding14942762015-12-02 17:50:04 +0100121struct drm_atomic_state *drm_atomic_helper_suspend(struct drm_device *dev);
Maarten Lankhorst581e49f2017-01-16 10:37:38 +0100122int drm_atomic_helper_commit_duplicated_state(struct drm_atomic_state *state,
123 struct drm_modeset_acquire_ctx *ctx);
Thierry Reding14942762015-12-02 17:50:04 +0100124int drm_atomic_helper_resume(struct drm_device *dev,
125 struct drm_atomic_state *state);
126
Daniel Vetter8bc0f312014-07-27 18:42:37 +0200127int drm_atomic_helper_page_flip(struct drm_crtc *crtc,
128 struct drm_framebuffer *fb,
129 struct drm_pending_vblank_event *event,
Daniel Vetter41292b1f2017-03-22 22:50:50 +0100130 uint32_t flags,
131 struct drm_modeset_acquire_ctx *ctx);
Andrey Grodzovskyf869a6e2017-01-06 15:39:40 -0500132int drm_atomic_helper_page_flip_target(
133 struct drm_crtc *crtc,
134 struct drm_framebuffer *fb,
135 struct drm_pending_vblank_event *event,
136 uint32_t flags,
Daniel Vetter41292b1f2017-03-22 22:50:50 +0100137 uint32_t target,
138 struct drm_modeset_acquire_ctx *ctx);
Noralf Trønnes9ecb5492016-05-11 18:09:21 +0200139struct drm_encoder *
140drm_atomic_helper_best_encoder(struct drm_connector *connector);
Daniel Vetter8bc0f312014-07-27 18:42:37 +0200141
Daniel Vetterd4617012014-11-03 15:56:43 +0100142/* default implementations for state handling */
143void drm_atomic_helper_crtc_reset(struct drm_crtc *crtc);
Thierry Redingf5e78402015-01-28 14:54:32 +0100144void __drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc,
145 struct drm_crtc_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100146struct drm_crtc_state *
147drm_atomic_helper_crtc_duplicate_state(struct drm_crtc *crtc);
Daniel Vetterec2dc6a2016-05-09 16:34:09 +0200148void __drm_atomic_helper_crtc_destroy_state(struct drm_crtc_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100149void drm_atomic_helper_crtc_destroy_state(struct drm_crtc *crtc,
150 struct drm_crtc_state *state);
151
152void drm_atomic_helper_plane_reset(struct drm_plane *plane);
Thierry Redingf5e78402015-01-28 14:54:32 +0100153void __drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane,
154 struct drm_plane_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100155struct drm_plane_state *
156drm_atomic_helper_plane_duplicate_state(struct drm_plane *plane);
Daniel Vetter2f701692016-05-09 16:34:10 +0200157void __drm_atomic_helper_plane_destroy_state(struct drm_plane_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100158void drm_atomic_helper_plane_destroy_state(struct drm_plane *plane,
159 struct drm_plane_state *state);
160
Maarten Lankhorst4cd39912016-01-04 12:53:16 +0100161void __drm_atomic_helper_connector_reset(struct drm_connector *connector,
162 struct drm_connector_state *conn_state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100163void drm_atomic_helper_connector_reset(struct drm_connector *connector);
Thierry Redingf5e78402015-01-28 14:54:32 +0100164void
165__drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector,
166 struct drm_connector_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100167struct drm_connector_state *
168drm_atomic_helper_connector_duplicate_state(struct drm_connector *connector);
Thierry Reding397fd772015-09-08 15:00:45 +0200169struct drm_atomic_state *
170drm_atomic_helper_duplicate_state(struct drm_device *dev,
171 struct drm_modeset_acquire_ctx *ctx);
Thierry Redingf5e78402015-01-28 14:54:32 +0100172void
Daniel Vetterfabd9102016-05-09 16:34:11 +0200173__drm_atomic_helper_connector_destroy_state(struct drm_connector_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100174void drm_atomic_helper_connector_destroy_state(struct drm_connector *connector,
175 struct drm_connector_state *state);
Maarten Lankhorst7ea77282016-06-07 12:49:30 +0200176int drm_atomic_helper_legacy_gamma_set(struct drm_crtc *crtc,
177 u16 *red, u16 *green, u16 *blue,
Daniel Vetter6d124ff2017-04-03 10:33:01 +0200178 uint32_t size,
179 struct drm_modeset_acquire_ctx *ctx);
Ville Syrjäläa4370c72017-07-12 18:51:02 +0300180void __drm_atomic_helper_private_obj_duplicate_state(struct drm_private_obj *obj,
181 struct drm_private_state *state);
Daniel Vetterd4617012014-11-03 15:56:43 +0100182
Rob Clarkdd275952014-11-25 20:29:46 -0500183/**
184 * drm_atomic_crtc_for_each_plane - iterate over planes currently attached to CRTC
185 * @plane: the loop cursor
186 * @crtc: the crtc whose planes are iterated
187 *
188 * This iterates over the current state, useful (for example) when applying
189 * atomic state after it has been checked and swapped. To iterate over the
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100190 * planes which *will* be attached (more useful in code called from
191 * &drm_mode_config_funcs.atomic_check) see
Liviu Dudau5c0be3f2016-06-10 16:03:25 +0100192 * drm_atomic_crtc_state_for_each_plane().
Rob Clarkdd275952014-11-25 20:29:46 -0500193 */
194#define drm_atomic_crtc_for_each_plane(plane, crtc) \
195 drm_for_each_plane_mask(plane, (crtc)->dev, (crtc)->state->plane_mask)
196
197/**
198 * drm_crtc_atomic_state_for_each_plane - iterate over attached planes in new state
199 * @plane: the loop cursor
200 * @crtc_state: the incoming crtc-state
201 *
202 * Similar to drm_crtc_for_each_plane(), but iterates the planes that will be
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100203 * attached if the specified state is applied. Useful during for example
204 * in code called from &drm_mode_config_funcs.atomic_check operations, to
205 * validate the incoming state.
Rob Clarkdd275952014-11-25 20:29:46 -0500206 */
207#define drm_atomic_crtc_state_for_each_plane(plane, crtc_state) \
208 drm_for_each_plane_mask(plane, (crtc_state)->state->dev, (crtc_state)->plane_mask)
Daniel Vetter042652e2014-07-27 13:46:52 +0200209
Daniel Vetter2f196b72016-06-02 16:21:44 +0200210/**
211 * drm_crtc_atomic_state_for_each_plane_state - iterate over attached planes in new state
212 * @plane: the loop cursor
213 * @plane_state: loop cursor for the plane's state, must be const
214 * @crtc_state: the incoming crtc-state
215 *
216 * Similar to drm_crtc_for_each_plane(), but iterates the planes that will be
Daniel Vetter6806cdf2017-01-25 07:26:43 +0100217 * attached if the specified state is applied. Useful during for example
218 * in code called from &drm_mode_config_funcs.atomic_check operations, to
219 * validate the incoming state.
Daniel Vetter2f196b72016-06-02 16:21:44 +0200220 *
221 * Compared to just drm_atomic_crtc_state_for_each_plane() this also fills in a
222 * const plane_state. This is useful when a driver just wants to peek at other
223 * active planes on this crtc, but does not need to change it.
224 */
225#define drm_atomic_crtc_state_for_each_plane_state(plane, plane_state, crtc_state) \
226 drm_for_each_plane_mask(plane, (crtc_state)->state->dev, (crtc_state)->plane_mask) \
227 for_each_if ((plane_state = \
228 __drm_atomic_get_current_plane_state((crtc_state)->state, \
229 plane)))
230
Maarten Lankhorst51ffa122017-02-16 15:47:07 +0100231/**
Thierry Reding407b8bd2014-11-20 12:05:50 +0100232 * drm_atomic_plane_disabling - check whether a plane is being disabled
Maarten Lankhorst51ffa122017-02-16 15:47:07 +0100233 * @old_plane_state: old atomic plane state
234 * @new_plane_state: new atomic plane state
Thierry Reding407b8bd2014-11-20 12:05:50 +0100235 *
236 * Checks the atomic state of a plane to determine whether it's being disabled
237 * or not. This also WARNs if it detects an invalid state (both CRTC and FB
238 * need to either both be NULL or both be non-NULL).
239 *
240 * RETURNS:
241 * True if the plane is being disabled, false otherwise.
242 */
243static inline bool
Maarten Lankhorst51ffa122017-02-16 15:47:07 +0100244drm_atomic_plane_disabling(struct drm_plane_state *old_plane_state,
245 struct drm_plane_state *new_plane_state)
Thierry Reding407b8bd2014-11-20 12:05:50 +0100246{
247 /*
248 * When disabling a plane, CRTC and FB should always be NULL together.
249 * Anything else should be considered a bug in the atomic core, so we
250 * gently warn about it.
251 */
Maarten Lankhorst51ffa122017-02-16 15:47:07 +0100252 WARN_ON((new_plane_state->crtc == NULL && new_plane_state->fb != NULL) ||
253 (new_plane_state->crtc != NULL && new_plane_state->fb == NULL));
Thierry Reding407b8bd2014-11-20 12:05:50 +0100254
Maarten Lankhorst51ffa122017-02-16 15:47:07 +0100255 return old_plane_state->crtc && !new_plane_state->crtc;
Thierry Reding407b8bd2014-11-20 12:05:50 +0100256}
257
Daniel Vetterc2fcd272014-11-05 00:14:14 +0100258#endif /* DRM_ATOMIC_HELPER_H_ */