[media] media: use media_gobj inside links
[deliverable/linux.git] / drivers / media / media-device.c
CommitLineData
176fb0d1
LP
1/*
2 * Media device
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Sakari Ailus <sakari.ailus@iki.fi>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
b0a1f2a8
SA
23#include <linux/compat.h>
24#include <linux/export.h>
176fb0d1 25#include <linux/ioctl.h>
140d8816 26#include <linux/media.h>
b0a1f2a8 27#include <linux/types.h>
176fb0d1
LP
28
29#include <media/media-device.h>
30#include <media/media-devnode.h>
53e269c1 31#include <media/media-entity.h>
176fb0d1 32
e576d60b
SK
33#ifdef CONFIG_MEDIA_CONTROLLER
34
140d8816
LP
35/* -----------------------------------------------------------------------------
36 * Userspace API
37 */
38
39static int media_device_open(struct file *filp)
40{
41 return 0;
42}
43
44static int media_device_close(struct file *filp)
45{
46 return 0;
47}
48
49static int media_device_get_info(struct media_device *dev,
50 struct media_device_info __user *__info)
51{
52 struct media_device_info info;
53
54 memset(&info, 0, sizeof(info));
55
56 strlcpy(info.driver, dev->dev->driver->name, sizeof(info.driver));
57 strlcpy(info.model, dev->model, sizeof(info.model));
58 strlcpy(info.serial, dev->serial, sizeof(info.serial));
59 strlcpy(info.bus_info, dev->bus_info, sizeof(info.bus_info));
60
61 info.media_version = MEDIA_API_VERSION;
62 info.hw_revision = dev->hw_revision;
63 info.driver_version = dev->driver_version;
64
b17d3945
NT
65 if (copy_to_user(__info, &info, sizeof(*__info)))
66 return -EFAULT;
67 return 0;
140d8816
LP
68}
69
1651333b
LP
70static struct media_entity *find_entity(struct media_device *mdev, u32 id)
71{
72 struct media_entity *entity;
73 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
74
75 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
76
77 spin_lock(&mdev->lock);
78
79 media_device_for_each_entity(entity, mdev) {
fa762394
MCC
80 if (((media_entity_id(entity) == id) && !next) ||
81 ((media_entity_id(entity) > id) && next)) {
1651333b
LP
82 spin_unlock(&mdev->lock);
83 return entity;
84 }
85 }
86
87 spin_unlock(&mdev->lock);
88
89 return NULL;
90}
91
92static long media_device_enum_entities(struct media_device *mdev,
93 struct media_entity_desc __user *uent)
94{
95 struct media_entity *ent;
96 struct media_entity_desc u_ent;
97
e6a62346 98 memset(&u_ent, 0, sizeof(u_ent));
1651333b
LP
99 if (copy_from_user(&u_ent.id, &uent->id, sizeof(u_ent.id)))
100 return -EFAULT;
101
102 ent = find_entity(mdev, u_ent.id);
103
104 if (ent == NULL)
105 return -EINVAL;
106
fa762394 107 u_ent.id = media_entity_id(ent);
de8eae36
LP
108 if (ent->name)
109 strlcpy(u_ent.name, ent->name, sizeof(u_ent.name));
1651333b
LP
110 u_ent.type = ent->type;
111 u_ent.revision = ent->revision;
112 u_ent.flags = ent->flags;
113 u_ent.group_id = ent->group_id;
114 u_ent.pads = ent->num_pads;
115 u_ent.links = ent->num_links - ent->num_backlinks;
fa5034c6 116 memcpy(&u_ent.raw, &ent->info, sizeof(ent->info));
1651333b
LP
117 if (copy_to_user(uent, &u_ent, sizeof(u_ent)))
118 return -EFAULT;
119 return 0;
120}
121
122static void media_device_kpad_to_upad(const struct media_pad *kpad,
123 struct media_pad_desc *upad)
124{
fa762394 125 upad->entity = media_entity_id(kpad->entity);
1651333b
LP
126 upad->index = kpad->index;
127 upad->flags = kpad->flags;
128}
129
b0a1f2a8
SA
130static long __media_device_enum_links(struct media_device *mdev,
131 struct media_links_enum *links)
1651333b
LP
132{
133 struct media_entity *entity;
1651333b 134
b0a1f2a8 135 entity = find_entity(mdev, links->entity);
1651333b
LP
136 if (entity == NULL)
137 return -EINVAL;
138
b0a1f2a8 139 if (links->pads) {
1651333b
LP
140 unsigned int p;
141
142 for (p = 0; p < entity->num_pads; p++) {
143 struct media_pad_desc pad;
c88e739b
DC
144
145 memset(&pad, 0, sizeof(pad));
1651333b 146 media_device_kpad_to_upad(&entity->pads[p], &pad);
b0a1f2a8 147 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
1651333b
LP
148 return -EFAULT;
149 }
150 }
151
b0a1f2a8 152 if (links->links) {
1651333b
LP
153 struct media_link_desc __user *ulink;
154 unsigned int l;
155
b0a1f2a8 156 for (l = 0, ulink = links->links; l < entity->num_links; l++) {
1651333b
LP
157 struct media_link_desc link;
158
159 /* Ignore backlinks. */
160 if (entity->links[l].source->entity != entity)
161 continue;
162
c88e739b 163 memset(&link, 0, sizeof(link));
1651333b
LP
164 media_device_kpad_to_upad(entity->links[l].source,
165 &link.source);
166 media_device_kpad_to_upad(entity->links[l].sink,
167 &link.sink);
168 link.flags = entity->links[l].flags;
169 if (copy_to_user(ulink, &link, sizeof(*ulink)))
170 return -EFAULT;
171 ulink++;
172 }
173 }
b0a1f2a8
SA
174
175 return 0;
176}
177
178static long media_device_enum_links(struct media_device *mdev,
179 struct media_links_enum __user *ulinks)
180{
181 struct media_links_enum links;
182 int rval;
183
184 if (copy_from_user(&links, ulinks, sizeof(links)))
185 return -EFAULT;
186
187 rval = __media_device_enum_links(mdev, &links);
188 if (rval < 0)
189 return rval;
190
1651333b
LP
191 if (copy_to_user(ulinks, &links, sizeof(*ulinks)))
192 return -EFAULT;
b0a1f2a8 193
1651333b
LP
194 return 0;
195}
196
97548ed4
LP
197static long media_device_setup_link(struct media_device *mdev,
198 struct media_link_desc __user *_ulink)
199{
200 struct media_link *link = NULL;
201 struct media_link_desc ulink;
202 struct media_entity *source;
203 struct media_entity *sink;
204 int ret;
205
206 if (copy_from_user(&ulink, _ulink, sizeof(ulink)))
207 return -EFAULT;
208
209 /* Find the source and sink entities and link.
210 */
211 source = find_entity(mdev, ulink.source.entity);
212 sink = find_entity(mdev, ulink.sink.entity);
213
214 if (source == NULL || sink == NULL)
215 return -EINVAL;
216
217 if (ulink.source.index >= source->num_pads ||
218 ulink.sink.index >= sink->num_pads)
219 return -EINVAL;
220
221 link = media_entity_find_link(&source->pads[ulink.source.index],
222 &sink->pads[ulink.sink.index]);
223 if (link == NULL)
224 return -EINVAL;
225
226 /* Setup the link on both entities. */
227 ret = __media_entity_setup_link(link, ulink.flags);
228
229 if (copy_to_user(_ulink, &ulink, sizeof(ulink)))
230 return -EFAULT;
231
232 return ret;
233}
234
140d8816
LP
235static long media_device_ioctl(struct file *filp, unsigned int cmd,
236 unsigned long arg)
237{
238 struct media_devnode *devnode = media_devnode_data(filp);
239 struct media_device *dev = to_media_device(devnode);
240 long ret;
241
242 switch (cmd) {
243 case MEDIA_IOC_DEVICE_INFO:
244 ret = media_device_get_info(dev,
245 (struct media_device_info __user *)arg);
246 break;
247
1651333b
LP
248 case MEDIA_IOC_ENUM_ENTITIES:
249 ret = media_device_enum_entities(dev,
250 (struct media_entity_desc __user *)arg);
251 break;
252
253 case MEDIA_IOC_ENUM_LINKS:
254 mutex_lock(&dev->graph_mutex);
255 ret = media_device_enum_links(dev,
256 (struct media_links_enum __user *)arg);
257 mutex_unlock(&dev->graph_mutex);
258 break;
259
97548ed4
LP
260 case MEDIA_IOC_SETUP_LINK:
261 mutex_lock(&dev->graph_mutex);
262 ret = media_device_setup_link(dev,
263 (struct media_link_desc __user *)arg);
264 mutex_unlock(&dev->graph_mutex);
265 break;
266
140d8816
LP
267 default:
268 ret = -ENOIOCTLCMD;
269 }
270
271 return ret;
272}
273
b0a1f2a8
SA
274#ifdef CONFIG_COMPAT
275
276struct media_links_enum32 {
277 __u32 entity;
278 compat_uptr_t pads; /* struct media_pad_desc * */
279 compat_uptr_t links; /* struct media_link_desc * */
280 __u32 reserved[4];
281};
282
283static long media_device_enum_links32(struct media_device *mdev,
284 struct media_links_enum32 __user *ulinks)
285{
286 struct media_links_enum links;
287 compat_uptr_t pads_ptr, links_ptr;
288
289 memset(&links, 0, sizeof(links));
290
291 if (get_user(links.entity, &ulinks->entity)
292 || get_user(pads_ptr, &ulinks->pads)
293 || get_user(links_ptr, &ulinks->links))
294 return -EFAULT;
295
296 links.pads = compat_ptr(pads_ptr);
297 links.links = compat_ptr(links_ptr);
298
299 return __media_device_enum_links(mdev, &links);
300}
301
302#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
303
304static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
305 unsigned long arg)
306{
307 struct media_devnode *devnode = media_devnode_data(filp);
308 struct media_device *dev = to_media_device(devnode);
309 long ret;
310
311 switch (cmd) {
312 case MEDIA_IOC_DEVICE_INFO:
313 case MEDIA_IOC_ENUM_ENTITIES:
314 case MEDIA_IOC_SETUP_LINK:
315 return media_device_ioctl(filp, cmd, arg);
316
317 case MEDIA_IOC_ENUM_LINKS32:
318 mutex_lock(&dev->graph_mutex);
319 ret = media_device_enum_links32(dev,
320 (struct media_links_enum32 __user *)arg);
321 mutex_unlock(&dev->graph_mutex);
322 break;
323
324 default:
325 ret = -ENOIOCTLCMD;
326 }
327
328 return ret;
329}
330#endif /* CONFIG_COMPAT */
331
176fb0d1
LP
332static const struct media_file_operations media_device_fops = {
333 .owner = THIS_MODULE,
140d8816
LP
334 .open = media_device_open,
335 .ioctl = media_device_ioctl,
b0a1f2a8
SA
336#ifdef CONFIG_COMPAT
337 .compat_ioctl = media_device_compat_ioctl,
338#endif /* CONFIG_COMPAT */
140d8816 339 .release = media_device_close,
176fb0d1
LP
340};
341
342/* -----------------------------------------------------------------------------
343 * sysfs
344 */
345
346static ssize_t show_model(struct device *cd,
347 struct device_attribute *attr, char *buf)
348{
349 struct media_device *mdev = to_media_device(to_media_devnode(cd));
350
351 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
352}
353
354static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
355
356/* -----------------------------------------------------------------------------
357 * Registration/unregistration
358 */
359
360static void media_device_release(struct media_devnode *mdev)
361{
362}
363
364/**
365 * media_device_register - register a media device
366 * @mdev: The media device
367 *
368 * The caller is responsible for initializing the media device before
369 * registration. The following fields must be set:
370 *
371 * - dev must point to the parent device
372 * - model must be filled with the device model name
373 */
85de721c
SA
374int __must_check __media_device_register(struct media_device *mdev,
375 struct module *owner)
176fb0d1
LP
376{
377 int ret;
378
379 if (WARN_ON(mdev->dev == NULL || mdev->model[0] == 0))
380 return -EINVAL;
381
53e269c1
LP
382 INIT_LIST_HEAD(&mdev->entities);
383 spin_lock_init(&mdev->lock);
503c3d82 384 mutex_init(&mdev->graph_mutex);
53e269c1 385
176fb0d1
LP
386 /* Register the device node. */
387 mdev->devnode.fops = &media_device_fops;
388 mdev->devnode.parent = mdev->dev;
389 mdev->devnode.release = media_device_release;
85de721c 390 ret = media_devnode_register(&mdev->devnode, owner);
176fb0d1
LP
391 if (ret < 0)
392 return ret;
393
394 ret = device_create_file(&mdev->devnode.dev, &dev_attr_model);
395 if (ret < 0) {
396 media_devnode_unregister(&mdev->devnode);
397 return ret;
398 }
399
400 return 0;
401}
85de721c 402EXPORT_SYMBOL_GPL(__media_device_register);
176fb0d1
LP
403
404/**
405 * media_device_unregister - unregister a media device
406 * @mdev: The media device
407 *
408 */
409void media_device_unregister(struct media_device *mdev)
410{
53e269c1
LP
411 struct media_entity *entity;
412 struct media_entity *next;
413
414 list_for_each_entry_safe(entity, next, &mdev->entities, list)
415 media_device_unregister_entity(entity);
416
176fb0d1
LP
417 device_remove_file(&mdev->devnode.dev, &dev_attr_model);
418 media_devnode_unregister(&mdev->devnode);
419}
420EXPORT_SYMBOL_GPL(media_device_unregister);
53e269c1
LP
421
422/**
423 * media_device_register_entity - Register an entity with a media device
424 * @mdev: The media device
425 * @entity: The entity
426 */
427int __must_check media_device_register_entity(struct media_device *mdev,
428 struct media_entity *entity)
429{
18710dc6
MCC
430 int i;
431
53e269c1
LP
432 /* Warn if we apparently re-register an entity */
433 WARN_ON(entity->parent != NULL);
434 entity->parent = mdev;
435
436 spin_lock(&mdev->lock);
bfab2aac
MCC
437 /* Initialize media_gobj embedded at the entity */
438 media_gobj_init(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
53e269c1 439 list_add_tail(&entity->list, &mdev->entities);
18710dc6 440
6b6a4278
MCC
441 /*
442 * Initialize objects at the links
443 * in the case where links got created before entity register
444 */
445 for (i = 0; i < entity->num_links; i++)
446 media_gobj_init(mdev, MEDIA_GRAPH_LINK,
447 &entity->links[i].graph_obj);
18710dc6
MCC
448 /* Initialize objects at the pads */
449 for (i = 0; i < entity->num_pads; i++)
450 media_gobj_init(mdev, MEDIA_GRAPH_PAD,
451 &entity->pads[i].graph_obj);
452
53e269c1
LP
453 spin_unlock(&mdev->lock);
454
455 return 0;
456}
457EXPORT_SYMBOL_GPL(media_device_register_entity);
458
459/**
460 * media_device_unregister_entity - Unregister an entity
461 * @entity: The entity
462 *
463 * If the entity has never been registered this function will return
464 * immediately.
465 */
466void media_device_unregister_entity(struct media_entity *entity)
467{
18710dc6 468 int i;
53e269c1
LP
469 struct media_device *mdev = entity->parent;
470
471 if (mdev == NULL)
472 return;
473
474 spin_lock(&mdev->lock);
6b6a4278
MCC
475 for (i = 0; i < entity->num_links; i++)
476 media_gobj_remove(&entity->links[i].graph_obj);
18710dc6
MCC
477 for (i = 0; i < entity->num_pads; i++)
478 media_gobj_remove(&entity->pads[i].graph_obj);
bfab2aac 479 media_gobj_remove(&entity->graph_obj);
53e269c1
LP
480 list_del(&entity->list);
481 spin_unlock(&mdev->lock);
482 entity->parent = NULL;
483}
484EXPORT_SYMBOL_GPL(media_device_unregister_entity);
d062f911
SK
485
486static void media_device_release_devres(struct device *dev, void *res)
487{
488}
489
490/*
491 * media_device_get_devres() - get media device as device resource
492 * creates if one doesn't exist
493*/
494struct media_device *media_device_get_devres(struct device *dev)
495{
496 struct media_device *mdev;
497
498 mdev = devres_find(dev, media_device_release_devres, NULL, NULL);
499 if (mdev)
500 return mdev;
501
502 mdev = devres_alloc(media_device_release_devres,
503 sizeof(struct media_device), GFP_KERNEL);
504 if (!mdev)
505 return NULL;
506 return devres_get(dev, mdev, NULL, NULL);
507}
508EXPORT_SYMBOL_GPL(media_device_get_devres);
509
510/*
511 * media_device_find_devres() - find media device as device resource
512*/
513struct media_device *media_device_find_devres(struct device *dev)
514{
515 return devres_find(dev, media_device_release_devres, NULL, NULL);
516}
517EXPORT_SYMBOL_GPL(media_device_find_devres);
e576d60b
SK
518
519#endif /* CONFIG_MEDIA_CONTROLLER */
This page took 0.270489 seconds and 5 git commands to generate.