xref: /linux/drivers/media/mc/mc-entity.c (revision baeddf94aa61879b118f2faa37ed126d772670cc)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Media entity
4  *
5  * Copyright (C) 2010 Nokia Corporation
6  *
7  * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
8  *	     Sakari Ailus <sakari.ailus@iki.fi>
9  */
10 
11 #include <linux/bitmap.h>
12 #include <linux/list.h>
13 #include <linux/property.h>
14 #include <linux/slab.h>
15 #include <media/media-entity.h>
16 #include <media/media-device.h>
17 
18 static inline const char *intf_type(struct media_interface *intf)
19 {
20 	switch (intf->type) {
21 	case MEDIA_INTF_T_DVB_FE:
22 		return "dvb-frontend";
23 	case MEDIA_INTF_T_DVB_DEMUX:
24 		return "dvb-demux";
25 	case MEDIA_INTF_T_DVB_DVR:
26 		return "dvb-dvr";
27 	case MEDIA_INTF_T_DVB_CA:
28 		return  "dvb-ca";
29 	case MEDIA_INTF_T_DVB_NET:
30 		return "dvb-net";
31 	case MEDIA_INTF_T_V4L_VIDEO:
32 		return "v4l-video";
33 	case MEDIA_INTF_T_V4L_VBI:
34 		return "v4l-vbi";
35 	case MEDIA_INTF_T_V4L_RADIO:
36 		return "v4l-radio";
37 	case MEDIA_INTF_T_V4L_SUBDEV:
38 		return "v4l-subdev";
39 	case MEDIA_INTF_T_V4L_SWRADIO:
40 		return "v4l-swradio";
41 	case MEDIA_INTF_T_V4L_TOUCH:
42 		return "v4l-touch";
43 	default:
44 		return "unknown-intf";
45 	}
46 };
47 
48 static inline const char *link_type_name(struct media_link *link)
49 {
50 	switch (link->flags & MEDIA_LNK_FL_LINK_TYPE) {
51 	case MEDIA_LNK_FL_DATA_LINK:
52 		return "data";
53 	case MEDIA_LNK_FL_INTERFACE_LINK:
54 		return "interface";
55 	case MEDIA_LNK_FL_ANCILLARY_LINK:
56 		return "ancillary";
57 	default:
58 		return "unknown";
59 	}
60 }
61 
62 __must_check int media_entity_enum_init(struct media_entity_enum *ent_enum,
63 					struct media_device *mdev)
64 {
65 	int idx_max;
66 
67 	idx_max = ALIGN(mdev->entity_internal_idx_max + 1, BITS_PER_LONG);
68 	ent_enum->bmap = bitmap_zalloc(idx_max, GFP_KERNEL);
69 	if (!ent_enum->bmap)
70 		return -ENOMEM;
71 
72 	ent_enum->idx_max = idx_max;
73 
74 	return 0;
75 }
76 EXPORT_SYMBOL_GPL(media_entity_enum_init);
77 
78 void media_entity_enum_cleanup(struct media_entity_enum *ent_enum)
79 {
80 	bitmap_free(ent_enum->bmap);
81 }
82 EXPORT_SYMBOL_GPL(media_entity_enum_cleanup);
83 
84 /**
85  *  dev_dbg_obj - Prints in debug mode a change on some object
86  *
87  * @event_name:	Name of the event to report. Could be __func__
88  * @gobj:	Pointer to the object
89  *
90  * Enabled only if DEBUG or CONFIG_DYNAMIC_DEBUG. Otherwise, it
91  * won't produce any code.
92  */
93 static void dev_dbg_obj(const char *event_name,  struct media_gobj *gobj)
94 {
95 #if defined(DEBUG) || defined (CONFIG_DYNAMIC_DEBUG)
96 	switch (media_type(gobj)) {
97 	case MEDIA_GRAPH_ENTITY:
98 		dev_dbg(gobj->mdev->dev,
99 			"%s id %u: entity '%s'\n",
100 			event_name, media_id(gobj),
101 			gobj_to_entity(gobj)->name);
102 		break;
103 	case MEDIA_GRAPH_LINK:
104 	{
105 		struct media_link *link = gobj_to_link(gobj);
106 
107 		dev_dbg(gobj->mdev->dev,
108 			"%s id %u: %s link id %u ==> id %u\n",
109 			event_name, media_id(gobj), link_type_name(link),
110 			media_id(link->gobj0),
111 			media_id(link->gobj1));
112 		break;
113 	}
114 	case MEDIA_GRAPH_PAD:
115 	{
116 		struct media_pad *pad = gobj_to_pad(gobj);
117 
118 		dev_dbg(gobj->mdev->dev,
119 			"%s id %u: %s%spad '%s':%d\n",
120 			event_name, media_id(gobj),
121 			pad->flags & MEDIA_PAD_FL_SINK   ? "sink " : "",
122 			pad->flags & MEDIA_PAD_FL_SOURCE ? "source " : "",
123 			pad->entity->name, pad->index);
124 		break;
125 	}
126 	case MEDIA_GRAPH_INTF_DEVNODE:
127 	{
128 		struct media_interface *intf = gobj_to_intf(gobj);
129 		struct media_intf_devnode *devnode = intf_to_devnode(intf);
130 
131 		dev_dbg(gobj->mdev->dev,
132 			"%s id %u: intf_devnode %s - major: %d, minor: %d\n",
133 			event_name, media_id(gobj),
134 			intf_type(intf),
135 			devnode->major, devnode->minor);
136 		break;
137 	}
138 	}
139 #endif
140 }
141 
142 void media_gobj_create(struct media_device *mdev,
143 			   enum media_gobj_type type,
144 			   struct media_gobj *gobj)
145 {
146 	BUG_ON(!mdev);
147 
148 	gobj->mdev = mdev;
149 
150 	/* Create a per-type unique object ID */
151 	gobj->id = media_gobj_gen_id(type, ++mdev->id);
152 
153 	switch (type) {
154 	case MEDIA_GRAPH_ENTITY:
155 		list_add_tail(&gobj->list, &mdev->entities);
156 		break;
157 	case MEDIA_GRAPH_PAD:
158 		list_add_tail(&gobj->list, &mdev->pads);
159 		break;
160 	case MEDIA_GRAPH_LINK:
161 		list_add_tail(&gobj->list, &mdev->links);
162 		break;
163 	case MEDIA_GRAPH_INTF_DEVNODE:
164 		list_add_tail(&gobj->list, &mdev->interfaces);
165 		break;
166 	}
167 
168 	mdev->topology_version++;
169 
170 	dev_dbg_obj(__func__, gobj);
171 }
172 
173 void media_gobj_destroy(struct media_gobj *gobj)
174 {
175 	/* Do nothing if the object is not linked. */
176 	if (gobj->mdev == NULL)
177 		return;
178 
179 	dev_dbg_obj(__func__, gobj);
180 
181 	gobj->mdev->topology_version++;
182 
183 	/* Remove the object from mdev list */
184 	list_del(&gobj->list);
185 
186 	gobj->mdev = NULL;
187 }
188 
189 /*
190  * TODO: Get rid of this.
191  */
192 #define MEDIA_ENTITY_MAX_PADS		512
193 
194 int media_entity_pads_init(struct media_entity *entity, u16 num_pads,
195 			   struct media_pad *pads)
196 {
197 	struct media_device *mdev = entity->graph_obj.mdev;
198 	struct media_pad *iter;
199 	unsigned int i = 0;
200 	int ret = 0;
201 
202 	if (num_pads >= MEDIA_ENTITY_MAX_PADS)
203 		return -E2BIG;
204 
205 	entity->num_pads = num_pads;
206 	entity->pads = pads;
207 
208 	if (mdev)
209 		mutex_lock(&mdev->graph_mutex);
210 
211 	media_entity_for_each_pad(entity, iter) {
212 		iter->entity = entity;
213 		iter->index = i++;
214 
215 		if (hweight32(iter->flags & (MEDIA_PAD_FL_SINK |
216 					     MEDIA_PAD_FL_SOURCE)) != 1) {
217 			ret = -EINVAL;
218 			break;
219 		}
220 
221 		if (mdev)
222 			media_gobj_create(mdev, MEDIA_GRAPH_PAD,
223 					  &iter->graph_obj);
224 	}
225 
226 	if (ret && mdev) {
227 		media_entity_for_each_pad(entity, iter)
228 			media_gobj_destroy(&iter->graph_obj);
229 	}
230 
231 	if (mdev)
232 		mutex_unlock(&mdev->graph_mutex);
233 
234 	return ret;
235 }
236 EXPORT_SYMBOL_GPL(media_entity_pads_init);
237 
238 /* -----------------------------------------------------------------------------
239  * Graph traversal
240  */
241 
242 /**
243  * media_entity_has_pad_interdep - Check interdependency between two pads
244  *
245  * @entity: The entity
246  * @pad0: The first pad index
247  * @pad1: The second pad index
248  *
249  * This function checks the interdependency inside the entity between @pad0
250  * and @pad1. If two pads are interdependent they are part of the same pipeline
251  * and enabling one of the pads means that the other pad will become "locked"
252  * and doesn't allow configuration changes.
253  *
254  * This function uses the &media_entity_operations.has_pad_interdep() operation
255  * to check the dependency inside the entity between @pad0 and @pad1. If the
256  * has_pad_interdep operation is not implemented, all pads of the entity are
257  * considered to be interdependent.
258  *
259  * One of @pad0 and @pad1 must be a sink pad and the other one a source pad.
260  * The function returns false if both pads are sinks or sources.
261  *
262  * The caller must hold entity->graph_obj.mdev->mutex.
263  *
264  * Return: true if the pads are connected internally and false otherwise.
265  */
266 static bool media_entity_has_pad_interdep(struct media_entity *entity,
267 					  unsigned int pad0, unsigned int pad1)
268 {
269 	if (pad0 >= entity->num_pads || pad1 >= entity->num_pads)
270 		return false;
271 
272 	if (entity->pads[pad0].flags & entity->pads[pad1].flags &
273 	    (MEDIA_PAD_FL_SINK | MEDIA_PAD_FL_SOURCE))
274 		return false;
275 
276 	if (!entity->ops || !entity->ops->has_pad_interdep)
277 		return true;
278 
279 	return entity->ops->has_pad_interdep(entity, pad0, pad1);
280 }
281 
282 static struct media_entity *
283 media_entity_other(struct media_entity *entity, struct media_link *link)
284 {
285 	if (link->source->entity == entity)
286 		return link->sink->entity;
287 	else
288 		return link->source->entity;
289 }
290 
291 /* push an entity to traversal stack */
292 static void stack_push(struct media_graph *graph,
293 		       struct media_entity *entity)
294 {
295 	if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) {
296 		WARN_ON(1);
297 		return;
298 	}
299 	graph->top++;
300 	graph->stack[graph->top].link = entity->links.next;
301 	graph->stack[graph->top].entity = entity;
302 }
303 
304 static struct media_entity *stack_pop(struct media_graph *graph)
305 {
306 	struct media_entity *entity;
307 
308 	entity = graph->stack[graph->top].entity;
309 	graph->top--;
310 
311 	return entity;
312 }
313 
314 #define link_top(en)	((en)->stack[(en)->top].link)
315 #define stack_top(en)	((en)->stack[(en)->top].entity)
316 
317 /**
318  * media_graph_walk_init - Allocate resources for graph walk
319  * @graph: Media graph structure that will be used to walk the graph
320  * @mdev: Media device
321  *
322  * Reserve resources for graph walk in media device's current
323  * state. The memory must be released using
324  * media_graph_walk_cleanup().
325  *
326  * Returns error on failure, zero on success.
327  */
328 __must_check int media_graph_walk_init(
329 	struct media_graph *graph, struct media_device *mdev)
330 {
331 	return media_entity_enum_init(&graph->ent_enum, mdev);
332 }
333 EXPORT_SYMBOL_GPL(media_graph_walk_init);
334 
335 /**
336  * media_graph_walk_cleanup - Release resources related to graph walking
337  * @graph: Media graph structure that was used to walk the graph
338  */
339 void media_graph_walk_cleanup(struct media_graph *graph)
340 {
341 	media_entity_enum_cleanup(&graph->ent_enum);
342 }
343 EXPORT_SYMBOL_GPL(media_graph_walk_cleanup);
344 
345 void media_graph_walk_start(struct media_graph *graph,
346 			    struct media_entity *entity)
347 {
348 	media_entity_enum_zero(&graph->ent_enum);
349 	media_entity_enum_set(&graph->ent_enum, entity);
350 
351 	graph->top = 0;
352 	graph->stack[graph->top].entity = NULL;
353 	stack_push(graph, entity);
354 	dev_dbg(entity->graph_obj.mdev->dev,
355 		"begin graph walk at '%s'\n", entity->name);
356 }
357 EXPORT_SYMBOL_GPL(media_graph_walk_start);
358 
359 static void media_graph_walk_iter(struct media_graph *graph)
360 {
361 	struct media_entity *entity = stack_top(graph);
362 	struct media_link *link;
363 	struct media_entity *next;
364 
365 	link = list_entry(link_top(graph), typeof(*link), list);
366 
367 	/* If the link is not a data link, don't follow it */
368 	if ((link->flags & MEDIA_LNK_FL_LINK_TYPE) != MEDIA_LNK_FL_DATA_LINK) {
369 		link_top(graph) = link_top(graph)->next;
370 		return;
371 	}
372 
373 	/* The link is not enabled so we do not follow. */
374 	if (!(link->flags & MEDIA_LNK_FL_ENABLED)) {
375 		link_top(graph) = link_top(graph)->next;
376 		dev_dbg(entity->graph_obj.mdev->dev,
377 			"walk: skipping disabled link '%s':%u -> '%s':%u\n",
378 			link->source->entity->name, link->source->index,
379 			link->sink->entity->name, link->sink->index);
380 		return;
381 	}
382 
383 	/* Get the entity at the other end of the link. */
384 	next = media_entity_other(entity, link);
385 
386 	/* Has the entity already been visited? */
387 	if (media_entity_enum_test_and_set(&graph->ent_enum, next)) {
388 		link_top(graph) = link_top(graph)->next;
389 		dev_dbg(entity->graph_obj.mdev->dev,
390 			"walk: skipping entity '%s' (already seen)\n",
391 			next->name);
392 		return;
393 	}
394 
395 	/* Push the new entity to stack and start over. */
396 	link_top(graph) = link_top(graph)->next;
397 	stack_push(graph, next);
398 	dev_dbg(entity->graph_obj.mdev->dev, "walk: pushing '%s' on stack\n",
399 		next->name);
400 	lockdep_assert_held(&entity->graph_obj.mdev->graph_mutex);
401 }
402 
403 struct media_entity *media_graph_walk_next(struct media_graph *graph)
404 {
405 	struct media_entity *entity;
406 
407 	if (stack_top(graph) == NULL)
408 		return NULL;
409 
410 	/*
411 	 * Depth first search. Push entity to stack and continue from
412 	 * top of the stack until no more entities on the level can be
413 	 * found.
414 	 */
415 	while (link_top(graph) != &stack_top(graph)->links)
416 		media_graph_walk_iter(graph);
417 
418 	entity = stack_pop(graph);
419 	dev_dbg(entity->graph_obj.mdev->dev,
420 		"walk: returning entity '%s'\n", entity->name);
421 
422 	return entity;
423 }
424 EXPORT_SYMBOL_GPL(media_graph_walk_next);
425 
426 /* -----------------------------------------------------------------------------
427  * Pipeline management
428  */
429 
430 /*
431  * The pipeline traversal stack stores pads that are reached during graph
432  * traversal, with a list of links to be visited to continue the traversal.
433  * When a new pad is reached, an entry is pushed on the top of the stack and
434  * points to the incoming pad and the first link of the entity.
435  *
436  * To find further pads in the pipeline, the traversal algorithm follows
437  * internal pad dependencies in the entity, and then links in the graph. It
438  * does so by iterating over all links of the entity, and following enabled
439  * links that originate from a pad that is internally connected to the incoming
440  * pad, as reported by the media_entity_has_pad_interdep() function.
441  */
442 
443 /**
444  * struct media_pipeline_walk_entry - Entry in the pipeline traversal stack
445  *
446  * @pad: The media pad being visited
447  * @links: Links left to be visited
448  */
449 struct media_pipeline_walk_entry {
450 	struct media_pad *pad;
451 	struct list_head *links;
452 };
453 
454 /**
455  * struct media_pipeline_walk - State used by the media pipeline traversal
456  *				algorithm
457  *
458  * @mdev: The media device
459  * @stack: Depth-first search stack
460  * @stack.size: Number of allocated entries in @stack.entries
461  * @stack.top: Index of the top stack entry (-1 if the stack is empty)
462  * @stack.entries: Stack entries
463  */
464 struct media_pipeline_walk {
465 	struct media_device *mdev;
466 
467 	struct {
468 		unsigned int size;
469 		int top;
470 		struct media_pipeline_walk_entry *entries;
471 	} stack;
472 };
473 
474 #define MEDIA_PIPELINE_STACK_GROW_STEP		16
475 
476 static struct media_pipeline_walk_entry *
477 media_pipeline_walk_top(struct media_pipeline_walk *walk)
478 {
479 	return &walk->stack.entries[walk->stack.top];
480 }
481 
482 static bool media_pipeline_walk_empty(struct media_pipeline_walk *walk)
483 {
484 	return walk->stack.top == -1;
485 }
486 
487 /* Increase the stack size by MEDIA_PIPELINE_STACK_GROW_STEP elements. */
488 static int media_pipeline_walk_resize(struct media_pipeline_walk *walk)
489 {
490 	struct media_pipeline_walk_entry *entries;
491 	unsigned int new_size;
492 
493 	/* Safety check, to avoid stack overflows in case of bugs. */
494 	if (walk->stack.size >= 256)
495 		return -E2BIG;
496 
497 	new_size = walk->stack.size + MEDIA_PIPELINE_STACK_GROW_STEP;
498 
499 	entries = krealloc(walk->stack.entries,
500 			   new_size * sizeof(*walk->stack.entries),
501 			   GFP_KERNEL);
502 	if (!entries)
503 		return -ENOMEM;
504 
505 	walk->stack.entries = entries;
506 	walk->stack.size = new_size;
507 
508 	return 0;
509 }
510 
511 /* Push a new entry on the stack. */
512 static int media_pipeline_walk_push(struct media_pipeline_walk *walk,
513 				    struct media_pad *pad)
514 {
515 	struct media_pipeline_walk_entry *entry;
516 	int ret;
517 
518 	if (walk->stack.top + 1 >= walk->stack.size) {
519 		ret = media_pipeline_walk_resize(walk);
520 		if (ret)
521 			return ret;
522 	}
523 
524 	walk->stack.top++;
525 	entry = media_pipeline_walk_top(walk);
526 	entry->pad = pad;
527 	entry->links = pad->entity->links.next;
528 
529 	dev_dbg(walk->mdev->dev,
530 		"media pipeline: pushed entry %u: '%s':%u\n",
531 		walk->stack.top, pad->entity->name, pad->index);
532 
533 	return 0;
534 }
535 
536 /*
537  * Move the top entry link cursor to the next link. If all links of the entry
538  * have been visited, pop the entry itself.
539  */
540 static void media_pipeline_walk_pop(struct media_pipeline_walk *walk)
541 {
542 	struct media_pipeline_walk_entry *entry;
543 
544 	if (WARN_ON(walk->stack.top < 0))
545 		return;
546 
547 	entry = media_pipeline_walk_top(walk);
548 
549 	if (entry->links->next == &entry->pad->entity->links) {
550 		dev_dbg(walk->mdev->dev,
551 			"media pipeline: entry %u has no more links, popping\n",
552 			walk->stack.top);
553 
554 		walk->stack.top--;
555 		return;
556 	}
557 
558 	entry->links = entry->links->next;
559 
560 	dev_dbg(walk->mdev->dev,
561 		"media pipeline: moved entry %u to next link\n",
562 		walk->stack.top);
563 }
564 
565 /* Free all memory allocated while walking the pipeline. */
566 static void media_pipeline_walk_destroy(struct media_pipeline_walk *walk)
567 {
568 	kfree(walk->stack.entries);
569 }
570 
571 /* Add a pad to the pipeline and push it to the stack. */
572 static int media_pipeline_add_pad(struct media_pipeline *pipe,
573 				  struct media_pipeline_walk *walk,
574 				  struct media_pad *pad)
575 {
576 	struct media_pipeline_pad *ppad;
577 
578 	list_for_each_entry(ppad, &pipe->pads, list) {
579 		if (ppad->pad == pad) {
580 			dev_dbg(pad->graph_obj.mdev->dev,
581 				"media pipeline: already contains pad '%s':%u\n",
582 				pad->entity->name, pad->index);
583 			return 0;
584 		}
585 	}
586 
587 	ppad = kzalloc(sizeof(*ppad), GFP_KERNEL);
588 	if (!ppad)
589 		return -ENOMEM;
590 
591 	ppad->pipe = pipe;
592 	ppad->pad = pad;
593 
594 	list_add_tail(&ppad->list, &pipe->pads);
595 
596 	dev_dbg(pad->graph_obj.mdev->dev,
597 		"media pipeline: added pad '%s':%u\n",
598 		pad->entity->name, pad->index);
599 
600 	return media_pipeline_walk_push(walk, pad);
601 }
602 
603 /* Explore the next link of the entity at the top of the stack. */
604 static int media_pipeline_explore_next_link(struct media_pipeline *pipe,
605 					    struct media_pipeline_walk *walk)
606 {
607 	struct media_pipeline_walk_entry *entry = media_pipeline_walk_top(walk);
608 	struct media_pad *pad;
609 	struct media_link *link;
610 	struct media_pad *local;
611 	struct media_pad *remote;
612 	int ret;
613 
614 	pad = entry->pad;
615 	link = list_entry(entry->links, typeof(*link), list);
616 	media_pipeline_walk_pop(walk);
617 
618 	dev_dbg(walk->mdev->dev,
619 		"media pipeline: exploring link '%s':%u -> '%s':%u\n",
620 		link->source->entity->name, link->source->index,
621 		link->sink->entity->name, link->sink->index);
622 
623 	/* Get the local pad and remote pad. */
624 	if (link->source->entity == pad->entity) {
625 		local = link->source;
626 		remote = link->sink;
627 	} else {
628 		local = link->sink;
629 		remote = link->source;
630 	}
631 
632 	/*
633 	 * Skip links that originate from a different pad than the incoming pad
634 	 * that is not connected internally in the entity to the incoming pad.
635 	 */
636 	if (pad != local &&
637 	    !media_entity_has_pad_interdep(pad->entity, pad->index, local->index)) {
638 		dev_dbg(walk->mdev->dev,
639 			"media pipeline: skipping link (no route)\n");
640 		return 0;
641 	}
642 
643 	/*
644 	 * Add the local pad of the link to the pipeline and push it to the
645 	 * stack, if not already present.
646 	 */
647 	ret = media_pipeline_add_pad(pipe, walk, local);
648 	if (ret)
649 		return ret;
650 
651 	/* Similarly, add the remote pad, but only if the link is enabled. */
652 	if (!(link->flags & MEDIA_LNK_FL_ENABLED)) {
653 		dev_dbg(walk->mdev->dev,
654 			"media pipeline: skipping link (disabled)\n");
655 		return 0;
656 	}
657 
658 	ret = media_pipeline_add_pad(pipe, walk, remote);
659 	if (ret)
660 		return ret;
661 
662 	return 0;
663 }
664 
665 static void media_pipeline_cleanup(struct media_pipeline *pipe)
666 {
667 	while (!list_empty(&pipe->pads)) {
668 		struct media_pipeline_pad *ppad;
669 
670 		ppad = list_first_entry(&pipe->pads, typeof(*ppad), list);
671 		list_del(&ppad->list);
672 		kfree(ppad);
673 	}
674 }
675 
676 static int media_pipeline_populate(struct media_pipeline *pipe,
677 				   struct media_pad *pad)
678 {
679 	struct media_pipeline_walk walk = { };
680 	struct media_pipeline_pad *ppad;
681 	int ret;
682 
683 	/*
684 	 * Populate the media pipeline by walking the media graph, starting
685 	 * from @pad.
686 	 */
687 	INIT_LIST_HEAD(&pipe->pads);
688 	pipe->mdev = pad->graph_obj.mdev;
689 
690 	walk.mdev = pipe->mdev;
691 	walk.stack.top = -1;
692 	ret = media_pipeline_add_pad(pipe, &walk, pad);
693 	if (ret)
694 		goto done;
695 
696 	/*
697 	 * Use a depth-first search algorithm: as long as the stack is not
698 	 * empty, explore the next link of the top entry. The
699 	 * media_pipeline_explore_next_link() function will either move to the
700 	 * next link, pop the entry if fully visited, or add new entries on
701 	 * top.
702 	 */
703 	while (!media_pipeline_walk_empty(&walk)) {
704 		ret = media_pipeline_explore_next_link(pipe, &walk);
705 		if (ret)
706 			goto done;
707 	}
708 
709 	dev_dbg(pad->graph_obj.mdev->dev,
710 		"media pipeline populated, found pads:\n");
711 
712 	list_for_each_entry(ppad, &pipe->pads, list)
713 		dev_dbg(pad->graph_obj.mdev->dev, "- '%s':%u\n",
714 			ppad->pad->entity->name, ppad->pad->index);
715 
716 	WARN_ON(walk.stack.top != -1);
717 
718 	ret = 0;
719 
720 done:
721 	media_pipeline_walk_destroy(&walk);
722 
723 	if (ret)
724 		media_pipeline_cleanup(pipe);
725 
726 	return ret;
727 }
728 
729 __must_check int __media_pipeline_start(struct media_pad *pad,
730 					struct media_pipeline *pipe)
731 {
732 	struct media_device *mdev = pad->graph_obj.mdev;
733 	struct media_pipeline_pad *err_ppad;
734 	struct media_pipeline_pad *ppad;
735 	int ret;
736 
737 	lockdep_assert_held(&mdev->graph_mutex);
738 
739 	/*
740 	 * If the pad is already part of a pipeline, that pipeline must be the
741 	 * same as the pipe given to media_pipeline_start().
742 	 */
743 	if (WARN_ON(pad->pipe && pad->pipe != pipe))
744 		return -EINVAL;
745 
746 	/*
747 	 * If the pipeline has already been started, it is guaranteed to be
748 	 * valid, so just increase the start count.
749 	 */
750 	if (pipe->start_count) {
751 		pipe->start_count++;
752 		return 0;
753 	}
754 
755 	/*
756 	 * Populate the pipeline. This populates the media_pipeline pads list
757 	 * with media_pipeline_pad instances for each pad found during graph
758 	 * walk.
759 	 */
760 	ret = media_pipeline_populate(pipe, pad);
761 	if (ret)
762 		return ret;
763 
764 	/*
765 	 * Now that all the pads in the pipeline have been gathered, perform
766 	 * the validation steps.
767 	 */
768 
769 	list_for_each_entry(ppad, &pipe->pads, list) {
770 		struct media_pad *pad = ppad->pad;
771 		struct media_entity *entity = pad->entity;
772 		bool has_enabled_link = false;
773 		bool has_link = false;
774 		struct media_link *link;
775 
776 		dev_dbg(mdev->dev, "Validating pad '%s':%u\n", pad->entity->name,
777 			pad->index);
778 
779 		/*
780 		 * 1. Ensure that the pad doesn't already belong to a different
781 		 * pipeline.
782 		 */
783 		if (pad->pipe) {
784 			dev_dbg(mdev->dev, "Failed to start pipeline: pad '%s':%u busy\n",
785 				pad->entity->name, pad->index);
786 			ret = -EBUSY;
787 			goto error;
788 		}
789 
790 		/*
791 		 * 2. Validate all active links whose sink is the current pad.
792 		 * Validation of the source pads is performed in the context of
793 		 * the connected sink pad to avoid duplicating checks.
794 		 */
795 		for_each_media_entity_data_link(entity, link) {
796 			/* Skip links unrelated to the current pad. */
797 			if (link->sink != pad && link->source != pad)
798 				continue;
799 
800 			/* Record if the pad has links and enabled links. */
801 			if (link->flags & MEDIA_LNK_FL_ENABLED)
802 				has_enabled_link = true;
803 			has_link = true;
804 
805 			/*
806 			 * Validate the link if it's enabled and has the
807 			 * current pad as its sink.
808 			 */
809 			if (!(link->flags & MEDIA_LNK_FL_ENABLED))
810 				continue;
811 
812 			if (link->sink != pad)
813 				continue;
814 
815 			if (!entity->ops || !entity->ops->link_validate)
816 				continue;
817 
818 			ret = entity->ops->link_validate(link);
819 			if (ret) {
820 				dev_dbg(mdev->dev,
821 					"Link '%s':%u -> '%s':%u failed validation: %d\n",
822 					link->source->entity->name,
823 					link->source->index,
824 					link->sink->entity->name,
825 					link->sink->index, ret);
826 				goto error;
827 			}
828 
829 			dev_dbg(mdev->dev,
830 				"Link '%s':%u -> '%s':%u is valid\n",
831 				link->source->entity->name,
832 				link->source->index,
833 				link->sink->entity->name,
834 				link->sink->index);
835 		}
836 
837 		/*
838 		 * 3. If the pad has the MEDIA_PAD_FL_MUST_CONNECT flag set,
839 		 * ensure that it has either no link or an enabled link.
840 		 */
841 		if ((pad->flags & MEDIA_PAD_FL_MUST_CONNECT) && has_link &&
842 		    !has_enabled_link) {
843 			dev_dbg(mdev->dev,
844 				"Pad '%s':%u must be connected by an enabled link\n",
845 				pad->entity->name, pad->index);
846 			ret = -ENOLINK;
847 			goto error;
848 		}
849 
850 		/* Validation passed, store the pipe pointer in the pad. */
851 		pad->pipe = pipe;
852 	}
853 
854 	pipe->start_count++;
855 
856 	return 0;
857 
858 error:
859 	/*
860 	 * Link validation on graph failed. We revert what we did and
861 	 * return the error.
862 	 */
863 
864 	list_for_each_entry(err_ppad, &pipe->pads, list) {
865 		if (err_ppad == ppad)
866 			break;
867 
868 		err_ppad->pad->pipe = NULL;
869 	}
870 
871 	media_pipeline_cleanup(pipe);
872 
873 	return ret;
874 }
875 EXPORT_SYMBOL_GPL(__media_pipeline_start);
876 
877 __must_check int media_pipeline_start(struct media_pad *pad,
878 				      struct media_pipeline *pipe)
879 {
880 	struct media_device *mdev = pad->graph_obj.mdev;
881 	int ret;
882 
883 	mutex_lock(&mdev->graph_mutex);
884 	ret = __media_pipeline_start(pad, pipe);
885 	mutex_unlock(&mdev->graph_mutex);
886 	return ret;
887 }
888 EXPORT_SYMBOL_GPL(media_pipeline_start);
889 
890 void __media_pipeline_stop(struct media_pad *pad)
891 {
892 	struct media_pipeline *pipe = pad->pipe;
893 	struct media_pipeline_pad *ppad;
894 
895 	/*
896 	 * If the following check fails, the driver has performed an
897 	 * unbalanced call to media_pipeline_stop()
898 	 */
899 	if (WARN_ON(!pipe))
900 		return;
901 
902 	if (--pipe->start_count)
903 		return;
904 
905 	list_for_each_entry(ppad, &pipe->pads, list)
906 		ppad->pad->pipe = NULL;
907 
908 	media_pipeline_cleanup(pipe);
909 
910 	if (pipe->allocated)
911 		kfree(pipe);
912 }
913 EXPORT_SYMBOL_GPL(__media_pipeline_stop);
914 
915 void media_pipeline_stop(struct media_pad *pad)
916 {
917 	struct media_device *mdev = pad->graph_obj.mdev;
918 
919 	mutex_lock(&mdev->graph_mutex);
920 	__media_pipeline_stop(pad);
921 	mutex_unlock(&mdev->graph_mutex);
922 }
923 EXPORT_SYMBOL_GPL(media_pipeline_stop);
924 
925 __must_check int media_pipeline_alloc_start(struct media_pad *pad)
926 {
927 	struct media_device *mdev = pad->graph_obj.mdev;
928 	struct media_pipeline *new_pipe = NULL;
929 	struct media_pipeline *pipe;
930 	int ret;
931 
932 	mutex_lock(&mdev->graph_mutex);
933 
934 	/*
935 	 * Is the pad already part of a pipeline? If not, we need to allocate
936 	 * a pipe.
937 	 */
938 	pipe = media_pad_pipeline(pad);
939 	if (!pipe) {
940 		new_pipe = kzalloc(sizeof(*new_pipe), GFP_KERNEL);
941 		if (!new_pipe) {
942 			ret = -ENOMEM;
943 			goto out;
944 		}
945 
946 		pipe = new_pipe;
947 		pipe->allocated = true;
948 	}
949 
950 	ret = __media_pipeline_start(pad, pipe);
951 	if (ret)
952 		kfree(new_pipe);
953 
954 out:
955 	mutex_unlock(&mdev->graph_mutex);
956 
957 	return ret;
958 }
959 EXPORT_SYMBOL_GPL(media_pipeline_alloc_start);
960 
961 struct media_pad *
962 __media_pipeline_pad_iter_next(struct media_pipeline *pipe,
963 			       struct media_pipeline_pad_iter *iter,
964 			       struct media_pad *pad)
965 {
966 	if (!pad)
967 		iter->cursor = pipe->pads.next;
968 
969 	if (iter->cursor == &pipe->pads)
970 		return NULL;
971 
972 	pad = list_entry(iter->cursor, struct media_pipeline_pad, list)->pad;
973 	iter->cursor = iter->cursor->next;
974 
975 	return pad;
976 }
977 EXPORT_SYMBOL_GPL(__media_pipeline_pad_iter_next);
978 
979 int media_pipeline_entity_iter_init(struct media_pipeline *pipe,
980 				    struct media_pipeline_entity_iter *iter)
981 {
982 	return media_entity_enum_init(&iter->ent_enum, pipe->mdev);
983 }
984 EXPORT_SYMBOL_GPL(media_pipeline_entity_iter_init);
985 
986 void media_pipeline_entity_iter_cleanup(struct media_pipeline_entity_iter *iter)
987 {
988 	media_entity_enum_cleanup(&iter->ent_enum);
989 }
990 EXPORT_SYMBOL_GPL(media_pipeline_entity_iter_cleanup);
991 
992 struct media_entity *
993 __media_pipeline_entity_iter_next(struct media_pipeline *pipe,
994 				  struct media_pipeline_entity_iter *iter,
995 				  struct media_entity *entity)
996 {
997 	if (!entity)
998 		iter->cursor = pipe->pads.next;
999 
1000 	while (iter->cursor != &pipe->pads) {
1001 		struct media_pipeline_pad *ppad;
1002 		struct media_entity *entity;
1003 
1004 		ppad = list_entry(iter->cursor, struct media_pipeline_pad, list);
1005 		entity = ppad->pad->entity;
1006 		iter->cursor = iter->cursor->next;
1007 
1008 		if (!media_entity_enum_test_and_set(&iter->ent_enum, entity))
1009 			return entity;
1010 	}
1011 
1012 	return NULL;
1013 }
1014 EXPORT_SYMBOL_GPL(__media_pipeline_entity_iter_next);
1015 
1016 /* -----------------------------------------------------------------------------
1017  * Links management
1018  */
1019 
1020 static struct media_link *media_add_link(struct list_head *head)
1021 {
1022 	struct media_link *link;
1023 
1024 	link = kzalloc(sizeof(*link), GFP_KERNEL);
1025 	if (link == NULL)
1026 		return NULL;
1027 
1028 	list_add_tail(&link->list, head);
1029 
1030 	return link;
1031 }
1032 
1033 static void __media_entity_remove_link(struct media_entity *entity,
1034 				       struct media_link *link)
1035 {
1036 	struct media_link *rlink, *tmp;
1037 	struct media_entity *remote;
1038 
1039 	/* Remove the reverse links for a data link. */
1040 	if ((link->flags & MEDIA_LNK_FL_LINK_TYPE) == MEDIA_LNK_FL_DATA_LINK) {
1041 		link->source->num_links--;
1042 		link->sink->num_links--;
1043 
1044 		if (link->source->entity == entity)
1045 			remote = link->sink->entity;
1046 		else
1047 			remote = link->source->entity;
1048 
1049 		list_for_each_entry_safe(rlink, tmp, &remote->links, list) {
1050 			if (rlink != link->reverse)
1051 				continue;
1052 
1053 			if (link->source->entity == entity)
1054 				remote->num_backlinks--;
1055 
1056 			/* Remove the remote link */
1057 			list_del(&rlink->list);
1058 			media_gobj_destroy(&rlink->graph_obj);
1059 			kfree(rlink);
1060 
1061 			if (--remote->num_links == 0)
1062 				break;
1063 		}
1064 	}
1065 
1066 	list_del(&link->list);
1067 	media_gobj_destroy(&link->graph_obj);
1068 	kfree(link);
1069 }
1070 
1071 int media_get_pad_index(struct media_entity *entity, u32 pad_type,
1072 			enum media_pad_signal_type sig_type)
1073 {
1074 	unsigned int i;
1075 
1076 	if (!entity)
1077 		return -EINVAL;
1078 
1079 	for (i = 0; i < entity->num_pads; i++) {
1080 		if ((entity->pads[i].flags &
1081 		     (MEDIA_PAD_FL_SINK | MEDIA_PAD_FL_SOURCE)) != pad_type)
1082 			continue;
1083 
1084 		if (entity->pads[i].sig_type == sig_type)
1085 			return i;
1086 	}
1087 	return -EINVAL;
1088 }
1089 EXPORT_SYMBOL_GPL(media_get_pad_index);
1090 
1091 int
1092 media_create_pad_link(struct media_entity *source, u16 source_pad,
1093 			 struct media_entity *sink, u16 sink_pad, u32 flags)
1094 {
1095 	struct media_link *link;
1096 	struct media_link *backlink;
1097 
1098 	if (flags & MEDIA_LNK_FL_LINK_TYPE)
1099 		return -EINVAL;
1100 
1101 	flags |= MEDIA_LNK_FL_DATA_LINK;
1102 
1103 	if (WARN_ON(!source || !sink) ||
1104 	    WARN_ON(source_pad >= source->num_pads) ||
1105 	    WARN_ON(sink_pad >= sink->num_pads))
1106 		return -EINVAL;
1107 	if (WARN_ON(!(source->pads[source_pad].flags & MEDIA_PAD_FL_SOURCE)))
1108 		return -EINVAL;
1109 	if (WARN_ON(!(sink->pads[sink_pad].flags & MEDIA_PAD_FL_SINK)))
1110 		return -EINVAL;
1111 
1112 	link = media_add_link(&source->links);
1113 	if (link == NULL)
1114 		return -ENOMEM;
1115 
1116 	link->source = &source->pads[source_pad];
1117 	link->sink = &sink->pads[sink_pad];
1118 	link->flags = flags;
1119 
1120 	/* Initialize graph object embedded at the new link */
1121 	media_gobj_create(source->graph_obj.mdev, MEDIA_GRAPH_LINK,
1122 			&link->graph_obj);
1123 
1124 	/* Create the backlink. Backlinks are used to help graph traversal and
1125 	 * are not reported to userspace.
1126 	 */
1127 	backlink = media_add_link(&sink->links);
1128 	if (backlink == NULL) {
1129 		__media_entity_remove_link(source, link);
1130 		return -ENOMEM;
1131 	}
1132 
1133 	backlink->source = &source->pads[source_pad];
1134 	backlink->sink = &sink->pads[sink_pad];
1135 	backlink->flags = flags;
1136 	backlink->is_backlink = true;
1137 
1138 	/* Initialize graph object embedded at the new link */
1139 	media_gobj_create(sink->graph_obj.mdev, MEDIA_GRAPH_LINK,
1140 			&backlink->graph_obj);
1141 
1142 	link->reverse = backlink;
1143 	backlink->reverse = link;
1144 
1145 	sink->num_backlinks++;
1146 	sink->num_links++;
1147 	source->num_links++;
1148 
1149 	link->source->num_links++;
1150 	link->sink->num_links++;
1151 
1152 	return 0;
1153 }
1154 EXPORT_SYMBOL_GPL(media_create_pad_link);
1155 
1156 int media_create_pad_links(const struct media_device *mdev,
1157 			   const u32 source_function,
1158 			   struct media_entity *source,
1159 			   const u16 source_pad,
1160 			   const u32 sink_function,
1161 			   struct media_entity *sink,
1162 			   const u16 sink_pad,
1163 			   u32 flags,
1164 			   const bool allow_both_undefined)
1165 {
1166 	struct media_entity *entity;
1167 	unsigned function;
1168 	int ret;
1169 
1170 	/* Trivial case: 1:1 relation */
1171 	if (source && sink)
1172 		return media_create_pad_link(source, source_pad,
1173 					     sink, sink_pad, flags);
1174 
1175 	/* Worse case scenario: n:n relation */
1176 	if (!source && !sink) {
1177 		if (!allow_both_undefined)
1178 			return 0;
1179 		media_device_for_each_entity(source, mdev) {
1180 			if (source->function != source_function)
1181 				continue;
1182 			media_device_for_each_entity(sink, mdev) {
1183 				if (sink->function != sink_function)
1184 					continue;
1185 				ret = media_create_pad_link(source, source_pad,
1186 							    sink, sink_pad,
1187 							    flags);
1188 				if (ret)
1189 					return ret;
1190 				flags &= ~(MEDIA_LNK_FL_ENABLED |
1191 					   MEDIA_LNK_FL_IMMUTABLE);
1192 			}
1193 		}
1194 		return 0;
1195 	}
1196 
1197 	/* Handle 1:n and n:1 cases */
1198 	if (source)
1199 		function = sink_function;
1200 	else
1201 		function = source_function;
1202 
1203 	media_device_for_each_entity(entity, mdev) {
1204 		if (entity->function != function)
1205 			continue;
1206 
1207 		if (source)
1208 			ret = media_create_pad_link(source, source_pad,
1209 						    entity, sink_pad, flags);
1210 		else
1211 			ret = media_create_pad_link(entity, source_pad,
1212 						    sink, sink_pad, flags);
1213 		if (ret)
1214 			return ret;
1215 		flags &= ~(MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE);
1216 	}
1217 	return 0;
1218 }
1219 EXPORT_SYMBOL_GPL(media_create_pad_links);
1220 
1221 void __media_entity_remove_links(struct media_entity *entity)
1222 {
1223 	struct media_link *link, *tmp;
1224 
1225 	list_for_each_entry_safe(link, tmp, &entity->links, list)
1226 		__media_entity_remove_link(entity, link);
1227 
1228 	entity->num_links = 0;
1229 	entity->num_backlinks = 0;
1230 }
1231 EXPORT_SYMBOL_GPL(__media_entity_remove_links);
1232 
1233 void media_entity_remove_links(struct media_entity *entity)
1234 {
1235 	struct media_device *mdev = entity->graph_obj.mdev;
1236 
1237 	/* Do nothing if the entity is not registered. */
1238 	if (mdev == NULL)
1239 		return;
1240 
1241 	mutex_lock(&mdev->graph_mutex);
1242 	__media_entity_remove_links(entity);
1243 	mutex_unlock(&mdev->graph_mutex);
1244 }
1245 EXPORT_SYMBOL_GPL(media_entity_remove_links);
1246 
1247 static int __media_entity_setup_link_notify(struct media_link *link, u32 flags)
1248 {
1249 	int ret;
1250 
1251 	/* Notify both entities. */
1252 	ret = media_entity_call(link->source->entity, link_setup,
1253 				link->source, link->sink, flags);
1254 	if (ret < 0 && ret != -ENOIOCTLCMD)
1255 		return ret;
1256 
1257 	ret = media_entity_call(link->sink->entity, link_setup,
1258 				link->sink, link->source, flags);
1259 	if (ret < 0 && ret != -ENOIOCTLCMD) {
1260 		media_entity_call(link->source->entity, link_setup,
1261 				  link->source, link->sink, link->flags);
1262 		return ret;
1263 	}
1264 
1265 	link->flags = flags;
1266 	link->reverse->flags = link->flags;
1267 
1268 	return 0;
1269 }
1270 
1271 int __media_entity_setup_link(struct media_link *link, u32 flags)
1272 {
1273 	const u32 mask = MEDIA_LNK_FL_ENABLED;
1274 	struct media_device *mdev;
1275 	struct media_pad *source, *sink;
1276 	int ret = -EBUSY;
1277 
1278 	if (link == NULL)
1279 		return -EINVAL;
1280 
1281 	/* The non-modifiable link flags must not be modified. */
1282 	if ((link->flags & ~mask) != (flags & ~mask))
1283 		return -EINVAL;
1284 
1285 	if (link->flags & MEDIA_LNK_FL_IMMUTABLE)
1286 		return link->flags == flags ? 0 : -EINVAL;
1287 
1288 	if (link->flags == flags)
1289 		return 0;
1290 
1291 	source = link->source;
1292 	sink = link->sink;
1293 
1294 	if (!(link->flags & MEDIA_LNK_FL_DYNAMIC) &&
1295 	    (media_pad_is_streaming(source) || media_pad_is_streaming(sink)))
1296 		return -EBUSY;
1297 
1298 	mdev = source->graph_obj.mdev;
1299 
1300 	if (mdev->ops && mdev->ops->link_notify) {
1301 		ret = mdev->ops->link_notify(link, flags,
1302 					     MEDIA_DEV_NOTIFY_PRE_LINK_CH);
1303 		if (ret < 0)
1304 			return ret;
1305 	}
1306 
1307 	ret = __media_entity_setup_link_notify(link, flags);
1308 
1309 	if (mdev->ops && mdev->ops->link_notify)
1310 		mdev->ops->link_notify(link, flags,
1311 				       MEDIA_DEV_NOTIFY_POST_LINK_CH);
1312 
1313 	return ret;
1314 }
1315 EXPORT_SYMBOL_GPL(__media_entity_setup_link);
1316 
1317 int media_entity_setup_link(struct media_link *link, u32 flags)
1318 {
1319 	int ret;
1320 
1321 	mutex_lock(&link->graph_obj.mdev->graph_mutex);
1322 	ret = __media_entity_setup_link(link, flags);
1323 	mutex_unlock(&link->graph_obj.mdev->graph_mutex);
1324 
1325 	return ret;
1326 }
1327 EXPORT_SYMBOL_GPL(media_entity_setup_link);
1328 
1329 struct media_link *
1330 media_entity_find_link(struct media_pad *source, struct media_pad *sink)
1331 {
1332 	struct media_link *link;
1333 
1334 	for_each_media_entity_data_link(source->entity, link) {
1335 		if (link->source->entity == source->entity &&
1336 		    link->source->index == source->index &&
1337 		    link->sink->entity == sink->entity &&
1338 		    link->sink->index == sink->index)
1339 			return link;
1340 	}
1341 
1342 	return NULL;
1343 }
1344 EXPORT_SYMBOL_GPL(media_entity_find_link);
1345 
1346 struct media_pad *media_pad_remote_pad_first(const struct media_pad *pad)
1347 {
1348 	struct media_link *link;
1349 
1350 	for_each_media_entity_data_link(pad->entity, link) {
1351 		if (!(link->flags & MEDIA_LNK_FL_ENABLED))
1352 			continue;
1353 
1354 		if (link->source == pad)
1355 			return link->sink;
1356 
1357 		if (link->sink == pad)
1358 			return link->source;
1359 	}
1360 
1361 	return NULL;
1362 
1363 }
1364 EXPORT_SYMBOL_GPL(media_pad_remote_pad_first);
1365 
1366 struct media_pad *
1367 media_entity_remote_pad_unique(const struct media_entity *entity,
1368 			       unsigned int type)
1369 {
1370 	struct media_pad *pad = NULL;
1371 	struct media_link *link;
1372 
1373 	list_for_each_entry(link, &entity->links, list) {
1374 		struct media_pad *local_pad;
1375 		struct media_pad *remote_pad;
1376 
1377 		if (((link->flags & MEDIA_LNK_FL_LINK_TYPE) !=
1378 		     MEDIA_LNK_FL_DATA_LINK) ||
1379 		    !(link->flags & MEDIA_LNK_FL_ENABLED))
1380 			continue;
1381 
1382 		if (type == MEDIA_PAD_FL_SOURCE) {
1383 			local_pad = link->sink;
1384 			remote_pad = link->source;
1385 		} else {
1386 			local_pad = link->source;
1387 			remote_pad = link->sink;
1388 		}
1389 
1390 		if (local_pad->entity == entity) {
1391 			if (pad)
1392 				return ERR_PTR(-ENOTUNIQ);
1393 
1394 			pad = remote_pad;
1395 		}
1396 	}
1397 
1398 	if (!pad)
1399 		return ERR_PTR(-ENOLINK);
1400 
1401 	return pad;
1402 }
1403 EXPORT_SYMBOL_GPL(media_entity_remote_pad_unique);
1404 
1405 struct media_pad *media_pad_remote_pad_unique(const struct media_pad *pad)
1406 {
1407 	struct media_pad *found_pad = NULL;
1408 	struct media_link *link;
1409 
1410 	list_for_each_entry(link, &pad->entity->links, list) {
1411 		struct media_pad *remote_pad;
1412 
1413 		if (!(link->flags & MEDIA_LNK_FL_ENABLED))
1414 			continue;
1415 
1416 		if (link->sink == pad)
1417 			remote_pad = link->source;
1418 		else if (link->source == pad)
1419 			remote_pad = link->sink;
1420 		else
1421 			continue;
1422 
1423 		if (found_pad)
1424 			return ERR_PTR(-ENOTUNIQ);
1425 
1426 		found_pad = remote_pad;
1427 	}
1428 
1429 	if (!found_pad)
1430 		return ERR_PTR(-ENOLINK);
1431 
1432 	return found_pad;
1433 }
1434 EXPORT_SYMBOL_GPL(media_pad_remote_pad_unique);
1435 
1436 int media_entity_get_fwnode_pad(struct media_entity *entity,
1437 				const struct fwnode_handle *fwnode,
1438 				unsigned long direction_flags)
1439 {
1440 	struct fwnode_endpoint endpoint;
1441 	unsigned int i;
1442 	int ret;
1443 
1444 	if (!entity->ops || !entity->ops->get_fwnode_pad) {
1445 		for (i = 0; i < entity->num_pads; i++) {
1446 			if (entity->pads[i].flags & direction_flags)
1447 				return i;
1448 		}
1449 
1450 		return -ENXIO;
1451 	}
1452 
1453 	ret = fwnode_graph_parse_endpoint(fwnode, &endpoint);
1454 	if (ret)
1455 		return ret;
1456 
1457 	ret = entity->ops->get_fwnode_pad(entity, &endpoint);
1458 	if (ret < 0)
1459 		return ret;
1460 
1461 	if (ret >= entity->num_pads)
1462 		return -ENXIO;
1463 
1464 	if (!(entity->pads[ret].flags & direction_flags))
1465 		return -ENXIO;
1466 
1467 	return ret;
1468 }
1469 EXPORT_SYMBOL_GPL(media_entity_get_fwnode_pad);
1470 
1471 struct media_pipeline *media_entity_pipeline(struct media_entity *entity)
1472 {
1473 	struct media_pad *pad;
1474 
1475 	media_entity_for_each_pad(entity, pad) {
1476 		if (pad->pipe)
1477 			return pad->pipe;
1478 	}
1479 
1480 	return NULL;
1481 }
1482 EXPORT_SYMBOL_GPL(media_entity_pipeline);
1483 
1484 struct media_pipeline *media_pad_pipeline(struct media_pad *pad)
1485 {
1486 	return pad->pipe;
1487 }
1488 EXPORT_SYMBOL_GPL(media_pad_pipeline);
1489 
1490 static void media_interface_init(struct media_device *mdev,
1491 				 struct media_interface *intf,
1492 				 u32 gobj_type,
1493 				 u32 intf_type, u32 flags)
1494 {
1495 	intf->type = intf_type;
1496 	intf->flags = flags;
1497 	INIT_LIST_HEAD(&intf->links);
1498 
1499 	media_gobj_create(mdev, gobj_type, &intf->graph_obj);
1500 }
1501 
1502 /* Functions related to the media interface via device nodes */
1503 
1504 struct media_intf_devnode *media_devnode_create(struct media_device *mdev,
1505 						u32 type, u32 flags,
1506 						u32 major, u32 minor)
1507 {
1508 	struct media_intf_devnode *devnode;
1509 
1510 	devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
1511 	if (!devnode)
1512 		return NULL;
1513 
1514 	devnode->major = major;
1515 	devnode->minor = minor;
1516 
1517 	media_interface_init(mdev, &devnode->intf, MEDIA_GRAPH_INTF_DEVNODE,
1518 			     type, flags);
1519 
1520 	return devnode;
1521 }
1522 EXPORT_SYMBOL_GPL(media_devnode_create);
1523 
1524 void media_devnode_remove(struct media_intf_devnode *devnode)
1525 {
1526 	media_remove_intf_links(&devnode->intf);
1527 	media_gobj_destroy(&devnode->intf.graph_obj);
1528 	kfree(devnode);
1529 }
1530 EXPORT_SYMBOL_GPL(media_devnode_remove);
1531 
1532 struct media_link *media_create_intf_link(struct media_entity *entity,
1533 					    struct media_interface *intf,
1534 					    u32 flags)
1535 {
1536 	struct media_link *link;
1537 
1538 	link = media_add_link(&intf->links);
1539 	if (link == NULL)
1540 		return NULL;
1541 
1542 	link->intf = intf;
1543 	link->entity = entity;
1544 	link->flags = flags | MEDIA_LNK_FL_INTERFACE_LINK;
1545 
1546 	/* Initialize graph object embedded at the new link */
1547 	media_gobj_create(intf->graph_obj.mdev, MEDIA_GRAPH_LINK,
1548 			&link->graph_obj);
1549 
1550 	return link;
1551 }
1552 EXPORT_SYMBOL_GPL(media_create_intf_link);
1553 
1554 void __media_remove_intf_link(struct media_link *link)
1555 {
1556 	list_del(&link->list);
1557 	media_gobj_destroy(&link->graph_obj);
1558 	kfree(link);
1559 }
1560 EXPORT_SYMBOL_GPL(__media_remove_intf_link);
1561 
1562 void media_remove_intf_link(struct media_link *link)
1563 {
1564 	struct media_device *mdev = link->graph_obj.mdev;
1565 
1566 	/* Do nothing if the intf is not registered. */
1567 	if (mdev == NULL)
1568 		return;
1569 
1570 	mutex_lock(&mdev->graph_mutex);
1571 	__media_remove_intf_link(link);
1572 	mutex_unlock(&mdev->graph_mutex);
1573 }
1574 EXPORT_SYMBOL_GPL(media_remove_intf_link);
1575 
1576 void __media_remove_intf_links(struct media_interface *intf)
1577 {
1578 	struct media_link *link, *tmp;
1579 
1580 	list_for_each_entry_safe(link, tmp, &intf->links, list)
1581 		__media_remove_intf_link(link);
1582 
1583 }
1584 EXPORT_SYMBOL_GPL(__media_remove_intf_links);
1585 
1586 void media_remove_intf_links(struct media_interface *intf)
1587 {
1588 	struct media_device *mdev = intf->graph_obj.mdev;
1589 
1590 	/* Do nothing if the intf is not registered. */
1591 	if (mdev == NULL)
1592 		return;
1593 
1594 	mutex_lock(&mdev->graph_mutex);
1595 	__media_remove_intf_links(intf);
1596 	mutex_unlock(&mdev->graph_mutex);
1597 }
1598 EXPORT_SYMBOL_GPL(media_remove_intf_links);
1599 
1600 struct media_link *media_create_ancillary_link(struct media_entity *primary,
1601 					       struct media_entity *ancillary)
1602 {
1603 	struct media_link *link;
1604 
1605 	link = media_add_link(&primary->links);
1606 	if (!link)
1607 		return ERR_PTR(-ENOMEM);
1608 
1609 	link->gobj0 = &primary->graph_obj;
1610 	link->gobj1 = &ancillary->graph_obj;
1611 	link->flags = MEDIA_LNK_FL_IMMUTABLE | MEDIA_LNK_FL_ENABLED |
1612 		      MEDIA_LNK_FL_ANCILLARY_LINK;
1613 
1614 	/* Initialize graph object embedded in the new link */
1615 	media_gobj_create(primary->graph_obj.mdev, MEDIA_GRAPH_LINK,
1616 			  &link->graph_obj);
1617 
1618 	return link;
1619 }
1620 EXPORT_SYMBOL_GPL(media_create_ancillary_link);
1621 
1622 struct media_link *__media_entity_next_link(struct media_entity *entity,
1623 					    struct media_link *link,
1624 					    unsigned long link_type)
1625 {
1626 	link = link ? list_next_entry(link, list)
1627 		    : list_first_entry(&entity->links, typeof(*link), list);
1628 
1629 	list_for_each_entry_from(link, &entity->links, list)
1630 		if ((link->flags & MEDIA_LNK_FL_LINK_TYPE) == link_type)
1631 			return link;
1632 
1633 	return NULL;
1634 }
1635 EXPORT_SYMBOL_GPL(__media_entity_next_link);
1636