blob: 7a1ea91d3343cfc13531b9dfd1e290db0490edda [file] [log] [blame]
Daniel Vetter949619f2016-08-29 10:27:51 +02001/*
2 * Copyright (c) 2016 Intel Corporation
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
23#include <linux/export.h>
24#include <drm/drmP.h>
25#include <drm/drm_mode_object.h>
Dhinakaran Pandiyan0bfd4a02016-12-22 00:50:43 -080026#include <drm/drm_atomic.h>
Daniel Vetter949619f2016-08-29 10:27:51 +020027
28#include "drm_crtc_internal.h"
29
30/*
31 * Internal function to assign a slot in the object idr and optionally
32 * register the object into the idr.
33 */
Thierry Reding2135ea72017-02-28 15:46:37 +010034int __drm_mode_object_add(struct drm_device *dev, struct drm_mode_object *obj,
35 uint32_t obj_type, bool register_obj,
36 void (*obj_free_cb)(struct kref *kref))
Daniel Vetter949619f2016-08-29 10:27:51 +020037{
38 int ret;
39
40 mutex_lock(&dev->mode_config.idr_mutex);
41 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
42 if (ret >= 0) {
43 /*
44 * Set up the object linking under the protection of the idr
45 * lock so that other users can't see inconsistent state.
46 */
47 obj->id = ret;
48 obj->type = obj_type;
49 if (obj_free_cb) {
50 obj->free_cb = obj_free_cb;
51 kref_init(&obj->refcount);
52 }
53 }
54 mutex_unlock(&dev->mode_config.idr_mutex);
55
56 return ret < 0 ? ret : 0;
57}
58
59/**
Thierry Reding2135ea72017-02-28 15:46:37 +010060 * drm_mode_object_add - allocate a new modeset identifier
Daniel Vetter949619f2016-08-29 10:27:51 +020061 * @dev: DRM device
62 * @obj: object pointer, used to generate unique ID
63 * @obj_type: object type
64 *
65 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Thierry Reding2135ea72017-02-28 15:46:37 +010066 * for tracking modes, CRTCs and connectors.
Daniel Vetter949619f2016-08-29 10:27:51 +020067 *
68 * Returns:
69 * Zero on success, error code on failure.
70 */
Thierry Reding2135ea72017-02-28 15:46:37 +010071int drm_mode_object_add(struct drm_device *dev,
Daniel Vetter949619f2016-08-29 10:27:51 +020072 struct drm_mode_object *obj, uint32_t obj_type)
73{
Thierry Reding2135ea72017-02-28 15:46:37 +010074 return __drm_mode_object_add(dev, obj, obj_type, true, NULL);
Daniel Vetter949619f2016-08-29 10:27:51 +020075}
76
77void drm_mode_object_register(struct drm_device *dev,
78 struct drm_mode_object *obj)
79{
80 mutex_lock(&dev->mode_config.idr_mutex);
81 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
82 mutex_unlock(&dev->mode_config.idr_mutex);
83}
84
85/**
86 * drm_mode_object_unregister - free a modeset identifer
87 * @dev: DRM device
88 * @object: object to free
89 *
90 * Free @id from @dev's unique identifier pool.
91 * This function can be called multiple times, and guards against
92 * multiple removals.
93 * These modeset identifiers are _not_ reference counted. Hence don't use this
94 * for reference counted modeset objects like framebuffers.
95 */
96void drm_mode_object_unregister(struct drm_device *dev,
Daniel Vettera2511a52016-08-29 10:27:53 +020097 struct drm_mode_object *object)
Daniel Vetter949619f2016-08-29 10:27:51 +020098{
99 mutex_lock(&dev->mode_config.idr_mutex);
100 if (object->id) {
101 idr_remove(&dev->mode_config.crtc_idr, object->id);
102 object->id = 0;
103 }
104 mutex_unlock(&dev->mode_config.idr_mutex);
105}
106
107struct drm_mode_object *__drm_mode_object_find(struct drm_device *dev,
108 uint32_t id, uint32_t type)
109{
110 struct drm_mode_object *obj = NULL;
111
112 mutex_lock(&dev->mode_config.idr_mutex);
113 obj = idr_find(&dev->mode_config.crtc_idr, id);
114 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
115 obj = NULL;
116 if (obj && obj->id != id)
117 obj = NULL;
118
119 if (obj && obj->free_cb) {
120 if (!kref_get_unless_zero(&obj->refcount))
121 obj = NULL;
122 }
123 mutex_unlock(&dev->mode_config.idr_mutex);
124
125 return obj;
126}
127
128/**
129 * drm_mode_object_find - look up a drm object with static lifetime
130 * @dev: drm device
131 * @id: id of the mode object
132 * @type: type of the mode object
133 *
134 * This function is used to look up a modeset object. It will acquire a
135 * reference for reference counted objects. This reference must be dropped again
Thierry Reding020a2182017-02-28 15:46:38 +0100136 * by callind drm_mode_object_put().
Daniel Vetter949619f2016-08-29 10:27:51 +0200137 */
138struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
139 uint32_t id, uint32_t type)
140{
141 struct drm_mode_object *obj = NULL;
142
143 obj = __drm_mode_object_find(dev, id, type);
144 return obj;
145}
146EXPORT_SYMBOL(drm_mode_object_find);
147
148/**
Thierry Reding020a2182017-02-28 15:46:38 +0100149 * drm_mode_object_put - release a mode object reference
150 * @obj: DRM mode object
Daniel Vetter949619f2016-08-29 10:27:51 +0200151 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200152 * This function decrements the object's refcount if it is a refcounted modeset
Daniel Vetter949619f2016-08-29 10:27:51 +0200153 * object. It is a no-op on any other object. This is used to drop references
Thierry Reding020a2182017-02-28 15:46:38 +0100154 * acquired with drm_mode_object_get().
Daniel Vetter949619f2016-08-29 10:27:51 +0200155 */
Thierry Reding020a2182017-02-28 15:46:38 +0100156void drm_mode_object_put(struct drm_mode_object *obj)
Daniel Vetter949619f2016-08-29 10:27:51 +0200157{
158 if (obj->free_cb) {
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100159 DRM_DEBUG("OBJ ID: %d (%d)\n", obj->id, kref_read(&obj->refcount));
Daniel Vetter949619f2016-08-29 10:27:51 +0200160 kref_put(&obj->refcount, obj->free_cb);
161 }
162}
Thierry Reding020a2182017-02-28 15:46:38 +0100163EXPORT_SYMBOL(drm_mode_object_put);
Daniel Vetter949619f2016-08-29 10:27:51 +0200164
165/**
Thierry Reding020a2182017-02-28 15:46:38 +0100166 * drm_mode_object_get - acquire a mode object reference
167 * @obj: DRM mode object
Daniel Vetter949619f2016-08-29 10:27:51 +0200168 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200169 * This function increments the object's refcount if it is a refcounted modeset
Daniel Vetter949619f2016-08-29 10:27:51 +0200170 * object. It is a no-op on any other object. References should be dropped again
Thierry Reding020a2182017-02-28 15:46:38 +0100171 * by calling drm_mode_object_put().
Daniel Vetter949619f2016-08-29 10:27:51 +0200172 */
Thierry Reding020a2182017-02-28 15:46:38 +0100173void drm_mode_object_get(struct drm_mode_object *obj)
Daniel Vetter949619f2016-08-29 10:27:51 +0200174{
175 if (obj->free_cb) {
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100176 DRM_DEBUG("OBJ ID: %d (%d)\n", obj->id, kref_read(&obj->refcount));
Daniel Vetter949619f2016-08-29 10:27:51 +0200177 kref_get(&obj->refcount);
178 }
179}
Thierry Reding020a2182017-02-28 15:46:38 +0100180EXPORT_SYMBOL(drm_mode_object_get);
Daniel Vetter949619f2016-08-29 10:27:51 +0200181
182/**
183 * drm_object_attach_property - attach a property to a modeset object
184 * @obj: drm modeset object
185 * @property: property to attach
186 * @init_val: initial value of the property
187 *
188 * This attaches the given property to the modeset object with the given initial
189 * value. Currently this function cannot fail since the properties are stored in
190 * a statically sized array.
191 */
192void drm_object_attach_property(struct drm_mode_object *obj,
193 struct drm_property *property,
194 uint64_t init_val)
195{
196 int count = obj->properties->count;
197
198 if (count == DRM_OBJECT_MAX_PROPERTY) {
199 WARN(1, "Failed to attach object property (type: 0x%x). Please "
200 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
201 "you see this message on the same object type.\n",
202 obj->type);
203 return;
204 }
205
206 obj->properties->properties[count] = property;
207 obj->properties->values[count] = init_val;
208 obj->properties->count++;
Daniel Vetter949619f2016-08-29 10:27:51 +0200209}
210EXPORT_SYMBOL(drm_object_attach_property);
211
212/**
213 * drm_object_property_set_value - set the value of a property
214 * @obj: drm mode object to set property value for
215 * @property: property to set
216 * @val: value the property should be set to
217 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200218 * This function sets a given property on a given object. This function only
Daniel Vetter949619f2016-08-29 10:27:51 +0200219 * changes the software state of the property, it does not call into the
220 * driver's ->set_property callback.
221 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200222 * Note that atomic drivers should not have any need to call this, the core will
223 * ensure consistency of values reported back to userspace through the
224 * appropriate ->atomic_get_property callback. Only legacy drivers should call
225 * this function to update the tracked value (after clamping and other
226 * restrictions have been applied).
227 *
Daniel Vetter949619f2016-08-29 10:27:51 +0200228 * Returns:
229 * Zero on success, error code on failure.
230 */
231int drm_object_property_set_value(struct drm_mode_object *obj,
232 struct drm_property *property, uint64_t val)
233{
234 int i;
235
Daniel Vetter4a97a3d2017-07-25 14:01:37 +0200236 WARN_ON(drm_drv_uses_atomic_modeset(property->dev) &&
237 !(property->flags & DRM_MODE_PROP_IMMUTABLE));
238
Daniel Vetter949619f2016-08-29 10:27:51 +0200239 for (i = 0; i < obj->properties->count; i++) {
240 if (obj->properties->properties[i] == property) {
241 obj->properties->values[i] = val;
242 return 0;
243 }
244 }
245
246 return -EINVAL;
247}
248EXPORT_SYMBOL(drm_object_property_set_value);
249
Ville Syrjälä8a50b9b2017-09-01 19:53:28 +0300250static int __drm_object_property_get_value(struct drm_mode_object *obj,
251 struct drm_property *property,
252 uint64_t *val)
Daniel Vetter949619f2016-08-29 10:27:51 +0200253{
254 int i;
255
256 /* read-only properties bypass atomic mechanism and still store
257 * their value in obj->properties->values[].. mostly to avoid
258 * having to deal w/ EDID and similar props in atomic paths:
259 */
Dhinakaran Pandiyan0bfd4a02016-12-22 00:50:43 -0800260 if (drm_drv_uses_atomic_modeset(property->dev) &&
Daniel Vetter949619f2016-08-29 10:27:51 +0200261 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
262 return drm_atomic_get_property(obj, property, val);
263
264 for (i = 0; i < obj->properties->count; i++) {
265 if (obj->properties->properties[i] == property) {
266 *val = obj->properties->values[i];
267 return 0;
268 }
269
270 }
271
272 return -EINVAL;
273}
Daniel Vetter4a97a3d2017-07-25 14:01:37 +0200274
275/**
276 * drm_object_property_get_value - retrieve the value of a property
277 * @obj: drm mode object to get property value from
278 * @property: property to retrieve
279 * @val: storage for the property value
280 *
281 * This function retrieves the softare state of the given property for the given
282 * property. Since there is no driver callback to retrieve the current property
283 * value this might be out of sync with the hardware, depending upon the driver
284 * and property.
285 *
286 * Atomic drivers should never call this function directly, the core will read
287 * out property values through the various ->atomic_get_property callbacks.
288 *
289 * Returns:
290 * Zero on success, error code on failure.
291 */
292int drm_object_property_get_value(struct drm_mode_object *obj,
293 struct drm_property *property, uint64_t *val)
294{
295 WARN_ON(drm_drv_uses_atomic_modeset(property->dev));
296
297 return __drm_object_property_get_value(obj, property, val);
298}
Daniel Vetter949619f2016-08-29 10:27:51 +0200299EXPORT_SYMBOL(drm_object_property_get_value);
300
301/* helper for getconnector and getproperties ioctls */
302int drm_mode_object_get_properties(struct drm_mode_object *obj, bool atomic,
303 uint32_t __user *prop_ptr,
304 uint64_t __user *prop_values,
305 uint32_t *arg_count_props)
306{
Daniel Vetterf094d882016-08-29 10:27:52 +0200307 int i, ret, count;
Daniel Vetter949619f2016-08-29 10:27:51 +0200308
Daniel Vetterf094d882016-08-29 10:27:52 +0200309 for (i = 0, count = 0; i < obj->properties->count; i++) {
310 struct drm_property *prop = obj->properties->properties[i];
311 uint64_t val;
Daniel Vetter949619f2016-08-29 10:27:51 +0200312
Daniel Vetterf094d882016-08-29 10:27:52 +0200313 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
314 continue;
Daniel Vetter949619f2016-08-29 10:27:51 +0200315
Daniel Vetterf094d882016-08-29 10:27:52 +0200316 if (*arg_count_props > count) {
Daniel Vetter4a97a3d2017-07-25 14:01:37 +0200317 ret = __drm_object_property_get_value(obj, prop, &val);
Daniel Vetter949619f2016-08-29 10:27:51 +0200318 if (ret)
319 return ret;
320
Daniel Vetterf094d882016-08-29 10:27:52 +0200321 if (put_user(prop->base.id, prop_ptr + count))
Daniel Vetter949619f2016-08-29 10:27:51 +0200322 return -EFAULT;
323
Daniel Vetterf094d882016-08-29 10:27:52 +0200324 if (put_user(val, prop_values + count))
Daniel Vetter949619f2016-08-29 10:27:51 +0200325 return -EFAULT;
Daniel Vetter949619f2016-08-29 10:27:51 +0200326 }
Daniel Vetterf094d882016-08-29 10:27:52 +0200327
328 count++;
Daniel Vetter949619f2016-08-29 10:27:51 +0200329 }
Daniel Vetterf094d882016-08-29 10:27:52 +0200330 *arg_count_props = count;
Daniel Vetter949619f2016-08-29 10:27:51 +0200331
332 return 0;
333}
334
335/**
336 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
337 * @dev: DRM device
338 * @data: ioctl data
339 * @file_priv: DRM file info
340 *
341 * This function retrieves the current value for an object's property. Compared
342 * to the connector specific ioctl this one is extended to also work on crtc and
343 * plane objects.
344 *
345 * Called by the user via ioctl.
346 *
347 * Returns:
348 * Zero on success, negative errno on failure.
349 */
350int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
351 struct drm_file *file_priv)
352{
353 struct drm_mode_obj_get_properties *arg = data;
354 struct drm_mode_object *obj;
355 int ret = 0;
356
357 if (!drm_core_check_feature(dev, DRIVER_MODESET))
358 return -EINVAL;
359
360 drm_modeset_lock_all(dev);
361
362 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
363 if (!obj) {
364 ret = -ENOENT;
365 goto out;
366 }
367 if (!obj->properties) {
368 ret = -EINVAL;
369 goto out_unref;
370 }
371
372 ret = drm_mode_object_get_properties(obj, file_priv->atomic,
373 (uint32_t __user *)(unsigned long)(arg->props_ptr),
374 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
375 &arg->count_props);
376
377out_unref:
Thierry Reding020a2182017-02-28 15:46:38 +0100378 drm_mode_object_put(obj);
Daniel Vetter949619f2016-08-29 10:27:51 +0200379out:
380 drm_modeset_unlock_all(dev);
381 return ret;
382}
383
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200384struct drm_property *drm_mode_obj_find_prop_id(struct drm_mode_object *obj,
385 uint32_t prop_id)
386{
387 int i;
388
389 for (i = 0; i < obj->properties->count; i++)
390 if (obj->properties->properties[i]->base.id == prop_id)
391 return obj->properties->properties[i];
392
393 return NULL;
394}
395
Daniel Vetter144a7992017-07-25 14:02:04 +0200396static int set_property_legacy(struct drm_mode_object *obj,
397 struct drm_property *prop,
398 uint64_t prop_value)
399{
400 struct drm_device *dev = prop->dev;
401 struct drm_mode_object *ref;
402 int ret = -EINVAL;
403
404 if (!drm_property_change_valid_get(prop, prop_value, &ref))
405 return -EINVAL;
406
407 drm_modeset_lock_all(dev);
408 switch (obj->type) {
409 case DRM_MODE_OBJECT_CONNECTOR:
410 ret = drm_mode_connector_set_obj_prop(obj, prop,
411 prop_value);
412 break;
413 case DRM_MODE_OBJECT_CRTC:
414 ret = drm_mode_crtc_set_obj_prop(obj, prop, prop_value);
415 break;
416 case DRM_MODE_OBJECT_PLANE:
417 ret = drm_mode_plane_set_obj_prop(obj_to_plane(obj),
418 prop, prop_value);
419 break;
420 }
421 drm_property_change_valid_put(prop, ref);
422 drm_modeset_unlock_all(dev);
423
424 return ret;
425}
426
427static int set_property_atomic(struct drm_mode_object *obj,
428 struct drm_property *prop,
429 uint64_t prop_value)
430{
431 struct drm_device *dev = prop->dev;
432 struct drm_atomic_state *state;
433 struct drm_modeset_acquire_ctx ctx;
434 int ret;
435
436 drm_modeset_acquire_init(&ctx, 0);
437
438 state = drm_atomic_state_alloc(dev);
439 if (!state)
440 return -ENOMEM;
441 state->acquire_ctx = &ctx;
442retry:
443 if (prop == state->dev->mode_config.dpms_property) {
444 if (obj->type != DRM_MODE_OBJECT_CONNECTOR) {
445 ret = -EINVAL;
446 goto out;
447 }
448
449 ret = drm_atomic_connector_commit_dpms(state,
450 obj_to_connector(obj),
451 prop_value);
452 } else {
453 ret = drm_atomic_set_property(state, obj, prop, prop_value);
454 if (ret)
455 goto out;
456 ret = drm_atomic_commit(state);
457 }
458out:
459 if (ret == -EDEADLK) {
460 drm_atomic_state_clear(state);
461 drm_modeset_backoff(&ctx);
462 goto retry;
463 }
464
465 drm_atomic_state_put(state);
466
467 drm_modeset_drop_locks(&ctx);
468 drm_modeset_acquire_fini(&ctx);
469
470 return ret;
471}
472
Daniel Vetter949619f2016-08-29 10:27:51 +0200473int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
474 struct drm_file *file_priv)
475{
476 struct drm_mode_obj_set_property *arg = data;
477 struct drm_mode_object *arg_obj;
Daniel Vetter949619f2016-08-29 10:27:51 +0200478 struct drm_property *property;
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200479 int ret = -EINVAL;
Daniel Vetter949619f2016-08-29 10:27:51 +0200480
481 if (!drm_core_check_feature(dev, DRIVER_MODESET))
482 return -EINVAL;
483
Daniel Vetter949619f2016-08-29 10:27:51 +0200484 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
Daniel Vetter144a7992017-07-25 14:02:04 +0200485 if (!arg_obj)
486 return -ENOENT;
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200487
Daniel Vetter949619f2016-08-29 10:27:51 +0200488 if (!arg_obj->properties)
489 goto out_unref;
490
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200491 property = drm_mode_obj_find_prop_id(arg_obj, arg->prop_id);
492 if (!property)
Daniel Vetter949619f2016-08-29 10:27:51 +0200493 goto out_unref;
494
Daniel Vetter144a7992017-07-25 14:02:04 +0200495 if (drm_drv_uses_atomic_modeset(property->dev))
496 ret = set_property_atomic(arg_obj, property, arg->value);
497 else
498 ret = set_property_legacy(arg_obj, property, arg->value);
Daniel Vetter949619f2016-08-29 10:27:51 +0200499
500out_unref:
Thierry Reding020a2182017-02-28 15:46:38 +0100501 drm_mode_object_put(arg_obj);
Daniel Vetter949619f2016-08-29 10:27:51 +0200502 return ret;
503}