]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/media/media-device.c
[media] media: Determine early whether an IOCTL is supported
[mirror_ubuntu-artful-kernel.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
b2cd2744
MCC
23/* We need to access legacy defines from linux/media.h */
24#define __NEED_MEDIA_LEGACY_API
25
b0a1f2a8
SA
26#include <linux/compat.h>
27#include <linux/export.h>
665faa97 28#include <linux/idr.h>
176fb0d1 29#include <linux/ioctl.h>
140d8816 30#include <linux/media.h>
57208e5e 31#include <linux/slab.h>
497e80cd 32#include <linux/types.h>
41b44e35
MCC
33#include <linux/pci.h>
34#include <linux/usb.h>
176fb0d1
LP
35
36#include <media/media-device.h>
37#include <media/media-devnode.h>
53e269c1 38#include <media/media-entity.h>
176fb0d1 39
e576d60b
SK
40#ifdef CONFIG_MEDIA_CONTROLLER
41
140d8816
LP
42/* -----------------------------------------------------------------------------
43 * Userspace API
44 */
45
0629e991
SA
46static inline void __user *media_get_uptr(__u64 arg)
47{
48 return (void __user *)(uintptr_t)arg;
49}
50
140d8816
LP
51static int media_device_open(struct file *filp)
52{
53 return 0;
54}
55
56static int media_device_close(struct file *filp)
57{
58 return 0;
59}
60
61static int media_device_get_info(struct media_device *dev,
62 struct media_device_info __user *__info)
63{
64 struct media_device_info info;
65
66 memset(&info, 0, sizeof(info));
67
bb07bd6b
MCC
68 if (dev->driver_name[0])
69 strlcpy(info.driver, dev->driver_name, sizeof(info.driver));
70 else
71 strlcpy(info.driver, dev->dev->driver->name, sizeof(info.driver));
72
140d8816
LP
73 strlcpy(info.model, dev->model, sizeof(info.model));
74 strlcpy(info.serial, dev->serial, sizeof(info.serial));
75 strlcpy(info.bus_info, dev->bus_info, sizeof(info.bus_info));
76
77 info.media_version = MEDIA_API_VERSION;
78 info.hw_revision = dev->hw_revision;
79 info.driver_version = dev->driver_version;
80
b17d3945
NT
81 if (copy_to_user(__info, &info, sizeof(*__info)))
82 return -EFAULT;
83 return 0;
140d8816
LP
84}
85
1651333b
LP
86static struct media_entity *find_entity(struct media_device *mdev, u32 id)
87{
88 struct media_entity *entity;
89 int next = id & MEDIA_ENT_ID_FLAG_NEXT;
90
91 id &= ~MEDIA_ENT_ID_FLAG_NEXT;
92
1651333b 93 media_device_for_each_entity(entity, mdev) {
fa762394
MCC
94 if (((media_entity_id(entity) == id) && !next) ||
95 ((media_entity_id(entity) > id) && next)) {
1651333b
LP
96 return entity;
97 }
98 }
99
1651333b
LP
100 return NULL;
101}
102
103static long media_device_enum_entities(struct media_device *mdev,
104 struct media_entity_desc __user *uent)
105{
106 struct media_entity *ent;
107 struct media_entity_desc u_ent;
108
e6a62346 109 memset(&u_ent, 0, sizeof(u_ent));
1651333b
LP
110 if (copy_from_user(&u_ent.id, &uent->id, sizeof(u_ent.id)))
111 return -EFAULT;
112
113 ent = find_entity(mdev, u_ent.id);
114
115 if (ent == NULL)
116 return -EINVAL;
117
fa762394 118 u_ent.id = media_entity_id(ent);
de8eae36
LP
119 if (ent->name)
120 strlcpy(u_ent.name, ent->name, sizeof(u_ent.name));
0e576b76 121 u_ent.type = ent->function;
8ed8c88c 122 u_ent.revision = 0; /* Unused */
1651333b 123 u_ent.flags = ent->flags;
8ed8c88c 124 u_ent.group_id = 0; /* Unused */
1651333b
LP
125 u_ent.pads = ent->num_pads;
126 u_ent.links = ent->num_links - ent->num_backlinks;
b2cd2744
MCC
127
128 /*
129 * Workaround for a bug at media-ctl <= v1.10 that makes it to
130 * do the wrong thing if the entity function doesn't belong to
131 * either MEDIA_ENT_F_OLD_BASE or MEDIA_ENT_F_OLD_SUBDEV_BASE
132 * Ranges.
133 *
134 * Non-subdevices are expected to be at the MEDIA_ENT_F_OLD_BASE,
135 * or, otherwise, will be silently ignored by media-ctl when
136 * printing the graphviz diagram. So, map them into the devnode
137 * old range.
138 */
139 if (ent->function < MEDIA_ENT_F_OLD_BASE ||
140 ent->function > MEDIA_ENT_T_DEVNODE_UNKNOWN) {
141 if (is_media_entity_v4l2_subdev(ent))
142 u_ent.type = MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN;
143 else if (ent->function != MEDIA_ENT_F_IO_V4L)
144 u_ent.type = MEDIA_ENT_T_DEVNODE_UNKNOWN;
145 }
146
fa5034c6 147 memcpy(&u_ent.raw, &ent->info, sizeof(ent->info));
1651333b
LP
148 if (copy_to_user(uent, &u_ent, sizeof(u_ent)))
149 return -EFAULT;
150 return 0;
151}
152
153static void media_device_kpad_to_upad(const struct media_pad *kpad,
154 struct media_pad_desc *upad)
155{
fa762394 156 upad->entity = media_entity_id(kpad->entity);
1651333b
LP
157 upad->index = kpad->index;
158 upad->flags = kpad->flags;
159}
160
b0a1f2a8
SA
161static long __media_device_enum_links(struct media_device *mdev,
162 struct media_links_enum *links)
1651333b
LP
163{
164 struct media_entity *entity;
1651333b 165
b0a1f2a8 166 entity = find_entity(mdev, links->entity);
1651333b
LP
167 if (entity == NULL)
168 return -EINVAL;
169
b0a1f2a8 170 if (links->pads) {
1651333b
LP
171 unsigned int p;
172
173 for (p = 0; p < entity->num_pads; p++) {
174 struct media_pad_desc pad;
c88e739b
DC
175
176 memset(&pad, 0, sizeof(pad));
1651333b 177 media_device_kpad_to_upad(&entity->pads[p], &pad);
b0a1f2a8 178 if (copy_to_user(&links->pads[p], &pad, sizeof(pad)))
1651333b
LP
179 return -EFAULT;
180 }
181 }
182
b0a1f2a8 183 if (links->links) {
b83e2508
MCC
184 struct media_link *link;
185 struct media_link_desc __user *ulink_desc = links->links;
1651333b 186
b83e2508
MCC
187 list_for_each_entry(link, &entity->links, list) {
188 struct media_link_desc klink_desc;
1651333b
LP
189
190 /* Ignore backlinks. */
b83e2508 191 if (link->source->entity != entity)
1651333b 192 continue;
b83e2508
MCC
193 memset(&klink_desc, 0, sizeof(klink_desc));
194 media_device_kpad_to_upad(link->source,
195 &klink_desc.source);
196 media_device_kpad_to_upad(link->sink,
197 &klink_desc.sink);
198 klink_desc.flags = link->flags;
199 if (copy_to_user(ulink_desc, &klink_desc,
200 sizeof(*ulink_desc)))
1651333b 201 return -EFAULT;
b83e2508 202 ulink_desc++;
1651333b
LP
203 }
204 }
b0a1f2a8
SA
205
206 return 0;
207}
208
209static long media_device_enum_links(struct media_device *mdev,
210 struct media_links_enum __user *ulinks)
211{
212 struct media_links_enum links;
213 int rval;
214
215 if (copy_from_user(&links, ulinks, sizeof(links)))
216 return -EFAULT;
217
218 rval = __media_device_enum_links(mdev, &links);
219 if (rval < 0)
220 return rval;
221
1651333b
LP
222 if (copy_to_user(ulinks, &links, sizeof(*ulinks)))
223 return -EFAULT;
b0a1f2a8 224
1651333b
LP
225 return 0;
226}
227
97548ed4
LP
228static long media_device_setup_link(struct media_device *mdev,
229 struct media_link_desc __user *_ulink)
230{
231 struct media_link *link = NULL;
232 struct media_link_desc ulink;
233 struct media_entity *source;
234 struct media_entity *sink;
235 int ret;
236
237 if (copy_from_user(&ulink, _ulink, sizeof(ulink)))
238 return -EFAULT;
239
240 /* Find the source and sink entities and link.
241 */
242 source = find_entity(mdev, ulink.source.entity);
243 sink = find_entity(mdev, ulink.sink.entity);
244
245 if (source == NULL || sink == NULL)
246 return -EINVAL;
247
248 if (ulink.source.index >= source->num_pads ||
249 ulink.sink.index >= sink->num_pads)
250 return -EINVAL;
251
252 link = media_entity_find_link(&source->pads[ulink.source.index],
253 &sink->pads[ulink.sink.index]);
254 if (link == NULL)
255 return -EINVAL;
256
257 /* Setup the link on both entities. */
258 ret = __media_entity_setup_link(link, ulink.flags);
259
260 if (copy_to_user(_ulink, &ulink, sizeof(ulink)))
261 return -EFAULT;
262
263 return ret;
264}
265
8309f47c
MCC
266static long __media_device_get_topology(struct media_device *mdev,
267 struct media_v2_topology *topo)
268{
269 struct media_entity *entity;
270 struct media_interface *intf;
271 struct media_pad *pad;
272 struct media_link *link;
d37410c2
SA
273 struct media_v2_entity kentity, __user *uentity;
274 struct media_v2_interface kintf, __user *uintf;
275 struct media_v2_pad kpad, __user *upad;
276 struct media_v2_link klink, __user *ulink;
9033b1a4
MCC
277 unsigned int i;
278 int ret = 0;
8309f47c
MCC
279
280 topo->topology_version = mdev->topology_version;
281
282 /* Get entities and number of entities */
283 i = 0;
b3b7a9f1 284 uentity = media_get_uptr(topo->ptr_entities);
8309f47c
MCC
285 media_device_for_each_entity(entity, mdev) {
286 i++;
b3b7a9f1 287 if (ret || !uentity)
8309f47c
MCC
288 continue;
289
290 if (i > topo->num_entities) {
291 ret = -ENOSPC;
292 continue;
293 }
294
295 /* Copy fields to userspace struct if not error */
b3b7a9f1
MCC
296 memset(&kentity, 0, sizeof(kentity));
297 kentity.id = entity->graph_obj.id;
298 kentity.function = entity->function;
299 strncpy(kentity.name, entity->name,
300 sizeof(kentity.name));
8309f47c 301
b3b7a9f1 302 if (copy_to_user(uentity, &kentity, sizeof(kentity)))
8309f47c 303 ret = -EFAULT;
b3b7a9f1 304 uentity++;
8309f47c
MCC
305 }
306 topo->num_entities = i;
307
308 /* Get interfaces and number of interfaces */
309 i = 0;
b3b7a9f1 310 uintf = media_get_uptr(topo->ptr_interfaces);
8309f47c
MCC
311 media_device_for_each_intf(intf, mdev) {
312 i++;
b3b7a9f1 313 if (ret || !uintf)
8309f47c
MCC
314 continue;
315
316 if (i > topo->num_interfaces) {
317 ret = -ENOSPC;
318 continue;
319 }
320
b3b7a9f1 321 memset(&kintf, 0, sizeof(kintf));
8309f47c
MCC
322
323 /* Copy intf fields to userspace struct */
b3b7a9f1
MCC
324 kintf.id = intf->graph_obj.id;
325 kintf.intf_type = intf->type;
326 kintf.flags = intf->flags;
8309f47c
MCC
327
328 if (media_type(&intf->graph_obj) == MEDIA_GRAPH_INTF_DEVNODE) {
329 struct media_intf_devnode *devnode;
330
331 devnode = intf_to_devnode(intf);
332
b3b7a9f1
MCC
333 kintf.devnode.major = devnode->major;
334 kintf.devnode.minor = devnode->minor;
8309f47c
MCC
335 }
336
b3b7a9f1 337 if (copy_to_user(uintf, &kintf, sizeof(kintf)))
8309f47c 338 ret = -EFAULT;
b3b7a9f1 339 uintf++;
8309f47c
MCC
340 }
341 topo->num_interfaces = i;
342
343 /* Get pads and number of pads */
344 i = 0;
b3b7a9f1 345 upad = media_get_uptr(topo->ptr_pads);
8309f47c
MCC
346 media_device_for_each_pad(pad, mdev) {
347 i++;
b3b7a9f1 348 if (ret || !upad)
8309f47c
MCC
349 continue;
350
351 if (i > topo->num_pads) {
352 ret = -ENOSPC;
353 continue;
354 }
355
b3b7a9f1 356 memset(&kpad, 0, sizeof(kpad));
8309f47c
MCC
357
358 /* Copy pad fields to userspace struct */
b3b7a9f1
MCC
359 kpad.id = pad->graph_obj.id;
360 kpad.entity_id = pad->entity->graph_obj.id;
361 kpad.flags = pad->flags;
8309f47c 362
b3b7a9f1 363 if (copy_to_user(upad, &kpad, sizeof(kpad)))
8309f47c 364 ret = -EFAULT;
b3b7a9f1 365 upad++;
8309f47c
MCC
366 }
367 topo->num_pads = i;
368
369 /* Get links and number of links */
370 i = 0;
b3b7a9f1 371 ulink = media_get_uptr(topo->ptr_links);
8309f47c 372 media_device_for_each_link(link, mdev) {
39d1ebc6
MCC
373 if (link->is_backlink)
374 continue;
375
8309f47c
MCC
376 i++;
377
b3b7a9f1 378 if (ret || !ulink)
8309f47c
MCC
379 continue;
380
381 if (i > topo->num_links) {
382 ret = -ENOSPC;
383 continue;
384 }
385
b3b7a9f1 386 memset(&klink, 0, sizeof(klink));
8309f47c
MCC
387
388 /* Copy link fields to userspace struct */
b3b7a9f1
MCC
389 klink.id = link->graph_obj.id;
390 klink.source_id = link->gobj0->id;
391 klink.sink_id = link->gobj1->id;
392 klink.flags = link->flags;
8309f47c 393
b3b7a9f1 394 if (copy_to_user(ulink, &klink, sizeof(klink)))
8309f47c 395 ret = -EFAULT;
b3b7a9f1 396 ulink++;
8309f47c
MCC
397 }
398 topo->num_links = i;
399
400 return ret;
401}
402
403static long media_device_get_topology(struct media_device *mdev,
404 struct media_v2_topology __user *utopo)
405{
406 struct media_v2_topology ktopo;
407 int ret;
408
a5c82e56
DC
409 if (copy_from_user(&ktopo, utopo, sizeof(ktopo)))
410 return -EFAULT;
8309f47c
MCC
411
412 ret = __media_device_get_topology(mdev, &ktopo);
413 if (ret < 0)
414 return ret;
415
a5c82e56
DC
416 if (copy_to_user(utopo, &ktopo, sizeof(*utopo)))
417 return -EFAULT;
8309f47c 418
a5c82e56 419 return 0;
8309f47c
MCC
420}
421
cf439d5f
SA
422#define MEDIA_IOC(__cmd) \
423 [_IOC_NR(MEDIA_IOC_##__cmd)] = { .cmd = MEDIA_IOC_##__cmd }
424
425/* the table is indexed by _IOC_NR(cmd) */
426struct media_ioctl_info {
427 unsigned int cmd;
428};
429
430static const struct media_ioctl_info ioctl_info[] = {
431 MEDIA_IOC(DEVICE_INFO),
432 MEDIA_IOC(ENUM_ENTITIES),
433 MEDIA_IOC(ENUM_LINKS),
434 MEDIA_IOC(SETUP_LINK),
435 MEDIA_IOC(G_TOPOLOGY),
436};
437
140d8816
LP
438static long media_device_ioctl(struct file *filp, unsigned int cmd,
439 unsigned long arg)
440{
441 struct media_devnode *devnode = media_devnode_data(filp);
a087ce70 442 struct media_device *dev = devnode->media_dev;
140d8816
LP
443 long ret;
444
cf439d5f
SA
445 if (_IOC_NR(cmd) >= ARRAY_SIZE(ioctl_info)
446 || ioctl_info[_IOC_NR(cmd)].cmd != cmd)
447 return -ENOIOCTLCMD;
448
e2c91d4d 449 mutex_lock(&dev->graph_mutex);
140d8816
LP
450 switch (cmd) {
451 case MEDIA_IOC_DEVICE_INFO:
452 ret = media_device_get_info(dev,
453 (struct media_device_info __user *)arg);
454 break;
455
1651333b
LP
456 case MEDIA_IOC_ENUM_ENTITIES:
457 ret = media_device_enum_entities(dev,
458 (struct media_entity_desc __user *)arg);
459 break;
460
461 case MEDIA_IOC_ENUM_LINKS:
1651333b
LP
462 ret = media_device_enum_links(dev,
463 (struct media_links_enum __user *)arg);
1651333b
LP
464 break;
465
97548ed4 466 case MEDIA_IOC_SETUP_LINK:
97548ed4
LP
467 ret = media_device_setup_link(dev,
468 (struct media_link_desc __user *)arg);
97548ed4
LP
469 break;
470
8309f47c 471 case MEDIA_IOC_G_TOPOLOGY:
8309f47c
MCC
472 ret = media_device_get_topology(dev,
473 (struct media_v2_topology __user *)arg);
8309f47c 474 break;
333a6515 475
140d8816
LP
476 default:
477 ret = -ENOIOCTLCMD;
478 }
e2c91d4d 479 mutex_unlock(&dev->graph_mutex);
140d8816
LP
480
481 return ret;
482}
483
b0a1f2a8
SA
484#ifdef CONFIG_COMPAT
485
486struct media_links_enum32 {
487 __u32 entity;
488 compat_uptr_t pads; /* struct media_pad_desc * */
489 compat_uptr_t links; /* struct media_link_desc * */
490 __u32 reserved[4];
491};
492
493static long media_device_enum_links32(struct media_device *mdev,
494 struct media_links_enum32 __user *ulinks)
495{
496 struct media_links_enum links;
497 compat_uptr_t pads_ptr, links_ptr;
498
499 memset(&links, 0, sizeof(links));
500
501 if (get_user(links.entity, &ulinks->entity)
502 || get_user(pads_ptr, &ulinks->pads)
503 || get_user(links_ptr, &ulinks->links))
504 return -EFAULT;
505
506 links.pads = compat_ptr(pads_ptr);
507 links.links = compat_ptr(links_ptr);
508
509 return __media_device_enum_links(mdev, &links);
510}
511
512#define MEDIA_IOC_ENUM_LINKS32 _IOWR('|', 0x02, struct media_links_enum32)
513
514static long media_device_compat_ioctl(struct file *filp, unsigned int cmd,
515 unsigned long arg)
516{
517 struct media_devnode *devnode = media_devnode_data(filp);
a087ce70 518 struct media_device *dev = devnode->media_dev;
b0a1f2a8
SA
519 long ret;
520
521 switch (cmd) {
b0a1f2a8
SA
522 case MEDIA_IOC_ENUM_LINKS32:
523 mutex_lock(&dev->graph_mutex);
524 ret = media_device_enum_links32(dev,
525 (struct media_links_enum32 __user *)arg);
526 mutex_unlock(&dev->graph_mutex);
527 break;
528
529 default:
f7369627 530 return media_device_ioctl(filp, cmd, arg);
b0a1f2a8
SA
531 }
532
533 return ret;
534}
535#endif /* CONFIG_COMPAT */
536
176fb0d1
LP
537static const struct media_file_operations media_device_fops = {
538 .owner = THIS_MODULE,
140d8816
LP
539 .open = media_device_open,
540 .ioctl = media_device_ioctl,
b0a1f2a8
SA
541#ifdef CONFIG_COMPAT
542 .compat_ioctl = media_device_compat_ioctl,
543#endif /* CONFIG_COMPAT */
140d8816 544 .release = media_device_close,
176fb0d1
LP
545};
546
547/* -----------------------------------------------------------------------------
548 * sysfs
549 */
550
551static ssize_t show_model(struct device *cd,
552 struct device_attribute *attr, char *buf)
553{
a087ce70
MCC
554 struct media_devnode *devnode = to_media_devnode(cd);
555 struct media_device *mdev = devnode->media_dev;
176fb0d1
LP
556
557 return sprintf(buf, "%.*s\n", (int)sizeof(mdev->model), mdev->model);
558}
559
560static DEVICE_ATTR(model, S_IRUGO, show_model, NULL);
561
562/* -----------------------------------------------------------------------------
563 * Registration/unregistration
564 */
565
566static void media_device_release(struct media_devnode *mdev)
567{
8f5a3188 568 dev_dbg(mdev->parent, "Media device released\n");
176fb0d1
LP
569}
570
b2ed8af9
MCC
571/**
572 * media_device_register_entity - Register an entity with a media device
573 * @mdev: The media device
574 * @entity: The entity
575 */
576int __must_check media_device_register_entity(struct media_device *mdev,
577 struct media_entity *entity)
578{
afcbdb55 579 struct media_entity_notify *notify, *next;
b2ed8af9 580 unsigned int i;
ba0dd729 581 int ret;
b2ed8af9
MCC
582
583 if (entity->function == MEDIA_ENT_F_V4L2_SUBDEV_UNKNOWN ||
584 entity->function == MEDIA_ENT_F_UNKNOWN)
585 dev_warn(mdev->dev,
586 "Entity type for entity %s was not initialized!\n",
587 entity->name);
588
589 /* Warn if we apparently re-register an entity */
590 WARN_ON(entity->graph_obj.mdev != NULL);
591 entity->graph_obj.mdev = mdev;
592 INIT_LIST_HEAD(&entity->links);
593 entity->num_links = 0;
594 entity->num_backlinks = 0;
595
ba0dd729
MCC
596 if (!ida_pre_get(&mdev->entity_internal_idx, GFP_KERNEL))
597 return -ENOMEM;
598
e2c91d4d 599 mutex_lock(&mdev->graph_mutex);
665faa97 600
ba0dd729
MCC
601 ret = ida_get_new_above(&mdev->entity_internal_idx, 1,
602 &entity->internal_idx);
603 if (ret < 0) {
e2c91d4d 604 mutex_unlock(&mdev->graph_mutex);
ba0dd729 605 return ret;
665faa97
SA
606 }
607
608 mdev->entity_internal_idx_max =
609 max(mdev->entity_internal_idx_max, entity->internal_idx);
610
b2ed8af9
MCC
611 /* Initialize media_gobj embedded at the entity */
612 media_gobj_create(mdev, MEDIA_GRAPH_ENTITY, &entity->graph_obj);
613
614 /* Initialize objects at the pads */
615 for (i = 0; i < entity->num_pads; i++)
616 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
617 &entity->pads[i].graph_obj);
618
afcbdb55
SK
619 /* invoke entity_notify callbacks */
620 list_for_each_entry_safe(notify, next, &mdev->entity_notify, list) {
621 (notify)->notify(entity, notify->notify_data);
622 }
623
0c426c47
SA
624 if (mdev->entity_internal_idx_max
625 >= mdev->pm_count_walk.ent_enum.idx_max) {
626 struct media_entity_graph new = { .top = 0 };
627
628 /*
629 * Initialise the new graph walk before cleaning up
630 * the old one in order not to spoil the graph walk
631 * object of the media device if graph walk init fails.
632 */
633 ret = media_entity_graph_walk_init(&new, mdev);
634 if (ret) {
635 mutex_unlock(&mdev->graph_mutex);
636 return ret;
637 }
638 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
639 mdev->pm_count_walk = new;
640 }
641 mutex_unlock(&mdev->graph_mutex);
642
b2ed8af9
MCC
643 return 0;
644}
645EXPORT_SYMBOL_GPL(media_device_register_entity);
646
821ed366 647static void __media_device_unregister_entity(struct media_entity *entity)
b2ed8af9
MCC
648{
649 struct media_device *mdev = entity->graph_obj.mdev;
650 struct media_link *link, *tmp;
651 struct media_interface *intf;
652 unsigned int i;
653
665faa97
SA
654 ida_simple_remove(&mdev->entity_internal_idx, entity->internal_idx);
655
b2ed8af9
MCC
656 /* Remove all interface links pointing to this entity */
657 list_for_each_entry(intf, &mdev->interfaces, graph_obj.list) {
658 list_for_each_entry_safe(link, tmp, &intf->links, list) {
659 if (link->entity == entity)
660 __media_remove_intf_link(link);
661 }
662 }
663
664 /* Remove all data links that belong to this entity */
665 __media_entity_remove_links(entity);
666
667 /* Remove all pads that belong to this entity */
668 for (i = 0; i < entity->num_pads; i++)
669 media_gobj_destroy(&entity->pads[i].graph_obj);
670
671 /* Remove the entity */
672 media_gobj_destroy(&entity->graph_obj);
673
afcbdb55
SK
674 /* invoke entity_notify callbacks to handle entity removal?? */
675
b2ed8af9
MCC
676 entity->graph_obj.mdev = NULL;
677}
821ed366
MCC
678
679void media_device_unregister_entity(struct media_entity *entity)
680{
681 struct media_device *mdev = entity->graph_obj.mdev;
682
683 if (mdev == NULL)
684 return;
685
e2c91d4d 686 mutex_lock(&mdev->graph_mutex);
821ed366 687 __media_device_unregister_entity(entity);
e2c91d4d 688 mutex_unlock(&mdev->graph_mutex);
821ed366 689}
b2ed8af9
MCC
690EXPORT_SYMBOL_GPL(media_device_unregister_entity);
691
176fb0d1 692/**
9832e155 693 * media_device_init() - initialize a media device
176fb0d1
LP
694 * @mdev: The media device
695 *
696 * The caller is responsible for initializing the media device before
697 * registration. The following fields must be set:
698 *
699 * - dev must point to the parent device
700 * - model must be filled with the device model name
701 */
9832e155 702void media_device_init(struct media_device *mdev)
176fb0d1 703{
53e269c1 704 INIT_LIST_HEAD(&mdev->entities);
57cf79b7 705 INIT_LIST_HEAD(&mdev->interfaces);
9155d859
MCC
706 INIT_LIST_HEAD(&mdev->pads);
707 INIT_LIST_HEAD(&mdev->links);
afcbdb55 708 INIT_LIST_HEAD(&mdev->entity_notify);
503c3d82 709 mutex_init(&mdev->graph_mutex);
665faa97 710 ida_init(&mdev->entity_internal_idx);
53e269c1 711
9832e155
JMC
712 dev_dbg(mdev->dev, "Media device initialized\n");
713}
714EXPORT_SYMBOL_GPL(media_device_init);
715
9832e155
JMC
716void media_device_cleanup(struct media_device *mdev)
717{
665faa97
SA
718 ida_destroy(&mdev->entity_internal_idx);
719 mdev->entity_internal_idx_max = 0;
0c426c47 720 media_entity_graph_walk_cleanup(&mdev->pm_count_walk);
9832e155
JMC
721 mutex_destroy(&mdev->graph_mutex);
722}
723EXPORT_SYMBOL_GPL(media_device_cleanup);
724
9832e155
JMC
725int __must_check __media_device_register(struct media_device *mdev,
726 struct module *owner)
727{
a087ce70 728 struct media_devnode *devnode;
9832e155
JMC
729 int ret;
730
a087ce70
MCC
731 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
732 if (!devnode)
733 return -ENOMEM;
734
176fb0d1 735 /* Register the device node. */
a087ce70
MCC
736 mdev->devnode = devnode;
737 devnode->fops = &media_device_fops;
738 devnode->parent = mdev->dev;
739 devnode->release = media_device_release;
8a950796
JMC
740
741 /* Set version 0 to indicate user-space that the graph is static */
742 mdev->topology_version = 0;
743
a087ce70
MCC
744 ret = media_devnode_register(mdev, devnode, owner);
745 if (ret < 0) {
5b28dde5 746 /* devnode free is handled in media_devnode_*() */
a087ce70 747 mdev->devnode = NULL;
176fb0d1 748 return ret;
a087ce70 749 }
176fb0d1 750
a087ce70 751 ret = device_create_file(&devnode->dev, &dev_attr_model);
176fb0d1 752 if (ret < 0) {
5b28dde5 753 /* devnode free is handled in media_devnode_*() */
a087ce70 754 mdev->devnode = NULL;
6f0dd24a 755 media_devnode_unregister_prepare(devnode);
a087ce70 756 media_devnode_unregister(devnode);
176fb0d1
LP
757 return ret;
758 }
759
8f5a3188
MCC
760 dev_dbg(mdev->dev, "Media device registered\n");
761
176fb0d1
LP
762 return 0;
763}
85de721c 764EXPORT_SYMBOL_GPL(__media_device_register);
176fb0d1 765
afcbdb55
SK
766int __must_check media_device_register_entity_notify(struct media_device *mdev,
767 struct media_entity_notify *nptr)
768{
e2c91d4d 769 mutex_lock(&mdev->graph_mutex);
afcbdb55 770 list_add_tail(&nptr->list, &mdev->entity_notify);
e2c91d4d 771 mutex_unlock(&mdev->graph_mutex);
afcbdb55
SK
772 return 0;
773}
774EXPORT_SYMBOL_GPL(media_device_register_entity_notify);
775
776/*
777 * Note: Should be called with mdev->lock held.
778 */
779static void __media_device_unregister_entity_notify(struct media_device *mdev,
780 struct media_entity_notify *nptr)
781{
782 list_del(&nptr->list);
783}
784
785void media_device_unregister_entity_notify(struct media_device *mdev,
786 struct media_entity_notify *nptr)
787{
e2c91d4d 788 mutex_lock(&mdev->graph_mutex);
afcbdb55 789 __media_device_unregister_entity_notify(mdev, nptr);
e2c91d4d 790 mutex_unlock(&mdev->graph_mutex);
afcbdb55
SK
791}
792EXPORT_SYMBOL_GPL(media_device_unregister_entity_notify);
793
176fb0d1
LP
794void media_device_unregister(struct media_device *mdev)
795{
53e269c1
LP
796 struct media_entity *entity;
797 struct media_entity *next;
d47109fa 798 struct media_interface *intf, *tmp_intf;
afcbdb55 799 struct media_entity_notify *notify, *nextp;
d47109fa 800
821ed366
MCC
801 if (mdev == NULL)
802 return;
803
e2c91d4d 804 mutex_lock(&mdev->graph_mutex);
821ed366 805
223d19c5 806 /* Check if mdev was ever registered at all */
a087ce70 807 if (!media_devnode_is_registered(mdev->devnode)) {
e2c91d4d 808 mutex_unlock(&mdev->graph_mutex);
223d19c5 809 return;
821ed366 810 }
223d19c5 811
6f0dd24a
SK
812 /* Clear the devnode register bit to avoid races with media dev open */
813 media_devnode_unregister_prepare(mdev->devnode);
814
f50d5166
MCC
815 /* Remove all entities from the media device */
816 list_for_each_entry_safe(entity, next, &mdev->entities, graph_obj.list)
821ed366 817 __media_device_unregister_entity(entity);
f50d5166 818
afcbdb55
SK
819 /* Remove all entity_notify callbacks from the media device */
820 list_for_each_entry_safe(notify, nextp, &mdev->entity_notify, list)
821 __media_device_unregister_entity_notify(mdev, notify);
822
d47109fa 823 /* Remove all interfaces from the media device */
d47109fa
MCC
824 list_for_each_entry_safe(intf, tmp_intf, &mdev->interfaces,
825 graph_obj.list) {
826 __media_remove_intf_links(intf);
c350ef83 827 media_gobj_destroy(&intf->graph_obj);
d47109fa
MCC
828 kfree(intf);
829 }
821ed366 830
e2c91d4d 831 mutex_unlock(&mdev->graph_mutex);
53e269c1 832
a087ce70
MCC
833 dev_dbg(mdev->dev, "Media device unregistered\n");
834
6f0dd24a
SK
835 device_remove_file(&mdev->devnode->dev, &dev_attr_model);
836 media_devnode_unregister(mdev->devnode);
837 /* devnode free is handled in media_devnode_*() */
838 mdev->devnode = NULL;
176fb0d1
LP
839}
840EXPORT_SYMBOL_GPL(media_device_unregister);
53e269c1 841
d062f911
SK
842static void media_device_release_devres(struct device *dev, void *res)
843{
844}
845
d062f911
SK
846struct media_device *media_device_get_devres(struct device *dev)
847{
848 struct media_device *mdev;
849
850 mdev = devres_find(dev, media_device_release_devres, NULL, NULL);
851 if (mdev)
852 return mdev;
853
854 mdev = devres_alloc(media_device_release_devres,
855 sizeof(struct media_device), GFP_KERNEL);
856 if (!mdev)
857 return NULL;
858 return devres_get(dev, mdev, NULL, NULL);
859}
860EXPORT_SYMBOL_GPL(media_device_get_devres);
861
d062f911
SK
862struct media_device *media_device_find_devres(struct device *dev)
863{
864 return devres_find(dev, media_device_release_devres, NULL, NULL);
865}
866EXPORT_SYMBOL_GPL(media_device_find_devres);
e576d60b 867
b34ecd5a 868#if IS_ENABLED(CONFIG_PCI)
6cf5dad1
MCC
869void media_device_pci_init(struct media_device *mdev,
870 struct pci_dev *pci_dev,
871 const char *name)
41b44e35 872{
41b44e35
MCC
873 mdev->dev = &pci_dev->dev;
874
875 if (name)
876 strlcpy(mdev->model, name, sizeof(mdev->model));
877 else
878 strlcpy(mdev->model, pci_name(pci_dev), sizeof(mdev->model));
879
880 sprintf(mdev->bus_info, "PCI:%s", pci_name(pci_dev));
881
882 mdev->hw_revision = (pci_dev->subsystem_vendor << 16)
883 | pci_dev->subsystem_device;
884
885 mdev->driver_version = LINUX_VERSION_CODE;
886
887 media_device_init(mdev);
41b44e35
MCC
888}
889EXPORT_SYMBOL_GPL(media_device_pci_init);
b34ecd5a 890#endif
41b44e35 891
b34ecd5a 892#if IS_ENABLED(CONFIG_USB)
6cf5dad1
MCC
893void __media_device_usb_init(struct media_device *mdev,
894 struct usb_device *udev,
895 const char *board_name,
896 const char *driver_name)
41b44e35 897{
41b44e35
MCC
898 mdev->dev = &udev->dev;
899
900 if (driver_name)
901 strlcpy(mdev->driver_name, driver_name,
902 sizeof(mdev->driver_name));
903
904 if (board_name)
905 strlcpy(mdev->model, board_name, sizeof(mdev->model));
906 else if (udev->product)
907 strlcpy(mdev->model, udev->product, sizeof(mdev->model));
908 else
909 strlcpy(mdev->model, "unknown model", sizeof(mdev->model));
910 if (udev->serial)
911 strlcpy(mdev->serial, udev->serial, sizeof(mdev->serial));
912 usb_make_path(udev, mdev->bus_info, sizeof(mdev->bus_info));
913 mdev->hw_revision = le16_to_cpu(udev->descriptor.bcdDevice);
914 mdev->driver_version = LINUX_VERSION_CODE;
915
916 media_device_init(mdev);
41b44e35
MCC
917}
918EXPORT_SYMBOL_GPL(__media_device_usb_init);
b34ecd5a 919#endif
41b44e35
MCC
920
921
e576d60b 922#endif /* CONFIG_MEDIA_CONTROLLER */