blob: f32507e65b79485fc5b0e9cb7963a87c4da9231b [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);
Shayenne da Luz Mourab5f06892018-12-13 19:29:57 -020041 ret = idr_alloc(&dev->mode_config.object_idr, register_obj ? obj : NULL,
Shayenne da Luz Mourabbc97f92018-10-31 14:44:24 -030042 1, 0, GFP_KERNEL);
Daniel Vetter949619f2016-08-29 10:27:51 +020043 if (ret >= 0) {
44 /*
45 * Set up the object linking under the protection of the idr
46 * lock so that other users can't see inconsistent state.
47 */
48 obj->id = ret;
49 obj->type = obj_type;
50 if (obj_free_cb) {
51 obj->free_cb = obj_free_cb;
52 kref_init(&obj->refcount);
53 }
54 }
55 mutex_unlock(&dev->mode_config.idr_mutex);
56
57 return ret < 0 ? ret : 0;
58}
59
60/**
Thierry Reding2135ea72017-02-28 15:46:37 +010061 * drm_mode_object_add - allocate a new modeset identifier
Daniel Vetter949619f2016-08-29 10:27:51 +020062 * @dev: DRM device
63 * @obj: object pointer, used to generate unique ID
64 * @obj_type: object type
65 *
66 * Create a unique identifier based on @ptr in @dev's identifier space. Used
Thierry Reding2135ea72017-02-28 15:46:37 +010067 * for tracking modes, CRTCs and connectors.
Daniel Vetter949619f2016-08-29 10:27:51 +020068 *
69 * Returns:
70 * Zero on success, error code on failure.
71 */
Thierry Reding2135ea72017-02-28 15:46:37 +010072int drm_mode_object_add(struct drm_device *dev,
Daniel Vetter949619f2016-08-29 10:27:51 +020073 struct drm_mode_object *obj, uint32_t obj_type)
74{
Thierry Reding2135ea72017-02-28 15:46:37 +010075 return __drm_mode_object_add(dev, obj, obj_type, true, NULL);
Daniel Vetter949619f2016-08-29 10:27:51 +020076}
77
78void drm_mode_object_register(struct drm_device *dev,
79 struct drm_mode_object *obj)
80{
81 mutex_lock(&dev->mode_config.idr_mutex);
Shayenne da Luz Mourab5f06892018-12-13 19:29:57 -020082 idr_replace(&dev->mode_config.object_idr, obj, obj->id);
Daniel Vetter949619f2016-08-29 10:27:51 +020083 mutex_unlock(&dev->mode_config.idr_mutex);
84}
85
86/**
87 * drm_mode_object_unregister - free a modeset identifer
88 * @dev: DRM device
89 * @object: object to free
90 *
91 * Free @id from @dev's unique identifier pool.
92 * This function can be called multiple times, and guards against
93 * multiple removals.
94 * These modeset identifiers are _not_ reference counted. Hence don't use this
95 * for reference counted modeset objects like framebuffers.
96 */
97void drm_mode_object_unregister(struct drm_device *dev,
Daniel Vettera2511a52016-08-29 10:27:53 +020098 struct drm_mode_object *object)
Daniel Vetter949619f2016-08-29 10:27:51 +020099{
100 mutex_lock(&dev->mode_config.idr_mutex);
101 if (object->id) {
Shayenne da Luz Mourab5f06892018-12-13 19:29:57 -0200102 idr_remove(&dev->mode_config.object_idr, object->id);
Daniel Vetter949619f2016-08-29 10:27:51 +0200103 object->id = 0;
104 }
105 mutex_unlock(&dev->mode_config.idr_mutex);
106}
107
Keith Packard7de440d2017-04-09 22:35:34 -0600108/**
109 * drm_lease_required - check types which must be leased to be used
110 * @type: type of object
111 *
112 * Returns whether the provided type of drm_mode_object must
113 * be owned or leased to be used by a process.
114 */
Keith Packard62884cd2017-03-16 17:56:28 -0700115bool drm_mode_object_lease_required(uint32_t type)
Keith Packard7de440d2017-04-09 22:35:34 -0600116{
117 switch(type) {
118 case DRM_MODE_OBJECT_CRTC:
119 case DRM_MODE_OBJECT_CONNECTOR:
120 case DRM_MODE_OBJECT_PLANE:
121 return true;
122 default:
123 return false;
124 }
125}
126
Daniel Vetter949619f2016-08-29 10:27:51 +0200127struct drm_mode_object *__drm_mode_object_find(struct drm_device *dev,
Keith Packard418da172017-03-14 23:25:07 -0700128 struct drm_file *file_priv,
Daniel Vetter949619f2016-08-29 10:27:51 +0200129 uint32_t id, uint32_t type)
130{
131 struct drm_mode_object *obj = NULL;
132
133 mutex_lock(&dev->mode_config.idr_mutex);
Shayenne da Luz Mourab5f06892018-12-13 19:29:57 -0200134 obj = idr_find(&dev->mode_config.object_idr, id);
Daniel Vetter949619f2016-08-29 10:27:51 +0200135 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
136 obj = NULL;
137 if (obj && obj->id != id)
138 obj = NULL;
139
Keith Packard62884cd2017-03-16 17:56:28 -0700140 if (obj && drm_mode_object_lease_required(obj->type) &&
141 !_drm_lease_held(file_priv, obj->id))
Keith Packard7de440d2017-04-09 22:35:34 -0600142 obj = NULL;
143
Daniel Vetter949619f2016-08-29 10:27:51 +0200144 if (obj && obj->free_cb) {
145 if (!kref_get_unless_zero(&obj->refcount))
146 obj = NULL;
147 }
148 mutex_unlock(&dev->mode_config.idr_mutex);
149
150 return obj;
151}
152
153/**
154 * drm_mode_object_find - look up a drm object with static lifetime
Dave Airliee7e62c72017-11-09 09:35:04 +1000155 * @dev: drm device
Keith Packard418da172017-03-14 23:25:07 -0700156 * @file_priv: drm file
Daniel Vetter949619f2016-08-29 10:27:51 +0200157 * @id: id of the mode object
158 * @type: type of the mode object
159 *
160 * This function is used to look up a modeset object. It will acquire a
161 * reference for reference counted objects. This reference must be dropped again
Thierry Reding020a2182017-02-28 15:46:38 +0100162 * by callind drm_mode_object_put().
Daniel Vetter949619f2016-08-29 10:27:51 +0200163 */
164struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
Keith Packard418da172017-03-14 23:25:07 -0700165 struct drm_file *file_priv,
Daniel Vetter949619f2016-08-29 10:27:51 +0200166 uint32_t id, uint32_t type)
167{
168 struct drm_mode_object *obj = NULL;
169
Keith Packard418da172017-03-14 23:25:07 -0700170 obj = __drm_mode_object_find(dev, file_priv, id, type);
Daniel Vetter949619f2016-08-29 10:27:51 +0200171 return obj;
172}
173EXPORT_SYMBOL(drm_mode_object_find);
174
175/**
Thierry Reding020a2182017-02-28 15:46:38 +0100176 * drm_mode_object_put - release a mode object reference
177 * @obj: DRM mode object
Daniel Vetter949619f2016-08-29 10:27:51 +0200178 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200179 * This function decrements the object's refcount if it is a refcounted modeset
Daniel Vetter949619f2016-08-29 10:27:51 +0200180 * object. It is a no-op on any other object. This is used to drop references
Thierry Reding020a2182017-02-28 15:46:38 +0100181 * acquired with drm_mode_object_get().
Daniel Vetter949619f2016-08-29 10:27:51 +0200182 */
Thierry Reding020a2182017-02-28 15:46:38 +0100183void drm_mode_object_put(struct drm_mode_object *obj)
Daniel Vetter949619f2016-08-29 10:27:51 +0200184{
185 if (obj->free_cb) {
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100186 DRM_DEBUG("OBJ ID: %d (%d)\n", obj->id, kref_read(&obj->refcount));
Daniel Vetter949619f2016-08-29 10:27:51 +0200187 kref_put(&obj->refcount, obj->free_cb);
188 }
189}
Thierry Reding020a2182017-02-28 15:46:38 +0100190EXPORT_SYMBOL(drm_mode_object_put);
Daniel Vetter949619f2016-08-29 10:27:51 +0200191
192/**
Thierry Reding020a2182017-02-28 15:46:38 +0100193 * drm_mode_object_get - acquire a mode object reference
194 * @obj: DRM mode object
Daniel Vetter949619f2016-08-29 10:27:51 +0200195 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200196 * This function increments the object's refcount if it is a refcounted modeset
Daniel Vetter949619f2016-08-29 10:27:51 +0200197 * object. It is a no-op on any other object. References should be dropped again
Thierry Reding020a2182017-02-28 15:46:38 +0100198 * by calling drm_mode_object_put().
Daniel Vetter949619f2016-08-29 10:27:51 +0200199 */
Thierry Reding020a2182017-02-28 15:46:38 +0100200void drm_mode_object_get(struct drm_mode_object *obj)
Daniel Vetter949619f2016-08-29 10:27:51 +0200201{
202 if (obj->free_cb) {
Peter Zijlstra2c935bc2016-11-14 17:29:48 +0100203 DRM_DEBUG("OBJ ID: %d (%d)\n", obj->id, kref_read(&obj->refcount));
Daniel Vetter949619f2016-08-29 10:27:51 +0200204 kref_get(&obj->refcount);
205 }
206}
Thierry Reding020a2182017-02-28 15:46:38 +0100207EXPORT_SYMBOL(drm_mode_object_get);
Daniel Vetter949619f2016-08-29 10:27:51 +0200208
209/**
210 * drm_object_attach_property - attach a property to a modeset object
211 * @obj: drm modeset object
212 * @property: property to attach
213 * @init_val: initial value of the property
214 *
215 * This attaches the given property to the modeset object with the given initial
216 * value. Currently this function cannot fail since the properties are stored in
217 * a statically sized array.
218 */
219void drm_object_attach_property(struct drm_mode_object *obj,
220 struct drm_property *property,
221 uint64_t init_val)
222{
223 int count = obj->properties->count;
224
225 if (count == DRM_OBJECT_MAX_PROPERTY) {
226 WARN(1, "Failed to attach object property (type: 0x%x). Please "
227 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
228 "you see this message on the same object type.\n",
229 obj->type);
230 return;
231 }
232
233 obj->properties->properties[count] = property;
234 obj->properties->values[count] = init_val;
235 obj->properties->count++;
Daniel Vetter949619f2016-08-29 10:27:51 +0200236}
237EXPORT_SYMBOL(drm_object_attach_property);
238
239/**
240 * drm_object_property_set_value - set the value of a property
241 * @obj: drm mode object to set property value for
242 * @property: property to set
243 * @val: value the property should be set to
244 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200245 * This function sets a given property on a given object. This function only
Daniel Vetter949619f2016-08-29 10:27:51 +0200246 * changes the software state of the property, it does not call into the
247 * driver's ->set_property callback.
248 *
Daniel Vettera2511a52016-08-29 10:27:53 +0200249 * Note that atomic drivers should not have any need to call this, the core will
250 * ensure consistency of values reported back to userspace through the
251 * appropriate ->atomic_get_property callback. Only legacy drivers should call
252 * this function to update the tracked value (after clamping and other
253 * restrictions have been applied).
254 *
Daniel Vetter949619f2016-08-29 10:27:51 +0200255 * Returns:
256 * Zero on success, error code on failure.
257 */
258int drm_object_property_set_value(struct drm_mode_object *obj,
259 struct drm_property *property, uint64_t val)
260{
261 int i;
262
Daniel Vetter4a97a3d2017-07-25 14:01:37 +0200263 WARN_ON(drm_drv_uses_atomic_modeset(property->dev) &&
264 !(property->flags & DRM_MODE_PROP_IMMUTABLE));
265
Daniel Vetter949619f2016-08-29 10:27:51 +0200266 for (i = 0; i < obj->properties->count; i++) {
267 if (obj->properties->properties[i] == property) {
268 obj->properties->values[i] = val;
269 return 0;
270 }
271 }
272
273 return -EINVAL;
274}
275EXPORT_SYMBOL(drm_object_property_set_value);
276
Ville Syrjälä8a50b9b2017-09-01 19:53:28 +0300277static int __drm_object_property_get_value(struct drm_mode_object *obj,
278 struct drm_property *property,
279 uint64_t *val)
Daniel Vetter949619f2016-08-29 10:27:51 +0200280{
281 int i;
282
283 /* read-only properties bypass atomic mechanism and still store
284 * their value in obj->properties->values[].. mostly to avoid
285 * having to deal w/ EDID and similar props in atomic paths:
286 */
Dhinakaran Pandiyan0bfd4a02016-12-22 00:50:43 -0800287 if (drm_drv_uses_atomic_modeset(property->dev) &&
Daniel Vetter949619f2016-08-29 10:27:51 +0200288 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
289 return drm_atomic_get_property(obj, property, val);
290
291 for (i = 0; i < obj->properties->count; i++) {
292 if (obj->properties->properties[i] == property) {
293 *val = obj->properties->values[i];
294 return 0;
295 }
296
297 }
298
299 return -EINVAL;
300}
Daniel Vetter4a97a3d2017-07-25 14:01:37 +0200301
302/**
303 * drm_object_property_get_value - retrieve the value of a property
304 * @obj: drm mode object to get property value from
305 * @property: property to retrieve
306 * @val: storage for the property value
307 *
308 * This function retrieves the softare state of the given property for the given
309 * property. Since there is no driver callback to retrieve the current property
310 * value this might be out of sync with the hardware, depending upon the driver
311 * and property.
312 *
313 * Atomic drivers should never call this function directly, the core will read
314 * out property values through the various ->atomic_get_property callbacks.
315 *
316 * Returns:
317 * Zero on success, error code on failure.
318 */
319int drm_object_property_get_value(struct drm_mode_object *obj,
320 struct drm_property *property, uint64_t *val)
321{
322 WARN_ON(drm_drv_uses_atomic_modeset(property->dev));
323
324 return __drm_object_property_get_value(obj, property, val);
325}
Daniel Vetter949619f2016-08-29 10:27:51 +0200326EXPORT_SYMBOL(drm_object_property_get_value);
327
328/* helper for getconnector and getproperties ioctls */
329int drm_mode_object_get_properties(struct drm_mode_object *obj, bool atomic,
330 uint32_t __user *prop_ptr,
331 uint64_t __user *prop_values,
332 uint32_t *arg_count_props)
333{
Daniel Vetterf094d882016-08-29 10:27:52 +0200334 int i, ret, count;
Daniel Vetter949619f2016-08-29 10:27:51 +0200335
Daniel Vetterf094d882016-08-29 10:27:52 +0200336 for (i = 0, count = 0; i < obj->properties->count; i++) {
337 struct drm_property *prop = obj->properties->properties[i];
338 uint64_t val;
Daniel Vetter949619f2016-08-29 10:27:51 +0200339
Daniel Vetterf094d882016-08-29 10:27:52 +0200340 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
341 continue;
Daniel Vetter949619f2016-08-29 10:27:51 +0200342
Daniel Vetterf094d882016-08-29 10:27:52 +0200343 if (*arg_count_props > count) {
Daniel Vetter4a97a3d2017-07-25 14:01:37 +0200344 ret = __drm_object_property_get_value(obj, prop, &val);
Daniel Vetter949619f2016-08-29 10:27:51 +0200345 if (ret)
346 return ret;
347
Daniel Vetterf094d882016-08-29 10:27:52 +0200348 if (put_user(prop->base.id, prop_ptr + count))
Daniel Vetter949619f2016-08-29 10:27:51 +0200349 return -EFAULT;
350
Daniel Vetterf094d882016-08-29 10:27:52 +0200351 if (put_user(val, prop_values + count))
Daniel Vetter949619f2016-08-29 10:27:51 +0200352 return -EFAULT;
Daniel Vetter949619f2016-08-29 10:27:51 +0200353 }
Daniel Vetterf094d882016-08-29 10:27:52 +0200354
355 count++;
Daniel Vetter949619f2016-08-29 10:27:51 +0200356 }
Daniel Vetterf094d882016-08-29 10:27:52 +0200357 *arg_count_props = count;
Daniel Vetter949619f2016-08-29 10:27:51 +0200358
359 return 0;
360}
361
362/**
363 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
364 * @dev: DRM device
365 * @data: ioctl data
366 * @file_priv: DRM file info
367 *
368 * This function retrieves the current value for an object's property. Compared
369 * to the connector specific ioctl this one is extended to also work on crtc and
370 * plane objects.
371 *
372 * Called by the user via ioctl.
373 *
374 * Returns:
375 * Zero on success, negative errno on failure.
376 */
377int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
378 struct drm_file *file_priv)
379{
380 struct drm_mode_obj_get_properties *arg = data;
381 struct drm_mode_object *obj;
382 int ret = 0;
383
384 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson69fdf422018-09-13 20:20:50 +0100385 return -EOPNOTSUPP;
Daniel Vetter949619f2016-08-29 10:27:51 +0200386
387 drm_modeset_lock_all(dev);
388
Keith Packard418da172017-03-14 23:25:07 -0700389 obj = drm_mode_object_find(dev, file_priv, arg->obj_id, arg->obj_type);
Daniel Vetter949619f2016-08-29 10:27:51 +0200390 if (!obj) {
391 ret = -ENOENT;
392 goto out;
393 }
394 if (!obj->properties) {
395 ret = -EINVAL;
396 goto out_unref;
397 }
398
399 ret = drm_mode_object_get_properties(obj, file_priv->atomic,
400 (uint32_t __user *)(unsigned long)(arg->props_ptr),
401 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
402 &arg->count_props);
403
404out_unref:
Thierry Reding020a2182017-02-28 15:46:38 +0100405 drm_mode_object_put(obj);
Daniel Vetter949619f2016-08-29 10:27:51 +0200406out:
407 drm_modeset_unlock_all(dev);
408 return ret;
409}
410
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200411struct drm_property *drm_mode_obj_find_prop_id(struct drm_mode_object *obj,
412 uint32_t prop_id)
413{
414 int i;
415
416 for (i = 0; i < obj->properties->count; i++)
417 if (obj->properties->properties[i]->base.id == prop_id)
418 return obj->properties->properties[i];
419
420 return NULL;
421}
422
Daniel Vetter144a7992017-07-25 14:02:04 +0200423static int set_property_legacy(struct drm_mode_object *obj,
424 struct drm_property *prop,
425 uint64_t prop_value)
426{
427 struct drm_device *dev = prop->dev;
428 struct drm_mode_object *ref;
429 int ret = -EINVAL;
430
431 if (!drm_property_change_valid_get(prop, prop_value, &ref))
432 return -EINVAL;
433
434 drm_modeset_lock_all(dev);
435 switch (obj->type) {
436 case DRM_MODE_OBJECT_CONNECTOR:
Daniel Vetter97e14fb2018-07-09 10:40:08 +0200437 ret = drm_connector_set_obj_prop(obj, prop, prop_value);
Daniel Vetter144a7992017-07-25 14:02:04 +0200438 break;
439 case DRM_MODE_OBJECT_CRTC:
440 ret = drm_mode_crtc_set_obj_prop(obj, prop, prop_value);
441 break;
442 case DRM_MODE_OBJECT_PLANE:
443 ret = drm_mode_plane_set_obj_prop(obj_to_plane(obj),
444 prop, prop_value);
445 break;
446 }
447 drm_property_change_valid_put(prop, ref);
448 drm_modeset_unlock_all(dev);
449
450 return ret;
451}
452
453static int set_property_atomic(struct drm_mode_object *obj,
Daniel Vetter36e45232019-02-28 15:49:09 +0100454 struct drm_file *file_priv,
Daniel Vetter144a7992017-07-25 14:02:04 +0200455 struct drm_property *prop,
456 uint64_t prop_value)
457{
458 struct drm_device *dev = prop->dev;
459 struct drm_atomic_state *state;
460 struct drm_modeset_acquire_ctx ctx;
461 int ret;
462
Daniel Vetter144a7992017-07-25 14:02:04 +0200463 state = drm_atomic_state_alloc(dev);
464 if (!state)
465 return -ENOMEM;
Chris Wilson227ad6d2018-12-30 12:28:42 +0000466
467 drm_modeset_acquire_init(&ctx, 0);
Daniel Vetter144a7992017-07-25 14:02:04 +0200468 state->acquire_ctx = &ctx;
Chris Wilson227ad6d2018-12-30 12:28:42 +0000469
Daniel Vetter144a7992017-07-25 14:02:04 +0200470retry:
471 if (prop == state->dev->mode_config.dpms_property) {
472 if (obj->type != DRM_MODE_OBJECT_CONNECTOR) {
473 ret = -EINVAL;
474 goto out;
475 }
476
477 ret = drm_atomic_connector_commit_dpms(state,
478 obj_to_connector(obj),
479 prop_value);
480 } else {
Daniel Vetter36e45232019-02-28 15:49:09 +0100481 ret = drm_atomic_set_property(state, file_priv, obj, prop, prop_value);
Daniel Vetter144a7992017-07-25 14:02:04 +0200482 if (ret)
483 goto out;
484 ret = drm_atomic_commit(state);
485 }
486out:
487 if (ret == -EDEADLK) {
488 drm_atomic_state_clear(state);
489 drm_modeset_backoff(&ctx);
490 goto retry;
491 }
492
493 drm_atomic_state_put(state);
494
495 drm_modeset_drop_locks(&ctx);
496 drm_modeset_acquire_fini(&ctx);
497
498 return ret;
499}
500
Daniel Vetter949619f2016-08-29 10:27:51 +0200501int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
502 struct drm_file *file_priv)
503{
504 struct drm_mode_obj_set_property *arg = data;
505 struct drm_mode_object *arg_obj;
Daniel Vetter949619f2016-08-29 10:27:51 +0200506 struct drm_property *property;
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200507 int ret = -EINVAL;
Daniel Vetter949619f2016-08-29 10:27:51 +0200508
509 if (!drm_core_check_feature(dev, DRIVER_MODESET))
Chris Wilson69fdf422018-09-13 20:20:50 +0100510 return -EOPNOTSUPP;
Daniel Vetter949619f2016-08-29 10:27:51 +0200511
Keith Packard418da172017-03-14 23:25:07 -0700512 arg_obj = drm_mode_object_find(dev, file_priv, arg->obj_id, arg->obj_type);
Daniel Vetter144a7992017-07-25 14:02:04 +0200513 if (!arg_obj)
514 return -ENOENT;
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200515
Daniel Vetter949619f2016-08-29 10:27:51 +0200516 if (!arg_obj->properties)
517 goto out_unref;
518
Maarten Lankhorstf92f0532016-09-08 12:30:01 +0200519 property = drm_mode_obj_find_prop_id(arg_obj, arg->prop_id);
520 if (!property)
Daniel Vetter949619f2016-08-29 10:27:51 +0200521 goto out_unref;
522
Daniel Vetter144a7992017-07-25 14:02:04 +0200523 if (drm_drv_uses_atomic_modeset(property->dev))
Daniel Vetter36e45232019-02-28 15:49:09 +0100524 ret = set_property_atomic(arg_obj, file_priv, property, arg->value);
Daniel Vetter144a7992017-07-25 14:02:04 +0200525 else
526 ret = set_property_legacy(arg_obj, property, arg->value);
Daniel Vetter949619f2016-08-29 10:27:51 +0200527
528out_unref:
Thierry Reding020a2182017-02-28 15:46:38 +0100529 drm_mode_object_put(arg_obj);
Daniel Vetter949619f2016-08-29 10:27:51 +0200530 return ret;
531}