drm_plane_helper.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. /*
  2. * Copyright (C) 2014 Intel Corporation
  3. *
  4. * DRM universal plane helper functions
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice (including the next
  14. * paragraph) shall be included in all copies or substantial portions of the
  15. * Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  21. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  22. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  23. * SOFTWARE.
  24. */
  25. #include <linux/list.h>
  26. #include <drm/drm_atomic.h>
  27. #include <drm/drm_atomic_helper.h>
  28. #include <drm/drm_atomic_uapi.h>
  29. #include <drm/drm_crtc_helper.h>
  30. #include <drm/drm_device.h>
  31. #include <drm/drm_drv.h>
  32. #include <drm/drm_encoder.h>
  33. #include <drm/drm_plane_helper.h>
  34. #include <drm/drm_print.h>
  35. #include <drm/drm_rect.h>
  36. #define SUBPIXEL_MASK 0xffff
  37. /**
  38. * DOC: overview
  39. *
  40. * This helper library has two parts. The first part has support to implement
  41. * primary plane support on top of the normal CRTC configuration interface.
  42. * Since the legacy &drm_mode_config_funcs.set_config interface ties the primary
  43. * plane together with the CRTC state this does not allow userspace to disable
  44. * the primary plane itself. The default primary plane only expose XRBG8888 and
  45. * ARGB8888 as valid pixel formats for the attached framebuffer.
  46. *
  47. * Drivers are highly recommended to implement proper support for primary
  48. * planes, and newly merged drivers must not rely upon these transitional
  49. * helpers.
  50. *
  51. * The second part also implements transitional helpers which allow drivers to
  52. * gradually switch to the atomic helper infrastructure for plane updates. Once
  53. * that switch is complete drivers shouldn't use these any longer, instead using
  54. * the proper legacy implementations for update and disable plane hooks provided
  55. * by the atomic helpers.
  56. *
  57. * Again drivers are strongly urged to switch to the new interfaces.
  58. *
  59. * The plane helpers share the function table structures with other helpers,
  60. * specifically also the atomic helpers. See &struct drm_plane_helper_funcs for
  61. * the details.
  62. */
  63. /*
  64. * Returns the connectors currently associated with a CRTC. This function
  65. * should be called twice: once with a NULL connector list to retrieve
  66. * the list size, and once with the properly allocated list to be filled in.
  67. */
  68. static int get_connectors_for_crtc(struct drm_crtc *crtc,
  69. struct drm_connector **connector_list,
  70. int num_connectors)
  71. {
  72. struct drm_device *dev = crtc->dev;
  73. struct drm_connector *connector;
  74. struct drm_connector_list_iter conn_iter;
  75. int count = 0;
  76. /*
  77. * Note: Once we change the plane hooks to more fine-grained locking we
  78. * need to grab the connection_mutex here to be able to make these
  79. * checks.
  80. */
  81. WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
  82. drm_connector_list_iter_begin(dev, &conn_iter);
  83. drm_for_each_connector_iter(connector, &conn_iter) {
  84. if (connector->encoder && connector->encoder->crtc == crtc) {
  85. if (connector_list != NULL && count < num_connectors)
  86. *(connector_list++) = connector;
  87. count++;
  88. }
  89. }
  90. drm_connector_list_iter_end(&conn_iter);
  91. return count;
  92. }
  93. static int drm_plane_helper_check_update(struct drm_plane *plane,
  94. struct drm_crtc *crtc,
  95. struct drm_framebuffer *fb,
  96. struct drm_rect *src,
  97. struct drm_rect *dst,
  98. unsigned int rotation,
  99. int min_scale,
  100. int max_scale,
  101. bool can_position,
  102. bool can_update_disabled,
  103. bool *visible)
  104. {
  105. struct drm_plane_state plane_state = {
  106. .plane = plane,
  107. .crtc = crtc,
  108. .fb = fb,
  109. .src_x = src->x1,
  110. .src_y = src->y1,
  111. .src_w = drm_rect_width(src),
  112. .src_h = drm_rect_height(src),
  113. .crtc_x = dst->x1,
  114. .crtc_y = dst->y1,
  115. .crtc_w = drm_rect_width(dst),
  116. .crtc_h = drm_rect_height(dst),
  117. .rotation = rotation,
  118. };
  119. struct drm_crtc_state crtc_state = {
  120. .crtc = crtc,
  121. .enable = crtc->enabled,
  122. .mode = crtc->mode,
  123. };
  124. int ret;
  125. ret = drm_atomic_helper_check_plane_state(&plane_state, &crtc_state,
  126. min_scale, max_scale,
  127. can_position,
  128. can_update_disabled);
  129. if (ret)
  130. return ret;
  131. *src = plane_state.src;
  132. *dst = plane_state.dst;
  133. *visible = plane_state.visible;
  134. return 0;
  135. }
  136. /**
  137. * drm_plane_helper_update_primary - Helper for updating primary planes
  138. * @plane: plane to update
  139. * @crtc: the plane's new CRTC
  140. * @fb: the plane's new framebuffer
  141. * @crtc_x: x coordinate within CRTC
  142. * @crtc_y: y coordinate within CRTC
  143. * @crtc_w: width coordinate within CRTC
  144. * @crtc_h: height coordinate within CRTC
  145. * @src_x: x coordinate within source
  146. * @src_y: y coordinate within source
  147. * @src_w: width coordinate within source
  148. * @src_h: height coordinate within source
  149. * @ctx: modeset locking context
  150. *
  151. * This helper validates the given parameters and updates the primary plane.
  152. *
  153. * This function is only useful for non-atomic modesetting. Don't use
  154. * it in new drivers.
  155. *
  156. * Returns:
  157. * Zero on success, or an errno code otherwise.
  158. */
  159. int drm_plane_helper_update_primary(struct drm_plane *plane, struct drm_crtc *crtc,
  160. struct drm_framebuffer *fb,
  161. int crtc_x, int crtc_y,
  162. unsigned int crtc_w, unsigned int crtc_h,
  163. uint32_t src_x, uint32_t src_y,
  164. uint32_t src_w, uint32_t src_h,
  165. struct drm_modeset_acquire_ctx *ctx)
  166. {
  167. struct drm_mode_set set = {
  168. .crtc = crtc,
  169. .fb = fb,
  170. .mode = &crtc->mode,
  171. .x = src_x >> 16,
  172. .y = src_y >> 16,
  173. };
  174. struct drm_rect src = {
  175. .x1 = src_x,
  176. .y1 = src_y,
  177. .x2 = src_x + src_w,
  178. .y2 = src_y + src_h,
  179. };
  180. struct drm_rect dest = {
  181. .x1 = crtc_x,
  182. .y1 = crtc_y,
  183. .x2 = crtc_x + crtc_w,
  184. .y2 = crtc_y + crtc_h,
  185. };
  186. struct drm_device *dev = plane->dev;
  187. struct drm_connector **connector_list;
  188. int num_connectors, ret;
  189. bool visible;
  190. if (drm_WARN_ON_ONCE(dev, drm_drv_uses_atomic_modeset(dev)))
  191. return -EINVAL;
  192. ret = drm_plane_helper_check_update(plane, crtc, fb,
  193. &src, &dest,
  194. DRM_MODE_ROTATE_0,
  195. DRM_PLANE_NO_SCALING,
  196. DRM_PLANE_NO_SCALING,
  197. false, false, &visible);
  198. if (ret)
  199. return ret;
  200. if (!visible)
  201. /*
  202. * Primary plane isn't visible. Note that unless a driver
  203. * provides their own disable function, this will just
  204. * wind up returning -EINVAL to userspace.
  205. */
  206. return plane->funcs->disable_plane(plane, ctx);
  207. /* Find current connectors for CRTC */
  208. num_connectors = get_connectors_for_crtc(crtc, NULL, 0);
  209. BUG_ON(num_connectors == 0);
  210. connector_list = kcalloc(num_connectors, sizeof(*connector_list),
  211. GFP_KERNEL);
  212. if (!connector_list)
  213. return -ENOMEM;
  214. get_connectors_for_crtc(crtc, connector_list, num_connectors);
  215. set.connectors = connector_list;
  216. set.num_connectors = num_connectors;
  217. /*
  218. * We call set_config() directly here rather than using
  219. * drm_mode_set_config_internal. We're reprogramming the same
  220. * connectors that were already in use, so we shouldn't need the extra
  221. * cross-CRTC fb refcounting to accommodate stealing connectors.
  222. * drm_mode_setplane() already handles the basic refcounting for the
  223. * framebuffers involved in this operation.
  224. */
  225. ret = crtc->funcs->set_config(&set, ctx);
  226. kfree(connector_list);
  227. return ret;
  228. }
  229. EXPORT_SYMBOL(drm_plane_helper_update_primary);
  230. /**
  231. * drm_plane_helper_disable_primary - Helper for disabling primary planes
  232. * @plane: plane to disable
  233. * @ctx: modeset locking context
  234. *
  235. * This helper returns an error when trying to disable the primary
  236. * plane.
  237. *
  238. * This function is only useful for non-atomic modesetting. Don't use
  239. * it in new drivers.
  240. *
  241. * Returns:
  242. * An errno code.
  243. */
  244. int drm_plane_helper_disable_primary(struct drm_plane *plane,
  245. struct drm_modeset_acquire_ctx *ctx)
  246. {
  247. struct drm_device *dev = plane->dev;
  248. drm_WARN_ON_ONCE(dev, drm_drv_uses_atomic_modeset(dev));
  249. return -EINVAL;
  250. }
  251. EXPORT_SYMBOL(drm_plane_helper_disable_primary);
  252. /**
  253. * drm_plane_helper_destroy() - Helper for primary plane destruction
  254. * @plane: plane to destroy
  255. *
  256. * Provides a default plane destroy handler for primary planes. This handler
  257. * is called during CRTC destruction. We disable the primary plane, remove
  258. * it from the DRM plane list, and deallocate the plane structure.
  259. */
  260. void drm_plane_helper_destroy(struct drm_plane *plane)
  261. {
  262. drm_plane_cleanup(plane);
  263. kfree(plane);
  264. }
  265. EXPORT_SYMBOL(drm_plane_helper_destroy);
  266. /**
  267. * drm_plane_helper_atomic_check() - Helper to check plane atomic-state
  268. * @plane: plane to check
  269. * @state: atomic state object
  270. *
  271. * Provides a default plane-state check handler for planes whose atomic-state
  272. * scale and positioning are not expected to change since the plane is always
  273. * a fullscreen scanout buffer.
  274. *
  275. * This is often the case for the primary plane of simple framebuffers.
  276. *
  277. * RETURNS:
  278. * Zero on success, or an errno code otherwise.
  279. */
  280. int drm_plane_helper_atomic_check(struct drm_plane *plane, struct drm_atomic_state *state)
  281. {
  282. struct drm_plane_state *new_plane_state = drm_atomic_get_new_plane_state(state, plane);
  283. struct drm_crtc *new_crtc = new_plane_state->crtc;
  284. struct drm_crtc_state *new_crtc_state = NULL;
  285. if (new_crtc)
  286. new_crtc_state = drm_atomic_get_new_crtc_state(state, new_crtc);
  287. return drm_atomic_helper_check_plane_state(new_plane_state, new_crtc_state,
  288. DRM_PLANE_NO_SCALING,
  289. DRM_PLANE_NO_SCALING,
  290. false, false);
  291. }
  292. EXPORT_SYMBOL(drm_plane_helper_atomic_check);