blob: 856a9c85a8383b5c382c6537375a4e33f5e6e7c0 [file] [log] [blame]
Daniel Vettercc4ceb42014-07-25 21:30:38 +02001/*
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_H_
29#define DRM_ATOMIC_H_
30
Thierry Reding37cc0142014-11-25 12:09:48 +010031#include <drm/drm_crtc.h>
32
Daniel Vetter3b24f7d2016-06-08 14:19:00 +020033void drm_crtc_commit_put(struct drm_crtc_commit *commit);
34static inline void drm_crtc_commit_get(struct drm_crtc_commit *commit)
35{
36 kref_get(&commit->ref);
37}
38
Daniel Vettercc4ceb42014-07-25 21:30:38 +020039struct drm_atomic_state * __must_check
40drm_atomic_state_alloc(struct drm_device *dev);
41void drm_atomic_state_clear(struct drm_atomic_state *state);
42void drm_atomic_state_free(struct drm_atomic_state *state);
43
Maarten Lankhorst036ef572015-05-18 10:06:40 +020044int __must_check
45drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state);
46void drm_atomic_state_default_clear(struct drm_atomic_state *state);
47void drm_atomic_state_default_release(struct drm_atomic_state *state);
48
Daniel Vettercc4ceb42014-07-25 21:30:38 +020049struct drm_crtc_state * __must_check
50drm_atomic_get_crtc_state(struct drm_atomic_state *state,
51 struct drm_crtc *crtc);
Rob Clark40ecc692014-12-18 16:01:46 -050052int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
53 struct drm_crtc_state *state, struct drm_property *property,
54 uint64_t val);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020055struct drm_plane_state * __must_check
56drm_atomic_get_plane_state(struct drm_atomic_state *state,
57 struct drm_plane *plane);
Rob Clark40ecc692014-12-18 16:01:46 -050058int drm_atomic_plane_set_property(struct drm_plane *plane,
59 struct drm_plane_state *state, struct drm_property *property,
60 uint64_t val);
Daniel Vettercc4ceb42014-07-25 21:30:38 +020061struct drm_connector_state * __must_check
62drm_atomic_get_connector_state(struct drm_atomic_state *state,
63 struct drm_connector *connector);
Rob Clark40ecc692014-12-18 16:01:46 -050064int drm_atomic_connector_set_property(struct drm_connector *connector,
65 struct drm_connector_state *state, struct drm_property *property,
66 uint64_t val);
Rob Clark88a48e22014-12-18 16:01:50 -050067
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +020068/**
69 * drm_atomic_get_existing_crtc_state - get crtc state, if it exists
70 * @state: global atomic state object
71 * @crtc: crtc to grab
72 *
73 * This function returns the crtc state for the given crtc, or NULL
74 * if the crtc is not part of the global atomic state.
75 */
76static inline struct drm_crtc_state *
77drm_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
78 struct drm_crtc *crtc)
79{
Daniel Vetter5d943aa62016-06-02 00:06:34 +020080 return state->crtcs[drm_crtc_index(crtc)].state;
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +020081}
82
83/**
84 * drm_atomic_get_existing_plane_state - get plane state, if it exists
85 * @state: global atomic state object
86 * @plane: plane to grab
87 *
88 * This function returns the plane state for the given plane, or NULL
89 * if the plane is not part of the global atomic state.
90 */
91static inline struct drm_plane_state *
92drm_atomic_get_existing_plane_state(struct drm_atomic_state *state,
93 struct drm_plane *plane)
94{
Daniel Vetterb8b53422016-06-02 00:06:33 +020095 return state->planes[drm_plane_index(plane)].state;
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +020096}
97
98/**
99 * drm_atomic_get_existing_connector_state - get connector state, if it exists
100 * @state: global atomic state object
101 * @connector: connector to grab
102 *
103 * This function returns the connector state for the given connector,
104 * or NULL if the connector is not part of the global atomic state.
105 */
106static inline struct drm_connector_state *
107drm_atomic_get_existing_connector_state(struct drm_atomic_state *state,
108 struct drm_connector *connector)
109{
110 int index = drm_connector_index(connector);
111
112 if (index >= state->num_connector)
113 return NULL;
114
Daniel Vetter63e83c12016-06-02 00:06:32 +0200115 return state->connectors[index].state;
Maarten Lankhorst1b26a5e2015-05-13 10:37:25 +0200116}
117
Daniel Vetter2f196b72016-06-02 16:21:44 +0200118/**
119 * __drm_atomic_get_current_plane_state - get current plane state
120 * @state: global atomic state object
121 * @plane: plane to grab
122 *
123 * This function returns the plane state for the given plane, either from
124 * @state, or if the plane isn't part of the atomic state update, from @plane.
125 * This is useful in atomic check callbacks, when drivers need to peek at, but
126 * not change, state of other planes, since it avoids threading an error code
127 * back up the call chain.
128 *
129 * WARNING:
130 *
131 * Note that this function is in general unsafe since it doesn't check for the
132 * required locking for access state structures. Drivers must ensure that it is
Daniel Vetter60c9e1902016-06-02 17:39:14 +0200133 * safe to access the returned state structure through other means. One common
Daniel Vetter2f196b72016-06-02 16:21:44 +0200134 * example is when planes are fixed to a single CRTC, and the driver knows that
Daniel Vetter60c9e1902016-06-02 17:39:14 +0200135 * the CRTC lock is held already. In that case holding the CRTC lock gives a
Daniel Vetter2f196b72016-06-02 16:21:44 +0200136 * read-lock on all planes connected to that CRTC. But if planes can be
137 * reassigned things get more tricky. In that case it's better to use
138 * drm_atomic_get_plane_state and wire up full error handling.
139 *
140 * Returns:
141 *
142 * Read-only pointer to the current plane state.
143 */
144static inline const struct drm_plane_state *
145__drm_atomic_get_current_plane_state(struct drm_atomic_state *state,
146 struct drm_plane *plane)
147{
Daniel Vetterb8b53422016-06-02 00:06:33 +0200148 if (state->planes[drm_plane_index(plane)].state)
149 return state->planes[drm_plane_index(plane)].state;
Daniel Vetter2f196b72016-06-02 16:21:44 +0200150
151 return plane->state;
152}
153
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200154int __must_check
Daniel Stone819364d2015-05-26 14:36:48 +0100155drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
156 struct drm_display_mode *mode);
157int __must_check
Daniel Stone955f3c32015-05-25 19:11:52 +0100158drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
159 struct drm_property_blob *blob);
160int __must_check
Daniel Vetter07cc0ef2014-11-27 15:49:39 +0100161drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
162 struct drm_crtc *crtc);
Daniel Vetter321ebf02014-11-04 22:57:27 +0100163void drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
164 struct drm_framebuffer *fb);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200165int __must_check
166drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
167 struct drm_crtc *crtc);
168int __must_check
169drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
170 struct drm_crtc *crtc);
Maarten Lankhorste01e9f72015-05-19 16:41:02 +0200171int __must_check
172drm_atomic_add_affected_planes(struct drm_atomic_state *state,
173 struct drm_crtc *crtc);
174
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200175void drm_atomic_legacy_backoff(struct drm_atomic_state *state);
176
Maarten Lankhorst0f45c262015-11-11 11:29:09 +0100177void
178drm_atomic_clean_old_fb(struct drm_device *dev, unsigned plane_mask, int ret);
179
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200180int __must_check drm_atomic_check_only(struct drm_atomic_state *state);
181int __must_check drm_atomic_commit(struct drm_atomic_state *state);
Maarten Lankhorstb837ba02016-04-26 16:11:35 +0200182int __must_check drm_atomic_nonblocking_commit(struct drm_atomic_state *state);
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200183
Daniel Vetter63e83c12016-06-02 00:06:32 +0200184#define for_each_connector_in_state(__state, connector, connector_state, __i) \
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300185 for ((__i) = 0; \
Daniel Vetter63e83c12016-06-02 00:06:32 +0200186 (__i) < (__state)->num_connector && \
187 ((connector) = (__state)->connectors[__i].ptr, \
188 (connector_state) = (__state)->connectors[__i].state, 1); \
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300189 (__i)++) \
Jani Nikula373701b2015-11-24 21:21:55 +0200190 for_each_if (connector)
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300191
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200192#define for_each_crtc_in_state(__state, crtc, crtc_state, __i) \
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300193 for ((__i) = 0; \
Daniel Vetter5d943aa62016-06-02 00:06:34 +0200194 (__i) < (__state)->dev->mode_config.num_crtc && \
195 ((crtc) = (__state)->crtcs[__i].ptr, \
196 (crtc_state) = (__state)->crtcs[__i].state, 1); \
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300197 (__i)++) \
Jani Nikula373701b2015-11-24 21:21:55 +0200198 for_each_if (crtc_state)
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300199
Daniel Vetterb8b53422016-06-02 00:06:33 +0200200#define for_each_plane_in_state(__state, plane, plane_state, __i) \
Andrey Ryabinin60f207a2015-05-25 13:29:44 +0300201 for ((__i) = 0; \
Daniel Vetterb8b53422016-06-02 00:06:33 +0200202 (__i) < (__state)->dev->mode_config.num_total_plane && \
203 ((plane) = (__state)->planes[__i].ptr, \
204 (plane_state) = (__state)->planes[__i].state, 1); \
Andrey Ryabinin60f207a2015-05-25 13:29:44 +0300205 (__i)++) \
Jani Nikula373701b2015-11-24 21:21:55 +0200206 for_each_if (plane_state)
Daniel Vetter081e9c02016-06-08 14:18:59 +0200207
208/**
209 * drm_atomic_crtc_needs_modeset - compute combined modeset need
210 * @state: &drm_crtc_state for the CRTC
211 *
212 * To give drivers flexibility struct &drm_crtc_state has 3 booleans to track
213 * whether the state CRTC changed enough to need a full modeset cycle:
214 * connectors_changed, mode_changed and active_change. This helper simply
215 * combines these three to compute the overall need for a modeset for @state.
216 */
Daniel Vetter2465ff62015-06-18 09:58:55 +0200217static inline bool
218drm_atomic_crtc_needs_modeset(struct drm_crtc_state *state)
219{
Maarten Lankhorstfc596662015-07-21 13:28:57 +0200220 return state->mode_changed || state->active_changed ||
221 state->connectors_changed;
Daniel Vetter2465ff62015-06-18 09:58:55 +0200222}
223
Ander Conselvan de Oliveiradf63b992015-04-10 14:58:39 +0300224
Daniel Vettercc4ceb42014-07-25 21:30:38 +0200225#endif /* DRM_ATOMIC_H_ */