4 * Copyright (C) 2010 Nokia Corporation
6 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Sakari Ailus <sakari.ailus@iki.fi>
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.
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.
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
23 #include <linux/bitmap.h>
24 #include <linux/module.h>
25 #include <linux/slab.h>
26 #include <media/media-entity.h>
27 #include <media/media-device.h>
29 static inline const char *gobj_type(enum media_gobj_type type
)
32 case MEDIA_GRAPH_ENTITY
:
36 case MEDIA_GRAPH_LINK
:
38 case MEDIA_GRAPH_INTF_DEVNODE
:
39 return "intf-devnode";
45 static inline const char *intf_type(struct media_interface
*intf
)
48 case MEDIA_INTF_T_DVB_FE
:
49 return "dvb-frontend";
50 case MEDIA_INTF_T_DVB_DEMUX
:
52 case MEDIA_INTF_T_DVB_DVR
:
54 case MEDIA_INTF_T_DVB_CA
:
56 case MEDIA_INTF_T_DVB_NET
:
58 case MEDIA_INTF_T_V4L_VIDEO
:
60 case MEDIA_INTF_T_V4L_VBI
:
62 case MEDIA_INTF_T_V4L_RADIO
:
64 case MEDIA_INTF_T_V4L_SUBDEV
:
66 case MEDIA_INTF_T_V4L_SWRADIO
:
68 case MEDIA_INTF_T_V4L_TOUCH
:
70 case MEDIA_INTF_T_ALSA_PCM_CAPTURE
:
71 return "alsa-pcm-capture";
72 case MEDIA_INTF_T_ALSA_PCM_PLAYBACK
:
73 return "alsa-pcm-playback";
74 case MEDIA_INTF_T_ALSA_CONTROL
:
75 return "alsa-control";
76 case MEDIA_INTF_T_ALSA_COMPRESS
:
77 return "alsa-compress";
78 case MEDIA_INTF_T_ALSA_RAWMIDI
:
79 return "alsa-rawmidi";
80 case MEDIA_INTF_T_ALSA_HWDEP
:
82 case MEDIA_INTF_T_ALSA_SEQUENCER
:
83 return "alsa-sequencer";
84 case MEDIA_INTF_T_ALSA_TIMER
:
87 return "unknown-intf";
91 __must_check
int __media_entity_enum_init(struct media_entity_enum
*ent_enum
,
94 idx_max
= ALIGN(idx_max
, BITS_PER_LONG
);
95 ent_enum
->bmap
= kcalloc(idx_max
/ BITS_PER_LONG
, sizeof(long),
100 bitmap_zero(ent_enum
->bmap
, idx_max
);
101 ent_enum
->idx_max
= idx_max
;
105 EXPORT_SYMBOL_GPL(__media_entity_enum_init
);
107 void media_entity_enum_cleanup(struct media_entity_enum
*ent_enum
)
109 kfree(ent_enum
->bmap
);
111 EXPORT_SYMBOL_GPL(media_entity_enum_cleanup
);
114 * dev_dbg_obj - Prints in debug mode a change on some object
116 * @event_name: Name of the event to report. Could be __func__
117 * @gobj: Pointer to the object
119 * Enabled only if DEBUG or CONFIG_DYNAMIC_DEBUG. Otherwise, it
120 * won't produce any code.
122 static void dev_dbg_obj(const char *event_name
, struct media_gobj
*gobj
)
124 #if defined(DEBUG) || defined (CONFIG_DYNAMIC_DEBUG)
125 switch (media_type(gobj
)) {
126 case MEDIA_GRAPH_ENTITY
:
127 dev_dbg(gobj
->mdev
->dev
,
128 "%s id %u: entity '%s'\n",
129 event_name
, media_id(gobj
),
130 gobj_to_entity(gobj
)->name
);
132 case MEDIA_GRAPH_LINK
:
134 struct media_link
*link
= gobj_to_link(gobj
);
136 dev_dbg(gobj
->mdev
->dev
,
137 "%s id %u: %s link id %u ==> id %u\n",
138 event_name
, media_id(gobj
),
139 media_type(link
->gobj0
) == MEDIA_GRAPH_PAD
?
140 "data" : "interface",
141 media_id(link
->gobj0
),
142 media_id(link
->gobj1
));
145 case MEDIA_GRAPH_PAD
:
147 struct media_pad
*pad
= gobj_to_pad(gobj
);
149 dev_dbg(gobj
->mdev
->dev
,
150 "%s id %u: %s%spad '%s':%d\n",
151 event_name
, media_id(gobj
),
152 pad
->flags
& MEDIA_PAD_FL_SINK
? "sink " : "",
153 pad
->flags
& MEDIA_PAD_FL_SOURCE
? "source " : "",
154 pad
->entity
->name
, pad
->index
);
157 case MEDIA_GRAPH_INTF_DEVNODE
:
159 struct media_interface
*intf
= gobj_to_intf(gobj
);
160 struct media_intf_devnode
*devnode
= intf_to_devnode(intf
);
162 dev_dbg(gobj
->mdev
->dev
,
163 "%s id %u: intf_devnode %s - major: %d, minor: %d\n",
164 event_name
, media_id(gobj
),
166 devnode
->major
, devnode
->minor
);
173 void media_gobj_create(struct media_device
*mdev
,
174 enum media_gobj_type type
,
175 struct media_gobj
*gobj
)
181 /* Create a per-type unique object ID */
182 gobj
->id
= media_gobj_gen_id(type
, ++mdev
->id
);
185 case MEDIA_GRAPH_ENTITY
:
186 list_add_tail(&gobj
->list
, &mdev
->entities
);
188 case MEDIA_GRAPH_PAD
:
189 list_add_tail(&gobj
->list
, &mdev
->pads
);
191 case MEDIA_GRAPH_LINK
:
192 list_add_tail(&gobj
->list
, &mdev
->links
);
194 case MEDIA_GRAPH_INTF_DEVNODE
:
195 list_add_tail(&gobj
->list
, &mdev
->interfaces
);
199 mdev
->topology_version
++;
201 dev_dbg_obj(__func__
, gobj
);
204 void media_gobj_destroy(struct media_gobj
*gobj
)
206 dev_dbg_obj(__func__
, gobj
);
208 /* Do nothing if the object is not linked. */
209 if (gobj
->mdev
== NULL
)
212 gobj
->mdev
->topology_version
++;
214 /* Remove the object from mdev list */
215 list_del(&gobj
->list
);
220 int media_entity_pads_init(struct media_entity
*entity
, u16 num_pads
,
221 struct media_pad
*pads
)
223 struct media_device
*mdev
= entity
->graph_obj
.mdev
;
226 entity
->num_pads
= num_pads
;
230 mutex_lock(&mdev
->graph_mutex
);
232 for (i
= 0; i
< num_pads
; i
++) {
233 pads
[i
].entity
= entity
;
236 media_gobj_create(mdev
, MEDIA_GRAPH_PAD
,
237 &entity
->pads
[i
].graph_obj
);
241 mutex_unlock(&mdev
->graph_mutex
);
245 EXPORT_SYMBOL_GPL(media_entity_pads_init
);
247 /* -----------------------------------------------------------------------------
251 static struct media_entity
*
252 media_entity_other(struct media_entity
*entity
, struct media_link
*link
)
254 if (link
->source
->entity
== entity
)
255 return link
->sink
->entity
;
257 return link
->source
->entity
;
260 /* push an entity to traversal stack */
261 static void stack_push(struct media_entity_graph
*graph
,
262 struct media_entity
*entity
)
264 if (graph
->top
== MEDIA_ENTITY_ENUM_MAX_DEPTH
- 1) {
269 graph
->stack
[graph
->top
].link
= entity
->links
.next
;
270 graph
->stack
[graph
->top
].entity
= entity
;
273 static struct media_entity
*stack_pop(struct media_entity_graph
*graph
)
275 struct media_entity
*entity
;
277 entity
= graph
->stack
[graph
->top
].entity
;
283 #define link_top(en) ((en)->stack[(en)->top].link)
284 #define stack_top(en) ((en)->stack[(en)->top].entity)
287 * TODO: Get rid of this.
289 #define MEDIA_ENTITY_MAX_PADS 512
292 * media_entity_graph_walk_init - Allocate resources for graph walk
293 * @graph: Media graph structure that will be used to walk the graph
294 * @mdev: Media device
296 * Reserve resources for graph walk in media device's current
297 * state. The memory must be released using
298 * media_entity_graph_walk_free().
300 * Returns error on failure, zero on success.
302 __must_check
int media_entity_graph_walk_init(
303 struct media_entity_graph
*graph
, struct media_device
*mdev
)
305 return media_entity_enum_init(&graph
->ent_enum
, mdev
);
307 EXPORT_SYMBOL_GPL(media_entity_graph_walk_init
);
310 * media_entity_graph_walk_cleanup - Release resources related to graph walking
311 * @graph: Media graph structure that was used to walk the graph
313 void media_entity_graph_walk_cleanup(struct media_entity_graph
*graph
)
315 media_entity_enum_cleanup(&graph
->ent_enum
);
317 EXPORT_SYMBOL_GPL(media_entity_graph_walk_cleanup
);
319 void media_entity_graph_walk_start(struct media_entity_graph
*graph
,
320 struct media_entity
*entity
)
322 media_entity_enum_zero(&graph
->ent_enum
);
323 media_entity_enum_set(&graph
->ent_enum
, entity
);
326 graph
->stack
[graph
->top
].entity
= NULL
;
327 stack_push(graph
, entity
);
329 EXPORT_SYMBOL_GPL(media_entity_graph_walk_start
);
331 struct media_entity
*
332 media_entity_graph_walk_next(struct media_entity_graph
*graph
)
334 if (stack_top(graph
) == NULL
)
338 * Depth first search. Push entity to stack and continue from
339 * top of the stack until no more entities on the level can be
342 while (link_top(graph
) != &stack_top(graph
)->links
) {
343 struct media_entity
*entity
= stack_top(graph
);
344 struct media_link
*link
;
345 struct media_entity
*next
;
347 link
= list_entry(link_top(graph
), typeof(*link
), list
);
349 /* The link is not enabled so we do not follow. */
350 if (!(link
->flags
& MEDIA_LNK_FL_ENABLED
)) {
351 link_top(graph
) = link_top(graph
)->next
;
355 /* Get the entity in the other end of the link . */
356 next
= media_entity_other(entity
, link
);
358 /* Has the entity already been visited? */
359 if (media_entity_enum_test_and_set(&graph
->ent_enum
, next
)) {
360 link_top(graph
) = link_top(graph
)->next
;
364 /* Push the new entity to stack and start over. */
365 link_top(graph
) = link_top(graph
)->next
;
366 stack_push(graph
, next
);
369 return stack_pop(graph
);
371 EXPORT_SYMBOL_GPL(media_entity_graph_walk_next
);
373 /* -----------------------------------------------------------------------------
374 * Pipeline management
377 __must_check
int __media_entity_pipeline_start(struct media_entity
*entity
,
378 struct media_pipeline
*pipe
)
380 struct media_device
*mdev
= entity
->graph_obj
.mdev
;
381 struct media_entity_graph
*graph
= &pipe
->graph
;
382 struct media_entity
*entity_err
= entity
;
383 struct media_link
*link
;
386 if (!pipe
->streaming_count
++) {
387 ret
= media_entity_graph_walk_init(&pipe
->graph
, mdev
);
389 goto error_graph_walk_start
;
392 media_entity_graph_walk_start(&pipe
->graph
, entity
);
394 while ((entity
= media_entity_graph_walk_next(graph
))) {
395 DECLARE_BITMAP(active
, MEDIA_ENTITY_MAX_PADS
);
396 DECLARE_BITMAP(has_no_links
, MEDIA_ENTITY_MAX_PADS
);
398 entity
->stream_count
++;
400 if (WARN_ON(entity
->pipe
&& entity
->pipe
!= pipe
)) {
407 /* Already streaming --- no need to check. */
408 if (entity
->stream_count
> 1)
411 if (!entity
->ops
|| !entity
->ops
->link_validate
)
414 bitmap_zero(active
, entity
->num_pads
);
415 bitmap_fill(has_no_links
, entity
->num_pads
);
417 list_for_each_entry(link
, &entity
->links
, list
) {
418 struct media_pad
*pad
= link
->sink
->entity
== entity
419 ? link
->sink
: link
->source
;
421 /* Mark that a pad is connected by a link. */
422 bitmap_clear(has_no_links
, pad
->index
, 1);
425 * Pads that either do not need to connect or
426 * are connected through an enabled link are
429 if (!(pad
->flags
& MEDIA_PAD_FL_MUST_CONNECT
) ||
430 link
->flags
& MEDIA_LNK_FL_ENABLED
)
431 bitmap_set(active
, pad
->index
, 1);
434 * Link validation will only take place for
435 * sink ends of the link that are enabled.
437 if (link
->sink
!= pad
||
438 !(link
->flags
& MEDIA_LNK_FL_ENABLED
))
441 ret
= entity
->ops
->link_validate(link
);
442 if (ret
< 0 && ret
!= -ENOIOCTLCMD
) {
443 dev_dbg(entity
->graph_obj
.mdev
->dev
,
444 "link validation failed for \"%s\":%u -> \"%s\":%u, error %d\n",
445 link
->source
->entity
->name
,
447 entity
->name
, link
->sink
->index
, ret
);
452 /* Either no links or validated links are fine. */
453 bitmap_or(active
, active
, has_no_links
, entity
->num_pads
);
455 if (!bitmap_full(active
, entity
->num_pads
)) {
457 dev_dbg(entity
->graph_obj
.mdev
->dev
,
458 "\"%s\":%u must be connected by an enabled link\n",
460 (unsigned)find_first_zero_bit(
461 active
, entity
->num_pads
));
470 * Link validation on graph failed. We revert what we did and
473 media_entity_graph_walk_start(graph
, entity_err
);
475 while ((entity_err
= media_entity_graph_walk_next(graph
))) {
476 /* don't let the stream_count go negative */
477 if (entity
->stream_count
> 0) {
478 entity_err
->stream_count
--;
479 if (entity_err
->stream_count
== 0)
480 entity_err
->pipe
= NULL
;
484 * We haven't increased stream_count further than this
487 if (entity_err
== entity
)
491 error_graph_walk_start
:
492 if (!--pipe
->streaming_count
)
493 media_entity_graph_walk_cleanup(graph
);
497 EXPORT_SYMBOL_GPL(__media_entity_pipeline_start
);
499 __must_check
int media_entity_pipeline_start(struct media_entity
*entity
,
500 struct media_pipeline
*pipe
)
502 struct media_device
*mdev
= entity
->graph_obj
.mdev
;
505 mutex_lock(&mdev
->graph_mutex
);
506 ret
= __media_entity_pipeline_start(entity
, pipe
);
507 mutex_unlock(&mdev
->graph_mutex
);
510 EXPORT_SYMBOL_GPL(media_entity_pipeline_start
);
512 void __media_entity_pipeline_stop(struct media_entity
*entity
)
514 struct media_entity_graph
*graph
= &entity
->pipe
->graph
;
515 struct media_pipeline
*pipe
= entity
->pipe
;
518 WARN_ON(!pipe
->streaming_count
);
519 media_entity_graph_walk_start(graph
, entity
);
521 while ((entity
= media_entity_graph_walk_next(graph
))) {
522 /* don't let the stream_count go negative */
523 if (entity
->stream_count
> 0) {
524 entity
->stream_count
--;
525 if (entity
->stream_count
== 0)
530 if (!--pipe
->streaming_count
)
531 media_entity_graph_walk_cleanup(graph
);
534 EXPORT_SYMBOL_GPL(__media_entity_pipeline_stop
);
536 void media_entity_pipeline_stop(struct media_entity
*entity
)
538 struct media_device
*mdev
= entity
->graph_obj
.mdev
;
540 mutex_lock(&mdev
->graph_mutex
);
541 __media_entity_pipeline_stop(entity
);
542 mutex_unlock(&mdev
->graph_mutex
);
544 EXPORT_SYMBOL_GPL(media_entity_pipeline_stop
);
546 /* -----------------------------------------------------------------------------
550 struct media_entity
*media_entity_get(struct media_entity
*entity
)
555 if (entity
->graph_obj
.mdev
->dev
&&
556 !try_module_get(entity
->graph_obj
.mdev
->dev
->driver
->owner
))
561 EXPORT_SYMBOL_GPL(media_entity_get
);
563 void media_entity_put(struct media_entity
*entity
)
568 if (entity
->graph_obj
.mdev
->dev
)
569 module_put(entity
->graph_obj
.mdev
->dev
->driver
->owner
);
571 EXPORT_SYMBOL_GPL(media_entity_put
);
573 /* -----------------------------------------------------------------------------
577 static struct media_link
*media_add_link(struct list_head
*head
)
579 struct media_link
*link
;
581 link
= kzalloc(sizeof(*link
), GFP_KERNEL
);
585 list_add_tail(&link
->list
, head
);
590 static void __media_entity_remove_link(struct media_entity
*entity
,
591 struct media_link
*link
)
593 struct media_link
*rlink
, *tmp
;
594 struct media_entity
*remote
;
596 if (link
->source
->entity
== entity
)
597 remote
= link
->sink
->entity
;
599 remote
= link
->source
->entity
;
601 list_for_each_entry_safe(rlink
, tmp
, &remote
->links
, list
) {
602 if (rlink
!= link
->reverse
)
605 if (link
->source
->entity
== entity
)
606 remote
->num_backlinks
--;
608 /* Remove the remote link */
609 list_del(&rlink
->list
);
610 media_gobj_destroy(&rlink
->graph_obj
);
613 if (--remote
->num_links
== 0)
616 list_del(&link
->list
);
617 media_gobj_destroy(&link
->graph_obj
);
622 media_create_pad_link(struct media_entity
*source
, u16 source_pad
,
623 struct media_entity
*sink
, u16 sink_pad
, u32 flags
)
625 struct media_link
*link
;
626 struct media_link
*backlink
;
628 BUG_ON(source
== NULL
|| sink
== NULL
);
629 BUG_ON(source_pad
>= source
->num_pads
);
630 BUG_ON(sink_pad
>= sink
->num_pads
);
632 link
= media_add_link(&source
->links
);
636 link
->source
= &source
->pads
[source_pad
];
637 link
->sink
= &sink
->pads
[sink_pad
];
638 link
->flags
= flags
& ~MEDIA_LNK_FL_INTERFACE_LINK
;
640 /* Initialize graph object embedded at the new link */
641 media_gobj_create(source
->graph_obj
.mdev
, MEDIA_GRAPH_LINK
,
644 /* Create the backlink. Backlinks are used to help graph traversal and
645 * are not reported to userspace.
647 backlink
= media_add_link(&sink
->links
);
648 if (backlink
== NULL
) {
649 __media_entity_remove_link(source
, link
);
653 backlink
->source
= &source
->pads
[source_pad
];
654 backlink
->sink
= &sink
->pads
[sink_pad
];
655 backlink
->flags
= flags
;
656 backlink
->is_backlink
= true;
658 /* Initialize graph object embedded at the new link */
659 media_gobj_create(sink
->graph_obj
.mdev
, MEDIA_GRAPH_LINK
,
660 &backlink
->graph_obj
);
662 link
->reverse
= backlink
;
663 backlink
->reverse
= link
;
665 sink
->num_backlinks
++;
671 EXPORT_SYMBOL_GPL(media_create_pad_link
);
673 int media_create_pad_links(const struct media_device
*mdev
,
674 const u32 source_function
,
675 struct media_entity
*source
,
676 const u16 source_pad
,
677 const u32 sink_function
,
678 struct media_entity
*sink
,
681 const bool allow_both_undefined
)
683 struct media_entity
*entity
;
687 /* Trivial case: 1:1 relation */
689 return media_create_pad_link(source
, source_pad
,
690 sink
, sink_pad
, flags
);
692 /* Worse case scenario: n:n relation */
693 if (!source
&& !sink
) {
694 if (!allow_both_undefined
)
696 media_device_for_each_entity(source
, mdev
) {
697 if (source
->function
!= source_function
)
699 media_device_for_each_entity(sink
, mdev
) {
700 if (sink
->function
!= sink_function
)
702 ret
= media_create_pad_link(source
, source_pad
,
707 flags
&= ~(MEDIA_LNK_FL_ENABLED
|
708 MEDIA_LNK_FL_IMMUTABLE
);
714 /* Handle 1:n and n:1 cases */
716 function
= sink_function
;
718 function
= source_function
;
720 media_device_for_each_entity(entity
, mdev
) {
721 if (entity
->function
!= function
)
725 ret
= media_create_pad_link(source
, source_pad
,
726 entity
, sink_pad
, flags
);
728 ret
= media_create_pad_link(entity
, source_pad
,
729 sink
, sink_pad
, flags
);
732 flags
&= ~(MEDIA_LNK_FL_ENABLED
| MEDIA_LNK_FL_IMMUTABLE
);
736 EXPORT_SYMBOL_GPL(media_create_pad_links
);
738 void __media_entity_remove_links(struct media_entity
*entity
)
740 struct media_link
*link
, *tmp
;
742 list_for_each_entry_safe(link
, tmp
, &entity
->links
, list
)
743 __media_entity_remove_link(entity
, link
);
745 entity
->num_links
= 0;
746 entity
->num_backlinks
= 0;
748 EXPORT_SYMBOL_GPL(__media_entity_remove_links
);
750 void media_entity_remove_links(struct media_entity
*entity
)
752 struct media_device
*mdev
= entity
->graph_obj
.mdev
;
754 /* Do nothing if the entity is not registered. */
758 mutex_lock(&mdev
->graph_mutex
);
759 __media_entity_remove_links(entity
);
760 mutex_unlock(&mdev
->graph_mutex
);
762 EXPORT_SYMBOL_GPL(media_entity_remove_links
);
764 static int __media_entity_setup_link_notify(struct media_link
*link
, u32 flags
)
768 /* Notify both entities. */
769 ret
= media_entity_call(link
->source
->entity
, link_setup
,
770 link
->source
, link
->sink
, flags
);
771 if (ret
< 0 && ret
!= -ENOIOCTLCMD
)
774 ret
= media_entity_call(link
->sink
->entity
, link_setup
,
775 link
->sink
, link
->source
, flags
);
776 if (ret
< 0 && ret
!= -ENOIOCTLCMD
) {
777 media_entity_call(link
->source
->entity
, link_setup
,
778 link
->source
, link
->sink
, link
->flags
);
783 link
->reverse
->flags
= link
->flags
;
788 int __media_entity_setup_link(struct media_link
*link
, u32 flags
)
790 const u32 mask
= MEDIA_LNK_FL_ENABLED
;
791 struct media_device
*mdev
;
792 struct media_entity
*source
, *sink
;
798 /* The non-modifiable link flags must not be modified. */
799 if ((link
->flags
& ~mask
) != (flags
& ~mask
))
802 if (link
->flags
& MEDIA_LNK_FL_IMMUTABLE
)
803 return link
->flags
== flags
? 0 : -EINVAL
;
805 if (link
->flags
== flags
)
808 source
= link
->source
->entity
;
809 sink
= link
->sink
->entity
;
811 if (!(link
->flags
& MEDIA_LNK_FL_DYNAMIC
) &&
812 (source
->stream_count
|| sink
->stream_count
))
815 mdev
= source
->graph_obj
.mdev
;
817 if (mdev
->ops
&& mdev
->ops
->link_notify
) {
818 ret
= mdev
->ops
->link_notify(link
, flags
,
819 MEDIA_DEV_NOTIFY_PRE_LINK_CH
);
824 ret
= __media_entity_setup_link_notify(link
, flags
);
826 if (mdev
->ops
&& mdev
->ops
->link_notify
)
827 mdev
->ops
->link_notify(link
, flags
,
828 MEDIA_DEV_NOTIFY_POST_LINK_CH
);
832 EXPORT_SYMBOL_GPL(__media_entity_setup_link
);
834 int media_entity_setup_link(struct media_link
*link
, u32 flags
)
838 mutex_lock(&link
->graph_obj
.mdev
->graph_mutex
);
839 ret
= __media_entity_setup_link(link
, flags
);
840 mutex_unlock(&link
->graph_obj
.mdev
->graph_mutex
);
844 EXPORT_SYMBOL_GPL(media_entity_setup_link
);
847 media_entity_find_link(struct media_pad
*source
, struct media_pad
*sink
)
849 struct media_link
*link
;
851 list_for_each_entry(link
, &source
->entity
->links
, list
) {
852 if (link
->source
->entity
== source
->entity
&&
853 link
->source
->index
== source
->index
&&
854 link
->sink
->entity
== sink
->entity
&&
855 link
->sink
->index
== sink
->index
)
861 EXPORT_SYMBOL_GPL(media_entity_find_link
);
863 struct media_pad
*media_entity_remote_pad(struct media_pad
*pad
)
865 struct media_link
*link
;
867 list_for_each_entry(link
, &pad
->entity
->links
, list
) {
868 if (!(link
->flags
& MEDIA_LNK_FL_ENABLED
))
871 if (link
->source
== pad
)
874 if (link
->sink
== pad
)
881 EXPORT_SYMBOL_GPL(media_entity_remote_pad
);
883 static void media_interface_init(struct media_device
*mdev
,
884 struct media_interface
*intf
,
886 u32 intf_type
, u32 flags
)
888 intf
->type
= intf_type
;
890 INIT_LIST_HEAD(&intf
->links
);
892 media_gobj_create(mdev
, gobj_type
, &intf
->graph_obj
);
895 /* Functions related to the media interface via device nodes */
897 struct media_intf_devnode
*media_devnode_create(struct media_device
*mdev
,
899 u32 major
, u32 minor
)
901 struct media_intf_devnode
*devnode
;
903 devnode
= kzalloc(sizeof(*devnode
), GFP_KERNEL
);
907 devnode
->major
= major
;
908 devnode
->minor
= minor
;
910 media_interface_init(mdev
, &devnode
->intf
, MEDIA_GRAPH_INTF_DEVNODE
,
915 EXPORT_SYMBOL_GPL(media_devnode_create
);
917 void media_devnode_remove(struct media_intf_devnode
*devnode
)
919 media_remove_intf_links(&devnode
->intf
);
920 media_gobj_destroy(&devnode
->intf
.graph_obj
);
923 EXPORT_SYMBOL_GPL(media_devnode_remove
);
925 struct media_link
*media_create_intf_link(struct media_entity
*entity
,
926 struct media_interface
*intf
,
929 struct media_link
*link
;
931 link
= media_add_link(&intf
->links
);
936 link
->entity
= entity
;
937 link
->flags
= flags
| MEDIA_LNK_FL_INTERFACE_LINK
;
939 /* Initialize graph object embedded at the new link */
940 media_gobj_create(intf
->graph_obj
.mdev
, MEDIA_GRAPH_LINK
,
945 EXPORT_SYMBOL_GPL(media_create_intf_link
);
947 void __media_remove_intf_link(struct media_link
*link
)
949 list_del(&link
->list
);
950 media_gobj_destroy(&link
->graph_obj
);
953 EXPORT_SYMBOL_GPL(__media_remove_intf_link
);
955 void media_remove_intf_link(struct media_link
*link
)
957 struct media_device
*mdev
= link
->graph_obj
.mdev
;
959 /* Do nothing if the intf is not registered. */
963 mutex_lock(&mdev
->graph_mutex
);
964 __media_remove_intf_link(link
);
965 mutex_unlock(&mdev
->graph_mutex
);
967 EXPORT_SYMBOL_GPL(media_remove_intf_link
);
969 void __media_remove_intf_links(struct media_interface
*intf
)
971 struct media_link
*link
, *tmp
;
973 list_for_each_entry_safe(link
, tmp
, &intf
->links
, list
)
974 __media_remove_intf_link(link
);
977 EXPORT_SYMBOL_GPL(__media_remove_intf_links
);
979 void media_remove_intf_links(struct media_interface
*intf
)
981 struct media_device
*mdev
= intf
->graph_obj
.mdev
;
983 /* Do nothing if the intf is not registered. */
987 mutex_lock(&mdev
->graph_mutex
);
988 __media_remove_intf_links(intf
);
989 mutex_unlock(&mdev
->graph_mutex
);
991 EXPORT_SYMBOL_GPL(media_remove_intf_links
);