blob: 458d9bf092096b6a3a30fdff777e2fc513fa2745 [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>
27#include <drm/drmP.h>
28#include <drm/drm_rect.h>
29
30#define SUBPIXEL_MASK 0xffff
31
32/*
33 * This is the minimal list of formats that seem to be safe for modeset use
34 * with all current DRM drivers. Most hardware can actually support more
35 * formats than this and drivers may specify a more accurate list when
36 * creating the primary plane. However drivers that still call
37 * drm_plane_init() will use this minimal format list as the default.
38 */
39const static uint32_t safe_modeset_formats[] = {
40 DRM_FORMAT_XRGB8888,
41 DRM_FORMAT_ARGB8888,
42};
43
44/*
45 * Returns the connectors currently associated with a CRTC. This function
46 * should be called twice: once with a NULL connector list to retrieve
47 * the list size, and once with the properly allocated list to be filled in.
48 */
49static int get_connectors_for_crtc(struct drm_crtc *crtc,
50 struct drm_connector **connector_list,
51 int num_connectors)
52{
53 struct drm_device *dev = crtc->dev;
54 struct drm_connector *connector;
55 int count = 0;
56
Daniel Vetter6e9f7982014-05-29 23:54:47 +020057 /*
58 * Note: Once we change the plane hooks to more fine-grained locking we
59 * need to grab the connection_mutex here to be able to make these
60 * checks.
61 */
62 WARN_ON(!mutex_is_locked(&dev->mode_config.connection_mutex));
63
Matt Roperc103d1c2014-04-01 15:22:35 -070064 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
65 if (connector->encoder && connector->encoder->crtc == crtc) {
66 if (connector_list != NULL && count < num_connectors)
67 *(connector_list++) = connector;
68
69 count++;
70 }
71
72 return count;
73}
74
75/**
76 * drm_primary_helper_update() - Helper for primary plane update
77 * @plane: plane object to update
78 * @crtc: owning CRTC of owning plane
79 * @fb: framebuffer to flip onto plane
80 * @crtc_x: x offset of primary plane on crtc
81 * @crtc_y: y offset of primary plane on crtc
82 * @crtc_w: width of primary plane rectangle on crtc
83 * @crtc_h: height of primary plane rectangle on crtc
84 * @src_x: x offset of @fb for panning
85 * @src_y: y offset of @fb for panning
86 * @src_w: width of source rectangle in @fb
87 * @src_h: height of source rectangle in @fb
88 *
89 * Provides a default plane update handler for primary planes. This is handler
90 * is called in response to a userspace SetPlane operation on the plane with a
91 * non-NULL framebuffer. We call the driver's modeset handler to update the
92 * framebuffer.
93 *
94 * SetPlane() on a primary plane of a disabled CRTC is not supported, and will
95 * return an error.
96 *
97 * Note that we make some assumptions about hardware limitations that may not be
98 * true for all hardware --
99 * 1) Primary plane cannot be repositioned.
100 * 2) Primary plane cannot be scaled.
101 * 3) Primary plane must cover the entire CRTC.
102 * 4) Subpixel positioning is not supported.
103 * Drivers for hardware that don't have these restrictions can provide their
104 * own implementation rather than using this helper.
105 *
106 * RETURNS:
107 * Zero on success, error code on failure
108 */
109int drm_primary_helper_update(struct drm_plane *plane, struct drm_crtc *crtc,
110 struct drm_framebuffer *fb,
111 int crtc_x, int crtc_y,
112 unsigned int crtc_w, unsigned int crtc_h,
113 uint32_t src_x, uint32_t src_y,
114 uint32_t src_w, uint32_t src_h)
115{
116 struct drm_mode_set set = {
117 .crtc = crtc,
118 .fb = fb,
119 .mode = &crtc->mode,
120 .x = src_x >> 16,
121 .y = src_y >> 16,
122 };
123 struct drm_rect dest = {
124 .x1 = crtc_x,
125 .y1 = crtc_y,
126 .x2 = crtc_x + crtc_w,
127 .y2 = crtc_y + crtc_h,
128 };
129 struct drm_rect clip = {
130 .x2 = crtc->mode.hdisplay,
131 .y2 = crtc->mode.vdisplay,
132 };
133 struct drm_connector **connector_list;
Matt Roperc103d1c2014-04-01 15:22:35 -0700134 int num_connectors, ret;
135
136 if (!crtc->enabled) {
137 DRM_DEBUG_KMS("Cannot update primary plane of a disabled CRTC.\n");
138 return -EINVAL;
139 }
140
141 /* Disallow subpixel positioning */
142 if ((src_x | src_y | src_w | src_h) & SUBPIXEL_MASK) {
143 DRM_DEBUG_KMS("Primary plane does not support subpixel positioning\n");
144 return -EINVAL;
145 }
146
147 /* Primary planes are locked to their owning CRTC */
148 if (plane->possible_crtcs != drm_crtc_mask(crtc)) {
149 DRM_DEBUG_KMS("Cannot change primary plane CRTC\n");
150 return -EINVAL;
151 }
152
153 /* Disallow scaling */
Matt Roperc10dddc2014-04-10 14:18:06 -0700154 src_w >>= 16;
155 src_h >>= 16;
Matt Roperc103d1c2014-04-01 15:22:35 -0700156 if (crtc_w != src_w || crtc_h != src_h) {
157 DRM_DEBUG_KMS("Can't scale primary plane\n");
158 return -EINVAL;
159 }
160
161 /* Make sure primary plane covers entire CRTC */
162 drm_rect_intersect(&dest, &clip);
163 if (dest.x1 != 0 || dest.y1 != 0 ||
164 dest.x2 != crtc->mode.hdisplay || dest.y2 != crtc->mode.vdisplay) {
165 DRM_DEBUG_KMS("Primary plane must cover entire CRTC\n");
166 return -EINVAL;
167 }
168
169 /* Framebuffer must be big enough to cover entire plane */
170 ret = drm_crtc_check_viewport(crtc, crtc_x, crtc_y, &crtc->mode, fb);
171 if (ret)
172 return ret;
173
174 /* Find current connectors for CRTC */
175 num_connectors = get_connectors_for_crtc(crtc, NULL, 0);
176 BUG_ON(num_connectors == 0);
177 connector_list = kzalloc(num_connectors * sizeof(*connector_list),
178 GFP_KERNEL);
179 if (!connector_list)
180 return -ENOMEM;
181 get_connectors_for_crtc(crtc, connector_list, num_connectors);
182
183 set.connectors = connector_list;
184 set.num_connectors = num_connectors;
185
186 /*
Daniel Vetter0fe27f02014-04-23 17:34:06 +0200187 * We call set_config() directly here rather than using
Matt Roperc103d1c2014-04-01 15:22:35 -0700188 * drm_mode_set_config_internal. We're reprogramming the same
189 * connectors that were already in use, so we shouldn't need the extra
190 * cross-CRTC fb refcounting to accomodate stealing connectors.
191 * drm_mode_setplane() already handles the basic refcounting for the
192 * framebuffers involved in this operation.
193 */
Matt Roperc103d1c2014-04-01 15:22:35 -0700194 ret = crtc->funcs->set_config(&set);
Matt Roperc103d1c2014-04-01 15:22:35 -0700195
196 kfree(connector_list);
197 return ret;
198}
199EXPORT_SYMBOL(drm_primary_helper_update);
200
201/**
202 * drm_primary_helper_disable() - Helper for primary plane disable
203 * @plane: plane to disable
204 *
205 * Provides a default plane disable handler for primary planes. This is handler
206 * is called in response to a userspace SetPlane operation on the plane with a
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200207 * NULL framebuffer parameter. It unconditionally fails the disable call with
208 * -EINVAL the only way to disable the primary plane without driver support is
209 * to disable the entier CRTC. Which does not match the plane ->disable hook.
Matt Roperc103d1c2014-04-01 15:22:35 -0700210 *
211 * Note that some hardware may be able to disable the primary plane without
212 * disabling the whole CRTC. Drivers for such hardware should provide their
213 * own disable handler that disables just the primary plane (and they'll likely
214 * need to provide their own update handler as well to properly re-enable a
215 * disabled primary plane).
216 *
217 * RETURNS:
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200218 * Unconditionally returns -EINVAL.
Matt Roperc103d1c2014-04-01 15:22:35 -0700219 */
220int drm_primary_helper_disable(struct drm_plane *plane)
221{
Daniel Vetterb6ccd7b2014-04-15 10:02:43 +0200222 return -EINVAL;
Matt Roperc103d1c2014-04-01 15:22:35 -0700223}
224EXPORT_SYMBOL(drm_primary_helper_disable);
225
226/**
227 * drm_primary_helper_destroy() - Helper for primary plane destruction
228 * @plane: plane to destroy
229 *
230 * Provides a default plane destroy handler for primary planes. This handler
231 * is called during CRTC destruction. We disable the primary plane, remove
232 * it from the DRM plane list, and deallocate the plane structure.
233 */
234void drm_primary_helper_destroy(struct drm_plane *plane)
235{
Matt Roperc103d1c2014-04-01 15:22:35 -0700236 drm_plane_cleanup(plane);
237 kfree(plane);
238}
239EXPORT_SYMBOL(drm_primary_helper_destroy);
240
241const struct drm_plane_funcs drm_primary_helper_funcs = {
242 .update_plane = drm_primary_helper_update,
243 .disable_plane = drm_primary_helper_disable,
244 .destroy = drm_primary_helper_destroy,
245};
246EXPORT_SYMBOL(drm_primary_helper_funcs);
247
248/**
249 * drm_primary_helper_create_plane() - Create a generic primary plane
250 * @dev: drm device
251 * @formats: pixel formats supported, or NULL for a default safe list
252 * @num_formats: size of @formats; ignored if @formats is NULL
253 *
254 * Allocates and initializes a primary plane that can be used with the primary
255 * plane helpers. Drivers that wish to use driver-specific plane structures or
256 * provide custom handler functions may perform their own allocation and
257 * initialization rather than calling this function.
258 */
259struct drm_plane *drm_primary_helper_create_plane(struct drm_device *dev,
260 const uint32_t *formats,
261 int num_formats)
262{
263 struct drm_plane *primary;
264 int ret;
265
266 primary = kzalloc(sizeof(*primary), GFP_KERNEL);
267 if (primary == NULL) {
268 DRM_DEBUG_KMS("Failed to allocate primary plane\n");
269 return NULL;
270 }
271
272 if (formats == NULL) {
273 formats = safe_modeset_formats;
274 num_formats = ARRAY_SIZE(safe_modeset_formats);
275 }
276
277 /* possible_crtc's will be filled in later by crtc_init */
278 ret = drm_plane_init(dev, primary, 0, &drm_primary_helper_funcs,
279 formats, num_formats,
280 DRM_PLANE_TYPE_PRIMARY);
281 if (ret) {
282 kfree(primary);
283 primary = NULL;
284 }
285
286 return primary;
287}
288EXPORT_SYMBOL(drm_primary_helper_create_plane);
289
Matt Ropere13161a2014-04-01 15:22:38 -0700290/**
291 * drm_crtc_init - Legacy CRTC initialization function
292 * @dev: DRM device
293 * @crtc: CRTC object to init
294 * @funcs: callbacks for the new CRTC
295 *
296 * Initialize a CRTC object with a default helper-provided primary plane and no
297 * cursor plane.
298 *
299 * Returns:
300 * Zero on success, error code on failure.
301 */
302int drm_crtc_init(struct drm_device *dev, struct drm_crtc *crtc,
303 const struct drm_crtc_funcs *funcs)
304{
305 struct drm_plane *primary;
306
307 primary = drm_primary_helper_create_plane(dev, NULL, 0);
308 return drm_crtc_init_with_planes(dev, crtc, primary, NULL, funcs);
309}
310EXPORT_SYMBOL(drm_crtc_init);