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