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