blob: a92aeed5115601e9fe92e27b74e7ab2040c01ab0 [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>
26
27#include "drm_crtc_internal.h"
28
29/*
30 * Internal function to assign a slot in the object idr and optionally
31 * register the object into the idr.
32 */
33int drm_mode_object_get_reg(struct drm_device *dev,
34 struct drm_mode_object *obj,
35 uint32_t obj_type,
36 bool register_obj,
37 void (*obj_free_cb)(struct kref *kref))
38{
39 int ret;
40
41 mutex_lock(&dev->mode_config.idr_mutex);
42 ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
43 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/**
61 * drm_mode_object_get - allocate a new modeset identifier
62 * @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
67 * for tracking modes, CRTCs and connectors. Note that despite the _get postfix
68 * modeset identifiers are _not_ reference counted. Hence don't use this for
69 * reference counted modeset objects like framebuffers.
70 *
71 * Returns:
72 * Zero on success, error code on failure.
73 */
74int drm_mode_object_get(struct drm_device *dev,
75 struct drm_mode_object *obj, uint32_t obj_type)
76{
77 return drm_mode_object_get_reg(dev, obj, obj_type, true, NULL);
78}
79
80void drm_mode_object_register(struct drm_device *dev,
81 struct drm_mode_object *obj)
82{
83 mutex_lock(&dev->mode_config.idr_mutex);
84 idr_replace(&dev->mode_config.crtc_idr, obj, obj->id);
85 mutex_unlock(&dev->mode_config.idr_mutex);
86}
87
88/**
89 * drm_mode_object_unregister - free a modeset identifer
90 * @dev: DRM device
91 * @object: object to free
92 *
93 * Free @id from @dev's unique identifier pool.
94 * This function can be called multiple times, and guards against
95 * multiple removals.
96 * These modeset identifiers are _not_ reference counted. Hence don't use this
97 * for reference counted modeset objects like framebuffers.
98 */
99void drm_mode_object_unregister(struct drm_device *dev,
100 struct drm_mode_object *object)
101{
102 mutex_lock(&dev->mode_config.idr_mutex);
103 if (object->id) {
104 idr_remove(&dev->mode_config.crtc_idr, object->id);
105 object->id = 0;
106 }
107 mutex_unlock(&dev->mode_config.idr_mutex);
108}
109
110struct drm_mode_object *__drm_mode_object_find(struct drm_device *dev,
111 uint32_t id, uint32_t type)
112{
113 struct drm_mode_object *obj = NULL;
114
115 mutex_lock(&dev->mode_config.idr_mutex);
116 obj = idr_find(&dev->mode_config.crtc_idr, id);
117 if (obj && type != DRM_MODE_OBJECT_ANY && obj->type != type)
118 obj = NULL;
119 if (obj && obj->id != id)
120 obj = NULL;
121
122 if (obj && obj->free_cb) {
123 if (!kref_get_unless_zero(&obj->refcount))
124 obj = NULL;
125 }
126 mutex_unlock(&dev->mode_config.idr_mutex);
127
128 return obj;
129}
130
131/**
132 * drm_mode_object_find - look up a drm object with static lifetime
133 * @dev: drm device
134 * @id: id of the mode object
135 * @type: type of the mode object
136 *
137 * This function is used to look up a modeset object. It will acquire a
138 * reference for reference counted objects. This reference must be dropped again
139 * by callind drm_mode_object_unreference().
140 */
141struct drm_mode_object *drm_mode_object_find(struct drm_device *dev,
142 uint32_t id, uint32_t type)
143{
144 struct drm_mode_object *obj = NULL;
145
146 obj = __drm_mode_object_find(dev, id, type);
147 return obj;
148}
149EXPORT_SYMBOL(drm_mode_object_find);
150
151/**
152 * drm_mode_object_unreference - decr the object refcnt
153 * @obj: mode_object
154 *
155 * This functions decrements the object's refcount if it is a refcounted modeset
156 * object. It is a no-op on any other object. This is used to drop references
157 * acquired with drm_mode_object_reference().
158 */
159void drm_mode_object_unreference(struct drm_mode_object *obj)
160{
161 if (obj->free_cb) {
162 DRM_DEBUG("OBJ ID: %d (%d)\n", obj->id, atomic_read(&obj->refcount.refcount));
163 kref_put(&obj->refcount, obj->free_cb);
164 }
165}
166EXPORT_SYMBOL(drm_mode_object_unreference);
167
168/**
169 * drm_mode_object_reference - incr the object refcnt
170 * @obj: mode_object
171 *
172 * This functions increments the object's refcount if it is a refcounted modeset
173 * object. It is a no-op on any other object. References should be dropped again
174 * by calling drm_mode_object_unreference().
175 */
176void drm_mode_object_reference(struct drm_mode_object *obj)
177{
178 if (obj->free_cb) {
179 DRM_DEBUG("OBJ ID: %d (%d)\n", obj->id, atomic_read(&obj->refcount.refcount));
180 kref_get(&obj->refcount);
181 }
182}
183EXPORT_SYMBOL(drm_mode_object_reference);
184
185/**
186 * drm_object_attach_property - attach a property to a modeset object
187 * @obj: drm modeset object
188 * @property: property to attach
189 * @init_val: initial value of the property
190 *
191 * This attaches the given property to the modeset object with the given initial
192 * value. Currently this function cannot fail since the properties are stored in
193 * a statically sized array.
194 */
195void drm_object_attach_property(struct drm_mode_object *obj,
196 struct drm_property *property,
197 uint64_t init_val)
198{
199 int count = obj->properties->count;
200
201 if (count == DRM_OBJECT_MAX_PROPERTY) {
202 WARN(1, "Failed to attach object property (type: 0x%x). Please "
203 "increase DRM_OBJECT_MAX_PROPERTY by 1 for each time "
204 "you see this message on the same object type.\n",
205 obj->type);
206 return;
207 }
208
209 obj->properties->properties[count] = property;
210 obj->properties->values[count] = init_val;
211 obj->properties->count++;
Daniel Vetter949619f2016-08-29 10:27:51 +0200212}
213EXPORT_SYMBOL(drm_object_attach_property);
214
215/**
216 * drm_object_property_set_value - set the value of a property
217 * @obj: drm mode object to set property value for
218 * @property: property to set
219 * @val: value the property should be set to
220 *
221 * This functions sets a given property on a given object. This function only
222 * changes the software state of the property, it does not call into the
223 * driver's ->set_property callback.
224 *
225 * Returns:
226 * Zero on success, error code on failure.
227 */
228int drm_object_property_set_value(struct drm_mode_object *obj,
229 struct drm_property *property, uint64_t val)
230{
231 int i;
232
233 for (i = 0; i < obj->properties->count; i++) {
234 if (obj->properties->properties[i] == property) {
235 obj->properties->values[i] = val;
236 return 0;
237 }
238 }
239
240 return -EINVAL;
241}
242EXPORT_SYMBOL(drm_object_property_set_value);
243
244/**
245 * drm_object_property_get_value - retrieve the value of a property
246 * @obj: drm mode object to get property value from
247 * @property: property to retrieve
248 * @val: storage for the property value
249 *
250 * This function retrieves the softare state of the given property for the given
251 * property. Since there is no driver callback to retrieve the current property
252 * value this might be out of sync with the hardware, depending upon the driver
253 * and property.
254 *
255 * Returns:
256 * Zero on success, error code on failure.
257 */
258int drm_object_property_get_value(struct drm_mode_object *obj,
259 struct drm_property *property, uint64_t *val)
260{
261 int i;
262
263 /* read-only properties bypass atomic mechanism and still store
264 * their value in obj->properties->values[].. mostly to avoid
265 * having to deal w/ EDID and similar props in atomic paths:
266 */
267 if (drm_core_check_feature(property->dev, DRIVER_ATOMIC) &&
268 !(property->flags & DRM_MODE_PROP_IMMUTABLE))
269 return drm_atomic_get_property(obj, property, val);
270
271 for (i = 0; i < obj->properties->count; i++) {
272 if (obj->properties->properties[i] == property) {
273 *val = obj->properties->values[i];
274 return 0;
275 }
276
277 }
278
279 return -EINVAL;
280}
281EXPORT_SYMBOL(drm_object_property_get_value);
282
283/* helper for getconnector and getproperties ioctls */
284int drm_mode_object_get_properties(struct drm_mode_object *obj, bool atomic,
285 uint32_t __user *prop_ptr,
286 uint64_t __user *prop_values,
287 uint32_t *arg_count_props)
288{
Daniel Vetterf094d882016-08-29 10:27:52 +0200289 int i, ret, count;
Daniel Vetter949619f2016-08-29 10:27:51 +0200290
Daniel Vetterf094d882016-08-29 10:27:52 +0200291 for (i = 0, count = 0; i < obj->properties->count; i++) {
292 struct drm_property *prop = obj->properties->properties[i];
293 uint64_t val;
Daniel Vetter949619f2016-08-29 10:27:51 +0200294
Daniel Vetterf094d882016-08-29 10:27:52 +0200295 if ((prop->flags & DRM_MODE_PROP_ATOMIC) && !atomic)
296 continue;
Daniel Vetter949619f2016-08-29 10:27:51 +0200297
Daniel Vetterf094d882016-08-29 10:27:52 +0200298 if (*arg_count_props > count) {
Daniel Vetter949619f2016-08-29 10:27:51 +0200299 ret = drm_object_property_get_value(obj, prop, &val);
300 if (ret)
301 return ret;
302
Daniel Vetterf094d882016-08-29 10:27:52 +0200303 if (put_user(prop->base.id, prop_ptr + count))
Daniel Vetter949619f2016-08-29 10:27:51 +0200304 return -EFAULT;
305
Daniel Vetterf094d882016-08-29 10:27:52 +0200306 if (put_user(val, prop_values + count))
Daniel Vetter949619f2016-08-29 10:27:51 +0200307 return -EFAULT;
Daniel Vetter949619f2016-08-29 10:27:51 +0200308 }
Daniel Vetterf094d882016-08-29 10:27:52 +0200309
310 count++;
Daniel Vetter949619f2016-08-29 10:27:51 +0200311 }
Daniel Vetterf094d882016-08-29 10:27:52 +0200312 *arg_count_props = count;
Daniel Vetter949619f2016-08-29 10:27:51 +0200313
314 return 0;
315}
316
317/**
318 * drm_mode_obj_get_properties_ioctl - get the current value of a object's property
319 * @dev: DRM device
320 * @data: ioctl data
321 * @file_priv: DRM file info
322 *
323 * This function retrieves the current value for an object's property. Compared
324 * to the connector specific ioctl this one is extended to also work on crtc and
325 * plane objects.
326 *
327 * Called by the user via ioctl.
328 *
329 * Returns:
330 * Zero on success, negative errno on failure.
331 */
332int drm_mode_obj_get_properties_ioctl(struct drm_device *dev, void *data,
333 struct drm_file *file_priv)
334{
335 struct drm_mode_obj_get_properties *arg = data;
336 struct drm_mode_object *obj;
337 int ret = 0;
338
339 if (!drm_core_check_feature(dev, DRIVER_MODESET))
340 return -EINVAL;
341
342 drm_modeset_lock_all(dev);
343
344 obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
345 if (!obj) {
346 ret = -ENOENT;
347 goto out;
348 }
349 if (!obj->properties) {
350 ret = -EINVAL;
351 goto out_unref;
352 }
353
354 ret = drm_mode_object_get_properties(obj, file_priv->atomic,
355 (uint32_t __user *)(unsigned long)(arg->props_ptr),
356 (uint64_t __user *)(unsigned long)(arg->prop_values_ptr),
357 &arg->count_props);
358
359out_unref:
360 drm_mode_object_unreference(obj);
361out:
362 drm_modeset_unlock_all(dev);
363 return ret;
364}
365
366int drm_mode_obj_set_property_ioctl(struct drm_device *dev, void *data,
367 struct drm_file *file_priv)
368{
369 struct drm_mode_obj_set_property *arg = data;
370 struct drm_mode_object *arg_obj;
371 struct drm_mode_object *prop_obj;
372 struct drm_property *property;
373 int i, ret = -EINVAL;
374 struct drm_mode_object *ref;
375
376 if (!drm_core_check_feature(dev, DRIVER_MODESET))
377 return -EINVAL;
378
379 drm_modeset_lock_all(dev);
380
381 arg_obj = drm_mode_object_find(dev, arg->obj_id, arg->obj_type);
382 if (!arg_obj) {
383 ret = -ENOENT;
384 goto out;
385 }
386 if (!arg_obj->properties)
387 goto out_unref;
388
389 for (i = 0; i < arg_obj->properties->count; i++)
390 if (arg_obj->properties->properties[i]->base.id == arg->prop_id)
391 break;
392
393 if (i == arg_obj->properties->count)
394 goto out_unref;
395
396 prop_obj = drm_mode_object_find(dev, arg->prop_id,
397 DRM_MODE_OBJECT_PROPERTY);
398 if (!prop_obj) {
399 ret = -ENOENT;
400 goto out_unref;
401 }
402 property = obj_to_property(prop_obj);
403
404 if (!drm_property_change_valid_get(property, arg->value, &ref))
405 goto out_unref;
406
407 switch (arg_obj->type) {
408 case DRM_MODE_OBJECT_CONNECTOR:
409 ret = drm_mode_connector_set_obj_prop(arg_obj, property,
410 arg->value);
411 break;
412 case DRM_MODE_OBJECT_CRTC:
413 ret = drm_mode_crtc_set_obj_prop(arg_obj, property, arg->value);
414 break;
415 case DRM_MODE_OBJECT_PLANE:
416 ret = drm_mode_plane_set_obj_prop(obj_to_plane(arg_obj),
417 property, arg->value);
418 break;
419 }
420
421 drm_property_change_valid_put(property, ref);
422
423out_unref:
424 drm_mode_object_unreference(arg_obj);
425out:
426 drm_modeset_unlock_all(dev);
427 return ret;
428}