drm: Per-plane locking
[deliverable/linux.git] / drivers / gpu / drm / drm_crtc.c
1 /*
2 * Copyright (c) 2006-2008 Intel Corporation
3 * Copyright (c) 2007 Dave Airlie <airlied@linux.ie>
4 * Copyright (c) 2008 Red Hat Inc.
5 *
6 * DRM core CRTC related functions
7 *
8 * Permission to use, copy, modify, distribute, and sell this software and its
9 * documentation for any purpose is hereby granted without fee, provided that
10 * the above copyright notice appear in all copies and that both that copyright
11 * notice and this permission notice appear in supporting documentation, and
12 * that the name of the copyright holders not be used in advertising or
13 * publicity pertaining to distribution of the software without specific,
14 * written prior permission. The copyright holders make no representations
15 * about the suitability of this software for any purpose. It is provided "as
16 * is" without express or implied warranty.
17 *
18 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
19 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
20 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
21 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
22 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
23 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
24 * OF THIS SOFTWARE.
25 *
26 * Authors:
27 * Keith Packard
28 * Eric Anholt <eric@anholt.net>
29 * Dave Airlie <airlied@linux.ie>
30 * Jesse Barnes <jesse.barnes@intel.com>
31 */
32 #include <linux/ctype.h>
33 #include <linux/list.h>
34 #include <linux/slab.h>
35 #include <linux/export.h>
36 #include <drm/drmP.h>
37 #include <drm/drm_crtc.h>
38 #include <drm/drm_edid.h>
39 #include <drm/drm_fourcc.h>
40 #include <drm/drm_modeset_lock.h>
41
42 #include "drm_crtc_internal.h"
43 #include "drm_internal.h"
44
45 static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
46 struct drm_mode_fb_cmd2 *r,
47 struct drm_file *file_priv);
48
49 /* Avoid boilerplate. I'm tired of typing. */
50 #define DRM_ENUM_NAME_FN(fnname, list) \
51 const char *fnname(int val) \
52 { \
53 int i; \
54 for (i = 0; i < ARRAY_SIZE(list); i++) { \
55 if (list[i].type == val) \
56 return list[i].name; \
57 } \
58 return "(unknown)"; \
59 }
60
61 /*
62 * Global properties
63 */
64 static const struct drm_prop_enum_list drm_dpms_enum_list[] =
65 { { DRM_MODE_DPMS_ON, "On" },
66 { DRM_MODE_DPMS_STANDBY, "Standby" },
67 { DRM_MODE_DPMS_SUSPEND, "Suspend" },
68 { DRM_MODE_DPMS_OFF, "Off" }
69 };
70
71 DRM_ENUM_NAME_FN(drm_get_dpms_name, drm_dpms_enum_list)
72
73 static const struct drm_prop_enum_list drm_plane_type_enum_list[] =
74 {
75 { DRM_PLANE_TYPE_OVERLAY, "Overlay" },
76 { DRM_PLANE_TYPE_PRIMARY, "Primary" },
77 { DRM_PLANE_TYPE_CURSOR, "Cursor" },
78 };
79
80 /*
81 * Optional properties
82 */
83 static const struct drm_prop_enum_list drm_scaling_mode_enum_list[] =
84 {
85 { DRM_MODE_SCALE_NONE, "None" },
86 { DRM_MODE_SCALE_FULLSCREEN, "Full" },
87 { DRM_MODE_SCALE_CENTER, "Center" },
88 { DRM_MODE_SCALE_ASPECT, "Full aspect" },
89 };
90
91 static const struct drm_prop_enum_list drm_aspect_ratio_enum_list[] = {
92 { DRM_MODE_PICTURE_ASPECT_NONE, "Automatic" },
93 { DRM_MODE_PICTURE_ASPECT_4_3, "4:3" },
94 { DRM_MODE_PICTURE_ASPECT_16_9, "16:9" },
95 };
96
97 /*
98 * Non-global properties, but "required" for certain connectors.
99 */
100 static const struct drm_prop_enum_list drm_dvi_i_select_enum_list[] =
101 {
102 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
103 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
104 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
105 };
106
107 DRM_ENUM_NAME_FN(drm_get_dvi_i_select_name, drm_dvi_i_select_enum_list)
108
109 static const struct drm_prop_enum_list drm_dvi_i_subconnector_enum_list[] =
110 {
111 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
112 { DRM_MODE_SUBCONNECTOR_DVID, "DVI-D" }, /* DVI-I */
113 { DRM_MODE_SUBCONNECTOR_DVIA, "DVI-A" }, /* DVI-I */
114 };
115
116 DRM_ENUM_NAME_FN(drm_get_dvi_i_subconnector_name,
117 drm_dvi_i_subconnector_enum_list)
118
119 static const struct drm_prop_enum_list drm_tv_select_enum_list[] =
120 {
121 { DRM_MODE_SUBCONNECTOR_Automatic, "Automatic" }, /* DVI-I and TV-out */
122 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
123 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
124 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
125 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
126 };
127
128 DRM_ENUM_NAME_FN(drm_get_tv_select_name, drm_tv_select_enum_list)
129
130 static const struct drm_prop_enum_list drm_tv_subconnector_enum_list[] =
131 {
132 { DRM_MODE_SUBCONNECTOR_Unknown, "Unknown" }, /* DVI-I and TV-out */
133 { DRM_MODE_SUBCONNECTOR_Composite, "Composite" }, /* TV-out */
134 { DRM_MODE_SUBCONNECTOR_SVIDEO, "SVIDEO" }, /* TV-out */
135 { DRM_MODE_SUBCONNECTOR_Component, "Component" }, /* TV-out */
136 { DRM_MODE_SUBCONNECTOR_SCART, "SCART" }, /* TV-out */
137 };
138
139 DRM_ENUM_NAME_FN(drm_get_tv_subconnector_name,
140 drm_tv_subconnector_enum_list)
141
142 static const struct drm_prop_enum_list drm_dirty_info_enum_list[] = {
143 { DRM_MODE_DIRTY_OFF, "Off" },
144 { DRM_MODE_DIRTY_ON, "On" },
145 { DRM_MODE_DIRTY_ANNOTATE, "Annotate" },
146 };
147
148 struct drm_conn_prop_enum_list {
149 int type;
150 const char *name;
151 struct ida ida;
152 };
153
154 /*
155 * Connector and encoder types.
156 */
157 static struct drm_conn_prop_enum_list drm_connector_enum_list[] =
158 { { DRM_MODE_CONNECTOR_Unknown, "Unknown" },
159 { DRM_MODE_CONNECTOR_VGA, "VGA" },
160 { DRM_MODE_CONNECTOR_DVII, "DVI-I" },
161 { DRM_MODE_CONNECTOR_DVID, "DVI-D" },
162 { DRM_MODE_CONNECTOR_DVIA, "DVI-A" },
163 { DRM_MODE_CONNECTOR_Composite, "Composite" },
164 { DRM_MODE_CONNECTOR_SVIDEO, "SVIDEO" },
165 { DRM_MODE_CONNECTOR_LVDS, "LVDS" },
166 { DRM_MODE_CONNECTOR_Component, "Component" },
167 { DRM_MODE_CONNECTOR_9PinDIN, "DIN" },
168 { DRM_MODE_CONNECTOR_DisplayPort, "DP" },
169 { DRM_MODE_CONNECTOR_HDMIA, "HDMI-A" },
170 { DRM_MODE_CONNECTOR_HDMIB, "HDMI-B" },
171 { DRM_MODE_CONNECTOR_TV, "TV" },
172 { DRM_MODE_CONNECTOR_eDP, "eDP" },
173 { DRM_MODE_CONNECTOR_VIRTUAL, "Virtual" },
174 { DRM_MODE_CONNECTOR_DSI, "DSI" },
175 };
176
177 static const struct drm_prop_enum_list drm_encoder_enum_list[] =
178 { { DRM_MODE_ENCODER_NONE, "None" },
179 { DRM_MODE_ENCODER_DAC, "DAC" },
180 { DRM_MODE_ENCODER_TMDS, "TMDS" },
181 { DRM_MODE_ENCODER_LVDS, "LVDS" },
182 { DRM_MODE_ENCODER_TVDAC, "TV" },
183 { DRM_MODE_ENCODER_VIRTUAL, "Virtual" },
184 { DRM_MODE_ENCODER_DSI, "DSI" },
185 { DRM_MODE_ENCODER_DPMST, "DP MST" },
186 };
187
188 static const struct drm_prop_enum_list drm_subpixel_enum_list[] =
189 {
190 { SubPixelUnknown, "Unknown" },
191 { SubPixelHorizontalRGB, "Horizontal RGB" },
192 { SubPixelHorizontalBGR, "Horizontal BGR" },
193 { SubPixelVerticalRGB, "Vertical RGB" },
194 { SubPixelVerticalBGR, "Vertical BGR" },
195 { SubPixelNone, "None" },
196 };
197
198 void drm_connector_ida_init(void)
199 {
200 int i;
201
202 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
203 ida_init(&drm_connector_enum_list[i].ida);
204 }
205
206 void drm_connector_ida_destroy(void)
207 {
208 int i;
209
210 for (i = 0; i < ARRAY_SIZE(drm_connector_enum_list); i++)
211 ida_destroy(&drm_connector_enum_list[i].ida);
212 }
213
214 /**
215 * drm_get_connector_status_name - return a string for connector status
216 * @status: connector status to compute name of
217 *
218 * In contrast to the other drm_get_*_name functions this one here returns a
219 * const pointer and hence is threadsafe.
220 */
221 const char *drm_get_connector_status_name(enum drm_connector_status status)
222 {
223 if (status == connector_status_connected)
224 return "connected";
225 else if (status == connector_status_disconnected)
226 return "disconnected";
227 else
228 return "unknown";
229 }
230 EXPORT_SYMBOL(drm_get_connector_status_name);
231
232 /**
233 * drm_get_subpixel_order_name - return a string for a given subpixel enum
234 * @order: enum of subpixel_order
235 *
236 * Note you could abuse this and return something out of bounds, but that
237 * would be a caller error. No unscrubbed user data should make it here.
238 */
239 const char *drm_get_subpixel_order_name(enum subpixel_order order)
240 {
241 return drm_subpixel_enum_list[order].name;
242 }
243 EXPORT_SYMBOL(drm_get_subpixel_order_name);
244
245 static char printable_char(int c)
246 {
247 return isascii(c) && isprint(c) ? c : '?';
248 }
249
250 /**
251 * drm_get_format_name - return a string for drm fourcc format
252 * @format: format to compute name of
253 *
254 * Note that the buffer used by this function is globally shared and owned by
255 * the function itself.
256 *
257 * FIXME: This isn't really multithreading safe.
258 */
259 const char *drm_get_format_name(uint32_t format)
260 {
261 static char buf[32];
262
263 snprintf(buf, sizeof(buf),
264 "%c%c%c%c %s-endian (0x%08x)",
265 printable_char(format & 0xff),
266 printable_char((format >> 8) & 0xff),
267 printable_char((format >> 16) & 0xff),
268 printable_char((format >> 24) & 0x7f),
269 format & DRM_FORMAT_BIG_ENDIAN ? "big" : "little",
270 format);
271
272 return buf;
273 }
274 EXPORT_SYMBOL(drm_get_format_name);
275
276 /*
277 * Internal function to assign a slot in the object idr and optionally
278 * register the object into the idr.
279 */
280 static int drm_mode_object_get_reg(struct drm_device *dev,
281 struct drm_mode_object *obj,
282 uint32_t obj_type,
283 bool register_obj)
284 {
285 int ret;
286
287 mutex_lock(&dev->mode_config.idr_mutex);
288 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
289 if (ret >= 0) {
290 /*
291 * Set up the object linking under the protection of the idr
292 * lock so that other users can't see inconsistent state.
293 */
294 obj->id = ret;
295 obj->type = obj_type;
296 }
297 mutex_unlock(&dev->mode_config.idr_mutex);
298
299 return ret < 0 ? ret : 0;
300 }
301
302 /**
303 * drm_mode_object_get - allocate a new modeset identifier
304 * @dev: DRM device
305 * @obj: object pointer, used to generate unique ID
306 * @obj_type: object type
307 *
308 * Create a unique identifier based on @ptr in @dev's identifier space. Used
309 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
310 * modeset identifiers are _not_ reference counted. Hence don't use this for
311 * reference counted modeset objects like framebuffers.
312 *
313 * Returns:
314 * New unique (relative to other objects in @dev) integer identifier for the
315 * object.
316 */
317 int drm_mode_object_get(struct drm_device *dev,
318 struct drm_mode_object *obj, uint32_t obj_type)
319 {
320 return drm_mode_object_get_reg(dev, obj, obj_type, true);
321 }
322
323 static void drm_mode_object_register(struct drm_device *dev,
324 struct drm_mode_object *obj)
325 {
326 mutex_lock(&dev->mode_config.idr_mutex);
327 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
328 mutex_unlock(&dev->mode_config.idr_mutex);
329 }
330
331 /**
332 * drm_mode_object_put - free a modeset identifer
333 * @dev: DRM device
334 * @object: object to free
335 *
336 * Free @id from @dev's unique identifier pool. Note that despite the _get
337 * postfix modeset identifiers are _not_ reference counted. Hence don't use this
338 * for reference counted modeset objects like framebuffers.
339 */
340 void drm_mode_object_put(struct drm_device *dev,
341 struct drm_mode_object *object)
342 {
343 mutex_lock(&dev->mode_config.idr_mutex);
344 idr_remove(&dev->mode_config.crtc_idr, object->id);
345 mutex_unlock(&dev->mode_config.idr_mutex);
346 }
347
348 static struct drm_mode_object *_object_find(struct drm_device *dev,
349 uint32_t id, uint32_t type)
350 {
351 struct drm_mode_object *obj = NULL;
352
353 mutex_lock(&dev->mode_config.idr_mutex);
354 obj = idr_find(&dev->mode_config.crtc_idr, id);
355 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
356 obj = NULL;
357 if (obj && obj->id != id)
358 obj = NULL;
359 /* don't leak out unref'd fb's */
360 if (obj && (obj->type == DRM_MODE_OBJECT_FB))
361 obj = NULL;
362 mutex_unlock(&dev->mode_config.idr_mutex);
363
364 return obj;
365 }
366
367 /**
368 * drm_mode_object_find - look up a drm object with static lifetime
369 * @dev: drm device
370 * @id: id of the mode object
371 * @type: type of the mode object
372 *
373 * Note that framebuffers cannot be looked up with this functions - since those
374 * are reference counted, they need special treatment. Even with
375 * DRM_MODE_OBJECT_ANY (although that will simply return NULL
376 * rather than WARN_ON()).
377 */
378 struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
379 uint32_t id, uint32_t type)
380 {
381 struct drm_mode_object *obj = NULL;
382
383 /* Framebuffers are reference counted and need their own lookup
384 * function.*/
385 WARN_ON(type == DRM_MODE_OBJECT_FB);
386 obj = _object_find(dev, id, type);
387 return obj;
388 }
389 EXPORT_SYMBOL(drm_mode_object_find);
390
391 /**
392 * drm_framebuffer_init - initialize a framebuffer
393 * @dev: DRM device
394 * @fb: framebuffer to be initialized
395 * @funcs: ... with these functions
396 *
397 * Allocates an ID for the framebuffer's parent mode object, sets its mode
398 * functions & device file and adds it to the master fd list.
399 *
400 * IMPORTANT:
401 * This functions publishes the fb and makes it available for concurrent access
402 * by other users. Which means by this point the fb _must_ be fully set up -
403 * since all the fb attributes are invariant over its lifetime, no further
404 * locking but only correct reference counting is required.
405 *
406 * Returns:
407 * Zero on success, error code on failure.
408 */
409 int drm_framebuffer_init(struct drm_device *dev, struct drm_framebuffer *fb,
410 const struct drm_framebuffer_funcs *funcs)
411 {
412 int ret;
413
414 mutex_lock(&dev->mode_config.fb_lock);
415 kref_init(&fb->refcount);
416 INIT_LIST_HEAD(&fb->filp_head);
417 fb->dev = dev;
418 fb->funcs = funcs;
419
420 ret = drm_mode_object_get(dev, &fb->base, DRM_MODE_OBJECT_FB);
421 if (ret)
422 goto out;
423
424 dev->mode_config.num_fb++;
425 list_add(&fb->head, &dev->mode_config.fb_list);
426 out:
427 mutex_unlock(&dev->mode_config.fb_lock);
428
429 return 0;
430 }
431 EXPORT_SYMBOL(drm_framebuffer_init);
432
433 /* dev->mode_config.fb_lock must be held! */
434 static void __drm_framebuffer_unregister(struct drm_device *dev,
435 struct drm_framebuffer *fb)
436 {
437 mutex_lock(&dev->mode_config.idr_mutex);
438 idr_remove(&dev->mode_config.crtc_idr, fb->base.id);
439 mutex_unlock(&dev->mode_config.idr_mutex);
440
441 fb->base.id = 0;
442 }
443
444 static void drm_framebuffer_free(struct kref *kref)
445 {
446 struct drm_framebuffer *fb =
447 container_of(kref, struct drm_framebuffer, refcount);
448 struct drm_device *dev = fb->dev;
449
450 /*
451 * The lookup idr holds a weak reference, which has not necessarily been
452 * removed at this point. Check for that.
453 */
454 mutex_lock(&dev->mode_config.fb_lock);
455 if (fb->base.id) {
456 /* Mark fb as reaped and drop idr ref. */
457 __drm_framebuffer_unregister(dev, fb);
458 }
459 mutex_unlock(&dev->mode_config.fb_lock);
460
461 fb->funcs->destroy(fb);
462 }
463
464 static struct drm_framebuffer *__drm_framebuffer_lookup(struct drm_device *dev,
465 uint32_t id)
466 {
467 struct drm_mode_object *obj = NULL;
468 struct drm_framebuffer *fb;
469
470 mutex_lock(&dev->mode_config.idr_mutex);
471 obj = idr_find(&dev->mode_config.crtc_idr, id);
472 if (!obj || (obj->type != DRM_MODE_OBJECT_FB) || (obj->id != id))
473 fb = NULL;
474 else
475 fb = obj_to_fb(obj);
476 mutex_unlock(&dev->mode_config.idr_mutex);
477
478 return fb;
479 }
480
481 /**
482 * drm_framebuffer_lookup - look up a drm framebuffer and grab a reference
483 * @dev: drm device
484 * @id: id of the fb object
485 *
486 * If successful, this grabs an additional reference to the framebuffer -
487 * callers need to make sure to eventually unreference the returned framebuffer
488 * again, using @drm_framebuffer_unreference.
489 */
490 struct drm_framebuffer *drm_framebuffer_lookup(struct drm_device *dev,
491 uint32_t id)
492 {
493 struct drm_framebuffer *fb;
494
495 mutex_lock(&dev->mode_config.fb_lock);
496 fb = __drm_framebuffer_lookup(dev, id);
497 if (fb) {
498 if (!kref_get_unless_zero(&fb->refcount))
499 fb = NULL;
500 }
501 mutex_unlock(&dev->mode_config.fb_lock);
502
503 return fb;
504 }
505 EXPORT_SYMBOL(drm_framebuffer_lookup);
506
507 /**
508 * drm_framebuffer_unreference - unref a framebuffer
509 * @fb: framebuffer to unref
510 *
511 * This functions decrements the fb's refcount and frees it if it drops to zero.
512 */
513 void drm_framebuffer_unreference(struct drm_framebuffer *fb)
514 {
515 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
516 kref_put(&fb->refcount, drm_framebuffer_free);
517 }
518 EXPORT_SYMBOL(drm_framebuffer_unreference);
519
520 /**
521 * drm_framebuffer_reference - incr the fb refcnt
522 * @fb: framebuffer
523 *
524 * This functions increments the fb's refcount.
525 */
526 void drm_framebuffer_reference(struct drm_framebuffer *fb)
527 {
528 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
529 kref_get(&fb->refcount);
530 }
531 EXPORT_SYMBOL(drm_framebuffer_reference);
532
533 static void drm_framebuffer_free_bug(struct kref *kref)
534 {
535 BUG();
536 }
537
538 static void __drm_framebuffer_unreference(struct drm_framebuffer *fb)
539 {
540 DRM_DEBUG("%p: FB ID: %d (%d)\n", fb, fb->base.id, atomic_read(&fb->refcount.refcount));
541 kref_put(&fb->refcount, drm_framebuffer_free_bug);
542 }
543
544 /**
545 * drm_framebuffer_unregister_private - unregister a private fb from the lookup idr
546 * @fb: fb to unregister
547 *
548 * Drivers need to call this when cleaning up driver-private framebuffers, e.g.
549 * those used for fbdev. Note that the caller must hold a reference of it's own,
550 * i.e. the object may not be destroyed through this call (since it'll lead to a
551 * locking inversion).
552 */
553 void drm_framebuffer_unregister_private(struct drm_framebuffer *fb)
554 {
555 struct drm_device *dev = fb->dev;
556
557 mutex_lock(&dev->mode_config.fb_lock);
558 /* Mark fb as reaped and drop idr ref. */
559 __drm_framebuffer_unregister(dev, fb);
560 mutex_unlock(&dev->mode_config.fb_lock);
561 }
562 EXPORT_SYMBOL(drm_framebuffer_unregister_private);
563
564 /**
565 * drm_framebuffer_cleanup - remove a framebuffer object
566 * @fb: framebuffer to remove
567 *
568 * Cleanup framebuffer. This function is intended to be used from the drivers
569 * ->destroy callback. It can also be used to clean up driver private
570 * framebuffers embedded into a larger structure.
571 *
572 * Note that this function does not remove the fb from active usuage - if it is
573 * still used anywhere, hilarity can ensue since userspace could call getfb on
574 * the id and get back -EINVAL. Obviously no concern at driver unload time.
575 *
576 * Also, the framebuffer will not be removed from the lookup idr - for
577 * user-created framebuffers this will happen in in the rmfb ioctl. For
578 * driver-private objects (e.g. for fbdev) drivers need to explicitly call
579 * drm_framebuffer_unregister_private.
580 */
581 void drm_framebuffer_cleanup(struct drm_framebuffer *fb)
582 {
583 struct drm_device *dev = fb->dev;
584
585 mutex_lock(&dev->mode_config.fb_lock);
586 list_del(&fb->head);
587 dev->mode_config.num_fb--;
588 mutex_unlock(&dev->mode_config.fb_lock);
589 }
590 EXPORT_SYMBOL(drm_framebuffer_cleanup);
591
592 /**
593 * drm_framebuffer_remove - remove and unreference a framebuffer object
594 * @fb: framebuffer to remove
595 *
596 * Scans all the CRTCs and planes in @dev's mode_config. If they're
597 * using @fb, removes it, setting it to NULL. Then drops the reference to the
598 * passed-in framebuffer. Might take the modeset locks.
599 *
600 * Note that this function optimizes the cleanup away if the caller holds the
601 * last reference to the framebuffer. It is also guaranteed to not take the
602 * modeset locks in this case.
603 */
604 void drm_framebuffer_remove(struct drm_framebuffer *fb)
605 {
606 struct drm_device *dev = fb->dev;
607 struct drm_crtc *crtc;
608 struct drm_plane *plane;
609 struct drm_mode_set set;
610 int ret;
611
612 WARN_ON(!list_empty(&fb->filp_head));
613
614 /*
615 * drm ABI mandates that we remove any deleted framebuffers from active
616 * useage. But since most sane clients only remove framebuffers they no
617 * longer need, try to optimize this away.
618 *
619 * Since we're holding a reference ourselves, observing a refcount of 1
620 * means that we're the last holder and can skip it. Also, the refcount
621 * can never increase from 1 again, so we don't need any barriers or
622 * locks.
623 *
624 * Note that userspace could try to race with use and instate a new
625 * usage _after_ we've cleared all current ones. End result will be an
626 * in-use fb with fb-id == 0. Userspace is allowed to shoot its own foot
627 * in this manner.
628 */
629 if (atomic_read(&fb->refcount.refcount) > 1) {
630 drm_modeset_lock_all(dev);
631 /* remove from any CRTC */
632 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
633 if (crtc->primary->fb == fb) {
634 /* should turn off the crtc */
635 memset(&set, 0, sizeof(struct drm_mode_set));
636 set.crtc = crtc;
637 set.fb = NULL;
638 ret = drm_mode_set_config_internal(&set);
639 if (ret)
640 DRM_ERROR("failed to reset crtc %p when fb was deleted\n", crtc);
641 }
642 }
643
644 list_for_each_entry(plane, &dev->mode_config.plane_list, head) {
645 if (plane->fb == fb)
646 drm_plane_force_disable(plane);
647 }
648 drm_modeset_unlock_all(dev);
649 }
650
651 drm_framebuffer_unreference(fb);
652 }
653 EXPORT_SYMBOL(drm_framebuffer_remove);
654
655 DEFINE_WW_CLASS(crtc_ww_class);
656
657 /**
658 * drm_crtc_init_with_planes - Initialise a new CRTC object with
659 * specified primary and cursor planes.
660 * @dev: DRM device
661 * @crtc: CRTC object to init
662 * @primary: Primary plane for CRTC
663 * @cursor: Cursor plane for CRTC
664 * @funcs: callbacks for the new CRTC
665 *
666 * Inits a new object created as base part of a driver crtc object.
667 *
668 * Returns:
669 * Zero on success, error code on failure.
670 */
671 int drm_crtc_init_with_planes(struct drm_device *dev, struct drm_crtc *crtc,
672 struct drm_plane *primary,
673 struct drm_plane *cursor,
674 const struct drm_crtc_funcs *funcs)
675 {
676 struct drm_mode_config *config = &dev->mode_config;
677 int ret;
678
679 crtc->dev = dev;
680 crtc->funcs = funcs;
681 crtc->invert_dimensions = false;
682
683 drm_modeset_lock_init(&crtc->mutex);
684 ret = drm_mode_object_get(dev, &crtc->base, DRM_MODE_OBJECT_CRTC);
685 if (ret)
686 goto out;
687
688 crtc->base.properties = &crtc->properties;
689
690 list_add_tail(&crtc->head, &config->crtc_list);
691 config->num_crtc++;
692
693 crtc->primary = primary;
694 crtc->cursor = cursor;
695 if (primary)
696 primary->possible_crtcs = 1 << drm_crtc_index(crtc);
697 if (cursor)
698 cursor->possible_crtcs = 1 << drm_crtc_index(crtc);
699
700 out:
701
702 return ret;
703 }
704 EXPORT_SYMBOL(drm_crtc_init_with_planes);
705
706 /**
707 * drm_crtc_cleanup - Clean up the core crtc usage
708 * @crtc: CRTC to cleanup
709 *
710 * This function cleans up @crtc and removes it from the DRM mode setting
711 * core. Note that the function does *not* free the crtc structure itself,
712 * this is the responsibility of the caller.
713 */
714 void drm_crtc_cleanup(struct drm_crtc *crtc)
715 {
716 struct drm_device *dev = crtc->dev;
717
718 kfree(crtc->gamma_store);
719 crtc->gamma_store = NULL;
720
721 drm_modeset_lock_fini(&crtc->mutex);
722
723 drm_mode_object_put(dev, &crtc->base);
724 list_del(&crtc->head);
725 dev->mode_config.num_crtc--;
726 }
727 EXPORT_SYMBOL(drm_crtc_cleanup);
728
729 /**
730 * drm_crtc_index - find the index of a registered CRTC
731 * @crtc: CRTC to find index for
732 *
733 * Given a registered CRTC, return the index of that CRTC within a DRM
734 * device's list of CRTCs.
735 */
736 unsigned int drm_crtc_index(struct drm_crtc *crtc)
737 {
738 unsigned int index = 0;
739 struct drm_crtc *tmp;
740
741 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
742 if (tmp == crtc)
743 return index;
744
745 index++;
746 }
747
748 BUG();
749 }
750 EXPORT_SYMBOL(drm_crtc_index);
751
752 /*
753 * drm_mode_remove - remove and free a mode
754 * @connector: connector list to modify
755 * @mode: mode to remove
756 *
757 * Remove @mode from @connector's mode list, then free it.
758 */
759 static void drm_mode_remove(struct drm_connector *connector,
760 struct drm_display_mode *mode)
761 {
762 list_del(&mode->head);
763 drm_mode_destroy(connector->dev, mode);
764 }
765
766 /**
767 * drm_connector_get_cmdline_mode - reads the user's cmdline mode
768 * @connector: connector to quwery
769 *
770 * The kernel supports per-connector configration of its consoles through
771 * use of the video= parameter. This function parses that option and
772 * extracts the user's specified mode (or enable/disable status) for a
773 * particular connector. This is typically only used during the early fbdev
774 * setup.
775 */
776 static void drm_connector_get_cmdline_mode(struct drm_connector *connector)
777 {
778 struct drm_cmdline_mode *mode = &connector->cmdline_mode;
779 char *option = NULL;
780
781 if (fb_get_options(connector->name, &option))
782 return;
783
784 if (!drm_mode_parse_command_line_for_connector(option,
785 connector,
786 mode))
787 return;
788
789 if (mode->force) {
790 const char *s;
791
792 switch (mode->force) {
793 case DRM_FORCE_OFF:
794 s = "OFF";
795 break;
796 case DRM_FORCE_ON_DIGITAL:
797 s = "ON - dig";
798 break;
799 default:
800 case DRM_FORCE_ON:
801 s = "ON";
802 break;
803 }
804
805 DRM_INFO("forcing %s connector %s\n", connector->name, s);
806 connector->force = mode->force;
807 }
808
809 DRM_DEBUG_KMS("cmdline mode for connector %s %dx%d@%dHz%s%s%s\n",
810 connector->name,
811 mode->xres, mode->yres,
812 mode->refresh_specified ? mode->refresh : 60,
813 mode->rb ? " reduced blanking" : "",
814 mode->margins ? " with margins" : "",
815 mode->interlace ? " interlaced" : "");
816 }
817
818 /**
819 * drm_connector_init - Init a preallocated connector
820 * @dev: DRM device
821 * @connector: the connector to init
822 * @funcs: callbacks for this connector
823 * @connector_type: user visible type of the connector
824 *
825 * Initialises a preallocated connector. Connectors should be
826 * subclassed as part of driver connector objects.
827 *
828 * Returns:
829 * Zero on success, error code on failure.
830 */
831 int drm_connector_init(struct drm_device *dev,
832 struct drm_connector *connector,
833 const struct drm_connector_funcs *funcs,
834 int connector_type)
835 {
836 int ret;
837 struct ida *connector_ida =
838 &drm_connector_enum_list[connector_type].ida;
839
840 drm_modeset_lock_all(dev);
841
842 ret = drm_mode_object_get_reg(dev, &connector->base, DRM_MODE_OBJECT_CONNECTOR, false);
843 if (ret)
844 goto out_unlock;
845
846 connector->base.properties = &connector->properties;
847 connector->dev = dev;
848 connector->funcs = funcs;
849 connector->connector_type = connector_type;
850 connector->connector_type_id =
851 ida_simple_get(connector_ida, 1, 0, GFP_KERNEL);
852 if (connector->connector_type_id < 0) {
853 ret = connector->connector_type_id;
854 goto out_put;
855 }
856 connector->name =
857 kasprintf(GFP_KERNEL, "%s-%d",
858 drm_connector_enum_list[connector_type].name,
859 connector->connector_type_id);
860 if (!connector->name) {
861 ret = -ENOMEM;
862 goto out_put;
863 }
864
865 INIT_LIST_HEAD(&connector->probed_modes);
866 INIT_LIST_HEAD(&connector->modes);
867 connector->edid_blob_ptr = NULL;
868 connector->status = connector_status_unknown;
869
870 drm_connector_get_cmdline_mode(connector);
871
872 list_add_tail(&connector->head, &dev->mode_config.connector_list);
873 dev->mode_config.num_connector++;
874
875 if (connector_type != DRM_MODE_CONNECTOR_VIRTUAL)
876 drm_object_attach_property(&connector->base,
877 dev->mode_config.edid_property,
878 0);
879
880 drm_object_attach_property(&connector->base,
881 dev->mode_config.dpms_property, 0);
882
883 connector->debugfs_entry = NULL;
884
885 out_put:
886 if (ret)
887 drm_mode_object_put(dev, &connector->base);
888
889 out_unlock:
890 drm_modeset_unlock_all(dev);
891
892 return ret;
893 }
894 EXPORT_SYMBOL(drm_connector_init);
895
896 /**
897 * drm_connector_cleanup - cleans up an initialised connector
898 * @connector: connector to cleanup
899 *
900 * Cleans up the connector but doesn't free the object.
901 */
902 void drm_connector_cleanup(struct drm_connector *connector)
903 {
904 struct drm_device *dev = connector->dev;
905 struct drm_display_mode *mode, *t;
906
907 list_for_each_entry_safe(mode, t, &connector->probed_modes, head)
908 drm_mode_remove(connector, mode);
909
910 list_for_each_entry_safe(mode, t, &connector->modes, head)
911 drm_mode_remove(connector, mode);
912
913 ida_remove(&drm_connector_enum_list[connector->connector_type].ida,
914 connector->connector_type_id);
915
916 drm_mode_object_put(dev, &connector->base);
917 kfree(connector->name);
918 connector->name = NULL;
919 list_del(&connector->head);
920 dev->mode_config.num_connector--;
921 }
922 EXPORT_SYMBOL(drm_connector_cleanup);
923
924 /**
925 * drm_connector_index - find the index of a registered connector
926 * @connector: connector to find index for
927 *
928 * Given a registered connector, return the index of that connector within a DRM
929 * device's list of connectors.
930 */
931 unsigned int drm_connector_index(struct drm_connector *connector)
932 {
933 unsigned int index = 0;
934 struct drm_connector *tmp;
935
936 list_for_each_entry(tmp, &connector->dev->mode_config.connector_list, head) {
937 if (tmp == connector)
938 return index;
939
940 index++;
941 }
942
943 BUG();
944 }
945 EXPORT_SYMBOL(drm_connector_index);
946
947 /**
948 * drm_connector_register - register a connector
949 * @connector: the connector to register
950 *
951 * Register userspace interfaces for a connector
952 *
953 * Returns:
954 * Zero on success, error code on failure.
955 */
956 int drm_connector_register(struct drm_connector *connector)
957 {
958 int ret;
959
960 drm_mode_object_register(connector->dev, &connector->base);
961
962 ret = drm_sysfs_connector_add(connector);
963 if (ret)
964 return ret;
965
966 ret = drm_debugfs_connector_add(connector);
967 if (ret) {
968 drm_sysfs_connector_remove(connector);
969 return ret;
970 }
971
972 return 0;
973 }
974 EXPORT_SYMBOL(drm_connector_register);
975
976 /**
977 * drm_connector_unregister - unregister a connector
978 * @connector: the connector to unregister
979 *
980 * Unregister userspace interfaces for a connector
981 */
982 void drm_connector_unregister(struct drm_connector *connector)
983 {
984 drm_sysfs_connector_remove(connector);
985 drm_debugfs_connector_remove(connector);
986 }
987 EXPORT_SYMBOL(drm_connector_unregister);
988
989
990 /**
991 * drm_connector_unplug_all - unregister connector userspace interfaces
992 * @dev: drm device
993 *
994 * This function unregisters all connector userspace interfaces in sysfs. Should
995 * be call when the device is disconnected, e.g. from an usb driver's
996 * ->disconnect callback.
997 */
998 void drm_connector_unplug_all(struct drm_device *dev)
999 {
1000 struct drm_connector *connector;
1001
1002 /* taking the mode config mutex ends up in a clash with sysfs */
1003 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1004 drm_connector_unregister(connector);
1005
1006 }
1007 EXPORT_SYMBOL(drm_connector_unplug_all);
1008
1009 /**
1010 * drm_bridge_init - initialize a drm transcoder/bridge
1011 * @dev: drm device
1012 * @bridge: transcoder/bridge to set up
1013 * @funcs: bridge function table
1014 *
1015 * Initialises a preallocated bridge. Bridges should be
1016 * subclassed as part of driver connector objects.
1017 *
1018 * Returns:
1019 * Zero on success, error code on failure.
1020 */
1021 int drm_bridge_init(struct drm_device *dev, struct drm_bridge *bridge,
1022 const struct drm_bridge_funcs *funcs)
1023 {
1024 int ret;
1025
1026 drm_modeset_lock_all(dev);
1027
1028 ret = drm_mode_object_get(dev, &bridge->base, DRM_MODE_OBJECT_BRIDGE);
1029 if (ret)
1030 goto out;
1031
1032 bridge->dev = dev;
1033 bridge->funcs = funcs;
1034
1035 list_add_tail(&bridge->head, &dev->mode_config.bridge_list);
1036 dev->mode_config.num_bridge++;
1037
1038 out:
1039 drm_modeset_unlock_all(dev);
1040 return ret;
1041 }
1042 EXPORT_SYMBOL(drm_bridge_init);
1043
1044 /**
1045 * drm_bridge_cleanup - cleans up an initialised bridge
1046 * @bridge: bridge to cleanup
1047 *
1048 * Cleans up the bridge but doesn't free the object.
1049 */
1050 void drm_bridge_cleanup(struct drm_bridge *bridge)
1051 {
1052 struct drm_device *dev = bridge->dev;
1053
1054 drm_modeset_lock_all(dev);
1055 drm_mode_object_put(dev, &bridge->base);
1056 list_del(&bridge->head);
1057 dev->mode_config.num_bridge--;
1058 drm_modeset_unlock_all(dev);
1059 }
1060 EXPORT_SYMBOL(drm_bridge_cleanup);
1061
1062 /**
1063 * drm_encoder_init - Init a preallocated encoder
1064 * @dev: drm device
1065 * @encoder: the encoder to init
1066 * @funcs: callbacks for this encoder
1067 * @encoder_type: user visible type of the encoder
1068 *
1069 * Initialises a preallocated encoder. Encoder should be
1070 * subclassed as part of driver encoder objects.
1071 *
1072 * Returns:
1073 * Zero on success, error code on failure.
1074 */
1075 int drm_encoder_init(struct drm_device *dev,
1076 struct drm_encoder *encoder,
1077 const struct drm_encoder_funcs *funcs,
1078 int encoder_type)
1079 {
1080 int ret;
1081
1082 drm_modeset_lock_all(dev);
1083
1084 ret = drm_mode_object_get(dev, &encoder->base, DRM_MODE_OBJECT_ENCODER);
1085 if (ret)
1086 goto out_unlock;
1087
1088 encoder->dev = dev;
1089 encoder->encoder_type = encoder_type;
1090 encoder->funcs = funcs;
1091 encoder->name = kasprintf(GFP_KERNEL, "%s-%d",
1092 drm_encoder_enum_list[encoder_type].name,
1093 encoder->base.id);
1094 if (!encoder->name) {
1095 ret = -ENOMEM;
1096 goto out_put;
1097 }
1098
1099 list_add_tail(&encoder->head, &dev->mode_config.encoder_list);
1100 dev->mode_config.num_encoder++;
1101
1102 out_put:
1103 if (ret)
1104 drm_mode_object_put(dev, &encoder->base);
1105
1106 out_unlock:
1107 drm_modeset_unlock_all(dev);
1108
1109 return ret;
1110 }
1111 EXPORT_SYMBOL(drm_encoder_init);
1112
1113 /**
1114 * drm_encoder_cleanup - cleans up an initialised encoder
1115 * @encoder: encoder to cleanup
1116 *
1117 * Cleans up the encoder but doesn't free the object.
1118 */
1119 void drm_encoder_cleanup(struct drm_encoder *encoder)
1120 {
1121 struct drm_device *dev = encoder->dev;
1122 drm_modeset_lock_all(dev);
1123 drm_mode_object_put(dev, &encoder->base);
1124 kfree(encoder->name);
1125 encoder->name = NULL;
1126 list_del(&encoder->head);
1127 dev->mode_config.num_encoder--;
1128 drm_modeset_unlock_all(dev);
1129 }
1130 EXPORT_SYMBOL(drm_encoder_cleanup);
1131
1132 /**
1133 * drm_universal_plane_init - Initialize a new universal plane object
1134 * @dev: DRM device
1135 * @plane: plane object to init
1136 * @possible_crtcs: bitmask of possible CRTCs
1137 * @funcs: callbacks for the new plane
1138 * @formats: array of supported formats (%DRM_FORMAT_*)
1139 * @format_count: number of elements in @formats
1140 * @type: type of plane (overlay, primary, cursor)
1141 *
1142 * Initializes a plane object of type @type.
1143 *
1144 * Returns:
1145 * Zero on success, error code on failure.
1146 */
1147 int drm_universal_plane_init(struct drm_device *dev, struct drm_plane *plane,
1148 unsigned long possible_crtcs,
1149 const struct drm_plane_funcs *funcs,
1150 const uint32_t *formats, uint32_t format_count,
1151 enum drm_plane_type type)
1152 {
1153 int ret;
1154
1155 ret = drm_mode_object_get(dev, &plane->base, DRM_MODE_OBJECT_PLANE);
1156 if (ret)
1157 goto out;
1158
1159 drm_modeset_lock_init(&plane->mutex);
1160
1161 plane->base.properties = &plane->properties;
1162 plane->dev = dev;
1163 plane->funcs = funcs;
1164 plane->format_types = kmalloc(sizeof(uint32_t) * format_count,
1165 GFP_KERNEL);
1166 if (!plane->format_types) {
1167 DRM_DEBUG_KMS("out of memory when allocating plane\n");
1168 drm_mode_object_put(dev, &plane->base);
1169 ret = -ENOMEM;
1170 goto out;
1171 }
1172
1173 memcpy(plane->format_types, formats, format_count * sizeof(uint32_t));
1174 plane->format_count = format_count;
1175 plane->possible_crtcs = possible_crtcs;
1176 plane->type = type;
1177
1178 list_add_tail(&plane->head, &dev->mode_config.plane_list);
1179 dev->mode_config.num_total_plane++;
1180 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1181 dev->mode_config.num_overlay_plane++;
1182
1183 drm_object_attach_property(&plane->base,
1184 dev->mode_config.plane_type_property,
1185 plane->type);
1186
1187 out:
1188
1189 return ret;
1190 }
1191 EXPORT_SYMBOL(drm_universal_plane_init);
1192
1193 /**
1194 * drm_plane_init - Initialize a legacy plane
1195 * @dev: DRM device
1196 * @plane: plane object to init
1197 * @possible_crtcs: bitmask of possible CRTCs
1198 * @funcs: callbacks for the new plane
1199 * @formats: array of supported formats (%DRM_FORMAT_*)
1200 * @format_count: number of elements in @formats
1201 * @is_primary: plane type (primary vs overlay)
1202 *
1203 * Legacy API to initialize a DRM plane.
1204 *
1205 * New drivers should call drm_universal_plane_init() instead.
1206 *
1207 * Returns:
1208 * Zero on success, error code on failure.
1209 */
1210 int drm_plane_init(struct drm_device *dev, struct drm_plane *plane,
1211 unsigned long possible_crtcs,
1212 const struct drm_plane_funcs *funcs,
1213 const uint32_t *formats, uint32_t format_count,
1214 bool is_primary)
1215 {
1216 enum drm_plane_type type;
1217
1218 type = is_primary ? DRM_PLANE_TYPE_PRIMARY : DRM_PLANE_TYPE_OVERLAY;
1219 return drm_universal_plane_init(dev, plane, possible_crtcs, funcs,
1220 formats, format_count, type);
1221 }
1222 EXPORT_SYMBOL(drm_plane_init);
1223
1224 /**
1225 * drm_plane_cleanup - Clean up the core plane usage
1226 * @plane: plane to cleanup
1227 *
1228 * This function cleans up @plane and removes it from the DRM mode setting
1229 * core. Note that the function does *not* free the plane structure itself,
1230 * this is the responsibility of the caller.
1231 */
1232 void drm_plane_cleanup(struct drm_plane *plane)
1233 {
1234 struct drm_device *dev = plane->dev;
1235
1236 drm_modeset_lock_all(dev);
1237 kfree(plane->format_types);
1238 drm_mode_object_put(dev, &plane->base);
1239
1240 BUG_ON(list_empty(&plane->head));
1241
1242 list_del(&plane->head);
1243 dev->mode_config.num_total_plane--;
1244 if (plane->type == DRM_PLANE_TYPE_OVERLAY)
1245 dev->mode_config.num_overlay_plane--;
1246 drm_modeset_unlock_all(dev);
1247 }
1248 EXPORT_SYMBOL(drm_plane_cleanup);
1249
1250 /**
1251 * drm_plane_index - find the index of a registered plane
1252 * @plane: plane to find index for
1253 *
1254 * Given a registered plane, return the index of that CRTC within a DRM
1255 * device's list of planes.
1256 */
1257 unsigned int drm_plane_index(struct drm_plane *plane)
1258 {
1259 unsigned int index = 0;
1260 struct drm_plane *tmp;
1261
1262 list_for_each_entry(tmp, &plane->dev->mode_config.plane_list, head) {
1263 if (tmp == plane)
1264 return index;
1265
1266 index++;
1267 }
1268
1269 BUG();
1270 }
1271 EXPORT_SYMBOL(drm_plane_index);
1272
1273 /**
1274 * drm_plane_force_disable - Forcibly disable a plane
1275 * @plane: plane to disable
1276 *
1277 * Forces the plane to be disabled.
1278 *
1279 * Used when the plane's current framebuffer is destroyed,
1280 * and when restoring fbdev mode.
1281 */
1282 void drm_plane_force_disable(struct drm_plane *plane)
1283 {
1284 int ret;
1285
1286 if (!plane->fb)
1287 return;
1288
1289 plane->old_fb = plane->fb;
1290 ret = plane->funcs->disable_plane(plane);
1291 if (ret) {
1292 DRM_ERROR("failed to disable plane with busy fb\n");
1293 plane->old_fb = NULL;
1294 return;
1295 }
1296 /* disconnect the plane from the fb and crtc: */
1297 __drm_framebuffer_unreference(plane->old_fb);
1298 plane->old_fb = NULL;
1299 plane->fb = NULL;
1300 plane->crtc = NULL;
1301 }
1302 EXPORT_SYMBOL(drm_plane_force_disable);
1303
1304 static int drm_mode_create_standard_connector_properties(struct drm_device *dev)
1305 {
1306 struct drm_property *edid;
1307 struct drm_property *dpms;
1308 struct drm_property *dev_path;
1309
1310 /*
1311 * Standard properties (apply to all connectors)
1312 */
1313 edid = drm_property_create(dev, DRM_MODE_PROP_BLOB |
1314 DRM_MODE_PROP_IMMUTABLE,
1315 "EDID", 0);
1316 dev->mode_config.edid_property = edid;
1317
1318 dpms = drm_property_create_enum(dev, 0,
1319 "DPMS", drm_dpms_enum_list,
1320 ARRAY_SIZE(drm_dpms_enum_list));
1321 dev->mode_config.dpms_property = dpms;
1322
1323 dev_path = drm_property_create(dev,
1324 DRM_MODE_PROP_BLOB |
1325 DRM_MODE_PROP_IMMUTABLE,
1326 "PATH", 0);
1327 dev->mode_config.path_property = dev_path;
1328
1329 return 0;
1330 }
1331
1332 static int drm_mode_create_standard_plane_properties(struct drm_device *dev)
1333 {
1334 struct drm_property *type;
1335
1336 /*
1337 * Standard properties (apply to all planes)
1338 */
1339 type = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1340 "type", drm_plane_type_enum_list,
1341 ARRAY_SIZE(drm_plane_type_enum_list));
1342 dev->mode_config.plane_type_property = type;
1343
1344 return 0;
1345 }
1346
1347 /**
1348 * drm_mode_create_dvi_i_properties - create DVI-I specific connector properties
1349 * @dev: DRM device
1350 *
1351 * Called by a driver the first time a DVI-I connector is made.
1352 */
1353 int drm_mode_create_dvi_i_properties(struct drm_device *dev)
1354 {
1355 struct drm_property *dvi_i_selector;
1356 struct drm_property *dvi_i_subconnector;
1357
1358 if (dev->mode_config.dvi_i_select_subconnector_property)
1359 return 0;
1360
1361 dvi_i_selector =
1362 drm_property_create_enum(dev, 0,
1363 "select subconnector",
1364 drm_dvi_i_select_enum_list,
1365 ARRAY_SIZE(drm_dvi_i_select_enum_list));
1366 dev->mode_config.dvi_i_select_subconnector_property = dvi_i_selector;
1367
1368 dvi_i_subconnector = drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1369 "subconnector",
1370 drm_dvi_i_subconnector_enum_list,
1371 ARRAY_SIZE(drm_dvi_i_subconnector_enum_list));
1372 dev->mode_config.dvi_i_subconnector_property = dvi_i_subconnector;
1373
1374 return 0;
1375 }
1376 EXPORT_SYMBOL(drm_mode_create_dvi_i_properties);
1377
1378 /**
1379 * drm_create_tv_properties - create TV specific connector properties
1380 * @dev: DRM device
1381 * @num_modes: number of different TV formats (modes) supported
1382 * @modes: array of pointers to strings containing name of each format
1383 *
1384 * Called by a driver's TV initialization routine, this function creates
1385 * the TV specific connector properties for a given device. Caller is
1386 * responsible for allocating a list of format names and passing them to
1387 * this routine.
1388 */
1389 int drm_mode_create_tv_properties(struct drm_device *dev, int num_modes,
1390 char *modes[])
1391 {
1392 struct drm_property *tv_selector;
1393 struct drm_property *tv_subconnector;
1394 int i;
1395
1396 if (dev->mode_config.tv_select_subconnector_property)
1397 return 0;
1398
1399 /*
1400 * Basic connector properties
1401 */
1402 tv_selector = drm_property_create_enum(dev, 0,
1403 "select subconnector",
1404 drm_tv_select_enum_list,
1405 ARRAY_SIZE(drm_tv_select_enum_list));
1406 dev->mode_config.tv_select_subconnector_property = tv_selector;
1407
1408 tv_subconnector =
1409 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1410 "subconnector",
1411 drm_tv_subconnector_enum_list,
1412 ARRAY_SIZE(drm_tv_subconnector_enum_list));
1413 dev->mode_config.tv_subconnector_property = tv_subconnector;
1414
1415 /*
1416 * Other, TV specific properties: margins & TV modes.
1417 */
1418 dev->mode_config.tv_left_margin_property =
1419 drm_property_create_range(dev, 0, "left margin", 0, 100);
1420
1421 dev->mode_config.tv_right_margin_property =
1422 drm_property_create_range(dev, 0, "right margin", 0, 100);
1423
1424 dev->mode_config.tv_top_margin_property =
1425 drm_property_create_range(dev, 0, "top margin", 0, 100);
1426
1427 dev->mode_config.tv_bottom_margin_property =
1428 drm_property_create_range(dev, 0, "bottom margin", 0, 100);
1429
1430 dev->mode_config.tv_mode_property =
1431 drm_property_create(dev, DRM_MODE_PROP_ENUM,
1432 "mode", num_modes);
1433 for (i = 0; i < num_modes; i++)
1434 drm_property_add_enum(dev->mode_config.tv_mode_property, i,
1435 i, modes[i]);
1436
1437 dev->mode_config.tv_brightness_property =
1438 drm_property_create_range(dev, 0, "brightness", 0, 100);
1439
1440 dev->mode_config.tv_contrast_property =
1441 drm_property_create_range(dev, 0, "contrast", 0, 100);
1442
1443 dev->mode_config.tv_flicker_reduction_property =
1444 drm_property_create_range(dev, 0, "flicker reduction", 0, 100);
1445
1446 dev->mode_config.tv_overscan_property =
1447 drm_property_create_range(dev, 0, "overscan", 0, 100);
1448
1449 dev->mode_config.tv_saturation_property =
1450 drm_property_create_range(dev, 0, "saturation", 0, 100);
1451
1452 dev->mode_config.tv_hue_property =
1453 drm_property_create_range(dev, 0, "hue", 0, 100);
1454
1455 return 0;
1456 }
1457 EXPORT_SYMBOL(drm_mode_create_tv_properties);
1458
1459 /**
1460 * drm_mode_create_scaling_mode_property - create scaling mode property
1461 * @dev: DRM device
1462 *
1463 * Called by a driver the first time it's needed, must be attached to desired
1464 * connectors.
1465 */
1466 int drm_mode_create_scaling_mode_property(struct drm_device *dev)
1467 {
1468 struct drm_property *scaling_mode;
1469
1470 if (dev->mode_config.scaling_mode_property)
1471 return 0;
1472
1473 scaling_mode =
1474 drm_property_create_enum(dev, 0, "scaling mode",
1475 drm_scaling_mode_enum_list,
1476 ARRAY_SIZE(drm_scaling_mode_enum_list));
1477
1478 dev->mode_config.scaling_mode_property = scaling_mode;
1479
1480 return 0;
1481 }
1482 EXPORT_SYMBOL(drm_mode_create_scaling_mode_property);
1483
1484 /**
1485 * drm_mode_create_aspect_ratio_property - create aspect ratio property
1486 * @dev: DRM device
1487 *
1488 * Called by a driver the first time it's needed, must be attached to desired
1489 * connectors.
1490 *
1491 * Returns:
1492 * Zero on success, errno on failure.
1493 */
1494 int drm_mode_create_aspect_ratio_property(struct drm_device *dev)
1495 {
1496 if (dev->mode_config.aspect_ratio_property)
1497 return 0;
1498
1499 dev->mode_config.aspect_ratio_property =
1500 drm_property_create_enum(dev, 0, "aspect ratio",
1501 drm_aspect_ratio_enum_list,
1502 ARRAY_SIZE(drm_aspect_ratio_enum_list));
1503
1504 if (dev->mode_config.aspect_ratio_property == NULL)
1505 return -ENOMEM;
1506
1507 return 0;
1508 }
1509 EXPORT_SYMBOL(drm_mode_create_aspect_ratio_property);
1510
1511 /**
1512 * drm_mode_create_dirty_property - create dirty property
1513 * @dev: DRM device
1514 *
1515 * Called by a driver the first time it's needed, must be attached to desired
1516 * connectors.
1517 */
1518 int drm_mode_create_dirty_info_property(struct drm_device *dev)
1519 {
1520 struct drm_property *dirty_info;
1521
1522 if (dev->mode_config.dirty_info_property)
1523 return 0;
1524
1525 dirty_info =
1526 drm_property_create_enum(dev, DRM_MODE_PROP_IMMUTABLE,
1527 "dirty",
1528 drm_dirty_info_enum_list,
1529 ARRAY_SIZE(drm_dirty_info_enum_list));
1530 dev->mode_config.dirty_info_property = dirty_info;
1531
1532 return 0;
1533 }
1534 EXPORT_SYMBOL(drm_mode_create_dirty_info_property);
1535
1536 static int drm_mode_group_init(struct drm_device *dev, struct drm_mode_group *group)
1537 {
1538 uint32_t total_objects = 0;
1539
1540 total_objects += dev->mode_config.num_crtc;
1541 total_objects += dev->mode_config.num_connector;
1542 total_objects += dev->mode_config.num_encoder;
1543 total_objects += dev->mode_config.num_bridge;
1544
1545 group->id_list = kzalloc(total_objects * sizeof(uint32_t), GFP_KERNEL);
1546 if (!group->id_list)
1547 return -ENOMEM;
1548
1549 group->num_crtcs = 0;
1550 group->num_connectors = 0;
1551 group->num_encoders = 0;
1552 group->num_bridges = 0;
1553 return 0;
1554 }
1555
1556 void drm_mode_group_destroy(struct drm_mode_group *group)
1557 {
1558 kfree(group->id_list);
1559 group->id_list = NULL;
1560 }
1561
1562 /*
1563 * NOTE: Driver's shouldn't ever call drm_mode_group_init_legacy_group - it is
1564 * the drm core's responsibility to set up mode control groups.
1565 */
1566 int drm_mode_group_init_legacy_group(struct drm_device *dev,
1567 struct drm_mode_group *group)
1568 {
1569 struct drm_crtc *crtc;
1570 struct drm_encoder *encoder;
1571 struct drm_connector *connector;
1572 struct drm_bridge *bridge;
1573 int ret;
1574
1575 if ((ret = drm_mode_group_init(dev, group)))
1576 return ret;
1577
1578 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
1579 group->id_list[group->num_crtcs++] = crtc->base.id;
1580
1581 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
1582 group->id_list[group->num_crtcs + group->num_encoders++] =
1583 encoder->base.id;
1584
1585 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
1586 group->id_list[group->num_crtcs + group->num_encoders +
1587 group->num_connectors++] = connector->base.id;
1588
1589 list_for_each_entry(bridge, &dev->mode_config.bridge_list, head)
1590 group->id_list[group->num_crtcs + group->num_encoders +
1591 group->num_connectors + group->num_bridges++] =
1592 bridge->base.id;
1593
1594 return 0;
1595 }
1596 EXPORT_SYMBOL(drm_mode_group_init_legacy_group);
1597
1598 void drm_reinit_primary_mode_group(struct drm_device *dev)
1599 {
1600 drm_modeset_lock_all(dev);
1601 drm_mode_group_destroy(&dev->primary->mode_group);
1602 drm_mode_group_init_legacy_group(dev, &dev->primary->mode_group);
1603 drm_modeset_unlock_all(dev);
1604 }
1605 EXPORT_SYMBOL(drm_reinit_primary_mode_group);
1606
1607 /**
1608 * drm_crtc_convert_to_umode - convert a drm_display_mode into a modeinfo
1609 * @out: drm_mode_modeinfo struct to return to the user
1610 * @in: drm_display_mode to use
1611 *
1612 * Convert a drm_display_mode into a drm_mode_modeinfo structure to return to
1613 * the user.
1614 */
1615 static void drm_crtc_convert_to_umode(struct drm_mode_modeinfo *out,
1616 const struct drm_display_mode *in)
1617 {
1618 WARN(in->hdisplay > USHRT_MAX || in->hsync_start > USHRT_MAX ||
1619 in->hsync_end > USHRT_MAX || in->htotal > USHRT_MAX ||
1620 in->hskew > USHRT_MAX || in->vdisplay > USHRT_MAX ||
1621 in->vsync_start > USHRT_MAX || in->vsync_end > USHRT_MAX ||
1622 in->vtotal > USHRT_MAX || in->vscan > USHRT_MAX,
1623 "timing values too large for mode info\n");
1624
1625 out->clock = in->clock;
1626 out->hdisplay = in->hdisplay;
1627 out->hsync_start = in->hsync_start;
1628 out->hsync_end = in->hsync_end;
1629 out->htotal = in->htotal;
1630 out->hskew = in->hskew;
1631 out->vdisplay = in->vdisplay;
1632 out->vsync_start = in->vsync_start;
1633 out->vsync_end = in->vsync_end;
1634 out->vtotal = in->vtotal;
1635 out->vscan = in->vscan;
1636 out->vrefresh = in->vrefresh;
1637 out->flags = in->flags;
1638 out->type = in->type;
1639 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1640 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1641 }
1642
1643 /**
1644 * drm_crtc_convert_umode - convert a modeinfo into a drm_display_mode
1645 * @out: drm_display_mode to return to the user
1646 * @in: drm_mode_modeinfo to use
1647 *
1648 * Convert a drm_mode_modeinfo into a drm_display_mode structure to return to
1649 * the caller.
1650 *
1651 * Returns:
1652 * Zero on success, errno on failure.
1653 */
1654 static int drm_crtc_convert_umode(struct drm_display_mode *out,
1655 const struct drm_mode_modeinfo *in)
1656 {
1657 if (in->clock > INT_MAX || in->vrefresh > INT_MAX)
1658 return -ERANGE;
1659
1660 if ((in->flags & DRM_MODE_FLAG_3D_MASK) > DRM_MODE_FLAG_3D_MAX)
1661 return -EINVAL;
1662
1663 out->clock = in->clock;
1664 out->hdisplay = in->hdisplay;
1665 out->hsync_start = in->hsync_start;
1666 out->hsync_end = in->hsync_end;
1667 out->htotal = in->htotal;
1668 out->hskew = in->hskew;
1669 out->vdisplay = in->vdisplay;
1670 out->vsync_start = in->vsync_start;
1671 out->vsync_end = in->vsync_end;
1672 out->vtotal = in->vtotal;
1673 out->vscan = in->vscan;
1674 out->vrefresh = in->vrefresh;
1675 out->flags = in->flags;
1676 out->type = in->type;
1677 strncpy(out->name, in->name, DRM_DISPLAY_MODE_LEN);
1678 out->name[DRM_DISPLAY_MODE_LEN-1] = 0;
1679
1680 return 0;
1681 }
1682
1683 /**
1684 * drm_mode_getresources - get graphics configuration
1685 * @dev: drm device for the ioctl
1686 * @data: data pointer for the ioctl
1687 * @file_priv: drm file for the ioctl call
1688 *
1689 * Construct a set of configuration description structures and return
1690 * them to the user, including CRTC, connector and framebuffer configuration.
1691 *
1692 * Called by the user via ioctl.
1693 *
1694 * Returns:
1695 * Zero on success, errno on failure.
1696 */
1697 int drm_mode_getresources(struct drm_device *dev, void *data,
1698 struct drm_file *file_priv)
1699 {
1700 struct drm_mode_card_res *card_res = data;
1701 struct list_head *lh;
1702 struct drm_framebuffer *fb;
1703 struct drm_connector *connector;
1704 struct drm_crtc *crtc;
1705 struct drm_encoder *encoder;
1706 int ret = 0;
1707 int connector_count = 0;
1708 int crtc_count = 0;
1709 int fb_count = 0;
1710 int encoder_count = 0;
1711 int copied = 0, i;
1712 uint32_t __user *fb_id;
1713 uint32_t __user *crtc_id;
1714 uint32_t __user *connector_id;
1715 uint32_t __user *encoder_id;
1716 struct drm_mode_group *mode_group;
1717
1718 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1719 return -EINVAL;
1720
1721
1722 mutex_lock(&file_priv->fbs_lock);
1723 /*
1724 * For the non-control nodes we need to limit the list of resources
1725 * by IDs in the group list for this node
1726 */
1727 list_for_each(lh, &file_priv->fbs)
1728 fb_count++;
1729
1730 /* handle this in 4 parts */
1731 /* FBs */
1732 if (card_res->count_fbs >= fb_count) {
1733 copied = 0;
1734 fb_id = (uint32_t __user *)(unsigned long)card_res->fb_id_ptr;
1735 list_for_each_entry(fb, &file_priv->fbs, filp_head) {
1736 if (put_user(fb->base.id, fb_id + copied)) {
1737 mutex_unlock(&file_priv->fbs_lock);
1738 return -EFAULT;
1739 }
1740 copied++;
1741 }
1742 }
1743 card_res->count_fbs = fb_count;
1744 mutex_unlock(&file_priv->fbs_lock);
1745
1746 drm_modeset_lock_all(dev);
1747 if (!drm_is_primary_client(file_priv)) {
1748
1749 mode_group = NULL;
1750 list_for_each(lh, &dev->mode_config.crtc_list)
1751 crtc_count++;
1752
1753 list_for_each(lh, &dev->mode_config.connector_list)
1754 connector_count++;
1755
1756 list_for_each(lh, &dev->mode_config.encoder_list)
1757 encoder_count++;
1758 } else {
1759
1760 mode_group = &file_priv->master->minor->mode_group;
1761 crtc_count = mode_group->num_crtcs;
1762 connector_count = mode_group->num_connectors;
1763 encoder_count = mode_group->num_encoders;
1764 }
1765
1766 card_res->max_height = dev->mode_config.max_height;
1767 card_res->min_height = dev->mode_config.min_height;
1768 card_res->max_width = dev->mode_config.max_width;
1769 card_res->min_width = dev->mode_config.min_width;
1770
1771 /* CRTCs */
1772 if (card_res->count_crtcs >= crtc_count) {
1773 copied = 0;
1774 crtc_id = (uint32_t __user *)(unsigned long)card_res->crtc_id_ptr;
1775 if (!mode_group) {
1776 list_for_each_entry(crtc, &dev->mode_config.crtc_list,
1777 head) {
1778 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
1779 if (put_user(crtc->base.id, crtc_id + copied)) {
1780 ret = -EFAULT;
1781 goto out;
1782 }
1783 copied++;
1784 }
1785 } else {
1786 for (i = 0; i < mode_group->num_crtcs; i++) {
1787 if (put_user(mode_group->id_list[i],
1788 crtc_id + copied)) {
1789 ret = -EFAULT;
1790 goto out;
1791 }
1792 copied++;
1793 }
1794 }
1795 }
1796 card_res->count_crtcs = crtc_count;
1797
1798 /* Encoders */
1799 if (card_res->count_encoders >= encoder_count) {
1800 copied = 0;
1801 encoder_id = (uint32_t __user *)(unsigned long)card_res->encoder_id_ptr;
1802 if (!mode_group) {
1803 list_for_each_entry(encoder,
1804 &dev->mode_config.encoder_list,
1805 head) {
1806 DRM_DEBUG_KMS("[ENCODER:%d:%s]\n", encoder->base.id,
1807 encoder->name);
1808 if (put_user(encoder->base.id, encoder_id +
1809 copied)) {
1810 ret = -EFAULT;
1811 goto out;
1812 }
1813 copied++;
1814 }
1815 } else {
1816 for (i = mode_group->num_crtcs; i < mode_group->num_crtcs + mode_group->num_encoders; i++) {
1817 if (put_user(mode_group->id_list[i],
1818 encoder_id + copied)) {
1819 ret = -EFAULT;
1820 goto out;
1821 }
1822 copied++;
1823 }
1824
1825 }
1826 }
1827 card_res->count_encoders = encoder_count;
1828
1829 /* Connectors */
1830 if (card_res->count_connectors >= connector_count) {
1831 copied = 0;
1832 connector_id = (uint32_t __user *)(unsigned long)card_res->connector_id_ptr;
1833 if (!mode_group) {
1834 list_for_each_entry(connector,
1835 &dev->mode_config.connector_list,
1836 head) {
1837 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1838 connector->base.id,
1839 connector->name);
1840 if (put_user(connector->base.id,
1841 connector_id + copied)) {
1842 ret = -EFAULT;
1843 goto out;
1844 }
1845 copied++;
1846 }
1847 } else {
1848 int start = mode_group->num_crtcs +
1849 mode_group->num_encoders;
1850 for (i = start; i < start + mode_group->num_connectors; i++) {
1851 if (put_user(mode_group->id_list[i],
1852 connector_id + copied)) {
1853 ret = -EFAULT;
1854 goto out;
1855 }
1856 copied++;
1857 }
1858 }
1859 }
1860 card_res->count_connectors = connector_count;
1861
1862 DRM_DEBUG_KMS("CRTC[%d] CONNECTORS[%d] ENCODERS[%d]\n", card_res->count_crtcs,
1863 card_res->count_connectors, card_res->count_encoders);
1864
1865 out:
1866 drm_modeset_unlock_all(dev);
1867 return ret;
1868 }
1869
1870 /**
1871 * drm_mode_getcrtc - get CRTC configuration
1872 * @dev: drm device for the ioctl
1873 * @data: data pointer for the ioctl
1874 * @file_priv: drm file for the ioctl call
1875 *
1876 * Construct a CRTC configuration structure to return to the user.
1877 *
1878 * Called by the user via ioctl.
1879 *
1880 * Returns:
1881 * Zero on success, errno on failure.
1882 */
1883 int drm_mode_getcrtc(struct drm_device *dev,
1884 void *data, struct drm_file *file_priv)
1885 {
1886 struct drm_mode_crtc *crtc_resp = data;
1887 struct drm_crtc *crtc;
1888 int ret = 0;
1889
1890 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1891 return -EINVAL;
1892
1893 drm_modeset_lock_all(dev);
1894
1895 crtc = drm_crtc_find(dev, crtc_resp->crtc_id);
1896 if (!crtc) {
1897 ret = -ENOENT;
1898 goto out;
1899 }
1900
1901 crtc_resp->x = crtc->x;
1902 crtc_resp->y = crtc->y;
1903 crtc_resp->gamma_size = crtc->gamma_size;
1904 if (crtc->primary->fb)
1905 crtc_resp->fb_id = crtc->primary->fb->base.id;
1906 else
1907 crtc_resp->fb_id = 0;
1908
1909 if (crtc->enabled) {
1910
1911 drm_crtc_convert_to_umode(&crtc_resp->mode, &crtc->mode);
1912 crtc_resp->mode_valid = 1;
1913
1914 } else {
1915 crtc_resp->mode_valid = 0;
1916 }
1917
1918 out:
1919 drm_modeset_unlock_all(dev);
1920 return ret;
1921 }
1922
1923 static bool drm_mode_expose_to_userspace(const struct drm_display_mode *mode,
1924 const struct drm_file *file_priv)
1925 {
1926 /*
1927 * If user-space hasn't configured the driver to expose the stereo 3D
1928 * modes, don't expose them.
1929 */
1930 if (!file_priv->stereo_allowed && drm_mode_is_stereo(mode))
1931 return false;
1932
1933 return true;
1934 }
1935
1936 /**
1937 * drm_mode_getconnector - get connector configuration
1938 * @dev: drm device for the ioctl
1939 * @data: data pointer for the ioctl
1940 * @file_priv: drm file for the ioctl call
1941 *
1942 * Construct a connector configuration structure to return to the user.
1943 *
1944 * Called by the user via ioctl.
1945 *
1946 * Returns:
1947 * Zero on success, errno on failure.
1948 */
1949 int drm_mode_getconnector(struct drm_device *dev, void *data,
1950 struct drm_file *file_priv)
1951 {
1952 struct drm_mode_get_connector *out_resp = data;
1953 struct drm_connector *connector;
1954 struct drm_display_mode *mode;
1955 int mode_count = 0;
1956 int props_count = 0;
1957 int encoders_count = 0;
1958 int ret = 0;
1959 int copied = 0;
1960 int i;
1961 struct drm_mode_modeinfo u_mode;
1962 struct drm_mode_modeinfo __user *mode_ptr;
1963 uint32_t __user *prop_ptr;
1964 uint64_t __user *prop_values;
1965 uint32_t __user *encoder_ptr;
1966
1967 if (!drm_core_check_feature(dev, DRIVER_MODESET))
1968 return -EINVAL;
1969
1970 memset(&u_mode, 0, sizeof(struct drm_mode_modeinfo));
1971
1972 DRM_DEBUG_KMS("[CONNECTOR:%d:?]\n", out_resp->connector_id);
1973
1974 mutex_lock(&dev->mode_config.mutex);
1975
1976 connector = drm_connector_find(dev, out_resp->connector_id);
1977 if (!connector) {
1978 ret = -ENOENT;
1979 goto out;
1980 }
1981
1982 props_count = connector->properties.count;
1983
1984 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
1985 if (connector->encoder_ids[i] != 0) {
1986 encoders_count++;
1987 }
1988 }
1989
1990 if (out_resp->count_modes == 0) {
1991 connector->funcs->fill_modes(connector,
1992 dev->mode_config.max_width,
1993 dev->mode_config.max_height);
1994 }
1995
1996 /* delayed so we get modes regardless of pre-fill_modes state */
1997 list_for_each_entry(mode, &connector->modes, head)
1998 if (drm_mode_expose_to_userspace(mode, file_priv))
1999 mode_count++;
2000
2001 out_resp->connector_id = connector->base.id;
2002 out_resp->connector_type = connector->connector_type;
2003 out_resp->connector_type_id = connector->connector_type_id;
2004 out_resp->mm_width = connector->display_info.width_mm;
2005 out_resp->mm_height = connector->display_info.height_mm;
2006 out_resp->subpixel = connector->display_info.subpixel_order;
2007 out_resp->connection = connector->status;
2008 drm_modeset_lock(&dev->mode_config.connection_mutex, NULL);
2009 if (connector->encoder)
2010 out_resp->encoder_id = connector->encoder->base.id;
2011 else
2012 out_resp->encoder_id = 0;
2013 drm_modeset_unlock(&dev->mode_config.connection_mutex);
2014
2015 /*
2016 * This ioctl is called twice, once to determine how much space is
2017 * needed, and the 2nd time to fill it.
2018 */
2019 if ((out_resp->count_modes >= mode_count) && mode_count) {
2020 copied = 0;
2021 mode_ptr = (struct drm_mode_modeinfo __user *)(unsigned long)out_resp->modes_ptr;
2022 list_for_each_entry(mode, &connector->modes, head) {
2023 if (!drm_mode_expose_to_userspace(mode, file_priv))
2024 continue;
2025
2026 drm_crtc_convert_to_umode(&u_mode, mode);
2027 if (copy_to_user(mode_ptr + copied,
2028 &u_mode, sizeof(u_mode))) {
2029 ret = -EFAULT;
2030 goto out;
2031 }
2032 copied++;
2033 }
2034 }
2035 out_resp->count_modes = mode_count;
2036
2037 if ((out_resp->count_props >= props_count) && props_count) {
2038 copied = 0;
2039 prop_ptr = (uint32_t __user *)(unsigned long)(out_resp->props_ptr);
2040 prop_values = (uint64_t __user *)(unsigned long)(out_resp->prop_values_ptr);
2041 for (i = 0; i < connector->properties.count; i++) {
2042 if (put_user(connector->properties.ids[i],
2043 prop_ptr + copied)) {
2044 ret = -EFAULT;
2045 goto out;
2046 }
2047
2048 if (put_user(connector->properties.values[i],
2049 prop_values + copied)) {
2050 ret = -EFAULT;
2051 goto out;
2052 }
2053 copied++;
2054 }
2055 }
2056 out_resp->count_props = props_count;
2057
2058 if ((out_resp->count_encoders >= encoders_count) && encoders_count) {
2059 copied = 0;
2060 encoder_ptr = (uint32_t __user *)(unsigned long)(out_resp->encoders_ptr);
2061 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
2062 if (connector->encoder_ids[i] != 0) {
2063 if (put_user(connector->encoder_ids[i],
2064 encoder_ptr + copied)) {
2065 ret = -EFAULT;
2066 goto out;
2067 }
2068 copied++;
2069 }
2070 }
2071 }
2072 out_resp->count_encoders = encoders_count;
2073
2074 out:
2075 mutex_unlock(&dev->mode_config.mutex);
2076
2077 return ret;
2078 }
2079
2080 /**
2081 * drm_mode_getencoder - get encoder configuration
2082 * @dev: drm device for the ioctl
2083 * @data: data pointer for the ioctl
2084 * @file_priv: drm file for the ioctl call
2085 *
2086 * Construct a encoder configuration structure to return to the user.
2087 *
2088 * Called by the user via ioctl.
2089 *
2090 * Returns:
2091 * Zero on success, errno on failure.
2092 */
2093 int drm_mode_getencoder(struct drm_device *dev, void *data,
2094 struct drm_file *file_priv)
2095 {
2096 struct drm_mode_get_encoder *enc_resp = data;
2097 struct drm_encoder *encoder;
2098 int ret = 0;
2099
2100 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2101 return -EINVAL;
2102
2103 drm_modeset_lock_all(dev);
2104 encoder = drm_encoder_find(dev, enc_resp->encoder_id);
2105 if (!encoder) {
2106 ret = -ENOENT;
2107 goto out;
2108 }
2109
2110 if (encoder->crtc)
2111 enc_resp->crtc_id = encoder->crtc->base.id;
2112 else
2113 enc_resp->crtc_id = 0;
2114 enc_resp->encoder_type = encoder->encoder_type;
2115 enc_resp->encoder_id = encoder->base.id;
2116 enc_resp->possible_crtcs = encoder->possible_crtcs;
2117 enc_resp->possible_clones = encoder->possible_clones;
2118
2119 out:
2120 drm_modeset_unlock_all(dev);
2121 return ret;
2122 }
2123
2124 /**
2125 * drm_mode_getplane_res - enumerate all plane resources
2126 * @dev: DRM device
2127 * @data: ioctl data
2128 * @file_priv: DRM file info
2129 *
2130 * Construct a list of plane ids to return to the user.
2131 *
2132 * Called by the user via ioctl.
2133 *
2134 * Returns:
2135 * Zero on success, errno on failure.
2136 */
2137 int drm_mode_getplane_res(struct drm_device *dev, void *data,
2138 struct drm_file *file_priv)
2139 {
2140 struct drm_mode_get_plane_res *plane_resp = data;
2141 struct drm_mode_config *config;
2142 struct drm_plane *plane;
2143 uint32_t __user *plane_ptr;
2144 int copied = 0, ret = 0;
2145 unsigned num_planes;
2146
2147 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2148 return -EINVAL;
2149
2150 drm_modeset_lock_all(dev);
2151 config = &dev->mode_config;
2152
2153 if (file_priv->universal_planes)
2154 num_planes = config->num_total_plane;
2155 else
2156 num_planes = config->num_overlay_plane;
2157
2158 /*
2159 * This ioctl is called twice, once to determine how much space is
2160 * needed, and the 2nd time to fill it.
2161 */
2162 if (num_planes &&
2163 (plane_resp->count_planes >= num_planes)) {
2164 plane_ptr = (uint32_t __user *)(unsigned long)plane_resp->plane_id_ptr;
2165
2166 list_for_each_entry(plane, &config->plane_list, head) {
2167 /*
2168 * Unless userspace set the 'universal planes'
2169 * capability bit, only advertise overlays.
2170 */
2171 if (plane->type != DRM_PLANE_TYPE_OVERLAY &&
2172 !file_priv->universal_planes)
2173 continue;
2174
2175 if (put_user(plane->base.id, plane_ptr + copied)) {
2176 ret = -EFAULT;
2177 goto out;
2178 }
2179 copied++;
2180 }
2181 }
2182 plane_resp->count_planes = num_planes;
2183
2184 out:
2185 drm_modeset_unlock_all(dev);
2186 return ret;
2187 }
2188
2189 /**
2190 * drm_mode_getplane - get plane configuration
2191 * @dev: DRM device
2192 * @data: ioctl data
2193 * @file_priv: DRM file info
2194 *
2195 * Construct a plane configuration structure to return to the user.
2196 *
2197 * Called by the user via ioctl.
2198 *
2199 * Returns:
2200 * Zero on success, errno on failure.
2201 */
2202 int drm_mode_getplane(struct drm_device *dev, void *data,
2203 struct drm_file *file_priv)
2204 {
2205 struct drm_mode_get_plane *plane_resp = data;
2206 struct drm_plane *plane;
2207 uint32_t __user *format_ptr;
2208 int ret = 0;
2209
2210 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2211 return -EINVAL;
2212
2213 drm_modeset_lock_all(dev);
2214 plane = drm_plane_find(dev, plane_resp->plane_id);
2215 if (!plane) {
2216 ret = -ENOENT;
2217 goto out;
2218 }
2219
2220 if (plane->crtc)
2221 plane_resp->crtc_id = plane->crtc->base.id;
2222 else
2223 plane_resp->crtc_id = 0;
2224
2225 if (plane->fb)
2226 plane_resp->fb_id = plane->fb->base.id;
2227 else
2228 plane_resp->fb_id = 0;
2229
2230 plane_resp->plane_id = plane->base.id;
2231 plane_resp->possible_crtcs = plane->possible_crtcs;
2232 plane_resp->gamma_size = 0;
2233
2234 /*
2235 * This ioctl is called twice, once to determine how much space is
2236 * needed, and the 2nd time to fill it.
2237 */
2238 if (plane->format_count &&
2239 (plane_resp->count_format_types >= plane->format_count)) {
2240 format_ptr = (uint32_t __user *)(unsigned long)plane_resp->format_type_ptr;
2241 if (copy_to_user(format_ptr,
2242 plane->format_types,
2243 sizeof(uint32_t) * plane->format_count)) {
2244 ret = -EFAULT;
2245 goto out;
2246 }
2247 }
2248 plane_resp->count_format_types = plane->format_count;
2249
2250 out:
2251 drm_modeset_unlock_all(dev);
2252 return ret;
2253 }
2254
2255 /*
2256 * setplane_internal - setplane handler for internal callers
2257 *
2258 * Note that we assume an extra reference has already been taken on fb. If the
2259 * update fails, this reference will be dropped before return; if it succeeds,
2260 * the previous framebuffer (if any) will be unreferenced instead.
2261 *
2262 * src_{x,y,w,h} are provided in 16.16 fixed point format
2263 */
2264 static int __setplane_internal(struct drm_plane *plane,
2265 struct drm_crtc *crtc,
2266 struct drm_framebuffer *fb,
2267 int32_t crtc_x, int32_t crtc_y,
2268 uint32_t crtc_w, uint32_t crtc_h,
2269 /* src_{x,y,w,h} values are 16.16 fixed point */
2270 uint32_t src_x, uint32_t src_y,
2271 uint32_t src_w, uint32_t src_h)
2272 {
2273 int ret = 0;
2274 unsigned int fb_width, fb_height;
2275 int i;
2276
2277 /* No fb means shut it down */
2278 if (!fb) {
2279 plane->old_fb = plane->fb;
2280 ret = plane->funcs->disable_plane(plane);
2281 if (!ret) {
2282 plane->crtc = NULL;
2283 plane->fb = NULL;
2284 } else {
2285 plane->old_fb = NULL;
2286 }
2287 goto out;
2288 }
2289
2290 /* Check whether this plane is usable on this CRTC */
2291 if (!(plane->possible_crtcs & drm_crtc_mask(crtc))) {
2292 DRM_DEBUG_KMS("Invalid crtc for plane\n");
2293 ret = -EINVAL;
2294 goto out;
2295 }
2296
2297 /* Check whether this plane supports the fb pixel format. */
2298 for (i = 0; i < plane->format_count; i++)
2299 if (fb->pixel_format == plane->format_types[i])
2300 break;
2301 if (i == plane->format_count) {
2302 DRM_DEBUG_KMS("Invalid pixel format %s\n",
2303 drm_get_format_name(fb->pixel_format));
2304 ret = -EINVAL;
2305 goto out;
2306 }
2307
2308 fb_width = fb->width << 16;
2309 fb_height = fb->height << 16;
2310
2311 /* Make sure source coordinates are inside the fb. */
2312 if (src_w > fb_width ||
2313 src_x > fb_width - src_w ||
2314 src_h > fb_height ||
2315 src_y > fb_height - src_h) {
2316 DRM_DEBUG_KMS("Invalid source coordinates "
2317 "%u.%06ux%u.%06u+%u.%06u+%u.%06u\n",
2318 src_w >> 16, ((src_w & 0xffff) * 15625) >> 10,
2319 src_h >> 16, ((src_h & 0xffff) * 15625) >> 10,
2320 src_x >> 16, ((src_x & 0xffff) * 15625) >> 10,
2321 src_y >> 16, ((src_y & 0xffff) * 15625) >> 10);
2322 ret = -ENOSPC;
2323 goto out;
2324 }
2325
2326 plane->old_fb = plane->fb;
2327 ret = plane->funcs->update_plane(plane, crtc, fb,
2328 crtc_x, crtc_y, crtc_w, crtc_h,
2329 src_x, src_y, src_w, src_h);
2330 if (!ret) {
2331 plane->crtc = crtc;
2332 plane->fb = fb;
2333 fb = NULL;
2334 } else {
2335 plane->old_fb = NULL;
2336 }
2337
2338 out:
2339 if (fb)
2340 drm_framebuffer_unreference(fb);
2341 if (plane->old_fb)
2342 drm_framebuffer_unreference(plane->old_fb);
2343 plane->old_fb = NULL;
2344
2345 return ret;
2346 }
2347
2348 static int setplane_internal(struct drm_plane *plane,
2349 struct drm_crtc *crtc,
2350 struct drm_framebuffer *fb,
2351 int32_t crtc_x, int32_t crtc_y,
2352 uint32_t crtc_w, uint32_t crtc_h,
2353 /* src_{x,y,w,h} values are 16.16 fixed point */
2354 uint32_t src_x, uint32_t src_y,
2355 uint32_t src_w, uint32_t src_h)
2356 {
2357 int ret;
2358
2359 drm_modeset_lock_all(plane->dev);
2360 ret = __setplane_internal(plane, crtc, fb,
2361 crtc_x, crtc_y, crtc_w, crtc_h,
2362 src_x, src_y, src_w, src_h);
2363 drm_modeset_unlock_all(plane->dev);
2364
2365 return ret;
2366 }
2367
2368 /**
2369 * drm_mode_setplane - configure a plane's configuration
2370 * @dev: DRM device
2371 * @data: ioctl data*
2372 * @file_priv: DRM file info
2373 *
2374 * Set plane configuration, including placement, fb, scaling, and other factors.
2375 * Or pass a NULL fb to disable (planes may be disabled without providing a
2376 * valid crtc).
2377 *
2378 * Returns:
2379 * Zero on success, errno on failure.
2380 */
2381 int drm_mode_setplane(struct drm_device *dev, void *data,
2382 struct drm_file *file_priv)
2383 {
2384 struct drm_mode_set_plane *plane_req = data;
2385 struct drm_mode_object *obj;
2386 struct drm_plane *plane;
2387 struct drm_crtc *crtc = NULL;
2388 struct drm_framebuffer *fb = NULL;
2389
2390 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2391 return -EINVAL;
2392
2393 /* Give drivers some help against integer overflows */
2394 if (plane_req->crtc_w > INT_MAX ||
2395 plane_req->crtc_x > INT_MAX - (int32_t) plane_req->crtc_w ||
2396 plane_req->crtc_h > INT_MAX ||
2397 plane_req->crtc_y > INT_MAX - (int32_t) plane_req->crtc_h) {
2398 DRM_DEBUG_KMS("Invalid CRTC coordinates %ux%u+%d+%d\n",
2399 plane_req->crtc_w, plane_req->crtc_h,
2400 plane_req->crtc_x, plane_req->crtc_y);
2401 return -ERANGE;
2402 }
2403
2404 /*
2405 * First, find the plane, crtc, and fb objects. If not available,
2406 * we don't bother to call the driver.
2407 */
2408 obj = drm_mode_object_find(dev, plane_req->plane_id,
2409 DRM_MODE_OBJECT_PLANE);
2410 if (!obj) {
2411 DRM_DEBUG_KMS("Unknown plane ID %d\n",
2412 plane_req->plane_id);
2413 return -ENOENT;
2414 }
2415 plane = obj_to_plane(obj);
2416
2417 if (plane_req->fb_id) {
2418 fb = drm_framebuffer_lookup(dev, plane_req->fb_id);
2419 if (!fb) {
2420 DRM_DEBUG_KMS("Unknown framebuffer ID %d\n",
2421 plane_req->fb_id);
2422 return -ENOENT;
2423 }
2424
2425 obj = drm_mode_object_find(dev, plane_req->crtc_id,
2426 DRM_MODE_OBJECT_CRTC);
2427 if (!obj) {
2428 DRM_DEBUG_KMS("Unknown crtc ID %d\n",
2429 plane_req->crtc_id);
2430 return -ENOENT;
2431 }
2432 crtc = obj_to_crtc(obj);
2433 }
2434
2435 /*
2436 * setplane_internal will take care of deref'ing either the old or new
2437 * framebuffer depending on success.
2438 */
2439 return setplane_internal(plane, crtc, fb,
2440 plane_req->crtc_x, plane_req->crtc_y,
2441 plane_req->crtc_w, plane_req->crtc_h,
2442 plane_req->src_x, plane_req->src_y,
2443 plane_req->src_w, plane_req->src_h);
2444 }
2445
2446 /**
2447 * drm_mode_set_config_internal - helper to call ->set_config
2448 * @set: modeset config to set
2449 *
2450 * This is a little helper to wrap internal calls to the ->set_config driver
2451 * interface. The only thing it adds is correct refcounting dance.
2452 *
2453 * Returns:
2454 * Zero on success, errno on failure.
2455 */
2456 int drm_mode_set_config_internal(struct drm_mode_set *set)
2457 {
2458 struct drm_crtc *crtc = set->crtc;
2459 struct drm_framebuffer *fb;
2460 struct drm_crtc *tmp;
2461 int ret;
2462
2463 /*
2464 * NOTE: ->set_config can also disable other crtcs (if we steal all
2465 * connectors from it), hence we need to refcount the fbs across all
2466 * crtcs. Atomic modeset will have saner semantics ...
2467 */
2468 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head)
2469 tmp->primary->old_fb = tmp->primary->fb;
2470
2471 fb = set->fb;
2472
2473 ret = crtc->funcs->set_config(set);
2474 if (ret == 0) {
2475 crtc->primary->crtc = crtc;
2476 crtc->primary->fb = fb;
2477 }
2478
2479 list_for_each_entry(tmp, &crtc->dev->mode_config.crtc_list, head) {
2480 if (tmp->primary->fb)
2481 drm_framebuffer_reference(tmp->primary->fb);
2482 if (tmp->primary->old_fb)
2483 drm_framebuffer_unreference(tmp->primary->old_fb);
2484 tmp->primary->old_fb = NULL;
2485 }
2486
2487 return ret;
2488 }
2489 EXPORT_SYMBOL(drm_mode_set_config_internal);
2490
2491 /**
2492 * drm_crtc_check_viewport - Checks that a framebuffer is big enough for the
2493 * CRTC viewport
2494 * @crtc: CRTC that framebuffer will be displayed on
2495 * @x: x panning
2496 * @y: y panning
2497 * @mode: mode that framebuffer will be displayed under
2498 * @fb: framebuffer to check size of
2499 */
2500 int drm_crtc_check_viewport(const struct drm_crtc *crtc,
2501 int x, int y,
2502 const struct drm_display_mode *mode,
2503 const struct drm_framebuffer *fb)
2504
2505 {
2506 int hdisplay, vdisplay;
2507
2508 hdisplay = mode->hdisplay;
2509 vdisplay = mode->vdisplay;
2510
2511 if (drm_mode_is_stereo(mode)) {
2512 struct drm_display_mode adjusted = *mode;
2513
2514 drm_mode_set_crtcinfo(&adjusted, CRTC_STEREO_DOUBLE);
2515 hdisplay = adjusted.crtc_hdisplay;
2516 vdisplay = adjusted.crtc_vdisplay;
2517 }
2518
2519 if (crtc->invert_dimensions)
2520 swap(hdisplay, vdisplay);
2521
2522 if (hdisplay > fb->width ||
2523 vdisplay > fb->height ||
2524 x > fb->width - hdisplay ||
2525 y > fb->height - vdisplay) {
2526 DRM_DEBUG_KMS("Invalid fb size %ux%u for CRTC viewport %ux%u+%d+%d%s.\n",
2527 fb->width, fb->height, hdisplay, vdisplay, x, y,
2528 crtc->invert_dimensions ? " (inverted)" : "");
2529 return -ENOSPC;
2530 }
2531
2532 return 0;
2533 }
2534 EXPORT_SYMBOL(drm_crtc_check_viewport);
2535
2536 /**
2537 * drm_mode_setcrtc - set CRTC configuration
2538 * @dev: drm device for the ioctl
2539 * @data: data pointer for the ioctl
2540 * @file_priv: drm file for the ioctl call
2541 *
2542 * Build a new CRTC configuration based on user request.
2543 *
2544 * Called by the user via ioctl.
2545 *
2546 * Returns:
2547 * Zero on success, errno on failure.
2548 */
2549 int drm_mode_setcrtc(struct drm_device *dev, void *data,
2550 struct drm_file *file_priv)
2551 {
2552 struct drm_mode_config *config = &dev->mode_config;
2553 struct drm_mode_crtc *crtc_req = data;
2554 struct drm_crtc *crtc;
2555 struct drm_connector **connector_set = NULL, *connector;
2556 struct drm_framebuffer *fb = NULL;
2557 struct drm_display_mode *mode = NULL;
2558 struct drm_mode_set set;
2559 uint32_t __user *set_connectors_ptr;
2560 int ret;
2561 int i;
2562
2563 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2564 return -EINVAL;
2565
2566 /* For some reason crtc x/y offsets are signed internally. */
2567 if (crtc_req->x > INT_MAX || crtc_req->y > INT_MAX)
2568 return -ERANGE;
2569
2570 drm_modeset_lock_all(dev);
2571 crtc = drm_crtc_find(dev, crtc_req->crtc_id);
2572 if (!crtc) {
2573 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", crtc_req->crtc_id);
2574 ret = -ENOENT;
2575 goto out;
2576 }
2577 DRM_DEBUG_KMS("[CRTC:%d]\n", crtc->base.id);
2578
2579 if (crtc_req->mode_valid) {
2580 /* If we have a mode we need a framebuffer. */
2581 /* If we pass -1, set the mode with the currently bound fb */
2582 if (crtc_req->fb_id == -1) {
2583 if (!crtc->primary->fb) {
2584 DRM_DEBUG_KMS("CRTC doesn't have current FB\n");
2585 ret = -EINVAL;
2586 goto out;
2587 }
2588 fb = crtc->primary->fb;
2589 /* Make refcounting symmetric with the lookup path. */
2590 drm_framebuffer_reference(fb);
2591 } else {
2592 fb = drm_framebuffer_lookup(dev, crtc_req->fb_id);
2593 if (!fb) {
2594 DRM_DEBUG_KMS("Unknown FB ID%d\n",
2595 crtc_req->fb_id);
2596 ret = -ENOENT;
2597 goto out;
2598 }
2599 }
2600
2601 mode = drm_mode_create(dev);
2602 if (!mode) {
2603 ret = -ENOMEM;
2604 goto out;
2605 }
2606
2607 ret = drm_crtc_convert_umode(mode, &crtc_req->mode);
2608 if (ret) {
2609 DRM_DEBUG_KMS("Invalid mode\n");
2610 goto out;
2611 }
2612
2613 drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V);
2614
2615 ret = drm_crtc_check_viewport(crtc, crtc_req->x, crtc_req->y,
2616 mode, fb);
2617 if (ret)
2618 goto out;
2619
2620 }
2621
2622 if (crtc_req->count_connectors == 0 && mode) {
2623 DRM_DEBUG_KMS("Count connectors is 0 but mode set\n");
2624 ret = -EINVAL;
2625 goto out;
2626 }
2627
2628 if (crtc_req->count_connectors > 0 && (!mode || !fb)) {
2629 DRM_DEBUG_KMS("Count connectors is %d but no mode or fb set\n",
2630 crtc_req->count_connectors);
2631 ret = -EINVAL;
2632 goto out;
2633 }
2634
2635 if (crtc_req->count_connectors > 0) {
2636 u32 out_id;
2637
2638 /* Avoid unbounded kernel memory allocation */
2639 if (crtc_req->count_connectors > config->num_connector) {
2640 ret = -EINVAL;
2641 goto out;
2642 }
2643
2644 connector_set = kmalloc(crtc_req->count_connectors *
2645 sizeof(struct drm_connector *),
2646 GFP_KERNEL);
2647 if (!connector_set) {
2648 ret = -ENOMEM;
2649 goto out;
2650 }
2651
2652 for (i = 0; i < crtc_req->count_connectors; i++) {
2653 set_connectors_ptr = (uint32_t __user *)(unsigned long)crtc_req->set_connectors_ptr;
2654 if (get_user(out_id, &set_connectors_ptr[i])) {
2655 ret = -EFAULT;
2656 goto out;
2657 }
2658
2659 connector = drm_connector_find(dev, out_id);
2660 if (!connector) {
2661 DRM_DEBUG_KMS("Connector id %d unknown\n",
2662 out_id);
2663 ret = -ENOENT;
2664 goto out;
2665 }
2666 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
2667 connector->base.id,
2668 connector->name);
2669
2670 connector_set[i] = connector;
2671 }
2672 }
2673
2674 set.crtc = crtc;
2675 set.x = crtc_req->x;
2676 set.y = crtc_req->y;
2677 set.mode = mode;
2678 set.connectors = connector_set;
2679 set.num_connectors = crtc_req->count_connectors;
2680 set.fb = fb;
2681 ret = drm_mode_set_config_internal(&set);
2682
2683 out:
2684 if (fb)
2685 drm_framebuffer_unreference(fb);
2686
2687 kfree(connector_set);
2688 drm_mode_destroy(dev, mode);
2689 drm_modeset_unlock_all(dev);
2690 return ret;
2691 }
2692
2693 /**
2694 * drm_mode_cursor_universal - translate legacy cursor ioctl call into a
2695 * universal plane handler call
2696 * @crtc: crtc to update cursor for
2697 * @req: data pointer for the ioctl
2698 * @file_priv: drm file for the ioctl call
2699 *
2700 * Legacy cursor ioctl's work directly with driver buffer handles. To
2701 * translate legacy ioctl calls into universal plane handler calls, we need to
2702 * wrap the native buffer handle in a drm_framebuffer.
2703 *
2704 * Note that we assume any handle passed to the legacy ioctls was a 32-bit ARGB
2705 * buffer with a pitch of 4*width; the universal plane interface should be used
2706 * directly in cases where the hardware can support other buffer settings and
2707 * userspace wants to make use of these capabilities.
2708 *
2709 * Returns:
2710 * Zero on success, errno on failure.
2711 */
2712 static int drm_mode_cursor_universal(struct drm_crtc *crtc,
2713 struct drm_mode_cursor2 *req,
2714 struct drm_file *file_priv)
2715 {
2716 struct drm_device *dev = crtc->dev;
2717 struct drm_framebuffer *fb = NULL;
2718 struct drm_mode_fb_cmd2 fbreq = {
2719 .width = req->width,
2720 .height = req->height,
2721 .pixel_format = DRM_FORMAT_ARGB8888,
2722 .pitches = { req->width * 4 },
2723 .handles = { req->handle },
2724 };
2725 int32_t crtc_x, crtc_y;
2726 uint32_t crtc_w = 0, crtc_h = 0;
2727 uint32_t src_w = 0, src_h = 0;
2728 int ret = 0;
2729
2730 BUG_ON(!crtc->cursor);
2731 WARN_ON(crtc->cursor->crtc != crtc && crtc->cursor->crtc != NULL);
2732
2733 /*
2734 * Obtain fb we'll be using (either new or existing) and take an extra
2735 * reference to it if fb != null. setplane will take care of dropping
2736 * the reference if the plane update fails.
2737 */
2738 if (req->flags & DRM_MODE_CURSOR_BO) {
2739 if (req->handle) {
2740 fb = add_framebuffer_internal(dev, &fbreq, file_priv);
2741 if (IS_ERR(fb)) {
2742 DRM_DEBUG_KMS("failed to wrap cursor buffer in drm framebuffer\n");
2743 return PTR_ERR(fb);
2744 }
2745
2746 drm_framebuffer_reference(fb);
2747 } else {
2748 fb = NULL;
2749 }
2750 } else {
2751 fb = crtc->cursor->fb;
2752 if (fb)
2753 drm_framebuffer_reference(fb);
2754 }
2755
2756 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2757 crtc_x = req->x;
2758 crtc_y = req->y;
2759 } else {
2760 crtc_x = crtc->cursor_x;
2761 crtc_y = crtc->cursor_y;
2762 }
2763
2764 if (fb) {
2765 crtc_w = fb->width;
2766 crtc_h = fb->height;
2767 src_w = fb->width << 16;
2768 src_h = fb->height << 16;
2769 }
2770
2771 /*
2772 * setplane_internal will take care of deref'ing either the old or new
2773 * framebuffer depending on success.
2774 */
2775 ret = __setplane_internal(crtc->cursor, crtc, fb,
2776 crtc_x, crtc_y, crtc_w, crtc_h,
2777 0, 0, src_w, src_h);
2778
2779 /* Update successful; save new cursor position, if necessary */
2780 if (ret == 0 && req->flags & DRM_MODE_CURSOR_MOVE) {
2781 crtc->cursor_x = req->x;
2782 crtc->cursor_y = req->y;
2783 }
2784
2785 return ret;
2786 }
2787
2788 static int drm_mode_cursor_common(struct drm_device *dev,
2789 struct drm_mode_cursor2 *req,
2790 struct drm_file *file_priv)
2791 {
2792 struct drm_crtc *crtc;
2793 int ret = 0;
2794
2795 if (!drm_core_check_feature(dev, DRIVER_MODESET))
2796 return -EINVAL;
2797
2798 if (!req->flags || (~DRM_MODE_CURSOR_FLAGS & req->flags))
2799 return -EINVAL;
2800
2801 crtc = drm_crtc_find(dev, req->crtc_id);
2802 if (!crtc) {
2803 DRM_DEBUG_KMS("Unknown CRTC ID %d\n", req->crtc_id);
2804 return -ENOENT;
2805 }
2806
2807 /*
2808 * If this crtc has a universal cursor plane, call that plane's update
2809 * handler rather than using legacy cursor handlers.
2810 */
2811 drm_modeset_lock_crtc(crtc, crtc->cursor);
2812 if (crtc->cursor) {
2813 ret = drm_mode_cursor_universal(crtc, req, file_priv);
2814 goto out;
2815 }
2816
2817 if (req->flags & DRM_MODE_CURSOR_BO) {
2818 if (!crtc->funcs->cursor_set && !crtc->funcs->cursor_set2) {
2819 ret = -ENXIO;
2820 goto out;
2821 }
2822 /* Turns off the cursor if handle is 0 */
2823 if (crtc->funcs->cursor_set2)
2824 ret = crtc->funcs->cursor_set2(crtc, file_priv, req->handle,
2825 req->width, req->height, req->hot_x, req->hot_y);
2826 else
2827 ret = crtc->funcs->cursor_set(crtc, file_priv, req->handle,
2828 req->width, req->height);
2829 }
2830
2831 if (req->flags & DRM_MODE_CURSOR_MOVE) {
2832 if (crtc->funcs->cursor_move) {
2833 ret = crtc->funcs->cursor_move(crtc, req->x, req->y);
2834 } else {
2835 ret = -EFAULT;
2836 goto out;
2837 }
2838 }
2839 out:
2840 drm_modeset_unlock_crtc(crtc);
2841
2842 return ret;
2843
2844 }
2845
2846
2847 /**
2848 * drm_mode_cursor_ioctl - set CRTC's cursor configuration
2849 * @dev: drm device for the ioctl
2850 * @data: data pointer for the ioctl
2851 * @file_priv: drm file for the ioctl call
2852 *
2853 * Set the cursor configuration based on user request.
2854 *
2855 * Called by the user via ioctl.
2856 *
2857 * Returns:
2858 * Zero on success, errno on failure.
2859 */
2860 int drm_mode_cursor_ioctl(struct drm_device *dev,
2861 void *data, struct drm_file *file_priv)
2862 {
2863 struct drm_mode_cursor *req = data;
2864 struct drm_mode_cursor2 new_req;
2865
2866 memcpy(&new_req, req, sizeof(struct drm_mode_cursor));
2867 new_req.hot_x = new_req.hot_y = 0;
2868
2869 return drm_mode_cursor_common(dev, &new_req, file_priv);
2870 }
2871
2872 /**
2873 * drm_mode_cursor2_ioctl - set CRTC's cursor configuration
2874 * @dev: drm device for the ioctl
2875 * @data: data pointer for the ioctl
2876 * @file_priv: drm file for the ioctl call
2877 *
2878 * Set the cursor configuration based on user request. This implements the 2nd
2879 * version of the cursor ioctl, which allows userspace to additionally specify
2880 * the hotspot of the pointer.
2881 *
2882 * Called by the user via ioctl.
2883 *
2884 * Returns:
2885 * Zero on success, errno on failure.
2886 */
2887 int drm_mode_cursor2_ioctl(struct drm_device *dev,
2888 void *data, struct drm_file *file_priv)
2889 {
2890 struct drm_mode_cursor2 *req = data;
2891 return drm_mode_cursor_common(dev, req, file_priv);
2892 }
2893
2894 /**
2895 * drm_mode_legacy_fb_format - compute drm fourcc code from legacy description
2896 * @bpp: bits per pixels
2897 * @depth: bit depth per pixel
2898 *
2899 * Computes a drm fourcc pixel format code for the given @bpp/@depth values.
2900 * Useful in fbdev emulation code, since that deals in those values.
2901 */
2902 uint32_t drm_mode_legacy_fb_format(uint32_t bpp, uint32_t depth)
2903 {
2904 uint32_t fmt;
2905
2906 switch (bpp) {
2907 case 8:
2908 fmt = DRM_FORMAT_C8;
2909 break;
2910 case 16:
2911 if (depth == 15)
2912 fmt = DRM_FORMAT_XRGB1555;
2913 else
2914 fmt = DRM_FORMAT_RGB565;
2915 break;
2916 case 24:
2917 fmt = DRM_FORMAT_RGB888;
2918 break;
2919 case 32:
2920 if (depth == 24)
2921 fmt = DRM_FORMAT_XRGB8888;
2922 else if (depth == 30)
2923 fmt = DRM_FORMAT_XRGB2101010;
2924 else
2925 fmt = DRM_FORMAT_ARGB8888;
2926 break;
2927 default:
2928 DRM_ERROR("bad bpp, assuming x8r8g8b8 pixel format\n");
2929 fmt = DRM_FORMAT_XRGB8888;
2930 break;
2931 }
2932
2933 return fmt;
2934 }
2935 EXPORT_SYMBOL(drm_mode_legacy_fb_format);
2936
2937 /**
2938 * drm_mode_addfb - add an FB to the graphics configuration
2939 * @dev: drm device for the ioctl
2940 * @data: data pointer for the ioctl
2941 * @file_priv: drm file for the ioctl call
2942 *
2943 * Add a new FB to the specified CRTC, given a user request. This is the
2944 * original addfb ioctl which only supported RGB formats.
2945 *
2946 * Called by the user via ioctl.
2947 *
2948 * Returns:
2949 * Zero on success, errno on failure.
2950 */
2951 int drm_mode_addfb(struct drm_device *dev,
2952 void *data, struct drm_file *file_priv)
2953 {
2954 struct drm_mode_fb_cmd *or = data;
2955 struct drm_mode_fb_cmd2 r = {};
2956 int ret;
2957
2958 /* convert to new format and call new ioctl */
2959 r.fb_id = or->fb_id;
2960 r.width = or->width;
2961 r.height = or->height;
2962 r.pitches[0] = or->pitch;
2963 r.pixel_format = drm_mode_legacy_fb_format(or->bpp, or->depth);
2964 r.handles[0] = or->handle;
2965
2966 ret = drm_mode_addfb2(dev, &r, file_priv);
2967 if (ret)
2968 return ret;
2969
2970 or->fb_id = r.fb_id;
2971
2972 return ret;
2973 }
2974
2975 static int format_check(const struct drm_mode_fb_cmd2 *r)
2976 {
2977 uint32_t format = r->pixel_format & ~DRM_FORMAT_BIG_ENDIAN;
2978
2979 switch (format) {
2980 case DRM_FORMAT_C8:
2981 case DRM_FORMAT_RGB332:
2982 case DRM_FORMAT_BGR233:
2983 case DRM_FORMAT_XRGB4444:
2984 case DRM_FORMAT_XBGR4444:
2985 case DRM_FORMAT_RGBX4444:
2986 case DRM_FORMAT_BGRX4444:
2987 case DRM_FORMAT_ARGB4444:
2988 case DRM_FORMAT_ABGR4444:
2989 case DRM_FORMAT_RGBA4444:
2990 case DRM_FORMAT_BGRA4444:
2991 case DRM_FORMAT_XRGB1555:
2992 case DRM_FORMAT_XBGR1555:
2993 case DRM_FORMAT_RGBX5551:
2994 case DRM_FORMAT_BGRX5551:
2995 case DRM_FORMAT_ARGB1555:
2996 case DRM_FORMAT_ABGR1555:
2997 case DRM_FORMAT_RGBA5551:
2998 case DRM_FORMAT_BGRA5551:
2999 case DRM_FORMAT_RGB565:
3000 case DRM_FORMAT_BGR565:
3001 case DRM_FORMAT_RGB888:
3002 case DRM_FORMAT_BGR888:
3003 case DRM_FORMAT_XRGB8888:
3004 case DRM_FORMAT_XBGR8888:
3005 case DRM_FORMAT_RGBX8888:
3006 case DRM_FORMAT_BGRX8888:
3007 case DRM_FORMAT_ARGB8888:
3008 case DRM_FORMAT_ABGR8888:
3009 case DRM_FORMAT_RGBA8888:
3010 case DRM_FORMAT_BGRA8888:
3011 case DRM_FORMAT_XRGB2101010:
3012 case DRM_FORMAT_XBGR2101010:
3013 case DRM_FORMAT_RGBX1010102:
3014 case DRM_FORMAT_BGRX1010102:
3015 case DRM_FORMAT_ARGB2101010:
3016 case DRM_FORMAT_ABGR2101010:
3017 case DRM_FORMAT_RGBA1010102:
3018 case DRM_FORMAT_BGRA1010102:
3019 case DRM_FORMAT_YUYV:
3020 case DRM_FORMAT_YVYU:
3021 case DRM_FORMAT_UYVY:
3022 case DRM_FORMAT_VYUY:
3023 case DRM_FORMAT_AYUV:
3024 case DRM_FORMAT_NV12:
3025 case DRM_FORMAT_NV21:
3026 case DRM_FORMAT_NV16:
3027 case DRM_FORMAT_NV61:
3028 case DRM_FORMAT_NV24:
3029 case DRM_FORMAT_NV42:
3030 case DRM_FORMAT_YUV410:
3031 case DRM_FORMAT_YVU410:
3032 case DRM_FORMAT_YUV411:
3033 case DRM_FORMAT_YVU411:
3034 case DRM_FORMAT_YUV420:
3035 case DRM_FORMAT_YVU420:
3036 case DRM_FORMAT_YUV422:
3037 case DRM_FORMAT_YVU422:
3038 case DRM_FORMAT_YUV444:
3039 case DRM_FORMAT_YVU444:
3040 return 0;
3041 default:
3042 DRM_DEBUG_KMS("invalid pixel format %s\n",
3043 drm_get_format_name(r->pixel_format));
3044 return -EINVAL;
3045 }
3046 }
3047
3048 static int framebuffer_check(const struct drm_mode_fb_cmd2 *r)
3049 {
3050 int ret, hsub, vsub, num_planes, i;
3051
3052 ret = format_check(r);
3053 if (ret) {
3054 DRM_DEBUG_KMS("bad framebuffer format %s\n",
3055 drm_get_format_name(r->pixel_format));
3056 return ret;
3057 }
3058
3059 hsub = drm_format_horz_chroma_subsampling(r->pixel_format);
3060 vsub = drm_format_vert_chroma_subsampling(r->pixel_format);
3061 num_planes = drm_format_num_planes(r->pixel_format);
3062
3063 if (r->width == 0 || r->width % hsub) {
3064 DRM_DEBUG_KMS("bad framebuffer width %u\n", r->width);
3065 return -EINVAL;
3066 }
3067
3068 if (r->height == 0 || r->height % vsub) {
3069 DRM_DEBUG_KMS("bad framebuffer height %u\n", r->height);
3070 return -EINVAL;
3071 }
3072
3073 for (i = 0; i < num_planes; i++) {
3074 unsigned int width = r->width / (i != 0 ? hsub : 1);
3075 unsigned int height = r->height / (i != 0 ? vsub : 1);
3076 unsigned int cpp = drm_format_plane_cpp(r->pixel_format, i);
3077
3078 if (!r->handles[i]) {
3079 DRM_DEBUG_KMS("no buffer object handle for plane %d\n", i);
3080 return -EINVAL;
3081 }
3082
3083 if ((uint64_t) width * cpp > UINT_MAX)
3084 return -ERANGE;
3085
3086 if ((uint64_t) height * r->pitches[i] + r->offsets[i] > UINT_MAX)
3087 return -ERANGE;
3088
3089 if (r->pitches[i] < width * cpp) {
3090 DRM_DEBUG_KMS("bad pitch %u for plane %d\n", r->pitches[i], i);
3091 return -EINVAL;
3092 }
3093 }
3094
3095 return 0;
3096 }
3097
3098 static struct drm_framebuffer *add_framebuffer_internal(struct drm_device *dev,
3099 struct drm_mode_fb_cmd2 *r,
3100 struct drm_file *file_priv)
3101 {
3102 struct drm_mode_config *config = &dev->mode_config;
3103 struct drm_framebuffer *fb;
3104 int ret;
3105
3106 if (r->flags & ~DRM_MODE_FB_INTERLACED) {
3107 DRM_DEBUG_KMS("bad framebuffer flags 0x%08x\n", r->flags);
3108 return ERR_PTR(-EINVAL);
3109 }
3110
3111 if ((config->min_width > r->width) || (r->width > config->max_width)) {
3112 DRM_DEBUG_KMS("bad framebuffer width %d, should be >= %d && <= %d\n",
3113 r->width, config->min_width, config->max_width);
3114 return ERR_PTR(-EINVAL);
3115 }
3116 if ((config->min_height > r->height) || (r->height > config->max_height)) {
3117 DRM_DEBUG_KMS("bad framebuffer height %d, should be >= %d && <= %d\n",
3118 r->height, config->min_height, config->max_height);
3119 return ERR_PTR(-EINVAL);
3120 }
3121
3122 ret = framebuffer_check(r);
3123 if (ret)
3124 return ERR_PTR(ret);
3125
3126 fb = dev->mode_config.funcs->fb_create(dev, file_priv, r);
3127 if (IS_ERR(fb)) {
3128 DRM_DEBUG_KMS("could not create framebuffer\n");
3129 return fb;
3130 }
3131
3132 mutex_lock(&file_priv->fbs_lock);
3133 r->fb_id = fb->base.id;
3134 list_add(&fb->filp_head, &file_priv->fbs);
3135 DRM_DEBUG_KMS("[FB:%d]\n", fb->base.id);
3136 mutex_unlock(&file_priv->fbs_lock);
3137
3138 return fb;
3139 }
3140
3141 /**
3142 * drm_mode_addfb2 - add an FB to the graphics configuration
3143 * @dev: drm device for the ioctl
3144 * @data: data pointer for the ioctl
3145 * @file_priv: drm file for the ioctl call
3146 *
3147 * Add a new FB to the specified CRTC, given a user request with format. This is
3148 * the 2nd version of the addfb ioctl, which supports multi-planar framebuffers
3149 * and uses fourcc codes as pixel format specifiers.
3150 *
3151 * Called by the user via ioctl.
3152 *
3153 * Returns:
3154 * Zero on success, errno on failure.
3155 */
3156 int drm_mode_addfb2(struct drm_device *dev,
3157 void *data, struct drm_file *file_priv)
3158 {
3159 struct drm_framebuffer *fb;
3160
3161 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3162 return -EINVAL;
3163
3164 fb = add_framebuffer_internal(dev, data, file_priv);
3165 if (IS_ERR(fb))
3166 return PTR_ERR(fb);
3167
3168 return 0;
3169 }
3170
3171 /**
3172 * drm_mode_rmfb - remove an FB from the configuration
3173 * @dev: drm device for the ioctl
3174 * @data: data pointer for the ioctl
3175 * @file_priv: drm file for the ioctl call
3176 *
3177 * Remove the FB specified by the user.
3178 *
3179 * Called by the user via ioctl.
3180 *
3181 * Returns:
3182 * Zero on success, errno on failure.
3183 */
3184 int drm_mode_rmfb(struct drm_device *dev,
3185 void *data, struct drm_file *file_priv)
3186 {
3187 struct drm_framebuffer *fb = NULL;
3188 struct drm_framebuffer *fbl = NULL;
3189 uint32_t *id = data;
3190 int found = 0;
3191
3192 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3193 return -EINVAL;
3194
3195 mutex_lock(&file_priv->fbs_lock);
3196 mutex_lock(&dev->mode_config.fb_lock);
3197 fb = __drm_framebuffer_lookup(dev, *id);
3198 if (!fb)
3199 goto fail_lookup;
3200
3201 list_for_each_entry(fbl, &file_priv->fbs, filp_head)
3202 if (fb == fbl)
3203 found = 1;
3204 if (!found)
3205 goto fail_lookup;
3206
3207 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3208 __drm_framebuffer_unregister(dev, fb);
3209
3210 list_del_init(&fb->filp_head);
3211 mutex_unlock(&dev->mode_config.fb_lock);
3212 mutex_unlock(&file_priv->fbs_lock);
3213
3214 drm_framebuffer_remove(fb);
3215
3216 return 0;
3217
3218 fail_lookup:
3219 mutex_unlock(&dev->mode_config.fb_lock);
3220 mutex_unlock(&file_priv->fbs_lock);
3221
3222 return -ENOENT;
3223 }
3224
3225 /**
3226 * drm_mode_getfb - get FB info
3227 * @dev: drm device for the ioctl
3228 * @data: data pointer for the ioctl
3229 * @file_priv: drm file for the ioctl call
3230 *
3231 * Lookup the FB given its ID and return info about it.
3232 *
3233 * Called by the user via ioctl.
3234 *
3235 * Returns:
3236 * Zero on success, errno on failure.
3237 */
3238 int drm_mode_getfb(struct drm_device *dev,
3239 void *data, struct drm_file *file_priv)
3240 {
3241 struct drm_mode_fb_cmd *r = data;
3242 struct drm_framebuffer *fb;
3243 int ret;
3244
3245 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3246 return -EINVAL;
3247
3248 fb = drm_framebuffer_lookup(dev, r->fb_id);
3249 if (!fb)
3250 return -ENOENT;
3251
3252 r->height = fb->height;
3253 r->width = fb->width;
3254 r->depth = fb->depth;
3255 r->bpp = fb->bits_per_pixel;
3256 r->pitch = fb->pitches[0];
3257 if (fb->funcs->create_handle) {
3258 if (file_priv->is_master || capable(CAP_SYS_ADMIN) ||
3259 drm_is_control_client(file_priv)) {
3260 ret = fb->funcs->create_handle(fb, file_priv,
3261 &r->handle);
3262 } else {
3263 /* GET_FB() is an unprivileged ioctl so we must not
3264 * return a buffer-handle to non-master processes! For
3265 * backwards-compatibility reasons, we cannot make
3266 * GET_FB() privileged, so just return an invalid handle
3267 * for non-masters. */
3268 r->handle = 0;
3269 ret = 0;
3270 }
3271 } else {
3272 ret = -ENODEV;
3273 }
3274
3275 drm_framebuffer_unreference(fb);
3276
3277 return ret;
3278 }
3279
3280 /**
3281 * drm_mode_dirtyfb_ioctl - flush frontbuffer rendering on an FB
3282 * @dev: drm device for the ioctl
3283 * @data: data pointer for the ioctl
3284 * @file_priv: drm file for the ioctl call
3285 *
3286 * Lookup the FB and flush out the damaged area supplied by userspace as a clip
3287 * rectangle list. Generic userspace which does frontbuffer rendering must call
3288 * this ioctl to flush out the changes on manual-update display outputs, e.g.
3289 * usb display-link, mipi manual update panels or edp panel self refresh modes.
3290 *
3291 * Modesetting drivers which always update the frontbuffer do not need to
3292 * implement the corresponding ->dirty framebuffer callback.
3293 *
3294 * Called by the user via ioctl.
3295 *
3296 * Returns:
3297 * Zero on success, errno on failure.
3298 */
3299 int drm_mode_dirtyfb_ioctl(struct drm_device *dev,
3300 void *data, struct drm_file *file_priv)
3301 {
3302 struct drm_clip_rect __user *clips_ptr;
3303 struct drm_clip_rect *clips = NULL;
3304 struct drm_mode_fb_dirty_cmd *r = data;
3305 struct drm_framebuffer *fb;
3306 unsigned flags;
3307 int num_clips;
3308 int ret;
3309
3310 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3311 return -EINVAL;
3312
3313 fb = drm_framebuffer_lookup(dev, r->fb_id);
3314 if (!fb)
3315 return -ENOENT;
3316
3317 num_clips = r->num_clips;
3318 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
3319
3320 if (!num_clips != !clips_ptr) {
3321 ret = -EINVAL;
3322 goto out_err1;
3323 }
3324
3325 flags = DRM_MODE_FB_DIRTY_FLAGS & r->flags;
3326
3327 /* If userspace annotates copy, clips must come in pairs */
3328 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) {
3329 ret = -EINVAL;
3330 goto out_err1;
3331 }
3332
3333 if (num_clips && clips_ptr) {
3334 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) {
3335 ret = -EINVAL;
3336 goto out_err1;
3337 }
3338 clips = kzalloc(num_clips * sizeof(*clips), GFP_KERNEL);
3339 if (!clips) {
3340 ret = -ENOMEM;
3341 goto out_err1;
3342 }
3343
3344 ret = copy_from_user(clips, clips_ptr,
3345 num_clips * sizeof(*clips));
3346 if (ret) {
3347 ret = -EFAULT;
3348 goto out_err2;
3349 }
3350 }
3351
3352 if (fb->funcs->dirty) {
3353 ret = fb->funcs->dirty(fb, file_priv, flags, r->color,
3354 clips, num_clips);
3355 } else {
3356 ret = -ENOSYS;
3357 }
3358
3359 out_err2:
3360 kfree(clips);
3361 out_err1:
3362 drm_framebuffer_unreference(fb);
3363
3364 return ret;
3365 }
3366
3367
3368 /**
3369 * drm_fb_release - remove and free the FBs on this file
3370 * @priv: drm file for the ioctl
3371 *
3372 * Destroy all the FBs associated with @filp.
3373 *
3374 * Called by the user via ioctl.
3375 *
3376 * Returns:
3377 * Zero on success, errno on failure.
3378 */
3379 void drm_fb_release(struct drm_file *priv)
3380 {
3381 struct drm_device *dev = priv->minor->dev;
3382 struct drm_framebuffer *fb, *tfb;
3383
3384 /*
3385 * When the file gets released that means no one else can access the fb
3386 * list any more, so no need to grab fpriv->fbs_lock. And we need to to
3387 * avoid upsetting lockdep since the universal cursor code adds a
3388 * framebuffer while holding mutex locks.
3389 *
3390 * Note that a real deadlock between fpriv->fbs_lock and the modeset
3391 * locks is impossible here since no one else but this function can get
3392 * at it any more.
3393 */
3394 list_for_each_entry_safe(fb, tfb, &priv->fbs, filp_head) {
3395
3396 mutex_lock(&dev->mode_config.fb_lock);
3397 /* Mark fb as reaped, we still have a ref from fpriv->fbs. */
3398 __drm_framebuffer_unregister(dev, fb);
3399 mutex_unlock(&dev->mode_config.fb_lock);
3400
3401 list_del_init(&fb->filp_head);
3402
3403 /* This will also drop the fpriv->fbs reference. */
3404 drm_framebuffer_remove(fb);
3405 }
3406 }
3407
3408 /**
3409 * drm_property_create - create a new property type
3410 * @dev: drm device
3411 * @flags: flags specifying the property type
3412 * @name: name of the property
3413 * @num_values: number of pre-defined values
3414 *
3415 * This creates a new generic drm property which can then be attached to a drm
3416 * object with drm_object_attach_property. The returned property object must be
3417 * freed with drm_property_destroy.
3418 *
3419 * Note that the DRM core keeps a per-device list of properties and that, if
3420 * drm_mode_config_cleanup() is called, it will destroy all properties created
3421 * by the driver.
3422 *
3423 * Returns:
3424 * A pointer to the newly created property on success, NULL on failure.
3425 */
3426 struct drm_property *drm_property_create(struct drm_device *dev, int flags,
3427 const char *name, int num_values)
3428 {
3429 struct drm_property *property = NULL;
3430 int ret;
3431
3432 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
3433 if (!property)
3434 return NULL;
3435
3436 property->dev = dev;
3437
3438 if (num_values) {
3439 property->values = kzalloc(sizeof(uint64_t)*num_values, GFP_KERNEL);
3440 if (!property->values)
3441 goto fail;
3442 }
3443
3444 ret = drm_mode_object_get(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
3445 if (ret)
3446 goto fail;
3447
3448 property->flags = flags;
3449 property->num_values = num_values;
3450 INIT_LIST_HEAD(&property->enum_blob_list);
3451
3452 if (name) {
3453 strncpy(property->name, name, DRM_PROP_NAME_LEN);
3454 property->name[DRM_PROP_NAME_LEN-1] = '\0';
3455 }
3456
3457 list_add_tail(&property->head, &dev->mode_config.property_list);
3458
3459 WARN_ON(!drm_property_type_valid(property));
3460
3461 return property;
3462 fail:
3463 kfree(property->values);
3464 kfree(property);
3465 return NULL;
3466 }
3467 EXPORT_SYMBOL(drm_property_create);
3468
3469 /**
3470 * drm_property_create_enum - create a new enumeration property type
3471 * @dev: drm device
3472 * @flags: flags specifying the property type
3473 * @name: name of the property
3474 * @props: enumeration lists with property values
3475 * @num_values: number of pre-defined values
3476 *
3477 * This creates a new generic drm property which can then be attached to a drm
3478 * object with drm_object_attach_property. The returned property object must be
3479 * freed with drm_property_destroy.
3480 *
3481 * Userspace is only allowed to set one of the predefined values for enumeration
3482 * properties.
3483 *
3484 * Returns:
3485 * A pointer to the newly created property on success, NULL on failure.
3486 */
3487 struct drm_property *drm_property_create_enum(struct drm_device *dev, int flags,
3488 const char *name,
3489 const struct drm_prop_enum_list *props,
3490 int num_values)
3491 {
3492 struct drm_property *property;
3493 int i, ret;
3494
3495 flags |= DRM_MODE_PROP_ENUM;
3496
3497 property = drm_property_create(dev, flags, name, num_values);
3498 if (!property)
3499 return NULL;
3500
3501 for (i = 0; i < num_values; i++) {
3502 ret = drm_property_add_enum(property, i,
3503 props[i].type,
3504 props[i].name);
3505 if (ret) {
3506 drm_property_destroy(dev, property);
3507 return NULL;
3508 }
3509 }
3510
3511 return property;
3512 }
3513 EXPORT_SYMBOL(drm_property_create_enum);
3514
3515 /**
3516 * drm_property_create_bitmask - create a new bitmask property type
3517 * @dev: drm device
3518 * @flags: flags specifying the property type
3519 * @name: name of the property
3520 * @props: enumeration lists with property bitflags
3521 * @num_props: size of the @props array
3522 * @supported_bits: bitmask of all supported enumeration values
3523 *
3524 * This creates a new bitmask drm property which can then be attached to a drm
3525 * object with drm_object_attach_property. The returned property object must be
3526 * freed with drm_property_destroy.
3527 *
3528 * Compared to plain enumeration properties userspace is allowed to set any
3529 * or'ed together combination of the predefined property bitflag values
3530 *
3531 * Returns:
3532 * A pointer to the newly created property on success, NULL on failure.
3533 */
3534 struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
3535 int flags, const char *name,
3536 const struct drm_prop_enum_list *props,
3537 int num_props,
3538 uint64_t supported_bits)
3539 {
3540 struct drm_property *property;
3541 int i, ret, index = 0;
3542 int num_values = hweight64(supported_bits);
3543
3544 flags |= DRM_MODE_PROP_BITMASK;
3545
3546 property = drm_property_create(dev, flags, name, num_values);
3547 if (!property)
3548 return NULL;
3549 for (i = 0; i < num_props; i++) {
3550 if (!(supported_bits & (1ULL << props[i].type)))
3551 continue;
3552
3553 if (WARN_ON(index >= num_values)) {
3554 drm_property_destroy(dev, property);
3555 return NULL;
3556 }
3557
3558 ret = drm_property_add_enum(property, index++,
3559 props[i].type,
3560 props[i].name);
3561 if (ret) {
3562 drm_property_destroy(dev, property);
3563 return NULL;
3564 }
3565 }
3566
3567 return property;
3568 }
3569 EXPORT_SYMBOL(drm_property_create_bitmask);
3570
3571 static struct drm_property *property_create_range(struct drm_device *dev,
3572 int flags, const char *name,
3573 uint64_t min, uint64_t max)
3574 {
3575 struct drm_property *property;
3576
3577 property = drm_property_create(dev, flags, name, 2);
3578 if (!property)
3579 return NULL;
3580
3581 property->values[0] = min;
3582 property->values[1] = max;
3583
3584 return property;
3585 }
3586
3587 /**
3588 * drm_property_create_range - create a new ranged property type
3589 * @dev: drm device
3590 * @flags: flags specifying the property type
3591 * @name: name of the property
3592 * @min: minimum value of the property
3593 * @max: maximum value of the property
3594 *
3595 * This creates a new generic drm property which can then be attached to a drm
3596 * object with drm_object_attach_property. The returned property object must be
3597 * freed with drm_property_destroy.
3598 *
3599 * Userspace is allowed to set any integer value in the (min, max) range
3600 * inclusive.
3601 *
3602 * Returns:
3603 * A pointer to the newly created property on success, NULL on failure.
3604 */
3605 struct drm_property *drm_property_create_range(struct drm_device *dev, int flags,
3606 const char *name,
3607 uint64_t min, uint64_t max)
3608 {
3609 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
3610 name, min, max);
3611 }
3612 EXPORT_SYMBOL(drm_property_create_range);
3613
3614 struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
3615 int flags, const char *name,
3616 int64_t min, int64_t max)
3617 {
3618 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
3619 name, I642U64(min), I642U64(max));
3620 }
3621 EXPORT_SYMBOL(drm_property_create_signed_range);
3622
3623 struct drm_property *drm_property_create_object(struct drm_device *dev,
3624 int flags, const char *name, uint32_t type)
3625 {
3626 struct drm_property *property;
3627
3628 flags |= DRM_MODE_PROP_OBJECT;
3629
3630 property = drm_property_create(dev, flags, name, 1);
3631 if (!property)
3632 return NULL;
3633
3634 property->values[0] = type;
3635
3636 return property;
3637 }
3638 EXPORT_SYMBOL(drm_property_create_object);
3639
3640 /**
3641 * drm_property_add_enum - add a possible value to an enumeration property
3642 * @property: enumeration property to change
3643 * @index: index of the new enumeration
3644 * @value: value of the new enumeration
3645 * @name: symbolic name of the new enumeration
3646 *
3647 * This functions adds enumerations to a property.
3648 *
3649 * It's use is deprecated, drivers should use one of the more specific helpers
3650 * to directly create the property with all enumerations already attached.
3651 *
3652 * Returns:
3653 * Zero on success, error code on failure.
3654 */
3655 int drm_property_add_enum(struct drm_property *property, int index,
3656 uint64_t value, const char *name)
3657 {
3658 struct drm_property_enum *prop_enum;
3659
3660 if (!(drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3661 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
3662 return -EINVAL;
3663
3664 /*
3665 * Bitmask enum properties have the additional constraint of values
3666 * from 0 to 63
3667 */
3668 if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
3669 (value > 63))
3670 return -EINVAL;
3671
3672 if (!list_empty(&property->enum_blob_list)) {
3673 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3674 if (prop_enum->value == value) {
3675 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3676 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3677 return 0;
3678 }
3679 }
3680 }
3681
3682 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
3683 if (!prop_enum)
3684 return -ENOMEM;
3685
3686 strncpy(prop_enum->name, name, DRM_PROP_NAME_LEN);
3687 prop_enum->name[DRM_PROP_NAME_LEN-1] = '\0';
3688 prop_enum->value = value;
3689
3690 property->values[index] = value;
3691 list_add_tail(&prop_enum->head, &property->enum_blob_list);
3692 return 0;
3693 }
3694 EXPORT_SYMBOL(drm_property_add_enum);
3695
3696 /**
3697 * drm_property_destroy - destroy a drm property
3698 * @dev: drm device
3699 * @property: property to destry
3700 *
3701 * This function frees a property including any attached resources like
3702 * enumeration values.
3703 */
3704 void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
3705 {
3706 struct drm_property_enum *prop_enum, *pt;
3707
3708 list_for_each_entry_safe(prop_enum, pt, &property->enum_blob_list, head) {
3709 list_del(&prop_enum->head);
3710 kfree(prop_enum);
3711 }
3712
3713 if (property->num_values)
3714 kfree(property->values);
3715 drm_mode_object_put(dev, &property->base);
3716 list_del(&property->head);
3717 kfree(property);
3718 }
3719 EXPORT_SYMBOL(drm_property_destroy);
3720
3721 /**
3722 * drm_object_attach_property - attach a property to a modeset object
3723 * @obj: drm modeset object
3724 * @property: property to attach
3725 * @init_val: initial value of the property
3726 *
3727 * This attaches the given property to the modeset object with the given initial
3728 * value. Currently this function cannot fail since the properties are stored in
3729 * a statically sized array.
3730 */
3731 void drm_object_attach_property(struct drm_mode_object *obj,
3732 struct drm_property *property,
3733 uint64_t init_val)
3734 {
3735 int count = obj->properties->count;
3736
3737 if (count == DRM_OBJECT_MAX_PROPERTY) {
3738 WARN(1, "Failed to attach object property (type: 0x%x). Please "
3739 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
3740 "you see this message on the same object type.\n",
3741 obj->type);
3742 return;
3743 }
3744
3745 obj->properties->ids[count] = property->base.id;
3746 obj->properties->values[count] = init_val;
3747 obj->properties->count++;
3748 }
3749 EXPORT_SYMBOL(drm_object_attach_property);
3750
3751 /**
3752 * drm_object_property_set_value - set the value of a property
3753 * @obj: drm mode object to set property value for
3754 * @property: property to set
3755 * @val: value the property should be set to
3756 *
3757 * This functions sets a given property on a given object. This function only
3758 * changes the software state of the property, it does not call into the
3759 * driver's ->set_property callback.
3760 *
3761 * Returns:
3762 * Zero on success, error code on failure.
3763 */
3764 int drm_object_property_set_value(struct drm_mode_object *obj,
3765 struct drm_property *property, uint64_t val)
3766 {
3767 int i;
3768
3769 for (i = 0; i < obj->properties->count; i++) {
3770 if (obj->properties->ids[i] == property->base.id) {
3771 obj->properties->values[i] = val;
3772 return 0;
3773 }
3774 }
3775
3776 return -EINVAL;
3777 }
3778 EXPORT_SYMBOL(drm_object_property_set_value);
3779
3780 /**
3781 * drm_object_property_get_value - retrieve the value of a property
3782 * @obj: drm mode object to get property value from
3783 * @property: property to retrieve
3784 * @val: storage for the property value
3785 *
3786 * This function retrieves the softare state of the given property for the given
3787 * property. Since there is no driver callback to retrieve the current property
3788 * value this might be out of sync with the hardware, depending upon the driver
3789 * and property.
3790 *
3791 * Returns:
3792 * Zero on success, error code on failure.
3793 */
3794 int drm_object_property_get_value(struct drm_mode_object *obj,
3795 struct drm_property *property, uint64_t *val)
3796 {
3797 int i;
3798
3799 for (i = 0; i < obj->properties->count; i++) {
3800 if (obj->properties->ids[i] == property->base.id) {
3801 *val = obj->properties->values[i];
3802 return 0;
3803 }
3804 }
3805
3806 return -EINVAL;
3807 }
3808 EXPORT_SYMBOL(drm_object_property_get_value);
3809
3810 /**
3811 * drm_mode_getproperty_ioctl - get the current value of a connector's property
3812 * @dev: DRM device
3813 * @data: ioctl data
3814 * @file_priv: DRM file info
3815 *
3816 * This function retrieves the current value for an connectors's property.
3817 *
3818 * Called by the user via ioctl.
3819 *
3820 * Returns:
3821 * Zero on success, errno on failure.
3822 */
3823 int drm_mode_getproperty_ioctl(struct drm_device *dev,
3824 void *data, struct drm_file *file_priv)
3825 {
3826 struct drm_mode_get_property *out_resp = data;
3827 struct drm_property *property;
3828 int enum_count = 0;
3829 int blob_count = 0;
3830 int value_count = 0;
3831 int ret = 0, i;
3832 int copied;
3833 struct drm_property_enum *prop_enum;
3834 struct drm_mode_property_enum __user *enum_ptr;
3835 struct drm_property_blob *prop_blob;
3836 uint32_t __user *blob_id_ptr;
3837 uint64_t __user *values_ptr;
3838 uint32_t __user *blob_length_ptr;
3839
3840 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3841 return -EINVAL;
3842
3843 drm_modeset_lock_all(dev);
3844 property = drm_property_find(dev, out_resp->prop_id);
3845 if (!property) {
3846 ret = -ENOENT;
3847 goto done;
3848 }
3849
3850 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3851 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
3852 list_for_each_entry(prop_enum, &property->enum_blob_list, head)
3853 enum_count++;
3854 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
3855 list_for_each_entry(prop_blob, &property->enum_blob_list, head)
3856 blob_count++;
3857 }
3858
3859 value_count = property->num_values;
3860
3861 strncpy(out_resp->name, property->name, DRM_PROP_NAME_LEN);
3862 out_resp->name[DRM_PROP_NAME_LEN-1] = 0;
3863 out_resp->flags = property->flags;
3864
3865 if ((out_resp->count_values >= value_count) && value_count) {
3866 values_ptr = (uint64_t __user *)(unsigned long)out_resp->values_ptr;
3867 for (i = 0; i < value_count; i++) {
3868 if (copy_to_user(values_ptr + i, &property->values[i], sizeof(uint64_t))) {
3869 ret = -EFAULT;
3870 goto done;
3871 }
3872 }
3873 }
3874 out_resp->count_values = value_count;
3875
3876 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
3877 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
3878 if ((out_resp->count_enum_blobs >= enum_count) && enum_count) {
3879 copied = 0;
3880 enum_ptr = (struct drm_mode_property_enum __user *)(unsigned long)out_resp->enum_blob_ptr;
3881 list_for_each_entry(prop_enum, &property->enum_blob_list, head) {
3882
3883 if (copy_to_user(&enum_ptr[copied].value, &prop_enum->value, sizeof(uint64_t))) {
3884 ret = -EFAULT;
3885 goto done;
3886 }
3887
3888 if (copy_to_user(&enum_ptr[copied].name,
3889 &prop_enum->name, DRM_PROP_NAME_LEN)) {
3890 ret = -EFAULT;
3891 goto done;
3892 }
3893 copied++;
3894 }
3895 }
3896 out_resp->count_enum_blobs = enum_count;
3897 }
3898
3899 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
3900 if ((out_resp->count_enum_blobs >= blob_count) && blob_count) {
3901 copied = 0;
3902 blob_id_ptr = (uint32_t __user *)(unsigned long)out_resp->enum_blob_ptr;
3903 blob_length_ptr = (uint32_t __user *)(unsigned long)out_resp->values_ptr;
3904
3905 list_for_each_entry(prop_blob, &property->enum_blob_list, head) {
3906 if (put_user(prop_blob->base.id, blob_id_ptr + copied)) {
3907 ret = -EFAULT;
3908 goto done;
3909 }
3910
3911 if (put_user(prop_blob->length, blob_length_ptr + copied)) {
3912 ret = -EFAULT;
3913 goto done;
3914 }
3915
3916 copied++;
3917 }
3918 }
3919 out_resp->count_enum_blobs = blob_count;
3920 }
3921 done:
3922 drm_modeset_unlock_all(dev);
3923 return ret;
3924 }
3925
3926 static struct drm_property_blob *drm_property_create_blob(struct drm_device *dev, int length,
3927 void *data)
3928 {
3929 struct drm_property_blob *blob;
3930 int ret;
3931
3932 if (!length || !data)
3933 return NULL;
3934
3935 blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
3936 if (!blob)
3937 return NULL;
3938
3939 ret = drm_mode_object_get(dev, &blob->base, DRM_MODE_OBJECT_BLOB);
3940 if (ret) {
3941 kfree(blob);
3942 return NULL;
3943 }
3944
3945 blob->length = length;
3946
3947 memcpy(blob->data, data, length);
3948
3949 list_add_tail(&blob->head, &dev->mode_config.property_blob_list);
3950 return blob;
3951 }
3952
3953 static void drm_property_destroy_blob(struct drm_device *dev,
3954 struct drm_property_blob *blob)
3955 {
3956 drm_mode_object_put(dev, &blob->base);
3957 list_del(&blob->head);
3958 kfree(blob);
3959 }
3960
3961 /**
3962 * drm_mode_getblob_ioctl - get the contents of a blob property value
3963 * @dev: DRM device
3964 * @data: ioctl data
3965 * @file_priv: DRM file info
3966 *
3967 * This function retrieves the contents of a blob property. The value stored in
3968 * an object's blob property is just a normal modeset object id.
3969 *
3970 * Called by the user via ioctl.
3971 *
3972 * Returns:
3973 * Zero on success, errno on failure.
3974 */
3975 int drm_mode_getblob_ioctl(struct drm_device *dev,
3976 void *data, struct drm_file *file_priv)
3977 {
3978 struct drm_mode_get_blob *out_resp = data;
3979 struct drm_property_blob *blob;
3980 int ret = 0;
3981 void __user *blob_ptr;
3982
3983 if (!drm_core_check_feature(dev, DRIVER_MODESET))
3984 return -EINVAL;
3985
3986 drm_modeset_lock_all(dev);
3987 blob = drm_property_blob_find(dev, out_resp->blob_id);
3988 if (!blob) {
3989 ret = -ENOENT;
3990 goto done;
3991 }
3992
3993 if (out_resp->length == blob->length) {
3994 blob_ptr = (void __user *)(unsigned long)out_resp->data;
3995 if (copy_to_user(blob_ptr, blob->data, blob->length)){
3996 ret = -EFAULT;
3997 goto done;
3998 }
3999 }
4000 out_resp->length = blob->length;
4001
4002 done:
4003 drm_modeset_unlock_all(dev);
4004 return ret;
4005 }
4006
4007 /**
4008 * drm_mode_connector_set_path_property - set tile property on connector
4009 * @connector: connector to set property on.
4010 * @path: path to use for property.
4011 *
4012 * This creates a property to expose to userspace to specify a
4013 * connector path. This is mainly used for DisplayPort MST where
4014 * connectors have a topology and we want to allow userspace to give
4015 * them more meaningful names.
4016 *
4017 * Returns:
4018 * Zero on success, errno on failure.
4019 */
4020 int drm_mode_connector_set_path_property(struct drm_connector *connector,
4021 char *path)
4022 {
4023 struct drm_device *dev = connector->dev;
4024 int ret, size;
4025 size = strlen(path) + 1;
4026
4027 connector->path_blob_ptr = drm_property_create_blob(connector->dev,
4028 size, path);
4029 if (!connector->path_blob_ptr)
4030 return -EINVAL;
4031
4032 ret = drm_object_property_set_value(&connector->base,
4033 dev->mode_config.path_property,
4034 connector->path_blob_ptr->base.id);
4035 return ret;
4036 }
4037 EXPORT_SYMBOL(drm_mode_connector_set_path_property);
4038
4039 /**
4040 * drm_mode_connector_update_edid_property - update the edid property of a connector
4041 * @connector: drm connector
4042 * @edid: new value of the edid property
4043 *
4044 * This function creates a new blob modeset object and assigns its id to the
4045 * connector's edid property.
4046 *
4047 * Returns:
4048 * Zero on success, errno on failure.
4049 */
4050 int drm_mode_connector_update_edid_property(struct drm_connector *connector,
4051 struct edid *edid)
4052 {
4053 struct drm_device *dev = connector->dev;
4054 int ret, size;
4055
4056 /* ignore requests to set edid when overridden */
4057 if (connector->override_edid)
4058 return 0;
4059
4060 if (connector->edid_blob_ptr)
4061 drm_property_destroy_blob(dev, connector->edid_blob_ptr);
4062
4063 /* Delete edid, when there is none. */
4064 if (!edid) {
4065 connector->edid_blob_ptr = NULL;
4066 ret = drm_object_property_set_value(&connector->base, dev->mode_config.edid_property, 0);
4067 return ret;
4068 }
4069
4070 size = EDID_LENGTH * (1 + edid->extensions);
4071 connector->edid_blob_ptr = drm_property_create_blob(connector->dev,
4072 size, edid);
4073 if (!connector->edid_blob_ptr)
4074 return -EINVAL;
4075
4076 ret = drm_object_property_set_value(&connector->base,
4077 dev->mode_config.edid_property,
4078 connector->edid_blob_ptr->base.id);
4079
4080 return ret;
4081 }
4082 EXPORT_SYMBOL(drm_mode_connector_update_edid_property);
4083
4084 static bool drm_property_change_is_valid(struct drm_property *property,
4085 uint64_t value)
4086 {
4087 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
4088 return false;
4089
4090 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
4091 if (value < property->values[0] || value > property->values[1])
4092 return false;
4093 return true;
4094 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
4095 int64_t svalue = U642I64(value);
4096 if (svalue < U642I64(property->values[0]) ||
4097 svalue > U642I64(property->values[1]))
4098 return false;
4099 return true;
4100 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
4101 int i;
4102 uint64_t valid_mask = 0;
4103 for (i = 0; i < property->num_values; i++)
4104 valid_mask |= (1ULL << property->values[i]);
4105 return !(value & ~valid_mask);
4106 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
4107 /* Only the driver knows */
4108 return true;
4109 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
4110 struct drm_mode_object *obj;
4111 /* a zero value for an object property translates to null: */
4112 if (value == 0)
4113 return true;
4114 /*
4115 * NOTE: use _object_find() directly to bypass restriction on
4116 * looking up refcnt'd objects (ie. fb's). For a refcnt'd
4117 * object this could race against object finalization, so it
4118 * simply tells us that the object *was* valid. Which is good
4119 * enough.
4120 */
4121 obj = _object_find(property->dev, value, property->values[0]);
4122 return obj != NULL;
4123 } else {
4124 int i;
4125 for (i = 0; i < property->num_values; i++)
4126 if (property->values[i] == value)
4127 return true;
4128 return false;
4129 }
4130 }
4131
4132 /**
4133 * drm_mode_connector_property_set_ioctl - set the current value of a connector property
4134 * @dev: DRM device
4135 * @data: ioctl data
4136 * @file_priv: DRM file info
4137 *
4138 * This function sets the current value for a connectors's property. It also
4139 * calls into a driver's ->set_property callback to update the hardware state
4140 *
4141 * Called by the user via ioctl.
4142 *
4143 * Returns:
4144 * Zero on success, errno on failure.
4145 */
4146 int drm_mode_connector_property_set_ioctl(struct drm_device *dev,
4147 void *data, struct drm_file *file_priv)
4148 {
4149 struct drm_mode_connector_set_property *conn_set_prop = data;
4150 struct drm_mode_obj_set_property obj_set_prop = {
4151 .value = conn_set_prop->value,
4152 .prop_id = conn_set_prop->prop_id,
4153 .obj_id = conn_set_prop->connector_id,
4154 .obj_type = DRM_MODE_OBJECT_CONNECTOR
4155 };
4156
4157 /* It does all the locking and checking we need */
4158 return drm_mode_obj_set_property_ioctl(dev, &obj_set_prop, file_priv);
4159 }
4160
4161 static int drm_mode_connector_set_obj_prop(struct drm_mode_object *obj,
4162 struct drm_property *property,
4163 uint64_t value)
4164 {
4165 int ret = -EINVAL;
4166 struct drm_connector *connector = obj_to_connector(obj);
4167
4168 /* Do DPMS ourselves */
4169 if (property == connector->dev->mode_config.dpms_property) {
4170 if (connector->funcs->dpms)
4171 (*connector->funcs->dpms)(connector, (int)value);
4172 ret = 0;
4173 } else if (connector->funcs->set_property)
4174 ret = connector->funcs->set_property(connector, property, value);
4175
4176 /* store the property value if successful */
4177 if (!ret)
4178 drm_object_property_set_value(&connector->base, property, value);
4179 return ret;
4180 }
4181
4182 static int drm_mode_crtc_set_obj_prop(struct drm_mode_object *obj,
4183 struct drm_property *property,
4184 uint64_t value)
4185 {
4186 int ret = -EINVAL;
4187 struct drm_crtc *crtc = obj_to_crtc(obj);
4188
4189 if (crtc->funcs->set_property)
4190 ret = crtc->funcs->set_property(crtc, property, value);
4191 if (!ret)
4192 drm_object_property_set_value(obj, property, value);
4193
4194 return ret;
4195 }
4196
4197 /**
4198 * drm_mode_plane_set_obj_prop - set the value of a property
4199 * @plane: drm plane object to set property value for
4200 * @property: property to set
4201 * @value: value the property should be set to
4202 *
4203 * This functions sets a given property on a given plane object. This function
4204 * calls the driver's ->set_property callback and changes the software state of
4205 * the property if the callback succeeds.
4206 *
4207 * Returns:
4208 * Zero on success, error code on failure.
4209 */
4210 int drm_mode_plane_set_obj_prop(struct drm_plane *plane,
4211 struct drm_property *property,
4212 uint64_t value)
4213 {
4214 int ret = -EINVAL;
4215 struct drm_mode_object *obj = &plane->base;
4216
4217 if (plane->funcs->set_property)
4218 ret = plane->funcs->set_property(plane, property, value);
4219 if (!ret)
4220 drm_object_property_set_value(obj, property, value);
4221
4222 return ret;
4223 }
4224 EXPORT_SYMBOL(drm_mode_plane_set_obj_prop);
4225
4226 /**
4227 * drm_mode_getproperty_ioctl - get the current value of a object's property
4228 * @dev: DRM device
4229 * @data: ioctl data
4230 * @file_priv: DRM file info
4231 *
4232 * This function retrieves the current value for an object's property. Compared
4233 * to the connector specific ioctl this one is extended to also work on crtc and
4234 * plane objects.
4235 *
4236 * Called by the user via ioctl.
4237 *
4238 * Returns:
4239 * Zero on success, errno on failure.
4240 */
4241 int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
4242 struct drm_file *file_priv)
4243 {
4244 struct drm_mode_obj_get_properties *arg = data;
4245 struct drm_mode_object *obj;
4246 int ret = 0;
4247 int i;
4248 int copied = 0;
4249 int props_count = 0;
4250 uint32_t __user *props_ptr;
4251 uint64_t __user *prop_values_ptr;
4252
4253 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4254 return -EINVAL;
4255
4256 drm_modeset_lock_all(dev);
4257
4258 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4259 if (!obj) {
4260 ret = -ENOENT;
4261 goto out;
4262 }
4263 if (!obj->properties) {
4264 ret = -EINVAL;
4265 goto out;
4266 }
4267
4268 props_count = obj->properties->count;
4269
4270 /* This ioctl is called twice, once to determine how much space is
4271 * needed, and the 2nd time to fill it. */
4272 if ((arg->count_props >= props_count) && props_count) {
4273 copied = 0;
4274 props_ptr = (uint32_t __user *)(unsigned long)(arg->props_ptr);
4275 prop_values_ptr = (uint64_t __user *)(unsigned long)
4276 (arg->prop_values_ptr);
4277 for (i = 0; i < props_count; i++) {
4278 if (put_user(obj->properties->ids[i],
4279 props_ptr + copied)) {
4280 ret = -EFAULT;
4281 goto out;
4282 }
4283 if (put_user(obj->properties->values[i],
4284 prop_values_ptr + copied)) {
4285 ret = -EFAULT;
4286 goto out;
4287 }
4288 copied++;
4289 }
4290 }
4291 arg->count_props = props_count;
4292 out:
4293 drm_modeset_unlock_all(dev);
4294 return ret;
4295 }
4296
4297 /**
4298 * drm_mode_obj_set_property_ioctl - set the current value of an object's property
4299 * @dev: DRM device
4300 * @data: ioctl data
4301 * @file_priv: DRM file info
4302 *
4303 * This function sets the current value for an object's property. It also calls
4304 * into a driver's ->set_property callback to update the hardware state.
4305 * Compared to the connector specific ioctl this one is extended to also work on
4306 * crtc and plane objects.
4307 *
4308 * Called by the user via ioctl.
4309 *
4310 * Returns:
4311 * Zero on success, errno on failure.
4312 */
4313 int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
4314 struct drm_file *file_priv)
4315 {
4316 struct drm_mode_obj_set_property *arg = data;
4317 struct drm_mode_object *arg_obj;
4318 struct drm_mode_object *prop_obj;
4319 struct drm_property *property;
4320 int ret = -EINVAL;
4321 int i;
4322
4323 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4324 return -EINVAL;
4325
4326 drm_modeset_lock_all(dev);
4327
4328 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
4329 if (!arg_obj) {
4330 ret = -ENOENT;
4331 goto out;
4332 }
4333 if (!arg_obj->properties)
4334 goto out;
4335
4336 for (i = 0; i < arg_obj->properties->count; i++)
4337 if (arg_obj->properties->ids[i] == arg->prop_id)
4338 break;
4339
4340 if (i == arg_obj->properties->count)
4341 goto out;
4342
4343 prop_obj = drm_mode_object_find(dev, arg->prop_id,
4344 DRM_MODE_OBJECT_PROPERTY);
4345 if (!prop_obj) {
4346 ret = -ENOENT;
4347 goto out;
4348 }
4349 property = obj_to_property(prop_obj);
4350
4351 if (!drm_property_change_is_valid(property, arg->value))
4352 goto out;
4353
4354 switch (arg_obj->type) {
4355 case DRM_MODE_OBJECT_CONNECTOR:
4356 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
4357 arg->value);
4358 break;
4359 case DRM_MODE_OBJECT_CRTC:
4360 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
4361 break;
4362 case DRM_MODE_OBJECT_PLANE:
4363 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
4364 property, arg->value);
4365 break;
4366 }
4367
4368 out:
4369 drm_modeset_unlock_all(dev);
4370 return ret;
4371 }
4372
4373 /**
4374 * drm_mode_connector_attach_encoder - attach a connector to an encoder
4375 * @connector: connector to attach
4376 * @encoder: encoder to attach @connector to
4377 *
4378 * This function links up a connector to an encoder. Note that the routing
4379 * restrictions between encoders and crtcs are exposed to userspace through the
4380 * possible_clones and possible_crtcs bitmasks.
4381 *
4382 * Returns:
4383 * Zero on success, errno on failure.
4384 */
4385 int drm_mode_connector_attach_encoder(struct drm_connector *connector,
4386 struct drm_encoder *encoder)
4387 {
4388 int i;
4389
4390 for (i = 0; i < DRM_CONNECTOR_MAX_ENCODER; i++) {
4391 if (connector->encoder_ids[i] == 0) {
4392 connector->encoder_ids[i] = encoder->base.id;
4393 return 0;
4394 }
4395 }
4396 return -ENOMEM;
4397 }
4398 EXPORT_SYMBOL(drm_mode_connector_attach_encoder);
4399
4400 /**
4401 * drm_mode_crtc_set_gamma_size - set the gamma table size
4402 * @crtc: CRTC to set the gamma table size for
4403 * @gamma_size: size of the gamma table
4404 *
4405 * Drivers which support gamma tables should set this to the supported gamma
4406 * table size when initializing the CRTC. Currently the drm core only supports a
4407 * fixed gamma table size.
4408 *
4409 * Returns:
4410 * Zero on success, errno on failure.
4411 */
4412 int drm_mode_crtc_set_gamma_size(struct drm_crtc *crtc,
4413 int gamma_size)
4414 {
4415 crtc->gamma_size = gamma_size;
4416
4417 crtc->gamma_store = kzalloc(gamma_size * sizeof(uint16_t) * 3, GFP_KERNEL);
4418 if (!crtc->gamma_store) {
4419 crtc->gamma_size = 0;
4420 return -ENOMEM;
4421 }
4422
4423 return 0;
4424 }
4425 EXPORT_SYMBOL(drm_mode_crtc_set_gamma_size);
4426
4427 /**
4428 * drm_mode_gamma_set_ioctl - set the gamma table
4429 * @dev: DRM device
4430 * @data: ioctl data
4431 * @file_priv: DRM file info
4432 *
4433 * Set the gamma table of a CRTC to the one passed in by the user. Userspace can
4434 * inquire the required gamma table size through drm_mode_gamma_get_ioctl.
4435 *
4436 * Called by the user via ioctl.
4437 *
4438 * Returns:
4439 * Zero on success, errno on failure.
4440 */
4441 int drm_mode_gamma_set_ioctl(struct drm_device *dev,
4442 void *data, struct drm_file *file_priv)
4443 {
4444 struct drm_mode_crtc_lut *crtc_lut = data;
4445 struct drm_crtc *crtc;
4446 void *r_base, *g_base, *b_base;
4447 int size;
4448 int ret = 0;
4449
4450 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4451 return -EINVAL;
4452
4453 drm_modeset_lock_all(dev);
4454 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4455 if (!crtc) {
4456 ret = -ENOENT;
4457 goto out;
4458 }
4459
4460 if (crtc->funcs->gamma_set == NULL) {
4461 ret = -ENOSYS;
4462 goto out;
4463 }
4464
4465 /* memcpy into gamma store */
4466 if (crtc_lut->gamma_size != crtc->gamma_size) {
4467 ret = -EINVAL;
4468 goto out;
4469 }
4470
4471 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4472 r_base = crtc->gamma_store;
4473 if (copy_from_user(r_base, (void __user *)(unsigned long)crtc_lut->red, size)) {
4474 ret = -EFAULT;
4475 goto out;
4476 }
4477
4478 g_base = r_base + size;
4479 if (copy_from_user(g_base, (void __user *)(unsigned long)crtc_lut->green, size)) {
4480 ret = -EFAULT;
4481 goto out;
4482 }
4483
4484 b_base = g_base + size;
4485 if (copy_from_user(b_base, (void __user *)(unsigned long)crtc_lut->blue, size)) {
4486 ret = -EFAULT;
4487 goto out;
4488 }
4489
4490 crtc->funcs->gamma_set(crtc, r_base, g_base, b_base, 0, crtc->gamma_size);
4491
4492 out:
4493 drm_modeset_unlock_all(dev);
4494 return ret;
4495
4496 }
4497
4498 /**
4499 * drm_mode_gamma_get_ioctl - get the gamma table
4500 * @dev: DRM device
4501 * @data: ioctl data
4502 * @file_priv: DRM file info
4503 *
4504 * Copy the current gamma table into the storage provided. This also provides
4505 * the gamma table size the driver expects, which can be used to size the
4506 * allocated storage.
4507 *
4508 * Called by the user via ioctl.
4509 *
4510 * Returns:
4511 * Zero on success, errno on failure.
4512 */
4513 int drm_mode_gamma_get_ioctl(struct drm_device *dev,
4514 void *data, struct drm_file *file_priv)
4515 {
4516 struct drm_mode_crtc_lut *crtc_lut = data;
4517 struct drm_crtc *crtc;
4518 void *r_base, *g_base, *b_base;
4519 int size;
4520 int ret = 0;
4521
4522 if (!drm_core_check_feature(dev, DRIVER_MODESET))
4523 return -EINVAL;
4524
4525 drm_modeset_lock_all(dev);
4526 crtc = drm_crtc_find(dev, crtc_lut->crtc_id);
4527 if (!crtc) {
4528 ret = -ENOENT;
4529 goto out;
4530 }
4531
4532 /* memcpy into gamma store */
4533 if (crtc_lut->gamma_size != crtc->gamma_size) {
4534 ret = -EINVAL;
4535 goto out;
4536 }
4537
4538 size = crtc_lut->gamma_size * (sizeof(uint16_t));
4539 r_base = crtc->gamma_store;
4540 if (copy_to_user((void __user *)(unsigned long)crtc_lut->red, r_base, size)) {
4541 ret = -EFAULT;
4542 goto out;
4543 }
4544
4545 g_base = r_base + size;
4546 if (copy_to_user((void __user *)(unsigned long)crtc_lut->green, g_base, size)) {
4547 ret = -EFAULT;
4548 goto out;
4549 }
4550
4551 b_base = g_base + size;
4552 if (copy_to_user((void __user *)(unsigned long)crtc_lut->blue, b_base, size)) {
4553 ret = -EFAULT;
4554 goto out;
4555 }
4556 out:
4557 drm_modeset_unlock_all(dev);
4558 return ret;
4559 }
4560
4561 /**
4562 * drm_mode_page_flip_ioctl - schedule an asynchronous fb update
4563 * @dev: DRM device
4564 * @data: ioctl data
4565 * @file_priv: DRM file info
4566 *
4567 * This schedules an asynchronous update on a given CRTC, called page flip.
4568 * Optionally a drm event is generated to signal the completion of the event.
4569 * Generic drivers cannot assume that a pageflip with changed framebuffer
4570 * properties (including driver specific metadata like tiling layout) will work,
4571 * but some drivers support e.g. pixel format changes through the pageflip
4572 * ioctl.
4573 *
4574 * Called by the user via ioctl.
4575 *
4576 * Returns:
4577 * Zero on success, errno on failure.
4578 */
4579 int drm_mode_page_flip_ioctl(struct drm_device *dev,
4580 void *data, struct drm_file *file_priv)
4581 {
4582 struct drm_mode_crtc_page_flip *page_flip = data;
4583 struct drm_crtc *crtc;
4584 struct drm_framebuffer *fb = NULL;
4585 struct drm_pending_vblank_event *e = NULL;
4586 unsigned long flags;
4587 int ret = -EINVAL;
4588
4589 if (page_flip->flags & ~DRM_MODE_PAGE_FLIP_FLAGS ||
4590 page_flip->reserved != 0)
4591 return -EINVAL;
4592
4593 if ((page_flip->flags & DRM_MODE_PAGE_FLIP_ASYNC) && !dev->mode_config.async_page_flip)
4594 return -EINVAL;
4595
4596 crtc = drm_crtc_find(dev, page_flip->crtc_id);
4597 if (!crtc)
4598 return -ENOENT;
4599
4600 drm_modeset_lock_crtc(crtc, crtc->primary);
4601 if (crtc->primary->fb == NULL) {
4602 /* The framebuffer is currently unbound, presumably
4603 * due to a hotplug event, that userspace has not
4604 * yet discovered.
4605 */
4606 ret = -EBUSY;
4607 goto out;
4608 }
4609
4610 if (crtc->funcs->page_flip == NULL)
4611 goto out;
4612
4613 fb = drm_framebuffer_lookup(dev, page_flip->fb_id);
4614 if (!fb) {
4615 ret = -ENOENT;
4616 goto out;
4617 }
4618
4619 ret = drm_crtc_check_viewport(crtc, crtc->x, crtc->y, &crtc->mode, fb);
4620 if (ret)
4621 goto out;
4622
4623 if (crtc->primary->fb->pixel_format != fb->pixel_format) {
4624 DRM_DEBUG_KMS("Page flip is not allowed to change frame buffer format.\n");
4625 ret = -EINVAL;
4626 goto out;
4627 }
4628
4629 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4630 ret = -ENOMEM;
4631 spin_lock_irqsave(&dev->event_lock, flags);
4632 if (file_priv->event_space < sizeof e->event) {
4633 spin_unlock_irqrestore(&dev->event_lock, flags);
4634 goto out;
4635 }
4636 file_priv->event_space -= sizeof e->event;
4637 spin_unlock_irqrestore(&dev->event_lock, flags);
4638
4639 e = kzalloc(sizeof *e, GFP_KERNEL);
4640 if (e == NULL) {
4641 spin_lock_irqsave(&dev->event_lock, flags);
4642 file_priv->event_space += sizeof e->event;
4643 spin_unlock_irqrestore(&dev->event_lock, flags);
4644 goto out;
4645 }
4646
4647 e->event.base.type = DRM_EVENT_FLIP_COMPLETE;
4648 e->event.base.length = sizeof e->event;
4649 e->event.user_data = page_flip->user_data;
4650 e->base.event = &e->event.base;
4651 e->base.file_priv = file_priv;
4652 e->base.destroy =
4653 (void (*) (struct drm_pending_event *)) kfree;
4654 }
4655
4656 crtc->primary->old_fb = crtc->primary->fb;
4657 ret = crtc->funcs->page_flip(crtc, fb, e, page_flip->flags);
4658 if (ret) {
4659 if (page_flip->flags & DRM_MODE_PAGE_FLIP_EVENT) {
4660 spin_lock_irqsave(&dev->event_lock, flags);
4661 file_priv->event_space += sizeof e->event;
4662 spin_unlock_irqrestore(&dev->event_lock, flags);
4663 kfree(e);
4664 }
4665 /* Keep the old fb, don't unref it. */
4666 crtc->primary->old_fb = NULL;
4667 } else {
4668 /*
4669 * Warn if the driver hasn't properly updated the crtc->fb
4670 * field to reflect that the new framebuffer is now used.
4671 * Failing to do so will screw with the reference counting
4672 * on framebuffers.
4673 */
4674 WARN_ON(crtc->primary->fb != fb);
4675 /* Unref only the old framebuffer. */
4676 fb = NULL;
4677 }
4678
4679 out:
4680 if (fb)
4681 drm_framebuffer_unreference(fb);
4682 if (crtc->primary->old_fb)
4683 drm_framebuffer_unreference(crtc->primary->old_fb);
4684 crtc->primary->old_fb = NULL;
4685 drm_modeset_unlock_crtc(crtc);
4686
4687 return ret;
4688 }
4689
4690 /**
4691 * drm_mode_config_reset - call ->reset callbacks
4692 * @dev: drm device
4693 *
4694 * This functions calls all the crtc's, encoder's and connector's ->reset
4695 * callback. Drivers can use this in e.g. their driver load or resume code to
4696 * reset hardware and software state.
4697 */
4698 void drm_mode_config_reset(struct drm_device *dev)
4699 {
4700 struct drm_crtc *crtc;
4701 struct drm_plane *plane;
4702 struct drm_encoder *encoder;
4703 struct drm_connector *connector;
4704
4705 list_for_each_entry(plane, &dev->mode_config.plane_list, head)
4706 if (plane->funcs->reset)
4707 plane->funcs->reset(plane);
4708
4709 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head)
4710 if (crtc->funcs->reset)
4711 crtc->funcs->reset(crtc);
4712
4713 list_for_each_entry(encoder, &dev->mode_config.encoder_list, head)
4714 if (encoder->funcs->reset)
4715 encoder->funcs->reset(encoder);
4716
4717 list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
4718 connector->status = connector_status_unknown;
4719
4720 if (connector->funcs->reset)
4721 connector->funcs->reset(connector);
4722 }
4723 }
4724 EXPORT_SYMBOL(drm_mode_config_reset);
4725
4726 /**
4727 * drm_mode_create_dumb_ioctl - create a dumb backing storage buffer
4728 * @dev: DRM device
4729 * @data: ioctl data
4730 * @file_priv: DRM file info
4731 *
4732 * This creates a new dumb buffer in the driver's backing storage manager (GEM,
4733 * TTM or something else entirely) and returns the resulting buffer handle. This
4734 * handle can then be wrapped up into a framebuffer modeset object.
4735 *
4736 * Note that userspace is not allowed to use such objects for render
4737 * acceleration - drivers must create their own private ioctls for such a use
4738 * case.
4739 *
4740 * Called by the user via ioctl.
4741 *
4742 * Returns:
4743 * Zero on success, errno on failure.
4744 */
4745 int drm_mode_create_dumb_ioctl(struct drm_device *dev,
4746 void *data, struct drm_file *file_priv)
4747 {
4748 struct drm_mode_create_dumb *args = data;
4749 u32 cpp, stride, size;
4750
4751 if (!dev->driver->dumb_create)
4752 return -ENOSYS;
4753 if (!args->width || !args->height || !args->bpp)
4754 return -EINVAL;
4755
4756 /* overflow checks for 32bit size calculations */
4757 /* NOTE: DIV_ROUND_UP() can overflow */
4758 cpp = DIV_ROUND_UP(args->bpp, 8);
4759 if (!cpp || cpp > 0xffffffffU / args->width)
4760 return -EINVAL;
4761 stride = cpp * args->width;
4762 if (args->height > 0xffffffffU / stride)
4763 return -EINVAL;
4764
4765 /* test for wrap-around */
4766 size = args->height * stride;
4767 if (PAGE_ALIGN(size) == 0)
4768 return -EINVAL;
4769
4770 return dev->driver->dumb_create(file_priv, dev, args);
4771 }
4772
4773 /**
4774 * drm_mode_mmap_dumb_ioctl - create an mmap offset for a dumb backing storage buffer
4775 * @dev: DRM device
4776 * @data: ioctl data
4777 * @file_priv: DRM file info
4778 *
4779 * Allocate an offset in the drm device node's address space to be able to
4780 * memory map a dumb buffer.
4781 *
4782 * Called by the user via ioctl.
4783 *
4784 * Returns:
4785 * Zero on success, errno on failure.
4786 */
4787 int drm_mode_mmap_dumb_ioctl(struct drm_device *dev,
4788 void *data, struct drm_file *file_priv)
4789 {
4790 struct drm_mode_map_dumb *args = data;
4791
4792 /* call driver ioctl to get mmap offset */
4793 if (!dev->driver->dumb_map_offset)
4794 return -ENOSYS;
4795
4796 return dev->driver->dumb_map_offset(file_priv, dev, args->handle, &args->offset);
4797 }
4798
4799 /**
4800 * drm_mode_destroy_dumb_ioctl - destroy a dumb backing strage buffer
4801 * @dev: DRM device
4802 * @data: ioctl data
4803 * @file_priv: DRM file info
4804 *
4805 * This destroys the userspace handle for the given dumb backing storage buffer.
4806 * Since buffer objects must be reference counted in the kernel a buffer object
4807 * won't be immediately freed if a framebuffer modeset object still uses it.
4808 *
4809 * Called by the user via ioctl.
4810 *
4811 * Returns:
4812 * Zero on success, errno on failure.
4813 */
4814 int drm_mode_destroy_dumb_ioctl(struct drm_device *dev,
4815 void *data, struct drm_file *file_priv)
4816 {
4817 struct drm_mode_destroy_dumb *args = data;
4818
4819 if (!dev->driver->dumb_destroy)
4820 return -ENOSYS;
4821
4822 return dev->driver->dumb_destroy(file_priv, dev, args->handle);
4823 }
4824
4825 /**
4826 * drm_fb_get_bpp_depth - get the bpp/depth values for format
4827 * @format: pixel format (DRM_FORMAT_*)
4828 * @depth: storage for the depth value
4829 * @bpp: storage for the bpp value
4830 *
4831 * This only supports RGB formats here for compat with code that doesn't use
4832 * pixel formats directly yet.
4833 */
4834 void drm_fb_get_bpp_depth(uint32_t format, unsigned int *depth,
4835 int *bpp)
4836 {
4837 switch (format) {
4838 case DRM_FORMAT_C8:
4839 case DRM_FORMAT_RGB332:
4840 case DRM_FORMAT_BGR233:
4841 *depth = 8;
4842 *bpp = 8;
4843 break;
4844 case DRM_FORMAT_XRGB1555:
4845 case DRM_FORMAT_XBGR1555:
4846 case DRM_FORMAT_RGBX5551:
4847 case DRM_FORMAT_BGRX5551:
4848 case DRM_FORMAT_ARGB1555:
4849 case DRM_FORMAT_ABGR1555:
4850 case DRM_FORMAT_RGBA5551:
4851 case DRM_FORMAT_BGRA5551:
4852 *depth = 15;
4853 *bpp = 16;
4854 break;
4855 case DRM_FORMAT_RGB565:
4856 case DRM_FORMAT_BGR565:
4857 *depth = 16;
4858 *bpp = 16;
4859 break;
4860 case DRM_FORMAT_RGB888:
4861 case DRM_FORMAT_BGR888:
4862 *depth = 24;
4863 *bpp = 24;
4864 break;
4865 case DRM_FORMAT_XRGB8888:
4866 case DRM_FORMAT_XBGR8888:
4867 case DRM_FORMAT_RGBX8888:
4868 case DRM_FORMAT_BGRX8888:
4869 *depth = 24;
4870 *bpp = 32;
4871 break;
4872 case DRM_FORMAT_XRGB2101010:
4873 case DRM_FORMAT_XBGR2101010:
4874 case DRM_FORMAT_RGBX1010102:
4875 case DRM_FORMAT_BGRX1010102:
4876 case DRM_FORMAT_ARGB2101010:
4877 case DRM_FORMAT_ABGR2101010:
4878 case DRM_FORMAT_RGBA1010102:
4879 case DRM_FORMAT_BGRA1010102:
4880 *depth = 30;
4881 *bpp = 32;
4882 break;
4883 case DRM_FORMAT_ARGB8888:
4884 case DRM_FORMAT_ABGR8888:
4885 case DRM_FORMAT_RGBA8888:
4886 case DRM_FORMAT_BGRA8888:
4887 *depth = 32;
4888 *bpp = 32;
4889 break;
4890 default:
4891 DRM_DEBUG_KMS("unsupported pixel format %s\n",
4892 drm_get_format_name(format));
4893 *depth = 0;
4894 *bpp = 0;
4895 break;
4896 }
4897 }
4898 EXPORT_SYMBOL(drm_fb_get_bpp_depth);
4899
4900 /**
4901 * drm_format_num_planes - get the number of planes for format
4902 * @format: pixel format (DRM_FORMAT_*)
4903 *
4904 * Returns:
4905 * The number of planes used by the specified pixel format.
4906 */
4907 int drm_format_num_planes(uint32_t format)
4908 {
4909 switch (format) {
4910 case DRM_FORMAT_YUV410:
4911 case DRM_FORMAT_YVU410:
4912 case DRM_FORMAT_YUV411:
4913 case DRM_FORMAT_YVU411:
4914 case DRM_FORMAT_YUV420:
4915 case DRM_FORMAT_YVU420:
4916 case DRM_FORMAT_YUV422:
4917 case DRM_FORMAT_YVU422:
4918 case DRM_FORMAT_YUV444:
4919 case DRM_FORMAT_YVU444:
4920 return 3;
4921 case DRM_FORMAT_NV12:
4922 case DRM_FORMAT_NV21:
4923 case DRM_FORMAT_NV16:
4924 case DRM_FORMAT_NV61:
4925 case DRM_FORMAT_NV24:
4926 case DRM_FORMAT_NV42:
4927 return 2;
4928 default:
4929 return 1;
4930 }
4931 }
4932 EXPORT_SYMBOL(drm_format_num_planes);
4933
4934 /**
4935 * drm_format_plane_cpp - determine the bytes per pixel value
4936 * @format: pixel format (DRM_FORMAT_*)
4937 * @plane: plane index
4938 *
4939 * Returns:
4940 * The bytes per pixel value for the specified plane.
4941 */
4942 int drm_format_plane_cpp(uint32_t format, int plane)
4943 {
4944 unsigned int depth;
4945 int bpp;
4946
4947 if (plane >= drm_format_num_planes(format))
4948 return 0;
4949
4950 switch (format) {
4951 case DRM_FORMAT_YUYV:
4952 case DRM_FORMAT_YVYU:
4953 case DRM_FORMAT_UYVY:
4954 case DRM_FORMAT_VYUY:
4955 return 2;
4956 case DRM_FORMAT_NV12:
4957 case DRM_FORMAT_NV21:
4958 case DRM_FORMAT_NV16:
4959 case DRM_FORMAT_NV61:
4960 case DRM_FORMAT_NV24:
4961 case DRM_FORMAT_NV42:
4962 return plane ? 2 : 1;
4963 case DRM_FORMAT_YUV410:
4964 case DRM_FORMAT_YVU410:
4965 case DRM_FORMAT_YUV411:
4966 case DRM_FORMAT_YVU411:
4967 case DRM_FORMAT_YUV420:
4968 case DRM_FORMAT_YVU420:
4969 case DRM_FORMAT_YUV422:
4970 case DRM_FORMAT_YVU422:
4971 case DRM_FORMAT_YUV444:
4972 case DRM_FORMAT_YVU444:
4973 return 1;
4974 default:
4975 drm_fb_get_bpp_depth(format, &depth, &bpp);
4976 return bpp >> 3;
4977 }
4978 }
4979 EXPORT_SYMBOL(drm_format_plane_cpp);
4980
4981 /**
4982 * drm_format_horz_chroma_subsampling - get the horizontal chroma subsampling factor
4983 * @format: pixel format (DRM_FORMAT_*)
4984 *
4985 * Returns:
4986 * The horizontal chroma subsampling factor for the
4987 * specified pixel format.
4988 */
4989 int drm_format_horz_chroma_subsampling(uint32_t format)
4990 {
4991 switch (format) {
4992 case DRM_FORMAT_YUV411:
4993 case DRM_FORMAT_YVU411:
4994 case DRM_FORMAT_YUV410:
4995 case DRM_FORMAT_YVU410:
4996 return 4;
4997 case DRM_FORMAT_YUYV:
4998 case DRM_FORMAT_YVYU:
4999 case DRM_FORMAT_UYVY:
5000 case DRM_FORMAT_VYUY:
5001 case DRM_FORMAT_NV12:
5002 case DRM_FORMAT_NV21:
5003 case DRM_FORMAT_NV16:
5004 case DRM_FORMAT_NV61:
5005 case DRM_FORMAT_YUV422:
5006 case DRM_FORMAT_YVU422:
5007 case DRM_FORMAT_YUV420:
5008 case DRM_FORMAT_YVU420:
5009 return 2;
5010 default:
5011 return 1;
5012 }
5013 }
5014 EXPORT_SYMBOL(drm_format_horz_chroma_subsampling);
5015
5016 /**
5017 * drm_format_vert_chroma_subsampling - get the vertical chroma subsampling factor
5018 * @format: pixel format (DRM_FORMAT_*)
5019 *
5020 * Returns:
5021 * The vertical chroma subsampling factor for the
5022 * specified pixel format.
5023 */
5024 int drm_format_vert_chroma_subsampling(uint32_t format)
5025 {
5026 switch (format) {
5027 case DRM_FORMAT_YUV410:
5028 case DRM_FORMAT_YVU410:
5029 return 4;
5030 case DRM_FORMAT_YUV420:
5031 case DRM_FORMAT_YVU420:
5032 case DRM_FORMAT_NV12:
5033 case DRM_FORMAT_NV21:
5034 return 2;
5035 default:
5036 return 1;
5037 }
5038 }
5039 EXPORT_SYMBOL(drm_format_vert_chroma_subsampling);
5040
5041 /**
5042 * drm_rotation_simplify() - Try to simplify the rotation
5043 * @rotation: Rotation to be simplified
5044 * @supported_rotations: Supported rotations
5045 *
5046 * Attempt to simplify the rotation to a form that is supported.
5047 * Eg. if the hardware supports everything except DRM_REFLECT_X
5048 * one could call this function like this:
5049 *
5050 * drm_rotation_simplify(rotation, BIT(DRM_ROTATE_0) |
5051 * BIT(DRM_ROTATE_90) | BIT(DRM_ROTATE_180) |
5052 * BIT(DRM_ROTATE_270) | BIT(DRM_REFLECT_Y));
5053 *
5054 * to eliminate the DRM_ROTATE_X flag. Depending on what kind of
5055 * transforms the hardware supports, this function may not
5056 * be able to produce a supported transform, so the caller should
5057 * check the result afterwards.
5058 */
5059 unsigned int drm_rotation_simplify(unsigned int rotation,
5060 unsigned int supported_rotations)
5061 {
5062 if (rotation & ~supported_rotations) {
5063 rotation ^= BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y);
5064 rotation = (rotation & ~0xf) | BIT((ffs(rotation & 0xf) + 1) % 4);
5065 }
5066
5067 return rotation;
5068 }
5069 EXPORT_SYMBOL(drm_rotation_simplify);
5070
5071 /**
5072 * drm_mode_config_init - initialize DRM mode_configuration structure
5073 * @dev: DRM device
5074 *
5075 * Initialize @dev's mode_config structure, used for tracking the graphics
5076 * configuration of @dev.
5077 *
5078 * Since this initializes the modeset locks, no locking is possible. Which is no
5079 * problem, since this should happen single threaded at init time. It is the
5080 * driver's problem to ensure this guarantee.
5081 *
5082 */
5083 void drm_mode_config_init(struct drm_device *dev)
5084 {
5085 mutex_init(&dev->mode_config.mutex);
5086 drm_modeset_lock_init(&dev->mode_config.connection_mutex);
5087 mutex_init(&dev->mode_config.idr_mutex);
5088 mutex_init(&dev->mode_config.fb_lock);
5089 INIT_LIST_HEAD(&dev->mode_config.fb_list);
5090 INIT_LIST_HEAD(&dev->mode_config.crtc_list);
5091 INIT_LIST_HEAD(&dev->mode_config.connector_list);
5092 INIT_LIST_HEAD(&dev->mode_config.bridge_list);
5093 INIT_LIST_HEAD(&dev->mode_config.encoder_list);
5094 INIT_LIST_HEAD(&dev->mode_config.property_list);
5095 INIT_LIST_HEAD(&dev->mode_config.property_blob_list);
5096 INIT_LIST_HEAD(&dev->mode_config.plane_list);
5097 idr_init(&dev->mode_config.crtc_idr);
5098
5099 drm_modeset_lock_all(dev);
5100 drm_mode_create_standard_connector_properties(dev);
5101 drm_mode_create_standard_plane_properties(dev);
5102 drm_modeset_unlock_all(dev);
5103
5104 /* Just to be sure */
5105 dev->mode_config.num_fb = 0;
5106 dev->mode_config.num_connector = 0;
5107 dev->mode_config.num_crtc = 0;
5108 dev->mode_config.num_encoder = 0;
5109 dev->mode_config.num_overlay_plane = 0;
5110 dev->mode_config.num_total_plane = 0;
5111 }
5112 EXPORT_SYMBOL(drm_mode_config_init);
5113
5114 /**
5115 * drm_mode_config_cleanup - free up DRM mode_config info
5116 * @dev: DRM device
5117 *
5118 * Free up all the connectors and CRTCs associated with this DRM device, then
5119 * free up the framebuffers and associated buffer objects.
5120 *
5121 * Note that since this /should/ happen single-threaded at driver/device
5122 * teardown time, no locking is required. It's the driver's job to ensure that
5123 * this guarantee actually holds true.
5124 *
5125 * FIXME: cleanup any dangling user buffer objects too
5126 */
5127 void drm_mode_config_cleanup(struct drm_device *dev)
5128 {
5129 struct drm_connector *connector, *ot;
5130 struct drm_crtc *crtc, *ct;
5131 struct drm_encoder *encoder, *enct;
5132 struct drm_bridge *bridge, *brt;
5133 struct drm_framebuffer *fb, *fbt;
5134 struct drm_property *property, *pt;
5135 struct drm_property_blob *blob, *bt;
5136 struct drm_plane *plane, *plt;
5137
5138 list_for_each_entry_safe(encoder, enct, &dev->mode_config.encoder_list,
5139 head) {
5140 encoder->funcs->destroy(encoder);
5141 }
5142
5143 list_for_each_entry_safe(bridge, brt,
5144 &dev->mode_config.bridge_list, head) {
5145 bridge->funcs->destroy(bridge);
5146 }
5147
5148 list_for_each_entry_safe(connector, ot,
5149 &dev->mode_config.connector_list, head) {
5150 connector->funcs->destroy(connector);
5151 }
5152
5153 list_for_each_entry_safe(property, pt, &dev->mode_config.property_list,
5154 head) {
5155 drm_property_destroy(dev, property);
5156 }
5157
5158 list_for_each_entry_safe(blob, bt, &dev->mode_config.property_blob_list,
5159 head) {
5160 drm_property_destroy_blob(dev, blob);
5161 }
5162
5163 /*
5164 * Single-threaded teardown context, so it's not required to grab the
5165 * fb_lock to protect against concurrent fb_list access. Contrary, it
5166 * would actually deadlock with the drm_framebuffer_cleanup function.
5167 *
5168 * Also, if there are any framebuffers left, that's a driver leak now,
5169 * so politely WARN about this.
5170 */
5171 WARN_ON(!list_empty(&dev->mode_config.fb_list));
5172 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
5173 drm_framebuffer_remove(fb);
5174 }
5175
5176 list_for_each_entry_safe(plane, plt, &dev->mode_config.plane_list,
5177 head) {
5178 plane->funcs->destroy(plane);
5179 }
5180
5181 list_for_each_entry_safe(crtc, ct, &dev->mode_config.crtc_list, head) {
5182 crtc->funcs->destroy(crtc);
5183 }
5184
5185 idr_destroy(&dev->mode_config.crtc_idr);
5186 drm_modeset_lock_fini(&dev->mode_config.connection_mutex);
5187 }
5188 EXPORT_SYMBOL(drm_mode_config_cleanup);
5189
5190 struct drm_property *drm_mode_create_rotation_property(struct drm_device *dev,
5191 unsigned int supported_rotations)
5192 {
5193 static const struct drm_prop_enum_list props[] = {
5194 { DRM_ROTATE_0, "rotate-0" },
5195 { DRM_ROTATE_90, "rotate-90" },
5196 { DRM_ROTATE_180, "rotate-180" },
5197 { DRM_ROTATE_270, "rotate-270" },
5198 { DRM_REFLECT_X, "reflect-x" },
5199 { DRM_REFLECT_Y, "reflect-y" },
5200 };
5201
5202 return drm_property_create_bitmask(dev, 0, "rotation",
5203 props, ARRAY_SIZE(props),
5204 supported_rotations);
5205 }
5206 EXPORT_SYMBOL(drm_mode_create_rotation_property);
This page took 0.143936 seconds and 6 git commands to generate.