intel_atomic_plane.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. * Copyright © 2014 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * 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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. /**
  24. * DOC: atomic plane helpers
  25. *
  26. * The functions here are used by the atomic plane helper functions to
  27. * implement legacy plane updates (i.e., drm_plane->update_plane() and
  28. * drm_plane->disable_plane()). This allows plane updates to use the
  29. * atomic state infrastructure and perform plane updates as separate
  30. * prepare/check/commit/cleanup steps.
  31. */
  32. #include <drm/drmP.h>
  33. #include <drm/drm_atomic_helper.h>
  34. #include <drm/drm_plane_helper.h>
  35. #include "intel_drv.h"
  36. /**
  37. * intel_create_plane_state - create plane state object
  38. * @plane: drm plane
  39. *
  40. * Allocates a fresh plane state for the given plane and sets some of
  41. * the state values to sensible initial values.
  42. *
  43. * Returns: A newly allocated plane state, or NULL on failure
  44. */
  45. struct intel_plane_state *
  46. intel_create_plane_state(struct drm_plane *plane)
  47. {
  48. struct intel_plane_state *state;
  49. state = kzalloc(sizeof(*state), GFP_KERNEL);
  50. if (!state)
  51. return NULL;
  52. state->base.plane = plane;
  53. state->base.rotation = BIT(DRM_ROTATE_0);
  54. return state;
  55. }
  56. /**
  57. * intel_plane_duplicate_state - duplicate plane state
  58. * @plane: drm plane
  59. *
  60. * Allocates and returns a copy of the plane state (both common and
  61. * Intel-specific) for the specified plane.
  62. *
  63. * Returns: The newly allocated plane state, or NULL on failure.
  64. */
  65. struct drm_plane_state *
  66. intel_plane_duplicate_state(struct drm_plane *plane)
  67. {
  68. struct drm_plane_state *state;
  69. struct intel_plane_state *intel_state;
  70. if (WARN_ON(!plane->state))
  71. intel_state = intel_create_plane_state(plane);
  72. else
  73. intel_state = kmemdup(plane->state, sizeof(*intel_state),
  74. GFP_KERNEL);
  75. if (!intel_state)
  76. return NULL;
  77. state = &intel_state->base;
  78. if (state->fb)
  79. drm_framebuffer_reference(state->fb);
  80. return state;
  81. }
  82. /**
  83. * intel_plane_destroy_state - destroy plane state
  84. * @plane: drm plane
  85. * @state: state object to destroy
  86. *
  87. * Destroys the plane state (both common and Intel-specific) for the
  88. * specified plane.
  89. */
  90. void
  91. intel_plane_destroy_state(struct drm_plane *plane,
  92. struct drm_plane_state *state)
  93. {
  94. drm_atomic_helper_plane_destroy_state(plane, state);
  95. }
  96. static int intel_plane_atomic_check(struct drm_plane *plane,
  97. struct drm_plane_state *state)
  98. {
  99. struct drm_crtc *crtc = state->crtc;
  100. struct intel_crtc *intel_crtc;
  101. struct intel_plane *intel_plane = to_intel_plane(plane);
  102. struct intel_plane_state *intel_state = to_intel_plane_state(state);
  103. crtc = crtc ? crtc : plane->crtc;
  104. intel_crtc = to_intel_crtc(crtc);
  105. /*
  106. * Both crtc and plane->crtc could be NULL if we're updating a
  107. * property while the plane is disabled. We don't actually have
  108. * anything driver-specific we need to test in that case, so
  109. * just return success.
  110. */
  111. if (!crtc)
  112. return 0;
  113. /*
  114. * The original src/dest coordinates are stored in state->base, but
  115. * we want to keep another copy internal to our driver that we can
  116. * clip/modify ourselves.
  117. */
  118. intel_state->src.x1 = state->src_x;
  119. intel_state->src.y1 = state->src_y;
  120. intel_state->src.x2 = state->src_x + state->src_w;
  121. intel_state->src.y2 = state->src_y + state->src_h;
  122. intel_state->dst.x1 = state->crtc_x;
  123. intel_state->dst.y1 = state->crtc_y;
  124. intel_state->dst.x2 = state->crtc_x + state->crtc_w;
  125. intel_state->dst.y2 = state->crtc_y + state->crtc_h;
  126. /* Clip all planes to CRTC size, or 0x0 if CRTC is disabled */
  127. intel_state->clip.x1 = 0;
  128. intel_state->clip.y1 = 0;
  129. intel_state->clip.x2 =
  130. intel_crtc->active ? intel_crtc->config->pipe_src_w : 0;
  131. intel_state->clip.y2 =
  132. intel_crtc->active ? intel_crtc->config->pipe_src_h : 0;
  133. /*
  134. * Disabling a plane is always okay; we just need to update
  135. * fb tracking in a special way since cleanup_fb() won't
  136. * get called by the plane helpers.
  137. */
  138. if (state->fb == NULL && plane->state->fb != NULL) {
  139. /*
  140. * 'prepare' is never called when plane is being disabled, so
  141. * we need to handle frontbuffer tracking as a special case
  142. */
  143. intel_crtc->atomic.disabled_planes |=
  144. (1 << drm_plane_index(plane));
  145. }
  146. return intel_plane->check_plane(plane, intel_state);
  147. }
  148. static void intel_plane_atomic_update(struct drm_plane *plane,
  149. struct drm_plane_state *old_state)
  150. {
  151. struct intel_plane *intel_plane = to_intel_plane(plane);
  152. struct intel_plane_state *intel_state =
  153. to_intel_plane_state(plane->state);
  154. /* Don't disable an already disabled plane */
  155. if (!plane->state->fb && !old_state->fb)
  156. return;
  157. intel_plane->commit_plane(plane, intel_state);
  158. }
  159. const struct drm_plane_helper_funcs intel_plane_helper_funcs = {
  160. .prepare_fb = intel_prepare_plane_fb,
  161. .cleanup_fb = intel_cleanup_plane_fb,
  162. .atomic_check = intel_plane_atomic_check,
  163. .atomic_update = intel_plane_atomic_update,
  164. };
  165. /**
  166. * intel_plane_atomic_get_property - fetch plane property value
  167. * @plane: plane to fetch property for
  168. * @state: state containing the property value
  169. * @property: property to look up
  170. * @val: pointer to write property value into
  171. *
  172. * The DRM core does not store shadow copies of properties for
  173. * atomic-capable drivers. This entrypoint is used to fetch
  174. * the current value of a driver-specific plane property.
  175. */
  176. int
  177. intel_plane_atomic_get_property(struct drm_plane *plane,
  178. const struct drm_plane_state *state,
  179. struct drm_property *property,
  180. uint64_t *val)
  181. {
  182. DRM_DEBUG_KMS("Unknown plane property '%s'\n", property->name);
  183. return -EINVAL;
  184. }
  185. /**
  186. * intel_plane_atomic_set_property - set plane property value
  187. * @plane: plane to set property for
  188. * @state: state to update property value in
  189. * @property: property to set
  190. * @val: value to set property to
  191. *
  192. * Writes the specified property value for a plane into the provided atomic
  193. * state object.
  194. *
  195. * Returns 0 on success, -EINVAL on unrecognized properties
  196. */
  197. int
  198. intel_plane_atomic_set_property(struct drm_plane *plane,
  199. struct drm_plane_state *state,
  200. struct drm_property *property,
  201. uint64_t val)
  202. {
  203. DRM_DEBUG_KMS("Unknown plane property '%s'\n", property->name);
  204. return -EINVAL;
  205. }