blob: 0eebe8ba8a2c3eeccc829d6e33474e8480fbed7d [file] [log] [blame]
Daniel Vetter7520a272016-08-15 16:07:02 +02001/*
2 * Copyright (c) 2016 Intel Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23#include <linux/export.h>
24#include <drm/drmP.h>
25#include <drm/drm_auth.h>
26#include <drm/drm_framebuffer.h>
Daniel Vetter941b8ca2017-04-03 10:33:03 +020027#include <drm/drm_atomic.h>
Noralf Trønnes45d58b42017-11-07 20:13:40 +010028#include <drm/drm_print.h>
Daniel Vetter7520a272016-08-15 16:07:02 +020029
Noralf Trønnes45d58b42017-11-07 20:13:40 +010030#include "drm_internal.h"
Daniel Vetter7520a272016-08-15 16:07:02 +020031#include "drm_crtc_internal.h"
32
33/**
Daniel Vetter750fb8c2016-08-12 22:48:48 +020034 * DOC: overview
35 *
36 * Frame buffers are abstract memory objects that provide a source of pixels to
37 * scanout to a CRTC. Applications explicitly request the creation of frame
38 * buffers through the DRM_IOCTL_MODE_ADDFB(2) ioctls and receive an opaque
39 * handle that can be passed to the KMS CRTC control, plane configuration and
40 * page flip functions.
41 *
42 * Frame buffers rely on the underlying memory manager for allocating backing
43 * storage. When creating a frame buffer applications pass a memory handle
44 * (or a list of memory handles for multi-planar formats) through the
Daniel Vetterea0dd852016-12-29 21:48:26 +010045 * &struct drm_mode_fb_cmd2 argument. For drivers using GEM as their userspace
Daniel Vetter750fb8c2016-08-12 22:48:48 +020046 * buffer management interface this would be a GEM handle. Drivers are however
47 * free to use their own backing storage object handles, e.g. vmwgfx directly
48 * exposes special TTM handles to userspace and so expects TTM handles in the
49 * create ioctl and not GEM handles.
50 *
Daniel Vetterea0dd852016-12-29 21:48:26 +010051 * Framebuffers are tracked with &struct drm_framebuffer. They are published
Daniel Vetter750fb8c2016-08-12 22:48:48 +020052 * using drm_framebuffer_init() - after calling that function userspace can use
53 * and access the framebuffer object. The helper function
54 * drm_helper_mode_fill_fb_struct() can be used to pre-fill the required
55 * metadata fields.
56 *
57 * The lifetime of a drm framebuffer is controlled with a reference count,
Thierry Redinga4a69da2017-02-28 15:46:40 +010058 * drivers can grab additional references with drm_framebuffer_get() and drop
59 * them again with drm_framebuffer_put(). For driver-private framebuffers for
60 * which the last reference is never dropped (e.g. for the fbdev framebuffer
61 * when the struct &struct drm_framebuffer is embedded into the fbdev helper
62 * struct) drivers can manually clean up a framebuffer at module unload time
63 * with drm_framebuffer_unregister_private(). But doing this is not
64 * recommended, and it's better to have a normal free-standing &struct
Daniel Vetterd5745282017-01-25 07:26:45 +010065 * drm_framebuffer.
Daniel Vetter750fb8c2016-08-12 22:48:48 +020066 */
67
Daniel Vetter43968d72016-09-21 10:59:24 +020068int drm_framebuffer_check_src_coords(uint32_t src_x, uint32_t src_y,
69 uint32_t src_w, uint32_t src_h,
70 const struct drm_framebuffer *fb)
71{
72 unsigned int fb_width, fb_height;
73
74 fb_width = fb->width << 16;
75 fb_height = fb->height << 16;
76
77 /* Make sure source coordinates are inside the fb. */
78 if (src_w > fb_width ||
79 src_x > fb_width - src_w ||
80 src_h > fb_height ||
81 src_y > fb_height - src_h) {
82 DRM_DEBUG_KMS("Invalid source coordinates "
Ville Syrjälä0338f0d2017-11-01 20:35:33 +020083 "%u.%06ux%u.%06u+%u.%06u+%u.%06u (fb %ux%u)\n",
Daniel Vetter43968d72016-09-21 10:59:24 +020084 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
85 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
86 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
Ville Syrjälä0338f0d2017-11-01 20:35:33 +020087 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10,
88 fb->width, fb->height);
Daniel Vetter43968d72016-09-21 10:59:24 +020089 return -ENOSPC;
90 }
91
92 return 0;
93}
94
Daniel Vetter750fb8c2016-08-12 22:48:48 +020095/**
Daniel Vetter7520a272016-08-15 16:07:02 +020096 * drm_mode_addfb - add an FB to the graphics configuration
97 * @dev: drm device for the ioctl
98 * @data: data pointer for the ioctl
99 * @file_priv: drm file for the ioctl call
100 *
101 * Add a new FB to the specified CRTC, given a user request. This is the
102 * original addfb ioctl which only supported RGB formats.
103 *
104 * Called by the user via ioctl.
105 *
106 * Returns:
107 * Zero on success, negative errno on failure.
108 */
109int drm_mode_addfb(struct drm_device *dev,
110 void *data, struct drm_file *file_priv)
111{
112 struct drm_mode_fb_cmd *or = data;
113 struct drm_mode_fb_cmd2 r = {};
114 int ret;
115
116 /* convert to new format and call new ioctl */
117 r.fb_id = or->fb_id;
118 r.width = or->width;
119 r.height = or->height;
120 r.pitches[0] = or->pitch;
121 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
122 r.handles[0] = or->handle;
123
124 ret = drm_mode_addfb2(dev, &r, file_priv);
125 if (ret)
126 return ret;
127
128 or->fb_id = r.fb_id;
129
130 return 0;
131}
132
Ville Syrjälä568c5e42017-03-21 20:12:14 +0200133static int fb_plane_width(int width,
134 const struct drm_format_info *format, int plane)
135{
136 if (plane == 0)
137 return width;
138
Ville Syrjälä33f673a2017-03-21 20:12:15 +0200139 return DIV_ROUND_UP(width, format->hsub);
Ville Syrjälä568c5e42017-03-21 20:12:14 +0200140}
141
142static int fb_plane_height(int height,
143 const struct drm_format_info *format, int plane)
144{
145 if (plane == 0)
146 return height;
147
Ville Syrjälä33f673a2017-03-21 20:12:15 +0200148 return DIV_ROUND_UP(height, format->vsub);
Ville Syrjälä568c5e42017-03-21 20:12:14 +0200149}
150
Ville Syrjälä6a0f9eb2017-03-21 20:12:16 +0200151static int framebuffer_check(struct drm_device *dev,
152 const struct drm_mode_fb_cmd2 *r)
Daniel Vetter7520a272016-08-15 16:07:02 +0200153{
Laurent Pinchartd5493492016-10-18 01:41:11 +0300154 const struct drm_format_info *info;
155 int i;
Daniel Vetter7520a272016-08-15 16:07:02 +0200156
Ville Syrjälä6a0f9eb2017-03-21 20:12:16 +0200157 /* check if the format is supported at all */
Laurent Pinchart333d2da2016-10-18 01:41:12 +0300158 info = __drm_format_info(r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN);
Laurent Pinchartd5493492016-10-18 01:41:11 +0300159 if (!info) {
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000160 struct drm_format_name_buf format_name;
Ville Syrjäläc10496c2018-03-05 16:49:19 +0200161
Eric Engestromb3c11ac2016-11-12 01:12:56 +0000162 DRM_DEBUG_KMS("bad framebuffer format %s\n",
Ville Syrjäläc10496c2018-03-05 16:49:19 +0200163 drm_get_format_name(r->pixel_format,
164 &format_name));
Laurent Pinchartd5493492016-10-18 01:41:11 +0300165 return -EINVAL;
Daniel Vetter7520a272016-08-15 16:07:02 +0200166 }
167
Ville Syrjälä6a0f9eb2017-03-21 20:12:16 +0200168 /* now let the driver pick its own format info */
169 info = drm_get_format_info(dev, r);
170
Ville Syrjälä33f673a2017-03-21 20:12:15 +0200171 if (r->width == 0) {
Daniel Vetter7520a272016-08-15 16:07:02 +0200172 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
173 return -EINVAL;
174 }
175
Ville Syrjälä33f673a2017-03-21 20:12:15 +0200176 if (r->height == 0) {
Daniel Vetter7520a272016-08-15 16:07:02 +0200177 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
178 return -EINVAL;
179 }
180
Laurent Pinchartd5493492016-10-18 01:41:11 +0300181 for (i = 0; i < info->num_planes; i++) {
Ville Syrjälä568c5e42017-03-21 20:12:14 +0200182 unsigned int width = fb_plane_width(r->width, info, i);
183 unsigned int height = fb_plane_height(r->height, info, i);
Laurent Pinchartd5493492016-10-18 01:41:11 +0300184 unsigned int cpp = info->cpp[i];
Daniel Vetter7520a272016-08-15 16:07:02 +0200185
186 if (!r->handles[i]) {
187 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
188 return -EINVAL;
189 }
190
191 if ((uint64_t) width * cpp > UINT_MAX)
192 return -ERANGE;
193
194 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
195 return -ERANGE;
196
197 if (r->pitches[i] < width * cpp) {
198 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
199 return -EINVAL;
200 }
201
202 if (r->modifier[i] && !(r->flags & DRM_MODE_FB_MODIFIERS)) {
203 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
204 r->modifier[i], i);
205 return -EINVAL;
206 }
207
Ville Syrjäläbae781b2016-11-16 13:33:16 +0200208 if (r->flags & DRM_MODE_FB_MODIFIERS &&
209 r->modifier[i] != r->modifier[0]) {
210 DRM_DEBUG_KMS("bad fb modifier %llu for plane %d\n",
211 r->modifier[i], i);
212 return -EINVAL;
213 }
214
Daniel Vetter7520a272016-08-15 16:07:02 +0200215 /* modifier specific checks: */
216 switch (r->modifier[i]) {
217 case DRM_FORMAT_MOD_SAMSUNG_64_32_TILE:
218 /* NOTE: the pitch restriction may be lifted later if it turns
219 * out that no hw has this restriction:
220 */
221 if (r->pixel_format != DRM_FORMAT_NV12 ||
222 width % 128 || height % 32 ||
223 r->pitches[i] % 128) {
224 DRM_DEBUG_KMS("bad modifier data for plane %d\n", i);
225 return -EINVAL;
226 }
227 break;
228
229 default:
230 break;
231 }
232 }
233
Laurent Pinchartd5493492016-10-18 01:41:11 +0300234 for (i = info->num_planes; i < 4; i++) {
Daniel Vetter7520a272016-08-15 16:07:02 +0200235 if (r->modifier[i]) {
236 DRM_DEBUG_KMS("non-zero modifier for unused plane %d\n", i);
237 return -EINVAL;
238 }
239
240 /* Pre-FB_MODIFIERS userspace didn't clear the structs properly. */
241 if (!(r->flags & DRM_MODE_FB_MODIFIERS))
242 continue;
243
244 if (r->handles[i]) {
245 DRM_DEBUG_KMS("buffer object handle for unused plane %d\n", i);
246 return -EINVAL;
247 }
248
249 if (r->pitches[i]) {
250 DRM_DEBUG_KMS("non-zero pitch for unused plane %d\n", i);
251 return -EINVAL;
252 }
253
254 if (r->offsets[i]) {
255 DRM_DEBUG_KMS("non-zero offset for unused plane %d\n", i);
256 return -EINVAL;
257 }
258 }
259
260 return 0;
261}
262
263struct drm_framebuffer *
264drm_internal_framebuffer_create(struct drm_device *dev,
265 const struct drm_mode_fb_cmd2 *r,
266 struct drm_file *file_priv)
267{
268 struct drm_mode_config *config = &dev->mode_config;
269 struct drm_framebuffer *fb;
270 int ret;
271
272 if (r->flags & ~(DRM_MODE_FB_INTERLACED | DRM_MODE_FB_MODIFIERS)) {
273 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
274 return ERR_PTR(-EINVAL);
275 }
276
277 if ((config->min_width > r->width) || (r->width > config->max_width)) {
278 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
279 r->width, config->min_width, config->max_width);
280 return ERR_PTR(-EINVAL);
281 }
282 if ((config->min_height > r->height) || (r->height > config->max_height)) {
283 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
284 r->height, config->min_height, config->max_height);
285 return ERR_PTR(-EINVAL);
286 }
287
288 if (r->flags & DRM_MODE_FB_MODIFIERS &&
289 !dev->mode_config.allow_fb_modifiers) {
290 DRM_DEBUG_KMS("driver does not support fb modifiers\n");
291 return ERR_PTR(-EINVAL);
292 }
293
Ville Syrjälä6a0f9eb2017-03-21 20:12:16 +0200294 ret = framebuffer_check(dev, r);
Daniel Vetter7520a272016-08-15 16:07:02 +0200295 if (ret)
296 return ERR_PTR(ret);
297
298 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
299 if (IS_ERR(fb)) {
300 DRM_DEBUG_KMS("could not create framebuffer\n");
301 return fb;
302 }
303
304 return fb;
305}
306
307/**
308 * drm_mode_addfb2 - add an FB to the graphics configuration
309 * @dev: drm device for the ioctl
310 * @data: data pointer for the ioctl
311 * @file_priv: drm file for the ioctl call
312 *
313 * Add a new FB to the specified CRTC, given a user request with format. This is
314 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
315 * and uses fourcc codes as pixel format specifiers.
316 *
317 * Called by the user via ioctl.
318 *
319 * Returns:
320 * Zero on success, negative errno on failure.
321 */
322int drm_mode_addfb2(struct drm_device *dev,
323 void *data, struct drm_file *file_priv)
324{
325 struct drm_mode_fb_cmd2 *r = data;
326 struct drm_framebuffer *fb;
327
328 if (!drm_core_check_feature(dev, DRIVER_MODESET))
329 return -EINVAL;
330
331 fb = drm_internal_framebuffer_create(dev, r, file_priv);
332 if (IS_ERR(fb))
333 return PTR_ERR(fb);
334
335 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
336 r->fb_id = fb->base.id;
337
338 /* Transfer ownership to the filp for reaping on close */
339 mutex_lock(&file_priv->fbs_lock);
340 list_add(&fb->filp_head, &file_priv->fbs);
341 mutex_unlock(&file_priv->fbs_lock);
342
343 return 0;
344}
345
346struct drm_mode_rmfb_work {
347 struct work_struct work;
348 struct list_head fbs;
349};
350
351static void drm_mode_rmfb_work_fn(struct work_struct *w)
352{
353 struct drm_mode_rmfb_work *arg = container_of(w, typeof(*arg), work);
354
355 while (!list_empty(&arg->fbs)) {
356 struct drm_framebuffer *fb =
357 list_first_entry(&arg->fbs, typeof(*fb), filp_head);
358
359 list_del_init(&fb->filp_head);
360 drm_framebuffer_remove(fb);
361 }
362}
363
364/**
365 * drm_mode_rmfb - remove an FB from the configuration
366 * @dev: drm device for the ioctl
367 * @data: data pointer for the ioctl
368 * @file_priv: drm file for the ioctl call
369 *
370 * Remove the FB specified by the user.
371 *
372 * Called by the user via ioctl.
373 *
374 * Returns:
375 * Zero on success, negative errno on failure.
376 */
377int drm_mode_rmfb(struct drm_device *dev,
378 void *data, struct drm_file *file_priv)
379{
380 struct drm_framebuffer *fb = NULL;
381 struct drm_framebuffer *fbl = NULL;
382 uint32_t *id = data;
383 int found = 0;
384
385 if (!drm_core_check_feature(dev, DRIVER_MODESET))
386 return -EINVAL;
387
Keith Packard418da172017-03-14 23:25:07 -0700388 fb = drm_framebuffer_lookup(dev, file_priv, *id);
Daniel Vetter7520a272016-08-15 16:07:02 +0200389 if (!fb)
390 return -ENOENT;
391
392 mutex_lock(&file_priv->fbs_lock);
393 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
394 if (fb == fbl)
395 found = 1;
396 if (!found) {
397 mutex_unlock(&file_priv->fbs_lock);
398 goto fail_unref;
399 }
400
401 list_del_init(&fb->filp_head);
402 mutex_unlock(&file_priv->fbs_lock);
403
404 /* drop the reference we picked up in framebuffer lookup */
Thierry Redinga4a69da2017-02-28 15:46:40 +0100405 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200406
407 /*
408 * we now own the reference that was stored in the fbs list
409 *
410 * drm_framebuffer_remove may fail with -EINTR on pending signals,
411 * so run this in a separate stack as there's no way to correctly
412 * handle this after the fb is already removed from the lookup table.
413 */
414 if (drm_framebuffer_read_refcount(fb) > 1) {
415 struct drm_mode_rmfb_work arg;
416
417 INIT_WORK_ONSTACK(&arg.work, drm_mode_rmfb_work_fn);
418 INIT_LIST_HEAD(&arg.fbs);
419 list_add_tail(&fb->filp_head, &arg.fbs);
420
421 schedule_work(&arg.work);
422 flush_work(&arg.work);
423 destroy_work_on_stack(&arg.work);
424 } else
Thierry Redinga4a69da2017-02-28 15:46:40 +0100425 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200426
427 return 0;
428
429fail_unref:
Thierry Redinga4a69da2017-02-28 15:46:40 +0100430 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200431 return -ENOENT;
432}
433
434/**
435 * drm_mode_getfb - get FB info
436 * @dev: drm device for the ioctl
437 * @data: data pointer for the ioctl
438 * @file_priv: drm file for the ioctl call
439 *
440 * Lookup the FB given its ID and return info about it.
441 *
442 * Called by the user via ioctl.
443 *
444 * Returns:
445 * Zero on success, negative errno on failure.
446 */
447int drm_mode_getfb(struct drm_device *dev,
448 void *data, struct drm_file *file_priv)
449{
450 struct drm_mode_fb_cmd *r = data;
451 struct drm_framebuffer *fb;
452 int ret;
453
454 if (!drm_core_check_feature(dev, DRIVER_MODESET))
455 return -EINVAL;
456
Keith Packard418da172017-03-14 23:25:07 -0700457 fb = drm_framebuffer_lookup(dev, file_priv, r->fb_id);
Daniel Vetter7520a272016-08-15 16:07:02 +0200458 if (!fb)
459 return -ENOENT;
460
461 r->height = fb->height;
462 r->width = fb->width;
Ville Syrjäläb00c6002016-12-14 23:31:35 +0200463 r->depth = fb->format->depth;
Ville Syrjälä272725c2016-12-14 23:32:20 +0200464 r->bpp = fb->format->cpp[0] * 8;
Daniel Vetter7520a272016-08-15 16:07:02 +0200465 r->pitch = fb->pitches[0];
466 if (fb->funcs->create_handle) {
467 if (drm_is_current_master(file_priv) || capable(CAP_SYS_ADMIN) ||
468 drm_is_control_client(file_priv)) {
469 ret = fb->funcs->create_handle(fb, file_priv,
470 &r->handle);
471 } else {
472 /* GET_FB() is an unprivileged ioctl so we must not
473 * return a buffer-handle to non-master processes! For
474 * backwards-compatibility reasons, we cannot make
475 * GET_FB() privileged, so just return an invalid handle
476 * for non-masters. */
477 r->handle = 0;
478 ret = 0;
479 }
480 } else {
481 ret = -ENODEV;
482 }
483
Thierry Redinga4a69da2017-02-28 15:46:40 +0100484 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200485
486 return ret;
487}
488
489/**
490 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
491 * @dev: drm device for the ioctl
492 * @data: data pointer for the ioctl
493 * @file_priv: drm file for the ioctl call
494 *
495 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
496 * rectangle list. Generic userspace which does frontbuffer rendering must call
497 * this ioctl to flush out the changes on manual-update display outputs, e.g.
498 * usb display-link, mipi manual update panels or edp panel self refresh modes.
499 *
500 * Modesetting drivers which always update the frontbuffer do not need to
Daniel Vetterd5745282017-01-25 07:26:45 +0100501 * implement the corresponding &drm_framebuffer_funcs.dirty callback.
Daniel Vetter7520a272016-08-15 16:07:02 +0200502 *
503 * Called by the user via ioctl.
504 *
505 * Returns:
506 * Zero on success, negative errno on failure.
507 */
508int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
509 void *data, struct drm_file *file_priv)
510{
511 struct drm_clip_rect __user *clips_ptr;
512 struct drm_clip_rect *clips = NULL;
513 struct drm_mode_fb_dirty_cmd *r = data;
514 struct drm_framebuffer *fb;
515 unsigned flags;
516 int num_clips;
517 int ret;
518
519 if (!drm_core_check_feature(dev, DRIVER_MODESET))
520 return -EINVAL;
521
Keith Packard418da172017-03-14 23:25:07 -0700522 fb = drm_framebuffer_lookup(dev, file_priv, r->fb_id);
Daniel Vetter7520a272016-08-15 16:07:02 +0200523 if (!fb)
524 return -ENOENT;
525
526 num_clips = r->num_clips;
527 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
528
529 if (!num_clips != !clips_ptr) {
530 ret = -EINVAL;
531 goto out_err1;
532 }
533
534 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
535
536 /* If userspace annotates copy, clips must come in pairs */
537 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
538 ret = -EINVAL;
539 goto out_err1;
540 }
541
542 if (num_clips && clips_ptr) {
543 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
544 ret = -EINVAL;
545 goto out_err1;
546 }
547 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL);
548 if (!clips) {
549 ret = -ENOMEM;
550 goto out_err1;
551 }
552
553 ret = copy_from_user(clips, clips_ptr,
554 num_clips * sizeof(*clips));
555 if (ret) {
556 ret = -EFAULT;
557 goto out_err2;
558 }
559 }
560
561 if (fb->funcs->dirty) {
562 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
563 clips, num_clips);
564 } else {
565 ret = -ENOSYS;
566 }
567
568out_err2:
569 kfree(clips);
570out_err1:
Thierry Redinga4a69da2017-02-28 15:46:40 +0100571 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200572
573 return ret;
574}
575
576/**
577 * drm_fb_release - remove and free the FBs on this file
578 * @priv: drm file for the ioctl
579 *
580 * Destroy all the FBs associated with @filp.
581 *
582 * Called by the user via ioctl.
583 *
584 * Returns:
585 * Zero on success, negative errno on failure.
586 */
587void drm_fb_release(struct drm_file *priv)
588{
589 struct drm_framebuffer *fb, *tfb;
590 struct drm_mode_rmfb_work arg;
591
592 INIT_LIST_HEAD(&arg.fbs);
593
594 /*
595 * When the file gets released that means no one else can access the fb
596 * list any more, so no need to grab fpriv->fbs_lock. And we need to
597 * avoid upsetting lockdep since the universal cursor code adds a
598 * framebuffer while holding mutex locks.
599 *
600 * Note that a real deadlock between fpriv->fbs_lock and the modeset
601 * locks is impossible here since no one else but this function can get
602 * at it any more.
603 */
604 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
605 if (drm_framebuffer_read_refcount(fb) > 1) {
606 list_move_tail(&fb->filp_head, &arg.fbs);
607 } else {
608 list_del_init(&fb->filp_head);
609
610 /* This drops the fpriv->fbs reference. */
Thierry Redinga4a69da2017-02-28 15:46:40 +0100611 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200612 }
613 }
614
615 if (!list_empty(&arg.fbs)) {
616 INIT_WORK_ONSTACK(&arg.work, drm_mode_rmfb_work_fn);
617
618 schedule_work(&arg.work);
619 flush_work(&arg.work);
620 destroy_work_on_stack(&arg.work);
621 }
622}
623
624void drm_framebuffer_free(struct kref *kref)
625{
626 struct drm_framebuffer *fb =
627 container_of(kref, struct drm_framebuffer, base.refcount);
628 struct drm_device *dev = fb->dev;
629
630 /*
631 * The lookup idr holds a weak reference, which has not necessarily been
632 * removed at this point. Check for that.
633 */
634 drm_mode_object_unregister(dev, &fb->base);
635
636 fb->funcs->destroy(fb);
637}
638
639/**
640 * drm_framebuffer_init - initialize a framebuffer
641 * @dev: DRM device
642 * @fb: framebuffer to be initialized
643 * @funcs: ... with these functions
644 *
645 * Allocates an ID for the framebuffer's parent mode object, sets its mode
646 * functions & device file and adds it to the master fd list.
647 *
648 * IMPORTANT:
649 * This functions publishes the fb and makes it available for concurrent access
650 * by other users. Which means by this point the fb _must_ be fully set up -
651 * since all the fb attributes are invariant over its lifetime, no further
652 * locking but only correct reference counting is required.
653 *
654 * Returns:
655 * Zero on success, error code on failure.
656 */
657int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
658 const struct drm_framebuffer_funcs *funcs)
659{
660 int ret;
661
Ville Syrjälä570cec32016-11-18 21:52:58 +0200662 if (WARN_ON_ONCE(fb->dev != dev || !fb->format))
Ville Syrjälä95bce762016-11-18 21:52:54 +0200663 return -EINVAL;
664
Daniel Vetter7520a272016-08-15 16:07:02 +0200665 INIT_LIST_HEAD(&fb->filp_head);
Ville Syrjälä95bce762016-11-18 21:52:54 +0200666
Daniel Vetter7520a272016-08-15 16:07:02 +0200667 fb->funcs = funcs;
Maarten Lankhorst8d44e9e2017-12-20 10:35:44 +0100668 strcpy(fb->comm, current->comm);
Daniel Vetter7520a272016-08-15 16:07:02 +0200669
Thierry Reding2135ea72017-02-28 15:46:37 +0100670 ret = __drm_mode_object_add(dev, &fb->base, DRM_MODE_OBJECT_FB,
671 false, drm_framebuffer_free);
Daniel Vetter7520a272016-08-15 16:07:02 +0200672 if (ret)
673 goto out;
674
675 mutex_lock(&dev->mode_config.fb_lock);
676 dev->mode_config.num_fb++;
677 list_add(&fb->head, &dev->mode_config.fb_list);
678 mutex_unlock(&dev->mode_config.fb_lock);
679
680 drm_mode_object_register(dev, &fb->base);
681out:
682 return ret;
683}
684EXPORT_SYMBOL(drm_framebuffer_init);
685
686/**
687 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
688 * @dev: drm device
Dave Airliee7e62c72017-11-09 09:35:04 +1000689 * @file_priv: drm file to check for lease against.
Daniel Vetter7520a272016-08-15 16:07:02 +0200690 * @id: id of the fb object
691 *
692 * If successful, this grabs an additional reference to the framebuffer -
693 * callers need to make sure to eventually unreference the returned framebuffer
Thierry Redinga4a69da2017-02-28 15:46:40 +0100694 * again, using drm_framebuffer_put().
Daniel Vetter7520a272016-08-15 16:07:02 +0200695 */
696struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
Keith Packard418da172017-03-14 23:25:07 -0700697 struct drm_file *file_priv,
Daniel Vetter7520a272016-08-15 16:07:02 +0200698 uint32_t id)
699{
700 struct drm_mode_object *obj;
701 struct drm_framebuffer *fb = NULL;
702
Keith Packard418da172017-03-14 23:25:07 -0700703 obj = __drm_mode_object_find(dev, file_priv, id, DRM_MODE_OBJECT_FB);
Daniel Vetter7520a272016-08-15 16:07:02 +0200704 if (obj)
705 fb = obj_to_fb(obj);
706 return fb;
707}
708EXPORT_SYMBOL(drm_framebuffer_lookup);
709
710/**
711 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
712 * @fb: fb to unregister
713 *
714 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
715 * those used for fbdev. Note that the caller must hold a reference of it's own,
716 * i.e. the object may not be destroyed through this call (since it'll lead to a
717 * locking inversion).
Rongrong Zou03e93ac2016-10-31 19:59:56 +0800718 *
719 * NOTE: This function is deprecated. For driver-private framebuffers it is not
720 * recommended to embed a framebuffer struct info fbdev struct, instead, a
Thierry Redinga4a69da2017-02-28 15:46:40 +0100721 * framebuffer pointer is preferred and drm_framebuffer_put() should be called
722 * when the framebuffer is to be cleaned up.
Daniel Vetter7520a272016-08-15 16:07:02 +0200723 */
724void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
725{
726 struct drm_device *dev;
727
728 if (!fb)
729 return;
730
731 dev = fb->dev;
732
733 /* Mark fb as reaped and drop idr ref. */
734 drm_mode_object_unregister(dev, &fb->base);
735}
736EXPORT_SYMBOL(drm_framebuffer_unregister_private);
737
738/**
739 * drm_framebuffer_cleanup - remove a framebuffer object
740 * @fb: framebuffer to remove
741 *
742 * Cleanup framebuffer. This function is intended to be used from the drivers
Daniel Vetterd5745282017-01-25 07:26:45 +0100743 * &drm_framebuffer_funcs.destroy callback. It can also be used to clean up
744 * driver private framebuffers embedded into a larger structure.
Daniel Vetter7520a272016-08-15 16:07:02 +0200745 *
Daniel Vetterd5745282017-01-25 07:26:45 +0100746 * Note that this function does not remove the fb from active usage - if it is
Daniel Vetter7520a272016-08-15 16:07:02 +0200747 * still used anywhere, hilarity can ensue since userspace could call getfb on
748 * the id and get back -EINVAL. Obviously no concern at driver unload time.
749 *
750 * Also, the framebuffer will not be removed from the lookup idr - for
751 * user-created framebuffers this will happen in in the rmfb ioctl. For
752 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
753 * drm_framebuffer_unregister_private.
754 */
755void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
756{
757 struct drm_device *dev = fb->dev;
758
759 mutex_lock(&dev->mode_config.fb_lock);
760 list_del(&fb->head);
761 dev->mode_config.num_fb--;
762 mutex_unlock(&dev->mode_config.fb_lock);
763}
764EXPORT_SYMBOL(drm_framebuffer_cleanup);
765
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200766static int atomic_remove_fb(struct drm_framebuffer *fb)
767{
768 struct drm_modeset_acquire_ctx ctx;
769 struct drm_device *dev = fb->dev;
770 struct drm_atomic_state *state;
771 struct drm_plane *plane;
772 struct drm_connector *conn;
773 struct drm_connector_state *conn_state;
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100774 int i, ret;
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200775 unsigned plane_mask;
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100776 bool disable_crtcs = false;
777
778retry_disable:
779 drm_modeset_acquire_init(&ctx, 0);
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200780
781 state = drm_atomic_state_alloc(dev);
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100782 if (!state) {
783 ret = -ENOMEM;
784 goto out;
785 }
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200786 state->acquire_ctx = &ctx;
787
788retry:
789 plane_mask = 0;
790 ret = drm_modeset_lock_all_ctx(dev, &ctx);
791 if (ret)
792 goto unlock;
793
794 drm_for_each_plane(plane, dev) {
795 struct drm_plane_state *plane_state;
796
797 if (plane->state->fb != fb)
798 continue;
799
800 plane_state = drm_atomic_get_plane_state(state, plane);
801 if (IS_ERR(plane_state)) {
802 ret = PTR_ERR(plane_state);
803 goto unlock;
804 }
805
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100806 if (disable_crtcs && plane_state->crtc->primary == plane) {
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200807 struct drm_crtc_state *crtc_state;
808
809 crtc_state = drm_atomic_get_existing_crtc_state(state, plane_state->crtc);
810
811 ret = drm_atomic_add_affected_connectors(state, plane_state->crtc);
812 if (ret)
813 goto unlock;
814
815 crtc_state->active = false;
816 ret = drm_atomic_set_mode_for_crtc(crtc_state, NULL);
817 if (ret)
818 goto unlock;
819 }
820
821 drm_atomic_set_fb_for_plane(plane_state, NULL);
822 ret = drm_atomic_set_crtc_for_plane(plane_state, NULL);
823 if (ret)
824 goto unlock;
825
826 plane_mask |= BIT(drm_plane_index(plane));
827
828 plane->old_fb = plane->fb;
829 }
830
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100831 /* This list is only filled when disable_crtcs is set. */
Maarten Lankhorst0c3eb122017-07-12 10:13:30 +0200832 for_each_new_connector_in_state(state, conn, conn_state, i) {
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200833 ret = drm_atomic_set_crtc_for_connector(conn_state, NULL);
834
835 if (ret)
836 goto unlock;
837 }
838
839 if (plane_mask)
840 ret = drm_atomic_commit(state);
841
842unlock:
843 if (plane_mask)
844 drm_atomic_clean_old_fb(dev, plane_mask, ret);
845
846 if (ret == -EDEADLK) {
Maarten Lankhorst4086d902017-06-29 13:59:54 +0200847 drm_atomic_state_clear(state);
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200848 drm_modeset_backoff(&ctx);
849 goto retry;
850 }
851
852 drm_atomic_state_put(state);
853
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100854out:
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200855 drm_modeset_drop_locks(&ctx);
856 drm_modeset_acquire_fini(&ctx);
857
Maarten Lankhorst846c7df2017-11-01 16:04:33 +0100858 if (ret == -EINVAL && !disable_crtcs) {
859 disable_crtcs = true;
860 goto retry_disable;
861 }
862
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200863 return ret;
864}
865
866static void legacy_remove_fb(struct drm_framebuffer *fb)
867{
868 struct drm_device *dev = fb->dev;
869 struct drm_crtc *crtc;
870 struct drm_plane *plane;
871
872 drm_modeset_lock_all(dev);
873 /* remove from any CRTC */
874 drm_for_each_crtc(crtc, dev) {
875 if (crtc->primary->fb == fb) {
876 /* should turn off the crtc */
877 if (drm_crtc_force_disable(crtc))
878 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
879 }
880 }
881
882 drm_for_each_plane(plane, dev) {
883 if (plane->fb == fb)
884 drm_plane_force_disable(plane);
885 }
886 drm_modeset_unlock_all(dev);
887}
888
Daniel Vetter7520a272016-08-15 16:07:02 +0200889/**
890 * drm_framebuffer_remove - remove and unreference a framebuffer object
891 * @fb: framebuffer to remove
892 *
893 * Scans all the CRTCs and planes in @dev's mode_config. If they're
894 * using @fb, removes it, setting it to NULL. Then drops the reference to the
895 * passed-in framebuffer. Might take the modeset locks.
896 *
897 * Note that this function optimizes the cleanup away if the caller holds the
898 * last reference to the framebuffer. It is also guaranteed to not take the
899 * modeset locks in this case.
900 */
901void drm_framebuffer_remove(struct drm_framebuffer *fb)
902{
903 struct drm_device *dev;
Daniel Vetter7520a272016-08-15 16:07:02 +0200904
905 if (!fb)
906 return;
907
908 dev = fb->dev;
909
910 WARN_ON(!list_empty(&fb->filp_head));
911
912 /*
913 * drm ABI mandates that we remove any deleted framebuffers from active
914 * useage. But since most sane clients only remove framebuffers they no
915 * longer need, try to optimize this away.
916 *
917 * Since we're holding a reference ourselves, observing a refcount of 1
918 * means that we're the last holder and can skip it. Also, the refcount
919 * can never increase from 1 again, so we don't need any barriers or
920 * locks.
921 *
922 * Note that userspace could try to race with use and instate a new
923 * usage _after_ we've cleared all current ones. End result will be an
924 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
925 * in this manner.
926 */
927 if (drm_framebuffer_read_refcount(fb) > 1) {
Maarten Lankhorstdb8f6402017-02-21 14:51:41 +0100928 if (drm_drv_uses_atomic_modeset(dev)) {
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200929 int ret = atomic_remove_fb(fb);
Maarten Lankhorstdb8f6402017-02-21 14:51:41 +0100930 WARN(ret, "atomic remove_fb failed with %i\n", ret);
Daniel Vetter941b8ca2017-04-03 10:33:03 +0200931 } else
932 legacy_remove_fb(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200933 }
934
Thierry Redinga4a69da2017-02-28 15:46:40 +0100935 drm_framebuffer_put(fb);
Daniel Vetter7520a272016-08-15 16:07:02 +0200936}
937EXPORT_SYMBOL(drm_framebuffer_remove);
Ville Syrjälä8f8f6a62016-11-18 21:53:05 +0200938
939/**
940 * drm_framebuffer_plane_width - width of the plane given the first plane
941 * @width: width of the first plane
942 * @fb: the framebuffer
943 * @plane: plane index
944 *
945 * Returns:
946 * The width of @plane, given that the width of the first plane is @width.
947 */
948int drm_framebuffer_plane_width(int width,
949 const struct drm_framebuffer *fb, int plane)
950{
951 if (plane >= fb->format->num_planes)
952 return 0;
953
Ville Syrjälä568c5e42017-03-21 20:12:14 +0200954 return fb_plane_width(width, fb->format, plane);
Ville Syrjälä8f8f6a62016-11-18 21:53:05 +0200955}
956EXPORT_SYMBOL(drm_framebuffer_plane_width);
957
958/**
959 * drm_framebuffer_plane_height - height of the plane given the first plane
960 * @height: height of the first plane
961 * @fb: the framebuffer
962 * @plane: plane index
963 *
964 * Returns:
965 * The height of @plane, given that the height of the first plane is @height.
966 */
967int drm_framebuffer_plane_height(int height,
968 const struct drm_framebuffer *fb, int plane)
969{
970 if (plane >= fb->format->num_planes)
971 return 0;
972
Ville Syrjälä568c5e42017-03-21 20:12:14 +0200973 return fb_plane_height(height, fb->format, plane);
Ville Syrjälä8f8f6a62016-11-18 21:53:05 +0200974}
975EXPORT_SYMBOL(drm_framebuffer_plane_height);
Noralf Trønnes45d58b42017-11-07 20:13:40 +0100976
977void drm_framebuffer_print_info(struct drm_printer *p, unsigned int indent,
978 const struct drm_framebuffer *fb)
979{
980 struct drm_format_name_buf format_name;
981 unsigned int i;
982
Maarten Lankhorst8d44e9e2017-12-20 10:35:44 +0100983 drm_printf_indent(p, indent, "allocated by = %s\n", fb->comm);
Noralf Trønnes45d58b42017-11-07 20:13:40 +0100984 drm_printf_indent(p, indent, "refcount=%u\n",
985 drm_framebuffer_read_refcount(fb));
986 drm_printf_indent(p, indent, "format=%s\n",
987 drm_get_format_name(fb->format->format, &format_name));
988 drm_printf_indent(p, indent, "modifier=0x%llx\n", fb->modifier);
989 drm_printf_indent(p, indent, "size=%ux%u\n", fb->width, fb->height);
990 drm_printf_indent(p, indent, "layers:\n");
991
992 for (i = 0; i < fb->format->num_planes; i++) {
993 drm_printf_indent(p, indent + 1, "size[%u]=%dx%d\n", i,
994 drm_framebuffer_plane_width(fb->width, fb, i),
995 drm_framebuffer_plane_height(fb->height, fb, i));
996 drm_printf_indent(p, indent + 1, "pitch[%u]=%u\n", i, fb->pitches[i]);
997 drm_printf_indent(p, indent + 1, "offset[%u]=%u\n", i, fb->offsets[i]);
998 drm_printf_indent(p, indent + 1, "obj[%u]:%s\n", i,
999 fb->obj[i] ? "" : "(null)");
1000 if (fb->obj[i])
1001 drm_gem_print_info(p, indent + 2, fb->obj[i]);
1002 }
1003}
1004
1005#ifdef CONFIG_DEBUG_FS
1006static int drm_framebuffer_info(struct seq_file *m, void *data)
1007{
1008 struct drm_info_node *node = m->private;
1009 struct drm_device *dev = node->minor->dev;
1010 struct drm_printer p = drm_seq_file_printer(m);
1011 struct drm_framebuffer *fb;
1012
1013 mutex_lock(&dev->mode_config.fb_lock);
1014 drm_for_each_fb(fb, dev) {
1015 drm_printf(&p, "framebuffer[%u]:\n", fb->base.id);
1016 drm_framebuffer_print_info(&p, 1, fb);
1017 }
1018 mutex_unlock(&dev->mode_config.fb_lock);
1019
1020 return 0;
1021}
1022
1023static const struct drm_info_list drm_framebuffer_debugfs_list[] = {
1024 { "framebuffer", drm_framebuffer_info, 0 },
1025};
1026
1027int drm_framebuffer_debugfs_init(struct drm_minor *minor)
1028{
1029 return drm_debugfs_create_files(drm_framebuffer_debugfs_list,
1030 ARRAY_SIZE(drm_framebuffer_debugfs_list),
1031 minor->debugfs_root, minor);
1032}
1033#endif