2 * Copyright (c) 2016 Intel Corporation
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.
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
23 #include <linux/export.h>
24 #include <linux/uaccess.h>
26 #include <drm/drm_crtc.h>
27 #include <drm/drm_drv.h>
28 #include <drm/drm_file.h>
29 #include <drm/drm_framebuffer.h>
30 #include <drm/drm_property.h>
32 #include "drm_crtc_internal.h"
37 * Properties as represented by &drm_property are used to extend the modeset
38 * interface exposed to userspace. For the atomic modeset IOCTL properties are
39 * even the only way to transport metadata about the desired new modeset
40 * configuration from userspace to the kernel. Properties have a well-defined
41 * value range, which is enforced by the drm core. See the documentation of the
42 * flags member of &struct drm_property for an overview of the different
43 * property types and ranges.
45 * Properties don't store the current value directly, but need to be
46 * instantiated by attaching them to a &drm_mode_object with
47 * drm_object_attach_property().
49 * Property values are only 64bit. To support bigger piles of data (like gamma
50 * tables, color correction matrices or large structures) a property can instead
51 * point at a &drm_property_blob with that additional data.
53 * Properties are defined by their symbolic name, userspace must keep a
54 * per-object mapping from those names to the property ID used in the atomic
55 * IOCTL and in the get/set property IOCTL.
58 static bool drm_property_flags_valid(u32 flags)
60 u32 legacy_type = flags & DRM_MODE_PROP_LEGACY_TYPE;
61 u32 ext_type = flags & DRM_MODE_PROP_EXTENDED_TYPE;
63 /* Reject undefined/deprecated flags */
64 if (flags & ~(DRM_MODE_PROP_LEGACY_TYPE |
65 DRM_MODE_PROP_EXTENDED_TYPE |
66 DRM_MODE_PROP_IMMUTABLE |
67 DRM_MODE_PROP_ATOMIC))
70 /* We want either a legacy type or an extended type, but not both */
71 if (!legacy_type == !ext_type)
74 /* Only one legacy type at a time please */
75 if (legacy_type && !is_power_of_2(legacy_type))
82 * drm_property_create - create a new property type
84 * @flags: flags specifying the property type
85 * @name: name of the property
86 * @num_values: number of pre-defined values
88 * This creates a new generic drm property which can then be attached to a drm
89 * object with drm_object_attach_property(). The returned property object must
90 * be freed with drm_property_destroy(), which is done automatically when
91 * calling drm_mode_config_cleanup().
94 * A pointer to the newly created property on success, NULL on failure.
96 struct drm_property *drm_property_create(struct drm_device *dev,
97 u32 flags, const char *name,
100 struct drm_property *property = NULL;
103 if (WARN_ON(!drm_property_flags_valid(flags)))
106 if (WARN_ON(strlen(name) >= DRM_PROP_NAME_LEN))
109 property = kzalloc(sizeof(struct drm_property), GFP_KERNEL);
116 property->values = kcalloc(num_values, sizeof(uint64_t),
118 if (!property->values)
122 ret = drm_mode_object_add(dev, &property->base, DRM_MODE_OBJECT_PROPERTY);
126 property->flags = flags;
127 property->num_values = num_values;
128 INIT_LIST_HEAD(&property->enum_list);
130 strscpy_pad(property->name, name, DRM_PROP_NAME_LEN);
132 list_add_tail(&property->head, &dev->mode_config.property_list);
136 kfree(property->values);
140 EXPORT_SYMBOL(drm_property_create);
143 * drm_property_create_enum - create a new enumeration property type
145 * @flags: flags specifying the property type
146 * @name: name of the property
147 * @props: enumeration lists with property values
148 * @num_values: number of pre-defined values
150 * This creates a new generic drm property which can then be attached to a drm
151 * object with drm_object_attach_property(). The returned property object must
152 * be freed with drm_property_destroy(), which is done automatically when
153 * calling drm_mode_config_cleanup().
155 * Userspace is only allowed to set one of the predefined values for enumeration
159 * A pointer to the newly created property on success, NULL on failure.
161 struct drm_property *drm_property_create_enum(struct drm_device *dev,
162 u32 flags, const char *name,
163 const struct drm_prop_enum_list *props,
166 struct drm_property *property;
169 flags |= DRM_MODE_PROP_ENUM;
171 property = drm_property_create(dev, flags, name, num_values);
175 for (i = 0; i < num_values; i++) {
176 ret = drm_property_add_enum(property,
180 drm_property_destroy(dev, property);
187 EXPORT_SYMBOL(drm_property_create_enum);
190 * drm_property_create_bitmask - create a new bitmask property type
192 * @flags: flags specifying the property type
193 * @name: name of the property
194 * @props: enumeration lists with property bitflags
195 * @num_props: size of the @props array
196 * @supported_bits: bitmask of all supported enumeration values
198 * This creates a new bitmask drm property which can then be attached to a drm
199 * object with drm_object_attach_property(). The returned property object must
200 * be freed with drm_property_destroy(), which is done automatically when
201 * calling drm_mode_config_cleanup().
203 * Compared to plain enumeration properties userspace is allowed to set any
204 * or'ed together combination of the predefined property bitflag values
207 * A pointer to the newly created property on success, NULL on failure.
209 struct drm_property *drm_property_create_bitmask(struct drm_device *dev,
210 u32 flags, const char *name,
211 const struct drm_prop_enum_list *props,
213 uint64_t supported_bits)
215 struct drm_property *property;
217 int num_values = hweight64(supported_bits);
219 flags |= DRM_MODE_PROP_BITMASK;
221 property = drm_property_create(dev, flags, name, num_values);
224 for (i = 0; i < num_props; i++) {
225 if (!(supported_bits & (1ULL << props[i].type)))
228 ret = drm_property_add_enum(property,
232 drm_property_destroy(dev, property);
239 EXPORT_SYMBOL(drm_property_create_bitmask);
241 static struct drm_property *property_create_range(struct drm_device *dev,
242 u32 flags, const char *name,
243 uint64_t min, uint64_t max)
245 struct drm_property *property;
247 property = drm_property_create(dev, flags, name, 2);
251 property->values[0] = min;
252 property->values[1] = max;
258 * drm_property_create_range - create a new unsigned ranged property type
260 * @flags: flags specifying the property type
261 * @name: name of the property
262 * @min: minimum value of the property
263 * @max: maximum value of the property
265 * This creates a new generic drm property which can then be attached to a drm
266 * object with drm_object_attach_property(). The returned property object must
267 * be freed with drm_property_destroy(), which is done automatically when
268 * calling drm_mode_config_cleanup().
270 * Userspace is allowed to set any unsigned integer value in the (min, max)
274 * A pointer to the newly created property on success, NULL on failure.
276 struct drm_property *drm_property_create_range(struct drm_device *dev,
277 u32 flags, const char *name,
278 uint64_t min, uint64_t max)
280 return property_create_range(dev, DRM_MODE_PROP_RANGE | flags,
283 EXPORT_SYMBOL(drm_property_create_range);
286 * drm_property_create_signed_range - create a new signed ranged property type
288 * @flags: flags specifying the property type
289 * @name: name of the property
290 * @min: minimum value of the property
291 * @max: maximum value of the property
293 * This creates a new generic drm property which can then be attached to a drm
294 * object with drm_object_attach_property(). The returned property object must
295 * be freed with drm_property_destroy(), which is done automatically when
296 * calling drm_mode_config_cleanup().
298 * Userspace is allowed to set any signed integer value in the (min, max)
302 * A pointer to the newly created property on success, NULL on failure.
304 struct drm_property *drm_property_create_signed_range(struct drm_device *dev,
305 u32 flags, const char *name,
306 int64_t min, int64_t max)
308 return property_create_range(dev, DRM_MODE_PROP_SIGNED_RANGE | flags,
309 name, I642U64(min), I642U64(max));
311 EXPORT_SYMBOL(drm_property_create_signed_range);
314 * drm_property_create_object - create a new object property type
316 * @flags: flags specifying the property type
317 * @name: name of the property
318 * @type: object type from DRM_MODE_OBJECT_* defines
320 * This creates a new generic drm property which can then be attached to a drm
321 * object with drm_object_attach_property(). The returned property object must
322 * be freed with drm_property_destroy(), which is done automatically when
323 * calling drm_mode_config_cleanup().
325 * Userspace is only allowed to set this to any property value of the given
326 * @type. Only useful for atomic properties, which is enforced.
329 * A pointer to the newly created property on success, NULL on failure.
331 struct drm_property *drm_property_create_object(struct drm_device *dev,
332 u32 flags, const char *name,
335 struct drm_property *property;
337 flags |= DRM_MODE_PROP_OBJECT;
339 if (WARN_ON(!(flags & DRM_MODE_PROP_ATOMIC)))
342 property = drm_property_create(dev, flags, name, 1);
346 property->values[0] = type;
350 EXPORT_SYMBOL(drm_property_create_object);
353 * drm_property_create_bool - create a new boolean property type
355 * @flags: flags specifying the property type
356 * @name: name of the property
358 * This creates a new generic drm property which can then be attached to a drm
359 * object with drm_object_attach_property(). The returned property object must
360 * be freed with drm_property_destroy(), which is done automatically when
361 * calling drm_mode_config_cleanup().
363 * This is implemented as a ranged property with only {0, 1} as valid values.
366 * A pointer to the newly created property on success, NULL on failure.
368 struct drm_property *drm_property_create_bool(struct drm_device *dev,
369 u32 flags, const char *name)
371 return drm_property_create_range(dev, flags, name, 0, 1);
373 EXPORT_SYMBOL(drm_property_create_bool);
376 * drm_property_add_enum - add a possible value to an enumeration property
377 * @property: enumeration property to change
378 * @value: value of the new enumeration
379 * @name: symbolic name of the new enumeration
381 * This functions adds enumerations to a property.
383 * It's use is deprecated, drivers should use one of the more specific helpers
384 * to directly create the property with all enumerations already attached.
387 * Zero on success, error code on failure.
389 int drm_property_add_enum(struct drm_property *property,
390 uint64_t value, const char *name)
392 struct drm_property_enum *prop_enum;
395 if (WARN_ON(strlen(name) >= DRM_PROP_NAME_LEN))
398 if (WARN_ON(!drm_property_type_is(property, DRM_MODE_PROP_ENUM) &&
399 !drm_property_type_is(property, DRM_MODE_PROP_BITMASK)))
403 * Bitmask enum properties have the additional constraint of values
406 if (WARN_ON(drm_property_type_is(property, DRM_MODE_PROP_BITMASK) &&
410 list_for_each_entry(prop_enum, &property->enum_list, head) {
411 if (WARN_ON(prop_enum->value == value))
416 if (WARN_ON(index >= property->num_values))
419 prop_enum = kzalloc(sizeof(struct drm_property_enum), GFP_KERNEL);
423 strscpy_pad(prop_enum->name, name, DRM_PROP_NAME_LEN);
424 prop_enum->value = value;
426 property->values[index] = value;
427 list_add_tail(&prop_enum->head, &property->enum_list);
430 EXPORT_SYMBOL(drm_property_add_enum);
433 * drm_property_destroy - destroy a drm property
435 * @property: property to destroy
437 * This function frees a property including any attached resources like
438 * enumeration values.
440 void drm_property_destroy(struct drm_device *dev, struct drm_property *property)
442 struct drm_property_enum *prop_enum, *pt;
444 list_for_each_entry_safe(prop_enum, pt, &property->enum_list, head) {
445 list_del(&prop_enum->head);
449 if (property->num_values)
450 kfree(property->values);
451 drm_mode_object_unregister(dev, &property->base);
452 list_del(&property->head);
455 EXPORT_SYMBOL(drm_property_destroy);
457 int drm_mode_getproperty_ioctl(struct drm_device *dev,
458 void *data, struct drm_file *file_priv)
460 struct drm_mode_get_property *out_resp = data;
461 struct drm_property *property;
465 struct drm_property_enum *prop_enum;
466 struct drm_mode_property_enum __user *enum_ptr;
467 uint64_t __user *values_ptr;
469 if (!drm_core_check_feature(dev, DRIVER_MODESET))
472 property = drm_property_find(dev, file_priv, out_resp->prop_id);
476 strscpy_pad(out_resp->name, property->name, DRM_PROP_NAME_LEN);
477 out_resp->flags = property->flags;
479 value_count = property->num_values;
480 values_ptr = u64_to_user_ptr(out_resp->values_ptr);
482 for (i = 0; i < value_count; i++) {
483 if (i < out_resp->count_values &&
484 put_user(property->values[i], values_ptr + i)) {
488 out_resp->count_values = value_count;
491 enum_ptr = u64_to_user_ptr(out_resp->enum_blob_ptr);
493 if (drm_property_type_is(property, DRM_MODE_PROP_ENUM) ||
494 drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
495 list_for_each_entry(prop_enum, &property->enum_list, head) {
497 if (out_resp->count_enum_blobs < enum_count)
500 if (copy_to_user(&enum_ptr[copied].value,
501 &prop_enum->value, sizeof(uint64_t)))
504 if (copy_to_user(&enum_ptr[copied].name,
505 &prop_enum->name, DRM_PROP_NAME_LEN))
509 out_resp->count_enum_blobs = enum_count;
513 * NOTE: The idea seems to have been to use this to read all the blob
514 * property values. But nothing ever added them to the corresponding
515 * list, userspace always used the special-purpose get_blob ioctl to
516 * read the value for a blob property. It also doesn't make a lot of
517 * sense to return values here when everything else is just metadata for
518 * the property itself.
520 if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
521 out_resp->count_enum_blobs = 0;
526 static void drm_property_free_blob(struct kref *kref)
528 struct drm_property_blob *blob =
529 container_of(kref, struct drm_property_blob, base.refcount);
531 mutex_lock(&blob->dev->mode_config.blob_lock);
532 list_del(&blob->head_global);
533 mutex_unlock(&blob->dev->mode_config.blob_lock);
535 drm_mode_object_unregister(blob->dev, &blob->base);
541 * drm_property_create_blob - Create new blob property
542 * @dev: DRM device to create property for
543 * @length: Length to allocate for blob data
544 * @data: If specified, copies data into blob
546 * Creates a new blob property for a specified DRM device, optionally
547 * copying data. Note that blob properties are meant to be invariant, hence the
548 * data must be filled out before the blob is used as the value of any property.
551 * New blob property with a single reference on success, or an ERR_PTR
554 struct drm_property_blob *
555 drm_property_create_blob(struct drm_device *dev, size_t length,
558 struct drm_property_blob *blob;
561 if (!length || length > INT_MAX - sizeof(struct drm_property_blob))
562 return ERR_PTR(-EINVAL);
564 blob = kvzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);
566 return ERR_PTR(-ENOMEM);
568 /* This must be explicitly initialised, so we can safely call list_del
569 * on it in the removal handler, even if it isn't in a file list. */
570 INIT_LIST_HEAD(&blob->head_file);
571 blob->data = (void *)blob + sizeof(*blob);
572 blob->length = length;
576 memcpy(blob->data, data, length);
578 ret = __drm_mode_object_add(dev, &blob->base, DRM_MODE_OBJECT_BLOB,
579 true, drm_property_free_blob);
582 return ERR_PTR(-EINVAL);
585 mutex_lock(&dev->mode_config.blob_lock);
586 list_add_tail(&blob->head_global,
587 &dev->mode_config.property_blob_list);
588 mutex_unlock(&dev->mode_config.blob_lock);
592 EXPORT_SYMBOL(drm_property_create_blob);
595 * drm_property_blob_put - release a blob property reference
596 * @blob: DRM blob property
598 * Releases a reference to a blob property. May free the object.
600 void drm_property_blob_put(struct drm_property_blob *blob)
605 drm_mode_object_put(&blob->base);
607 EXPORT_SYMBOL(drm_property_blob_put);
609 void drm_property_destroy_user_blobs(struct drm_device *dev,
610 struct drm_file *file_priv)
612 struct drm_property_blob *blob, *bt;
615 * When the file gets released that means no one else can access the
616 * blob list any more, so no need to grab dev->blob_lock.
618 list_for_each_entry_safe(blob, bt, &file_priv->blobs, head_file) {
619 list_del_init(&blob->head_file);
620 drm_property_blob_put(blob);
625 * drm_property_blob_get - acquire blob property reference
626 * @blob: DRM blob property
628 * Acquires a reference to an existing blob property. Returns @blob, which
629 * allows this to be used as a shorthand in assignments.
631 struct drm_property_blob *drm_property_blob_get(struct drm_property_blob *blob)
633 drm_mode_object_get(&blob->base);
636 EXPORT_SYMBOL(drm_property_blob_get);
639 * drm_property_lookup_blob - look up a blob property and take a reference
641 * @id: id of the blob property
643 * If successful, this takes an additional reference to the blob property.
644 * callers need to make sure to eventually unreferenced the returned property
645 * again, using drm_property_blob_put().
648 * NULL on failure, pointer to the blob on success.
650 struct drm_property_blob *drm_property_lookup_blob(struct drm_device *dev,
653 struct drm_mode_object *obj;
654 struct drm_property_blob *blob = NULL;
656 obj = __drm_mode_object_find(dev, NULL, id, DRM_MODE_OBJECT_BLOB);
658 blob = obj_to_blob(obj);
661 EXPORT_SYMBOL(drm_property_lookup_blob);
664 * drm_property_replace_global_blob - replace existing blob property
666 * @replace: location of blob property pointer to be replaced
667 * @length: length of data for new blob, or 0 for no data
668 * @data: content for new blob, or NULL for no data
669 * @obj_holds_id: optional object for property holding blob ID
670 * @prop_holds_id: optional property holding blob ID
671 * @return 0 on success or error on failure
673 * This function will replace a global property in the blob list, optionally
674 * updating a property which holds the ID of that property.
676 * If length is 0 or data is NULL, no new blob will be created, and the holding
677 * property, if specified, will be set to 0.
679 * Access to the replace pointer is assumed to be protected by the caller, e.g.
680 * by holding the relevant modesetting object lock for its parent.
682 * For example, a drm_connector has a 'PATH' property, which contains the ID
683 * of a blob property with the value of the MST path information. Calling this
684 * function with replace pointing to the connector's path_blob_ptr, length and
685 * data set for the new path information, obj_holds_id set to the connector's
686 * base object, and prop_holds_id set to the path property name, will perform
687 * a completely atomic update. The access to path_blob_ptr is protected by the
688 * caller holding a lock on the connector.
690 int drm_property_replace_global_blob(struct drm_device *dev,
691 struct drm_property_blob **replace,
694 struct drm_mode_object *obj_holds_id,
695 struct drm_property *prop_holds_id)
697 struct drm_property_blob *new_blob = NULL;
698 struct drm_property_blob *old_blob = NULL;
701 WARN_ON(replace == NULL);
705 if (length && data) {
706 new_blob = drm_property_create_blob(dev, length, data);
707 if (IS_ERR(new_blob))
708 return PTR_ERR(new_blob);
712 ret = drm_object_property_set_value(obj_holds_id,
715 new_blob->base.id : 0);
720 drm_property_blob_put(old_blob);
726 drm_property_blob_put(new_blob);
729 EXPORT_SYMBOL(drm_property_replace_global_blob);
732 * drm_property_replace_blob - replace a blob property
733 * @blob: a pointer to the member blob to be replaced
734 * @new_blob: the new blob to replace with
736 * Return: true if the blob was in fact replaced.
738 bool drm_property_replace_blob(struct drm_property_blob **blob,
739 struct drm_property_blob *new_blob)
741 struct drm_property_blob *old_blob = *blob;
743 if (old_blob == new_blob)
746 drm_property_blob_put(old_blob);
748 drm_property_blob_get(new_blob);
752 EXPORT_SYMBOL(drm_property_replace_blob);
754 int drm_mode_getblob_ioctl(struct drm_device *dev,
755 void *data, struct drm_file *file_priv)
757 struct drm_mode_get_blob *out_resp = data;
758 struct drm_property_blob *blob;
761 if (!drm_core_check_feature(dev, DRIVER_MODESET))
764 blob = drm_property_lookup_blob(dev, out_resp->blob_id);
768 if (out_resp->length == blob->length) {
769 if (copy_to_user(u64_to_user_ptr(out_resp->data),
776 out_resp->length = blob->length;
778 drm_property_blob_put(blob);
783 int drm_mode_createblob_ioctl(struct drm_device *dev,
784 void *data, struct drm_file *file_priv)
786 struct drm_mode_create_blob *out_resp = data;
787 struct drm_property_blob *blob;
790 if (!drm_core_check_feature(dev, DRIVER_MODESET))
793 blob = drm_property_create_blob(dev, out_resp->length, NULL);
795 return PTR_ERR(blob);
797 if (copy_from_user(blob->data,
798 u64_to_user_ptr(out_resp->data),
804 /* Dropping the lock between create_blob and our access here is safe
805 * as only the same file_priv can remove the blob; at this point, it is
806 * not associated with any file_priv. */
807 mutex_lock(&dev->mode_config.blob_lock);
808 out_resp->blob_id = blob->base.id;
809 list_add_tail(&blob->head_file, &file_priv->blobs);
810 mutex_unlock(&dev->mode_config.blob_lock);
815 drm_property_blob_put(blob);
819 int drm_mode_destroyblob_ioctl(struct drm_device *dev,
820 void *data, struct drm_file *file_priv)
822 struct drm_mode_destroy_blob *out_resp = data;
823 struct drm_property_blob *blob = NULL, *bt;
827 if (!drm_core_check_feature(dev, DRIVER_MODESET))
830 blob = drm_property_lookup_blob(dev, out_resp->blob_id);
834 mutex_lock(&dev->mode_config.blob_lock);
835 /* Ensure the property was actually created by this user. */
836 list_for_each_entry(bt, &file_priv->blobs, head_file) {
848 /* We must drop head_file here, because we may not be the last
849 * reference on the blob. */
850 list_del_init(&blob->head_file);
851 mutex_unlock(&dev->mode_config.blob_lock);
853 /* One reference from lookup, and one from the filp. */
854 drm_property_blob_put(blob);
855 drm_property_blob_put(blob);
860 mutex_unlock(&dev->mode_config.blob_lock);
861 drm_property_blob_put(blob);
866 /* Some properties could refer to dynamic refcnt'd objects, or things that
867 * need special locking to handle lifetime issues (ie. to ensure the prop
868 * value doesn't become invalid part way through the property update due to
869 * race). The value returned by reference via 'obj' should be passed back
870 * to drm_property_change_valid_put() after the property is set (and the
871 * object to which the property is attached has a chance to take its own
874 bool drm_property_change_valid_get(struct drm_property *property,
875 uint64_t value, struct drm_mode_object **ref)
879 if (property->flags & DRM_MODE_PROP_IMMUTABLE)
884 if (drm_property_type_is(property, DRM_MODE_PROP_RANGE)) {
885 if (value < property->values[0] || value > property->values[1])
888 } else if (drm_property_type_is(property, DRM_MODE_PROP_SIGNED_RANGE)) {
889 int64_t svalue = U642I64(value);
891 if (svalue < U642I64(property->values[0]) ||
892 svalue > U642I64(property->values[1]))
895 } else if (drm_property_type_is(property, DRM_MODE_PROP_BITMASK)) {
896 uint64_t valid_mask = 0;
898 for (i = 0; i < property->num_values; i++)
899 valid_mask |= (1ULL << property->values[i]);
900 return !(value & ~valid_mask);
901 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB)) {
902 struct drm_property_blob *blob;
907 blob = drm_property_lookup_blob(property->dev, value);
914 } else if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
915 /* a zero value for an object property translates to null: */
919 *ref = __drm_mode_object_find(property->dev, NULL, value,
920 property->values[0]);
924 for (i = 0; i < property->num_values; i++)
925 if (property->values[i] == value)
930 void drm_property_change_valid_put(struct drm_property *property,
931 struct drm_mode_object *ref)
936 if (drm_property_type_is(property, DRM_MODE_PROP_OBJECT)) {
937 drm_mode_object_put(ref);
938 } else if (drm_property_type_is(property, DRM_MODE_PROP_BLOB))
939 drm_property_blob_put(obj_to_blob(ref));