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