drm_atomic.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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. struct drm_atomic_state * __must_check
  31. drm_atomic_state_alloc(struct drm_device *dev);
  32. void drm_atomic_state_clear(struct drm_atomic_state *state);
  33. void drm_atomic_state_free(struct drm_atomic_state *state);
  34. int __must_check
  35. drm_atomic_state_init(struct drm_device *dev, struct drm_atomic_state *state);
  36. void drm_atomic_state_default_clear(struct drm_atomic_state *state);
  37. void drm_atomic_state_default_release(struct drm_atomic_state *state);
  38. struct drm_crtc_state * __must_check
  39. drm_atomic_get_crtc_state(struct drm_atomic_state *state,
  40. struct drm_crtc *crtc);
  41. int drm_atomic_crtc_set_property(struct drm_crtc *crtc,
  42. struct drm_crtc_state *state, struct drm_property *property,
  43. uint64_t val);
  44. struct drm_plane_state * __must_check
  45. drm_atomic_get_plane_state(struct drm_atomic_state *state,
  46. struct drm_plane *plane);
  47. int drm_atomic_plane_set_property(struct drm_plane *plane,
  48. struct drm_plane_state *state, struct drm_property *property,
  49. uint64_t val);
  50. struct drm_connector_state * __must_check
  51. drm_atomic_get_connector_state(struct drm_atomic_state *state,
  52. struct drm_connector *connector);
  53. int drm_atomic_connector_set_property(struct drm_connector *connector,
  54. struct drm_connector_state *state, struct drm_property *property,
  55. uint64_t val);
  56. /**
  57. * drm_atomic_get_existing_crtc_state - get crtc state, if it exists
  58. * @state: global atomic state object
  59. * @crtc: crtc to grab
  60. *
  61. * This function returns the crtc state for the given crtc, or NULL
  62. * if the crtc is not part of the global atomic state.
  63. */
  64. static inline struct drm_crtc_state *
  65. drm_atomic_get_existing_crtc_state(struct drm_atomic_state *state,
  66. struct drm_crtc *crtc)
  67. {
  68. return state->crtc_states[drm_crtc_index(crtc)];
  69. }
  70. /**
  71. * drm_atomic_get_existing_plane_state - get plane state, if it exists
  72. * @state: global atomic state object
  73. * @plane: plane to grab
  74. *
  75. * This function returns the plane state for the given plane, or NULL
  76. * if the plane is not part of the global atomic state.
  77. */
  78. static inline struct drm_plane_state *
  79. drm_atomic_get_existing_plane_state(struct drm_atomic_state *state,
  80. struct drm_plane *plane)
  81. {
  82. return state->plane_states[drm_plane_index(plane)];
  83. }
  84. /**
  85. * drm_atomic_get_existing_connector_state - get connector state, if it exists
  86. * @state: global atomic state object
  87. * @connector: connector to grab
  88. *
  89. * This function returns the connector state for the given connector,
  90. * or NULL if the connector is not part of the global atomic state.
  91. */
  92. static inline struct drm_connector_state *
  93. drm_atomic_get_existing_connector_state(struct drm_atomic_state *state,
  94. struct drm_connector *connector)
  95. {
  96. int index = drm_connector_index(connector);
  97. if (index >= state->num_connector)
  98. return NULL;
  99. return state->connector_states[index];
  100. }
  101. int __must_check
  102. drm_atomic_set_mode_for_crtc(struct drm_crtc_state *state,
  103. struct drm_display_mode *mode);
  104. int __must_check
  105. drm_atomic_set_mode_prop_for_crtc(struct drm_crtc_state *state,
  106. struct drm_property_blob *blob);
  107. int __must_check
  108. drm_atomic_set_crtc_for_plane(struct drm_plane_state *plane_state,
  109. struct drm_crtc *crtc);
  110. void drm_atomic_set_fb_for_plane(struct drm_plane_state *plane_state,
  111. struct drm_framebuffer *fb);
  112. int __must_check
  113. drm_atomic_set_crtc_for_connector(struct drm_connector_state *conn_state,
  114. struct drm_crtc *crtc);
  115. int __must_check
  116. drm_atomic_add_affected_connectors(struct drm_atomic_state *state,
  117. struct drm_crtc *crtc);
  118. int __must_check
  119. drm_atomic_add_affected_planes(struct drm_atomic_state *state,
  120. struct drm_crtc *crtc);
  121. int
  122. drm_atomic_connectors_for_crtc(struct drm_atomic_state *state,
  123. struct drm_crtc *crtc);
  124. void drm_atomic_legacy_backoff(struct drm_atomic_state *state);
  125. void
  126. drm_atomic_clean_old_fb(struct drm_device *dev, unsigned plane_mask, int ret);
  127. int __must_check drm_atomic_check_only(struct drm_atomic_state *state);
  128. int __must_check drm_atomic_commit(struct drm_atomic_state *state);
  129. int __must_check drm_atomic_async_commit(struct drm_atomic_state *state);
  130. #define for_each_connector_in_state(state, connector, connector_state, __i) \
  131. for ((__i) = 0; \
  132. (__i) < (state)->num_connector && \
  133. ((connector) = (state)->connectors[__i], \
  134. (connector_state) = (state)->connector_states[__i], 1); \
  135. (__i)++) \
  136. if (connector)
  137. #define for_each_crtc_in_state(state, crtc, crtc_state, __i) \
  138. for ((__i) = 0; \
  139. (__i) < (state)->dev->mode_config.num_crtc && \
  140. ((crtc) = (state)->crtcs[__i], \
  141. (crtc_state) = (state)->crtc_states[__i], 1); \
  142. (__i)++) \
  143. if (crtc_state)
  144. #define for_each_plane_in_state(state, plane, plane_state, __i) \
  145. for ((__i) = 0; \
  146. (__i) < (state)->dev->mode_config.num_total_plane && \
  147. ((plane) = (state)->planes[__i], \
  148. (plane_state) = (state)->plane_states[__i], 1); \
  149. (__i)++) \
  150. if (plane_state)
  151. static inline bool
  152. drm_atomic_crtc_needs_modeset(struct drm_crtc_state *state)
  153. {
  154. return state->mode_changed || state->active_changed ||
  155. state->connectors_changed;
  156. }
  157. #endif /* DRM_ATOMIC_H_ */