blob: 3aae7ea522f2337956d1456f8552904531005b3b [file] [log] [blame]
Matt Roperc103d1c2014-04-01 15:22:35 -07001/*
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
26#include <linux/list.h>
Sam Ravnborg0500c042019-05-26 19:35:35 +020027
Daniel Vetter321ebf02014-11-04 22:57:27 +010028#include <drm/drm_atomic.h>
Sam Ravnborg0500c042019-05-26 19:35:35 +020029#include <drm/drm_atomic_helper.h>
Daniel Vetter72fdb40c2018-09-05 15:57:11 +020030#include <drm/drm_atomic_uapi.h>
Daniel Vetteracf24a32014-07-29 15:33:05 +020031#include <drm/drm_crtc_helper.h>
Sam Ravnborg0500c042019-05-26 19:35:35 +020032#include <drm/drm_device.h>
Laurent Pinchart93382032016-11-28 20:51:09 +020033#include <drm/drm_encoder.h>
Sam Ravnborg0500c042019-05-26 19:35:35 +020034#include <drm/drm_plane_helper.h>
35#include <drm/drm_rect.h>
Matt Roperc103d1c2014-04-01 15:22:35 -070036
37#define SUBPIXEL_MASK 0xffff
38
Daniel Vetter3150c7d2014-11-06 20:53:29 +010039/**
40 * DOC: overview
41 *
42 * This helper library has two parts. The first part has support to implement
43 * primary plane support on top of the normal CRTC configuration interface.
Daniel Vetter6806cdf2017-01-25 07:26:43 +010044 * Since the legacy &drm_mode_config_funcs.set_config interface ties the primary
45 * plane together with the CRTC state this does not allow userspace to disable
Daniel Vetter6b6fce62018-10-05 11:47:32 +020046 * the primary plane itself. The default primary plane only expose XRBG8888 and
47 * ARGB8888 as valid pixel formats for the attached framebuffer.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010048 *
49 * Drivers are highly recommended to implement proper support for primary
50 * planes, and newly merged drivers must not rely upon these transitional
51 * helpers.
52 *
53 * The second part also implements transitional helpers which allow drivers to
54 * gradually switch to the atomic helper infrastructure for plane updates. Once
55 * that switch is complete drivers shouldn't use these any longer, instead using
56 * the proper legacy implementations for update and disable plane hooks provided
57 * by the atomic helpers.
58 *
59 * Again drivers are strongly urged to switch to the new interfaces.
Daniel Vetter092d01d2015-12-04 09:45:44 +010060 *
61 * The plane helpers share the function table structures with other helpers,
Daniel Vetterea0dd852016-12-29 21:48:26 +010062 * specifically also the atomic helpers. See &struct drm_plane_helper_funcs for
Daniel Vetter092d01d2015-12-04 09:45:44 +010063 * the details.
Daniel Vetter3150c7d2014-11-06 20:53:29 +010064 */
65
Matt Roperc103d1c2014-04-01 15:22:35 -070066/*
Matt Roperc103d1c2014-04-01 15:22:35 -070067 * Returns the connectors currently associated with a CRTC. This function
68 * should be called twice: once with a NULL connector list to retrieve
69 * the list size, and once with the properly allocated list to be filled in.
70 */
71static int get_connectors_for_crtc(struct drm_crtc *crtc,
72 struct drm_connector **connector_list,
73 int num_connectors)
74{
75 struct drm_device *dev = crtc->dev;
76 struct drm_connector *connector;
Daniel Vetterc36a3252016-12-15 16:58:43 +010077 struct drm_connector_list_iter conn_iter;
Matt Roperc103d1c2014-04-01 15:22:35 -070078 int count = 0;
79
Daniel Vetter6e9f7982014-05-29 23:54:47 +020080 /*
81 * Note: Once we change the plane hooks to more fine-grained locking we
82 * need to grab the connection_mutex here to be able to make these
83 * checks.
84 */
Rob Clark51fd3712013-11-19 12:10:12 -050085 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
Daniel Vetter6e9f7982014-05-29 23:54:47 +020086
Thierry Redingb982dab2017-02-28 15:46:43 +010087 drm_connector_list_iter_begin(dev, &conn_iter);
Daniel Vetterc36a3252016-12-15 16:58:43 +010088 drm_for_each_connector_iter(connector, &conn_iter) {
Matt Roperc103d1c2014-04-01 15:22:35 -070089 if (connector->encoder && connector->encoder->crtc == crtc) {
90 if (connector_list != NULL && count < num_connectors)
91 *(connector_list++) = connector;
92
93 count++;
94 }
Daniel Vetter9a9f5ce2015-07-09 23:44:34 +020095 }
Thierry Redingb982dab2017-02-28 15:46:43 +010096 drm_connector_list_iter_end(&conn_iter);
Matt Roperc103d1c2014-04-01 15:22:35 -070097
98 return count;
99}
100
Daniel Vetter84c08512018-10-04 22:24:42 +0200101static int drm_plane_helper_check_update(struct drm_plane *plane,
102 struct drm_crtc *crtc,
103 struct drm_framebuffer *fb,
104 struct drm_rect *src,
105 struct drm_rect *dst,
106 unsigned int rotation,
107 int min_scale,
108 int max_scale,
109 bool can_position,
110 bool can_update_disabled,
111 bool *visible)
Matt Roper7daf8d52014-05-29 08:06:52 -0700112{
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200113 struct drm_plane_state plane_state = {
Ville Syrjälädf86af92016-08-08 10:55:10 +0300114 .plane = plane,
115 .crtc = crtc,
116 .fb = fb,
117 .src_x = src->x1,
118 .src_y = src->y1,
119 .src_w = drm_rect_width(src),
120 .src_h = drm_rect_height(src),
121 .crtc_x = dst->x1,
122 .crtc_y = dst->y1,
123 .crtc_w = drm_rect_width(dst),
124 .crtc_h = drm_rect_height(dst),
125 .rotation = rotation,
126 .visible = *visible,
127 };
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200128 struct drm_crtc_state crtc_state = {
129 .crtc = crtc,
130 .enable = crtc->enabled,
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200131 .mode = crtc->mode,
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200132 };
Ville Syrjälädf86af92016-08-08 10:55:10 +0300133 int ret;
Matt Roper7daf8d52014-05-29 08:06:52 -0700134
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200135 ret = drm_atomic_helper_check_plane_state(&plane_state, &crtc_state,
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200136 min_scale, max_scale,
Ville Syrjäläa01cb8b2017-11-01 22:16:19 +0200137 can_position,
138 can_update_disabled);
Ville Syrjälädf86af92016-08-08 10:55:10 +0300139 if (ret)
140 return ret;
Matt Roper7432ca52014-12-11 07:20:57 -0800141
Ville Syrjälä10b47ee2017-11-01 22:15:58 +0200142 *src = plane_state.src;
143 *dst = plane_state.dst;
144 *visible = plane_state.visible;
Matt Roper7daf8d52014-05-29 08:06:52 -0700145
146 return 0;
147}
Matt Roper7daf8d52014-05-29 08:06:52 -0700148
Daniel Vetter6b6fce62018-10-05 11:47:32 +0200149static int drm_primary_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
150 struct drm_framebuffer *fb,
151 int crtc_x, int crtc_y,
152 unsigned int crtc_w, unsigned int crtc_h,
153 uint32_t src_x, uint32_t src_y,
154 uint32_t src_w, uint32_t src_h,
155 struct drm_modeset_acquire_ctx *ctx)
Matt Roperc103d1c2014-04-01 15:22:35 -0700156{
157 struct drm_mode_set set = {
158 .crtc = crtc,
159 .fb = fb,
160 .mode = &crtc->mode,
161 .x = src_x >> 16,
162 .y = src_y >> 16,
163 };
Matt Roper7daf8d52014-05-29 08:06:52 -0700164 struct drm_rect src = {
165 .x1 = src_x,
166 .y1 = src_y,
167 .x2 = src_x + src_w,
168 .y2 = src_y + src_h,
169 };
Matt Roperc103d1c2014-04-01 15:22:35 -0700170 struct drm_rect dest = {
171 .x1 = crtc_x,
172 .y1 = crtc_y,
173 .x2 = crtc_x + crtc_w,
174 .y2 = crtc_y + crtc_h,
175 };
Matt Roperc103d1c2014-04-01 15:22:35 -0700176 struct drm_connector **connector_list;
Matt Roperc103d1c2014-04-01 15:22:35 -0700177 int num_connectors, ret;
Matt Roper7daf8d52014-05-29 08:06:52 -0700178 bool visible;
Matt Roperc103d1c2014-04-01 15:22:35 -0700179
Matt Roper7daf8d52014-05-29 08:06:52 -0700180 ret = drm_plane_helper_check_update(plane, crtc, fb,
Ville Syrjälä81af63a2018-01-23 19:08:57 +0200181 &src, &dest,
Robert Fossc2c446a2017-05-19 16:50:17 -0400182 DRM_MODE_ROTATE_0,
Matt Roper7daf8d52014-05-29 08:06:52 -0700183 DRM_PLANE_HELPER_NO_SCALING,
184 DRM_PLANE_HELPER_NO_SCALING,
185 false, false, &visible);
Matt Roperc103d1c2014-04-01 15:22:35 -0700186 if (ret)
187 return ret;
188
Matt Roper7daf8d52014-05-29 08:06:52 -0700189 if (!visible)
190 /*
191 * Primary plane isn't visible. Note that unless a driver
192 * provides their own disable function, this will just
193 * wind up returning -EINVAL to userspace.
194 */
Daniel Vetter19315292017-03-22 22:50:43 +0100195 return plane->funcs->disable_plane(plane, ctx);
Matt Roper7daf8d52014-05-29 08:06:52 -0700196
Matt Roperc103d1c2014-04-01 15:22:35 -0700197 /* Find current connectors for CRTC */
198 num_connectors = get_connectors_for_crtc(crtc, NULL, 0);
199 BUG_ON(num_connectors == 0);
Harsha Sharma4b947b1c2017-10-13 13:07:47 +0530200 connector_list = kcalloc(num_connectors, sizeof(*connector_list),
Matt Roperc103d1c2014-04-01 15:22:35 -0700201 GFP_KERNEL);
202 if (!connector_list)
203 return -ENOMEM;
204 get_connectors_for_crtc(crtc, connector_list, num_connectors);
205
206 set.connectors = connector_list;
207 set.num_connectors = num_connectors;
208
209 /*
Daniel Vetter0fe27f02014-04-23 17:34:06 +0200210 * We call set_config() directly here rather than using
Matt Roperc103d1c2014-04-01 15:22:35 -0700211 * drm_mode_set_config_internal. We're reprogramming the same
212 * connectors that were already in use, so we shouldn't need the extra
213 * cross-CRTC fb refcounting to accomodate stealing connectors.
214 * drm_mode_setplane() already handles the basic refcounting for the
215 * framebuffers involved in this operation.
216 */
Daniel Vettera4eff9a2017-03-22 22:50:57 +0100217 ret = crtc->funcs->set_config(&set, ctx);
Matt Roperc103d1c2014-04-01 15:22:35 -0700218
219 kfree(connector_list);
220 return ret;
221}
Matt Roperc103d1c2014-04-01 15:22:35 -0700222
Daniel Vetter6b6fce62018-10-05 11:47:32 +0200223static int drm_primary_helper_disable(struct drm_plane *plane,
224 struct drm_modeset_acquire_ctx *ctx)
Matt Roperc103d1c2014-04-01 15:22:35 -0700225{
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200226 return -EINVAL;
Matt Roperc103d1c2014-04-01 15:22:35 -0700227}
Matt Roperc103d1c2014-04-01 15:22:35 -0700228
229/**
230 * drm_primary_helper_destroy() - Helper for primary plane destruction
231 * @plane: plane to destroy
232 *
233 * Provides a default plane destroy handler for primary planes. This handler
234 * is called during CRTC destruction. We disable the primary plane, remove
235 * it from the DRM plane list, and deallocate the plane structure.
236 */
237void drm_primary_helper_destroy(struct drm_plane *plane)
238{
Matt Roperc103d1c2014-04-01 15:22:35 -0700239 drm_plane_cleanup(plane);
240 kfree(plane);
241}
242EXPORT_SYMBOL(drm_primary_helper_destroy);
243
244const struct drm_plane_funcs drm_primary_helper_funcs = {
245 .update_plane = drm_primary_helper_update,
246 .disable_plane = drm_primary_helper_disable,
247 .destroy = drm_primary_helper_destroy,
248};
249EXPORT_SYMBOL(drm_primary_helper_funcs);