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