1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2010 Nokia Corporation
11 #include <linux/bitmap.h>
12 #include <linux/property.h>
13 #include <linux/slab.h>
14 #include <media/media-entity.h>
15 #include <media/media-device.h>
17 static inline const char *gobj_type(enum media_gobj_type type)
20 case MEDIA_GRAPH_ENTITY:
24 case MEDIA_GRAPH_LINK:
26 case MEDIA_GRAPH_INTF_DEVNODE:
27 return "intf-devnode";
33 static inline const char *intf_type(struct media_interface *intf)
36 case MEDIA_INTF_T_DVB_FE:
37 return "dvb-frontend";
38 case MEDIA_INTF_T_DVB_DEMUX:
40 case MEDIA_INTF_T_DVB_DVR:
42 case MEDIA_INTF_T_DVB_CA:
44 case MEDIA_INTF_T_DVB_NET:
46 case MEDIA_INTF_T_V4L_VIDEO:
48 case MEDIA_INTF_T_V4L_VBI:
50 case MEDIA_INTF_T_V4L_RADIO:
52 case MEDIA_INTF_T_V4L_SUBDEV:
54 case MEDIA_INTF_T_V4L_SWRADIO:
56 case MEDIA_INTF_T_V4L_TOUCH:
59 return "unknown-intf";
63 __must_check int __media_entity_enum_init(struct media_entity_enum *ent_enum,
66 idx_max = ALIGN(idx_max, BITS_PER_LONG);
67 ent_enum->bmap = kcalloc(idx_max / BITS_PER_LONG, sizeof(long),
72 bitmap_zero(ent_enum->bmap, idx_max);
73 ent_enum->idx_max = idx_max;
77 EXPORT_SYMBOL_GPL(__media_entity_enum_init);
79 void media_entity_enum_cleanup(struct media_entity_enum *ent_enum)
81 kfree(ent_enum->bmap);
83 EXPORT_SYMBOL_GPL(media_entity_enum_cleanup);
86 * dev_dbg_obj - Prints in debug mode a change on some object
88 * @event_name: Name of the event to report. Could be __func__
89 * @gobj: Pointer to the object
91 * Enabled only if DEBUG or CONFIG_DYNAMIC_DEBUG. Otherwise, it
92 * won't produce any code.
94 static void dev_dbg_obj(const char *event_name, struct media_gobj *gobj)
96 #if defined(DEBUG) || defined (CONFIG_DYNAMIC_DEBUG)
97 switch (media_type(gobj)) {
98 case MEDIA_GRAPH_ENTITY:
99 dev_dbg(gobj->mdev->dev,
100 "%s id %u: entity '%s'\n",
101 event_name, media_id(gobj),
102 gobj_to_entity(gobj)->name);
104 case MEDIA_GRAPH_LINK:
106 struct media_link *link = gobj_to_link(gobj);
108 dev_dbg(gobj->mdev->dev,
109 "%s id %u: %s link id %u ==> id %u\n",
110 event_name, media_id(gobj),
111 media_type(link->gobj0) == MEDIA_GRAPH_PAD ?
112 "data" : "interface",
113 media_id(link->gobj0),
114 media_id(link->gobj1));
117 case MEDIA_GRAPH_PAD:
119 struct media_pad *pad = gobj_to_pad(gobj);
121 dev_dbg(gobj->mdev->dev,
122 "%s id %u: %s%spad '%s':%d\n",
123 event_name, media_id(gobj),
124 pad->flags & MEDIA_PAD_FL_SINK ? "sink " : "",
125 pad->flags & MEDIA_PAD_FL_SOURCE ? "source " : "",
126 pad->entity->name, pad->index);
129 case MEDIA_GRAPH_INTF_DEVNODE:
131 struct media_interface *intf = gobj_to_intf(gobj);
132 struct media_intf_devnode *devnode = intf_to_devnode(intf);
134 dev_dbg(gobj->mdev->dev,
135 "%s id %u: intf_devnode %s - major: %d, minor: %d\n",
136 event_name, media_id(gobj),
138 devnode->major, devnode->minor);
145 void media_gobj_create(struct media_device *mdev,
146 enum media_gobj_type type,
147 struct media_gobj *gobj)
153 /* Create a per-type unique object ID */
154 gobj->id = media_gobj_gen_id(type, ++mdev->id);
157 case MEDIA_GRAPH_ENTITY:
158 list_add_tail(&gobj->list, &mdev->entities);
160 case MEDIA_GRAPH_PAD:
161 list_add_tail(&gobj->list, &mdev->pads);
163 case MEDIA_GRAPH_LINK:
164 list_add_tail(&gobj->list, &mdev->links);
166 case MEDIA_GRAPH_INTF_DEVNODE:
167 list_add_tail(&gobj->list, &mdev->interfaces);
171 mdev->topology_version++;
173 dev_dbg_obj(__func__, gobj);
176 void media_gobj_destroy(struct media_gobj *gobj)
178 /* Do nothing if the object is not linked. */
179 if (gobj->mdev == NULL)
182 dev_dbg_obj(__func__, gobj);
184 gobj->mdev->topology_version++;
186 /* Remove the object from mdev list */
187 list_del(&gobj->list);
193 * TODO: Get rid of this.
195 #define MEDIA_ENTITY_MAX_PADS 512
197 int media_entity_pads_init(struct media_entity *entity, u16 num_pads,
198 struct media_pad *pads)
200 struct media_device *mdev = entity->graph_obj.mdev;
203 if (num_pads >= MEDIA_ENTITY_MAX_PADS)
206 entity->num_pads = num_pads;
210 mutex_lock(&mdev->graph_mutex);
212 for (i = 0; i < num_pads; i++) {
213 pads[i].entity = entity;
216 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
217 &entity->pads[i].graph_obj);
221 mutex_unlock(&mdev->graph_mutex);
225 EXPORT_SYMBOL_GPL(media_entity_pads_init);
227 /* -----------------------------------------------------------------------------
231 static struct media_entity *
232 media_entity_other(struct media_entity *entity, struct media_link *link)
234 if (link->source->entity == entity)
235 return link->sink->entity;
237 return link->source->entity;
240 /* push an entity to traversal stack */
241 static void stack_push(struct media_graph *graph,
242 struct media_entity *entity)
244 if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) {
249 graph->stack[graph->top].link = entity->links.next;
250 graph->stack[graph->top].entity = entity;
253 static struct media_entity *stack_pop(struct media_graph *graph)
255 struct media_entity *entity;
257 entity = graph->stack[graph->top].entity;
263 #define link_top(en) ((en)->stack[(en)->top].link)
264 #define stack_top(en) ((en)->stack[(en)->top].entity)
267 * media_graph_walk_init - Allocate resources for graph walk
268 * @graph: Media graph structure that will be used to walk the graph
269 * @mdev: Media device
271 * Reserve resources for graph walk in media device's current
272 * state. The memory must be released using
273 * media_graph_walk_free().
275 * Returns error on failure, zero on success.
277 __must_check int media_graph_walk_init(
278 struct media_graph *graph, struct media_device *mdev)
280 return media_entity_enum_init(&graph->ent_enum, mdev);
282 EXPORT_SYMBOL_GPL(media_graph_walk_init);
285 * media_graph_walk_cleanup - Release resources related to graph walking
286 * @graph: Media graph structure that was used to walk the graph
288 void media_graph_walk_cleanup(struct media_graph *graph)
290 media_entity_enum_cleanup(&graph->ent_enum);
292 EXPORT_SYMBOL_GPL(media_graph_walk_cleanup);
294 void media_graph_walk_start(struct media_graph *graph,
295 struct media_entity *entity)
297 media_entity_enum_zero(&graph->ent_enum);
298 media_entity_enum_set(&graph->ent_enum, entity);
301 graph->stack[graph->top].entity = NULL;
302 stack_push(graph, entity);
303 dev_dbg(entity->graph_obj.mdev->dev,
304 "begin graph walk at '%s'\n", entity->name);
306 EXPORT_SYMBOL_GPL(media_graph_walk_start);
308 static void media_graph_walk_iter(struct media_graph *graph)
310 struct media_entity *entity = stack_top(graph);
311 struct media_link *link;
312 struct media_entity *next;
314 link = list_entry(link_top(graph), typeof(*link), list);
316 /* The link is not enabled so we do not follow. */
317 if (!(link->flags & MEDIA_LNK_FL_ENABLED)) {
318 link_top(graph) = link_top(graph)->next;
319 dev_dbg(entity->graph_obj.mdev->dev,
320 "walk: skipping disabled link '%s':%u -> '%s':%u\n",
321 link->source->entity->name, link->source->index,
322 link->sink->entity->name, link->sink->index);
326 /* Get the entity at the other end of the link. */
327 next = media_entity_other(entity, link);
329 /* Has the entity already been visited? */
330 if (media_entity_enum_test_and_set(&graph->ent_enum, next)) {
331 link_top(graph) = link_top(graph)->next;
332 dev_dbg(entity->graph_obj.mdev->dev,
333 "walk: skipping entity '%s' (already seen)\n",
338 /* Push the new entity to stack and start over. */
339 link_top(graph) = link_top(graph)->next;
340 stack_push(graph, next);
341 dev_dbg(entity->graph_obj.mdev->dev, "walk: pushing '%s' on stack\n",
343 lockdep_assert_held(&entity->graph_obj.mdev->graph_mutex);
346 struct media_entity *media_graph_walk_next(struct media_graph *graph)
348 struct media_entity *entity;
350 if (stack_top(graph) == NULL)
354 * Depth first search. Push entity to stack and continue from
355 * top of the stack until no more entities on the level can be
358 while (link_top(graph) != &stack_top(graph)->links)
359 media_graph_walk_iter(graph);
361 entity = stack_pop(graph);
362 dev_dbg(entity->graph_obj.mdev->dev,
363 "walk: returning entity '%s'\n", entity->name);
367 EXPORT_SYMBOL_GPL(media_graph_walk_next);
369 int media_entity_get_fwnode_pad(struct media_entity *entity,
370 struct fwnode_handle *fwnode,
371 unsigned long direction_flags)
373 struct fwnode_endpoint endpoint;
377 if (!entity->ops || !entity->ops->get_fwnode_pad) {
378 for (i = 0; i < entity->num_pads; i++) {
379 if (entity->pads[i].flags & direction_flags)
386 ret = fwnode_graph_parse_endpoint(fwnode, &endpoint);
390 ret = entity->ops->get_fwnode_pad(entity, &endpoint);
394 if (ret >= entity->num_pads)
397 if (!(entity->pads[ret].flags & direction_flags))
402 EXPORT_SYMBOL_GPL(media_entity_get_fwnode_pad);
404 /* -----------------------------------------------------------------------------
405 * Pipeline management
408 __must_check int __media_pipeline_start(struct media_entity *entity,
409 struct media_pipeline *pipe)
411 struct media_device *mdev = entity->graph_obj.mdev;
412 struct media_graph *graph = &pipe->graph;
413 struct media_entity *entity_err = entity;
414 struct media_link *link;
417 if (!pipe->streaming_count++) {
418 ret = media_graph_walk_init(&pipe->graph, mdev);
420 goto error_graph_walk_start;
423 media_graph_walk_start(&pipe->graph, entity);
425 while ((entity = media_graph_walk_next(graph))) {
426 DECLARE_BITMAP(active, MEDIA_ENTITY_MAX_PADS);
427 DECLARE_BITMAP(has_no_links, MEDIA_ENTITY_MAX_PADS);
429 entity->stream_count++;
431 if (entity->pipe && entity->pipe != pipe) {
432 pr_err("Pipe active for %s. Can't start for %s\n",
441 /* Already streaming --- no need to check. */
442 if (entity->stream_count > 1)
445 if (!entity->ops || !entity->ops->link_validate)
448 bitmap_zero(active, entity->num_pads);
449 bitmap_fill(has_no_links, entity->num_pads);
451 list_for_each_entry(link, &entity->links, list) {
452 struct media_pad *pad = link->sink->entity == entity
453 ? link->sink : link->source;
455 /* Mark that a pad is connected by a link. */
456 bitmap_clear(has_no_links, pad->index, 1);
459 * Pads that either do not need to connect or
460 * are connected through an enabled link are
463 if (!(pad->flags & MEDIA_PAD_FL_MUST_CONNECT) ||
464 link->flags & MEDIA_LNK_FL_ENABLED)
465 bitmap_set(active, pad->index, 1);
468 * Link validation will only take place for
469 * sink ends of the link that are enabled.
471 if (link->sink != pad ||
472 !(link->flags & MEDIA_LNK_FL_ENABLED))
475 ret = entity->ops->link_validate(link);
476 if (ret < 0 && ret != -ENOIOCTLCMD) {
477 dev_dbg(entity->graph_obj.mdev->dev,
478 "link validation failed for '%s':%u -> '%s':%u, error %d\n",
479 link->source->entity->name,
481 entity->name, link->sink->index, ret);
486 /* Either no links or validated links are fine. */
487 bitmap_or(active, active, has_no_links, entity->num_pads);
489 if (!bitmap_full(active, entity->num_pads)) {
491 dev_dbg(entity->graph_obj.mdev->dev,
492 "'%s':%u must be connected by an enabled link\n",
494 (unsigned)find_first_zero_bit(
495 active, entity->num_pads));
504 * Link validation on graph failed. We revert what we did and
507 media_graph_walk_start(graph, entity_err);
509 while ((entity_err = media_graph_walk_next(graph))) {
510 /* Sanity check for negative stream_count */
511 if (!WARN_ON_ONCE(entity_err->stream_count <= 0)) {
512 entity_err->stream_count--;
513 if (entity_err->stream_count == 0)
514 entity_err->pipe = NULL;
518 * We haven't increased stream_count further than this
521 if (entity_err == entity)
525 error_graph_walk_start:
526 if (!--pipe->streaming_count)
527 media_graph_walk_cleanup(graph);
531 EXPORT_SYMBOL_GPL(__media_pipeline_start);
533 __must_check int media_pipeline_start(struct media_entity *entity,
534 struct media_pipeline *pipe)
536 struct media_device *mdev = entity->graph_obj.mdev;
539 mutex_lock(&mdev->graph_mutex);
540 ret = __media_pipeline_start(entity, pipe);
541 mutex_unlock(&mdev->graph_mutex);
544 EXPORT_SYMBOL_GPL(media_pipeline_start);
546 void __media_pipeline_stop(struct media_entity *entity)
548 struct media_graph *graph = &entity->pipe->graph;
549 struct media_pipeline *pipe = entity->pipe;
552 * If the following check fails, the driver has performed an
553 * unbalanced call to media_pipeline_stop()
558 media_graph_walk_start(graph, entity);
560 while ((entity = media_graph_walk_next(graph))) {
561 /* Sanity check for negative stream_count */
562 if (!WARN_ON_ONCE(entity->stream_count <= 0)) {
563 entity->stream_count--;
564 if (entity->stream_count == 0)
569 if (!--pipe->streaming_count)
570 media_graph_walk_cleanup(graph);
573 EXPORT_SYMBOL_GPL(__media_pipeline_stop);
575 void media_pipeline_stop(struct media_entity *entity)
577 struct media_device *mdev = entity->graph_obj.mdev;
579 mutex_lock(&mdev->graph_mutex);
580 __media_pipeline_stop(entity);
581 mutex_unlock(&mdev->graph_mutex);
583 EXPORT_SYMBOL_GPL(media_pipeline_stop);
585 /* -----------------------------------------------------------------------------
589 static struct media_link *media_add_link(struct list_head *head)
591 struct media_link *link;
593 link = kzalloc(sizeof(*link), GFP_KERNEL);
597 list_add_tail(&link->list, head);
602 static void __media_entity_remove_link(struct media_entity *entity,
603 struct media_link *link)
605 struct media_link *rlink, *tmp;
606 struct media_entity *remote;
608 if (link->source->entity == entity)
609 remote = link->sink->entity;
611 remote = link->source->entity;
613 list_for_each_entry_safe(rlink, tmp, &remote->links, list) {
614 if (rlink != link->reverse)
617 if (link->source->entity == entity)
618 remote->num_backlinks--;
620 /* Remove the remote link */
621 list_del(&rlink->list);
622 media_gobj_destroy(&rlink->graph_obj);
625 if (--remote->num_links == 0)
628 list_del(&link->list);
629 media_gobj_destroy(&link->graph_obj);
633 int media_get_pad_index(struct media_entity *entity, bool is_sink,
634 enum media_pad_signal_type sig_type)
642 for (i = 0; i < entity->num_pads; i++) {
643 if (entity->pads[i].flags & MEDIA_PAD_FL_SINK)
645 else if (entity->pads[i].flags & MEDIA_PAD_FL_SOURCE)
648 continue; /* This is an error! */
650 if (pad_is_sink != is_sink)
652 if (entity->pads[i].sig_type == sig_type)
657 EXPORT_SYMBOL_GPL(media_get_pad_index);
660 media_create_pad_link(struct media_entity *source, u16 source_pad,
661 struct media_entity *sink, u16 sink_pad, u32 flags)
663 struct media_link *link;
664 struct media_link *backlink;
666 if (WARN_ON(!source || !sink) ||
667 WARN_ON(source_pad >= source->num_pads) ||
668 WARN_ON(sink_pad >= sink->num_pads))
670 if (WARN_ON(!(source->pads[source_pad].flags & MEDIA_PAD_FL_SOURCE)))
672 if (WARN_ON(!(sink->pads[sink_pad].flags & MEDIA_PAD_FL_SINK)))
675 link = media_add_link(&source->links);
679 link->source = &source->pads[source_pad];
680 link->sink = &sink->pads[sink_pad];
681 link->flags = flags & ~MEDIA_LNK_FL_INTERFACE_LINK;
683 /* Initialize graph object embedded at the new link */
684 media_gobj_create(source->graph_obj.mdev, MEDIA_GRAPH_LINK,
687 /* Create the backlink. Backlinks are used to help graph traversal and
688 * are not reported to userspace.
690 backlink = media_add_link(&sink->links);
691 if (backlink == NULL) {
692 __media_entity_remove_link(source, link);
696 backlink->source = &source->pads[source_pad];
697 backlink->sink = &sink->pads[sink_pad];
698 backlink->flags = flags;
699 backlink->is_backlink = true;
701 /* Initialize graph object embedded at the new link */
702 media_gobj_create(sink->graph_obj.mdev, MEDIA_GRAPH_LINK,
703 &backlink->graph_obj);
705 link->reverse = backlink;
706 backlink->reverse = link;
708 sink->num_backlinks++;
714 EXPORT_SYMBOL_GPL(media_create_pad_link);
716 int media_create_pad_links(const struct media_device *mdev,
717 const u32 source_function,
718 struct media_entity *source,
719 const u16 source_pad,
720 const u32 sink_function,
721 struct media_entity *sink,
724 const bool allow_both_undefined)
726 struct media_entity *entity;
730 /* Trivial case: 1:1 relation */
732 return media_create_pad_link(source, source_pad,
733 sink, sink_pad, flags);
735 /* Worse case scenario: n:n relation */
736 if (!source && !sink) {
737 if (!allow_both_undefined)
739 media_device_for_each_entity(source, mdev) {
740 if (source->function != source_function)
742 media_device_for_each_entity(sink, mdev) {
743 if (sink->function != sink_function)
745 ret = media_create_pad_link(source, source_pad,
750 flags &= ~(MEDIA_LNK_FL_ENABLED |
751 MEDIA_LNK_FL_IMMUTABLE);
757 /* Handle 1:n and n:1 cases */
759 function = sink_function;
761 function = source_function;
763 media_device_for_each_entity(entity, mdev) {
764 if (entity->function != function)
768 ret = media_create_pad_link(source, source_pad,
769 entity, sink_pad, flags);
771 ret = media_create_pad_link(entity, source_pad,
772 sink, sink_pad, flags);
775 flags &= ~(MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE);
779 EXPORT_SYMBOL_GPL(media_create_pad_links);
781 void __media_entity_remove_links(struct media_entity *entity)
783 struct media_link *link, *tmp;
785 list_for_each_entry_safe(link, tmp, &entity->links, list)
786 __media_entity_remove_link(entity, link);
788 entity->num_links = 0;
789 entity->num_backlinks = 0;
791 EXPORT_SYMBOL_GPL(__media_entity_remove_links);
793 void media_entity_remove_links(struct media_entity *entity)
795 struct media_device *mdev = entity->graph_obj.mdev;
797 /* Do nothing if the entity is not registered. */
801 mutex_lock(&mdev->graph_mutex);
802 __media_entity_remove_links(entity);
803 mutex_unlock(&mdev->graph_mutex);
805 EXPORT_SYMBOL_GPL(media_entity_remove_links);
807 static int __media_entity_setup_link_notify(struct media_link *link, u32 flags)
811 /* Notify both entities. */
812 ret = media_entity_call(link->source->entity, link_setup,
813 link->source, link->sink, flags);
814 if (ret < 0 && ret != -ENOIOCTLCMD)
817 ret = media_entity_call(link->sink->entity, link_setup,
818 link->sink, link->source, flags);
819 if (ret < 0 && ret != -ENOIOCTLCMD) {
820 media_entity_call(link->source->entity, link_setup,
821 link->source, link->sink, link->flags);
826 link->reverse->flags = link->flags;
831 int __media_entity_setup_link(struct media_link *link, u32 flags)
833 const u32 mask = MEDIA_LNK_FL_ENABLED;
834 struct media_device *mdev;
835 struct media_entity *source, *sink;
841 /* The non-modifiable link flags must not be modified. */
842 if ((link->flags & ~mask) != (flags & ~mask))
845 if (link->flags & MEDIA_LNK_FL_IMMUTABLE)
846 return link->flags == flags ? 0 : -EINVAL;
848 if (link->flags == flags)
851 source = link->source->entity;
852 sink = link->sink->entity;
854 if (!(link->flags & MEDIA_LNK_FL_DYNAMIC) &&
855 (source->stream_count || sink->stream_count))
858 mdev = source->graph_obj.mdev;
860 if (mdev->ops && mdev->ops->link_notify) {
861 ret = mdev->ops->link_notify(link, flags,
862 MEDIA_DEV_NOTIFY_PRE_LINK_CH);
867 ret = __media_entity_setup_link_notify(link, flags);
869 if (mdev->ops && mdev->ops->link_notify)
870 mdev->ops->link_notify(link, flags,
871 MEDIA_DEV_NOTIFY_POST_LINK_CH);
875 EXPORT_SYMBOL_GPL(__media_entity_setup_link);
877 int media_entity_setup_link(struct media_link *link, u32 flags)
881 mutex_lock(&link->graph_obj.mdev->graph_mutex);
882 ret = __media_entity_setup_link(link, flags);
883 mutex_unlock(&link->graph_obj.mdev->graph_mutex);
887 EXPORT_SYMBOL_GPL(media_entity_setup_link);
890 media_entity_find_link(struct media_pad *source, struct media_pad *sink)
892 struct media_link *link;
894 list_for_each_entry(link, &source->entity->links, list) {
895 if (link->source->entity == source->entity &&
896 link->source->index == source->index &&
897 link->sink->entity == sink->entity &&
898 link->sink->index == sink->index)
904 EXPORT_SYMBOL_GPL(media_entity_find_link);
906 struct media_pad *media_entity_remote_pad(const struct media_pad *pad)
908 struct media_link *link;
910 list_for_each_entry(link, &pad->entity->links, list) {
911 if (!(link->flags & MEDIA_LNK_FL_ENABLED))
914 if (link->source == pad)
917 if (link->sink == pad)
924 EXPORT_SYMBOL_GPL(media_entity_remote_pad);
926 static void media_interface_init(struct media_device *mdev,
927 struct media_interface *intf,
929 u32 intf_type, u32 flags)
931 intf->type = intf_type;
933 INIT_LIST_HEAD(&intf->links);
935 media_gobj_create(mdev, gobj_type, &intf->graph_obj);
938 /* Functions related to the media interface via device nodes */
940 struct media_intf_devnode *media_devnode_create(struct media_device *mdev,
942 u32 major, u32 minor)
944 struct media_intf_devnode *devnode;
946 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
950 devnode->major = major;
951 devnode->minor = minor;
953 media_interface_init(mdev, &devnode->intf, MEDIA_GRAPH_INTF_DEVNODE,
958 EXPORT_SYMBOL_GPL(media_devnode_create);
960 void media_devnode_remove(struct media_intf_devnode *devnode)
962 media_remove_intf_links(&devnode->intf);
963 media_gobj_destroy(&devnode->intf.graph_obj);
966 EXPORT_SYMBOL_GPL(media_devnode_remove);
968 struct media_link *media_create_intf_link(struct media_entity *entity,
969 struct media_interface *intf,
972 struct media_link *link;
974 link = media_add_link(&intf->links);
979 link->entity = entity;
980 link->flags = flags | MEDIA_LNK_FL_INTERFACE_LINK;
982 /* Initialize graph object embedded at the new link */
983 media_gobj_create(intf->graph_obj.mdev, MEDIA_GRAPH_LINK,
988 EXPORT_SYMBOL_GPL(media_create_intf_link);
990 void __media_remove_intf_link(struct media_link *link)
992 list_del(&link->list);
993 media_gobj_destroy(&link->graph_obj);
996 EXPORT_SYMBOL_GPL(__media_remove_intf_link);
998 void media_remove_intf_link(struct media_link *link)
1000 struct media_device *mdev = link->graph_obj.mdev;
1002 /* Do nothing if the intf is not registered. */
1006 mutex_lock(&mdev->graph_mutex);
1007 __media_remove_intf_link(link);
1008 mutex_unlock(&mdev->graph_mutex);
1010 EXPORT_SYMBOL_GPL(media_remove_intf_link);
1012 void __media_remove_intf_links(struct media_interface *intf)
1014 struct media_link *link, *tmp;
1016 list_for_each_entry_safe(link, tmp, &intf->links, list)
1017 __media_remove_intf_link(link);
1020 EXPORT_SYMBOL_GPL(__media_remove_intf_links);
1022 void media_remove_intf_links(struct media_interface *intf)
1024 struct media_device *mdev = intf->graph_obj.mdev;
1026 /* Do nothing if the intf is not registered. */
1030 mutex_lock(&mdev->graph_mutex);
1031 __media_remove_intf_links(intf);
1032 mutex_unlock(&mdev->graph_mutex);
1034 EXPORT_SYMBOL_GPL(media_remove_intf_links);