drm_atomic.h 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. /*
  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. #ifndef DRM_ATOMIC_H_
  28. #define DRM_ATOMIC_H_
  29. #include <drm/drm_crtc.h>
  30. void drm_crtc_commit_put(struct drm_crtc_commit *commit);
  31. static inline void drm_crtc_commit_get(struct drm_crtc_commit *commit)
  32. {
  33. kref_get(&commit->ref);
  34. }
  35. struct drm_atomic_state * __must_check
  36. drm_atomic_state_alloc(struct drm_device *dev);
  37. void drm_atomic_state_clear(struct drm_atomic_state *state);
  38. void drm_atomic_state_free(struct drm_atomic_state *state);
  39. int __must_check
  40. drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state);
  41. void drm_atomic_state_default_clear(struct drm_atomic_state *state);
  42. void drm_atomic_state_default_release(struct drm_atomic_state *state);
  43. struct drm_crtc_state * __must_check
  44. drm_atomic_get_crtc_state(struct drm_atomic_state *state,
  45. struct drm_crtc *crtc);
  46. int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
  47. struct drm_crtc_state *state, struct drm_property *property,
  48. uint64_t val);
  49. struct drm_plane_state * __must_check
  50. drm_atomic_get_plane_state(struct drm_atomic_state *state,
  51. struct drm_plane *plane);
  52. int drm_atomic_plane_set_property(struct drm_plane *plane,
  53. struct drm_plane_state *state, struct drm_property *property,
  54. uint64_t val);
  55. struct drm_connector_state * __must_check
  56. drm_atomic_get_connector_state(struct drm_atomic_state *state,
  57. struct drm_connector *connector);
  58. int drm_atomic_connector_set_property(struct drm_connector *connector,
  59. struct drm_connector_state *state, struct drm_property *property,
  60. uint64_t val);
  61. /**
  62. * drm_atomic_get_existing_crtc_state - get crtc state, if it exists
  63. * @state: global atomic state object
  64. * @crtc: crtc to grab
  65. *
  66. * This function returns the crtc state for the given crtc, or NULL
  67. * if the crtc is not part of the global atomic state.
  68. */
  69. static inline struct drm_crtc_state *
  70. drm_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
  71. struct drm_crtc *crtc)
  72. {
  73. return state->crtcs[drm_crtc_index(crtc)].state;
  74. }
  75. /**
  76. * drm_atomic_get_existing_plane_state - get plane state, if it exists
  77. * @state: global atomic state object
  78. * @plane: plane to grab
  79. *
  80. * This function returns the plane state for the given plane, or NULL
  81. * if the plane is not part of the global atomic state.
  82. */
  83. static inline struct drm_plane_state *
  84. drm_atomic_get_existing_plane_state(struct drm_atomic_state *state,
  85. struct drm_plane *plane)
  86. {
  87. return state->planes[drm_plane_index(plane)].state;
  88. }
  89. /**
  90. * drm_atomic_get_existing_connector_state - get connector state, if it exists
  91. * @state: global atomic state object
  92. * @connector: connector to grab
  93. *
  94. * This function returns the connector state for the given connector,
  95. * or NULL if the connector is not part of the global atomic state.
  96. */
  97. static inline struct drm_connector_state *
  98. drm_atomic_get_existing_connector_state(struct drm_atomic_state *state,
  99. struct drm_connector *connector)
  100. {
  101. int index = drm_connector_index(connector);
  102. if (index >= state->num_connector)
  103. return NULL;
  104. return state->connectors[index].state;
  105. }
  106. /**
  107. * __drm_atomic_get_current_plane_state - get current plane state
  108. * @state: global atomic state object
  109. * @plane: plane to grab
  110. *
  111. * This function returns the plane state for the given plane, either from
  112. * @state, or if the plane isn't part of the atomic state update, from @plane.
  113. * This is useful in atomic check callbacks, when drivers need to peek at, but
  114. * not change, state of other planes, since it avoids threading an error code
  115. * back up the call chain.
  116. *
  117. * WARNING:
  118. *
  119. * Note that this function is in general unsafe since it doesn't check for the
  120. * required locking for access state structures. Drivers must ensure that it is
  121. * safe to access the returned state structure through other means. One common
  122. * example is when planes are fixed to a single CRTC, and the driver knows that
  123. * the CRTC lock is held already. In that case holding the CRTC lock gives a
  124. * read-lock on all planes connected to that CRTC. But if planes can be
  125. * reassigned things get more tricky. In that case it's better to use
  126. * drm_atomic_get_plane_state and wire up full error handling.
  127. *
  128. * Returns:
  129. *
  130. * Read-only pointer to the current plane state.
  131. */
  132. static inline const struct drm_plane_state *
  133. __drm_atomic_get_current_plane_state(struct drm_atomic_state *state,
  134. struct drm_plane *plane)
  135. {
  136. if (state->planes[drm_plane_index(plane)].state)
  137. return state->planes[drm_plane_index(plane)].state;
  138. return plane->state;
  139. }
  140. int __must_check
  141. drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
  142. struct drm_display_mode *mode);
  143. int __must_check
  144. drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
  145. struct drm_property_blob *blob);
  146. int __must_check
  147. drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
  148. struct drm_crtc *crtc);
  149. void drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
  150. struct drm_framebuffer *fb);
  151. int __must_check
  152. drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
  153. struct drm_crtc *crtc);
  154. int __must_check
  155. drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
  156. struct drm_crtc *crtc);
  157. int __must_check
  158. drm_atomic_add_affected_planes(struct drm_atomic_state *state,
  159. struct drm_crtc *crtc);
  160. void drm_atomic_legacy_backoff(struct drm_atomic_state *state);
  161. void
  162. drm_atomic_clean_old_fb(struct drm_device *dev, unsigned plane_mask, int ret);
  163. int __must_check drm_atomic_check_only(struct drm_atomic_state *state);
  164. int __must_check drm_atomic_commit(struct drm_atomic_state *state);
  165. int __must_check drm_atomic_nonblocking_commit(struct drm_atomic_state *state);
  166. #define for_each_connector_in_state(__state, connector, connector_state, __i) \
  167. for ((__i) = 0; \
  168. (__i) < (__state)->num_connector && \
  169. ((connector) = (__state)->connectors[__i].ptr, \
  170. (connector_state) = (__state)->connectors[__i].state, 1); \
  171. (__i)++) \
  172. for_each_if (connector)
  173. #define for_each_crtc_in_state(__state, crtc, crtc_state, __i) \
  174. for ((__i) = 0; \
  175. (__i) < (__state)->dev->mode_config.num_crtc && \
  176. ((crtc) = (__state)->crtcs[__i].ptr, \
  177. (crtc_state) = (__state)->crtcs[__i].state, 1); \
  178. (__i)++) \
  179. for_each_if (crtc_state)
  180. #define for_each_plane_in_state(__state, plane, plane_state, __i) \
  181. for ((__i) = 0; \
  182. (__i) < (__state)->dev->mode_config.num_total_plane && \
  183. ((plane) = (__state)->planes[__i].ptr, \
  184. (plane_state) = (__state)->planes[__i].state, 1); \
  185. (__i)++) \
  186. for_each_if (plane_state)
  187. /**
  188. * drm_atomic_crtc_needs_modeset - compute combined modeset need
  189. * @state: &drm_crtc_state for the CRTC
  190. *
  191. * To give drivers flexibility struct &drm_crtc_state has 3 booleans to track
  192. * whether the state CRTC changed enough to need a full modeset cycle:
  193. * connectors_changed, mode_changed and active_change. This helper simply
  194. * combines these three to compute the overall need for a modeset for @state.
  195. */
  196. static inline bool
  197. drm_atomic_crtc_needs_modeset(struct drm_crtc_state *state)
  198. {
  199. return state->mode_changed || state->active_changed ||
  200. state->connectors_changed;
  201. }
  202. #endif /* DRM_ATOMIC_H_ */