blob: 32a5f8cae72d4ca8273aecee35481a5ed22cac5f [file] [log] [blame]
Laurent Pinchart53e269c2009-12-09 08:40:00 -03001/*
2 * Media entity
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Sakari Ailus <sakari.ailus@iki.fi>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 */
22
Laurent Pinchart5c7b25b2013-06-07 12:45:11 -030023#include <linux/bitmap.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030024#include <linux/module.h>
25#include <linux/slab.h>
26#include <media/media-entity.h>
Laurent Pinchart503c3d822010-03-07 15:04:59 -030027#include <media/media-device.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030028
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -030029static inline const char *gobj_type(enum media_gobj_type type)
30{
31 switch (type) {
32 case MEDIA_GRAPH_ENTITY:
33 return "entity";
34 case MEDIA_GRAPH_PAD:
35 return "pad";
36 case MEDIA_GRAPH_LINK:
37 return "link";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030038 case MEDIA_GRAPH_INTF_DEVNODE:
39 return "intf-devnode";
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -030040 default:
41 return "unknown";
42 }
43}
44
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030045static inline const char *intf_type(struct media_interface *intf)
46{
47 switch (intf->type) {
48 case MEDIA_INTF_T_DVB_FE:
49 return "frontend";
50 case MEDIA_INTF_T_DVB_DEMUX:
51 return "demux";
52 case MEDIA_INTF_T_DVB_DVR:
53 return "DVR";
54 case MEDIA_INTF_T_DVB_CA:
55 return "CA";
56 case MEDIA_INTF_T_DVB_NET:
57 return "dvbnet";
58 case MEDIA_INTF_T_V4L_VIDEO:
59 return "video";
60 case MEDIA_INTF_T_V4L_VBI:
61 return "vbi";
62 case MEDIA_INTF_T_V4L_RADIO:
63 return "radio";
64 case MEDIA_INTF_T_V4L_SUBDEV:
65 return "v4l2-subdev";
66 case MEDIA_INTF_T_V4L_SWRADIO:
67 return "swradio";
68 default:
69 return "unknown-intf";
70 }
71};
72
Mauro Carvalho Chehab1fc25d32015-12-11 12:14:58 -020073/**
Sakari Ailusc8d54cd2015-12-16 11:44:32 -020074 * __media_entity_enum_init - Initialise an entity enumeration
75 *
76 * @ent_enum: Entity enumeration to be initialised
77 * @idx_max: Maximum number of entities in the enumeration
78 *
79 * Returns zero on success or a negative error code.
80 */
81__must_check int __media_entity_enum_init(struct media_entity_enum *ent_enum,
82 int idx_max)
83{
Sakari Ailus030e89e2015-12-16 11:32:36 -020084 ent_enum->bmap = kcalloc(DIV_ROUND_UP(idx_max, BITS_PER_LONG),
85 sizeof(long), GFP_KERNEL);
86 if (!ent_enum->bmap)
87 return -ENOMEM;
Sakari Ailusc8d54cd2015-12-16 11:44:32 -020088
89 bitmap_zero(ent_enum->bmap, idx_max);
90 ent_enum->idx_max = idx_max;
91
92 return 0;
93}
94EXPORT_SYMBOL_GPL(__media_entity_enum_init);
95
96/**
97 * media_entity_enum_cleanup - Release resources of an entity enumeration
98 *
99 * @e: Entity enumeration to be released
100 */
101void media_entity_enum_cleanup(struct media_entity_enum *ent_enum)
102{
Sakari Ailus030e89e2015-12-16 11:32:36 -0200103 kfree(ent_enum->bmap);
Sakari Ailusc8d54cd2015-12-16 11:44:32 -0200104}
105EXPORT_SYMBOL_GPL(media_entity_enum_cleanup);
106
107/**
Mauro Carvalho Chehab1fc25d32015-12-11 12:14:58 -0200108 * dev_dbg_obj - Prints in debug mode a change on some object
109 *
110 * @event_name: Name of the event to report. Could be __func__
111 * @gobj: Pointer to the object
112 *
113 * Enabled only if DEBUG or CONFIG_DYNAMIC_DEBUG. Otherwise, it
114 * won't produce any code.
115 */
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300116static void dev_dbg_obj(const char *event_name, struct media_gobj *gobj)
117{
118#if defined(DEBUG) || defined (CONFIG_DYNAMIC_DEBUG)
119 switch (media_type(gobj)) {
120 case MEDIA_GRAPH_ENTITY:
121 dev_dbg(gobj->mdev->dev,
122 "%s: id 0x%08x entity#%d: '%s'\n",
123 event_name, gobj->id, media_localid(gobj),
124 gobj_to_entity(gobj)->name);
125 break;
126 case MEDIA_GRAPH_LINK:
127 {
128 struct media_link *link = gobj_to_link(gobj);
129
130 dev_dbg(gobj->mdev->dev,
Mauro Carvalho Chehab3c0e2662015-08-21 08:45:34 -0300131 "%s: id 0x%08x link#%d: %s#%d ==> %s#%d\n",
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300132 event_name, gobj->id, media_localid(gobj),
133
Mauro Carvalho Chehab3c0e2662015-08-21 08:45:34 -0300134 gobj_type(media_type(link->gobj0)),
135 media_localid(link->gobj0),
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300136
Mauro Carvalho Chehab3c0e2662015-08-21 08:45:34 -0300137 gobj_type(media_type(link->gobj1)),
138 media_localid(link->gobj1));
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300139 break;
140 }
141 case MEDIA_GRAPH_PAD:
142 {
143 struct media_pad *pad = gobj_to_pad(gobj);
144
145 dev_dbg(gobj->mdev->dev,
Mauro Carvalho Chehab6c24d462015-08-21 18:26:42 -0300146 "%s: id 0x%08x %s%spad#%d: '%s':%d\n",
147 event_name, gobj->id,
148 pad->flags & MEDIA_PAD_FL_SINK ? " sink " : "",
149 pad->flags & MEDIA_PAD_FL_SOURCE ? "source " : "",
150 media_localid(gobj),
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300151 pad->entity->name, pad->index);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300152 break;
153 }
154 case MEDIA_GRAPH_INTF_DEVNODE:
155 {
156 struct media_interface *intf = gobj_to_intf(gobj);
157 struct media_intf_devnode *devnode = intf_to_devnode(intf);
158
159 dev_dbg(gobj->mdev->dev,
160 "%s: id 0x%08x intf_devnode#%d: %s - major: %d, minor: %d\n",
161 event_name, gobj->id, media_localid(gobj),
162 intf_type(intf),
163 devnode->major, devnode->minor);
164 break;
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300165 }
166 }
167#endif
168}
169
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200170void media_gobj_create(struct media_device *mdev,
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300171 enum media_gobj_type type,
172 struct media_gobj *gobj)
173{
Mauro Carvalho Chehab8f6d3682015-08-19 20:18:35 -0300174 BUG_ON(!mdev);
175
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300176 gobj->mdev = mdev;
177
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300178 /* Create a per-type unique object ID */
179 switch (type) {
180 case MEDIA_GRAPH_ENTITY:
181 gobj->id = media_gobj_gen_id(type, ++mdev->entity_id);
Mauro Carvalho Chehab05bfa9f2015-08-23 07:51:33 -0300182 list_add_tail(&gobj->list, &mdev->entities);
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300183 break;
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -0300184 case MEDIA_GRAPH_PAD:
185 gobj->id = media_gobj_gen_id(type, ++mdev->pad_id);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300186 list_add_tail(&gobj->list, &mdev->pads);
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -0300187 break;
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300188 case MEDIA_GRAPH_LINK:
189 gobj->id = media_gobj_gen_id(type, ++mdev->link_id);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300190 list_add_tail(&gobj->list, &mdev->links);
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300191 break;
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300192 case MEDIA_GRAPH_INTF_DEVNODE:
193 gobj->id = media_gobj_gen_id(type, ++mdev->intf_devnode_id);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300194 list_add_tail(&gobj->list, &mdev->interfaces);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300195 break;
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300196 }
Mauro Carvalho Chehab2521fda2015-08-23 09:40:26 -0300197
198 mdev->topology_version++;
199
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300200 dev_dbg_obj(__func__, gobj);
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300201}
202
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200203void media_gobj_destroy(struct media_gobj *gobj)
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300204{
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300205 dev_dbg_obj(__func__, gobj);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300206
Mauro Carvalho Chehab2521fda2015-08-23 09:40:26 -0300207 gobj->mdev->topology_version++;
208
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300209 /* Remove the object from mdev list */
210 list_del(&gobj->list);
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300211}
212
Mauro Carvalho Chehab1fc25d32015-12-11 12:14:58 -0200213int media_entity_pads_init(struct media_entity *entity, u16 num_pads,
214 struct media_pad *pads)
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300215{
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300216 struct media_device *mdev = entity->graph_obj.mdev;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300217 unsigned int i;
218
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300219 entity->num_pads = num_pads;
220 entity->pads = pads;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300221
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300222 if (mdev)
223 spin_lock(&mdev->lock);
224
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300225 for (i = 0; i < num_pads; i++) {
226 pads[i].entity = entity;
227 pads[i].index = i;
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300228 if (mdev)
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200229 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300230 &entity->pads[i].graph_obj);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300231 }
232
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300233 if (mdev)
234 spin_unlock(&mdev->lock);
235
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300236 return 0;
237}
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -0200238EXPORT_SYMBOL_GPL(media_entity_pads_init);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300239
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300240/* -----------------------------------------------------------------------------
241 * Graph traversal
242 */
243
244static struct media_entity *
245media_entity_other(struct media_entity *entity, struct media_link *link)
246{
247 if (link->source->entity == entity)
248 return link->sink->entity;
249 else
250 return link->source->entity;
251}
252
253/* push an entity to traversal stack */
254static void stack_push(struct media_entity_graph *graph,
255 struct media_entity *entity)
256{
257 if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) {
258 WARN_ON(1);
259 return;
260 }
261 graph->top++;
Javier Martinez Canillas313895f2015-12-11 15:16:36 -0200262 graph->stack[graph->top].link = entity->links.next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300263 graph->stack[graph->top].entity = entity;
264}
265
266static struct media_entity *stack_pop(struct media_entity_graph *graph)
267{
268 struct media_entity *entity;
269
270 entity = graph->stack[graph->top].entity;
271 graph->top--;
272
273 return entity;
274}
275
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300276#define link_top(en) ((en)->stack[(en)->top].link)
277#define stack_top(en) ((en)->stack[(en)->top].entity)
278
Sakari Ailus0798ce42015-12-16 11:32:37 -0200279/*
280 * TODO: Get rid of this.
281 */
282#define MEDIA_ENTITY_MAX_PADS 63
283
Sakari Ailuse03d2202015-12-16 11:32:22 -0200284/**
285 * media_entity_graph_walk_init - Allocate resources for graph walk
286 * @graph: Media graph structure that will be used to walk the graph
287 * @mdev: Media device
288 *
289 * Reserve resources for graph walk in media device's current
290 * state. The memory must be released using
291 * media_entity_graph_walk_free().
292 *
293 * Returns error on failure, zero on success.
294 */
295__must_check int media_entity_graph_walk_init(
296 struct media_entity_graph *graph, struct media_device *mdev)
297{
Sakari Ailus29d8da02015-12-16 11:32:28 -0200298 return media_entity_enum_init(&graph->ent_enum, mdev);
Sakari Ailuse03d2202015-12-16 11:32:22 -0200299}
300EXPORT_SYMBOL_GPL(media_entity_graph_walk_init);
301
302/**
303 * media_entity_graph_walk_cleanup - Release resources related to graph walking
304 * @graph: Media graph structure that was used to walk the graph
305 */
306void media_entity_graph_walk_cleanup(struct media_entity_graph *graph)
307{
Sakari Ailus29d8da02015-12-16 11:32:28 -0200308 media_entity_enum_cleanup(&graph->ent_enum);
Sakari Ailuse03d2202015-12-16 11:32:22 -0200309}
310EXPORT_SYMBOL_GPL(media_entity_graph_walk_cleanup);
311
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300312void media_entity_graph_walk_start(struct media_entity_graph *graph,
313 struct media_entity *entity)
314{
Sakari Ailus29d8da02015-12-16 11:32:28 -0200315 media_entity_enum_zero(&graph->ent_enum);
316 media_entity_enum_set(&graph->ent_enum, entity);
317
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300318 graph->top = 0;
319 graph->stack[graph->top].entity = NULL;
320 stack_push(graph, entity);
321}
322EXPORT_SYMBOL_GPL(media_entity_graph_walk_start);
323
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300324struct media_entity *
325media_entity_graph_walk_next(struct media_entity_graph *graph)
326{
327 if (stack_top(graph) == NULL)
328 return NULL;
329
330 /*
331 * Depth first search. Push entity to stack and continue from
332 * top of the stack until no more entities on the level can be
333 * found.
334 */
Javier Martinez Canillas313895f2015-12-11 15:16:36 -0200335 while (link_top(graph) != &stack_top(graph)->links) {
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300336 struct media_entity *entity = stack_top(graph);
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300337 struct media_link *link;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300338 struct media_entity *next;
339
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300340 link = list_entry(link_top(graph), typeof(*link), list);
341
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300342 /* The link is not enabled so we do not follow. */
343 if (!(link->flags & MEDIA_LNK_FL_ENABLED)) {
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300344 link_top(graph) = link_top(graph)->next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300345 continue;
346 }
347
348 /* Get the entity in the other end of the link . */
349 next = media_entity_other(entity, link);
350
Laurent Pinchart5c7b25b2013-06-07 12:45:11 -0300351 /* Has the entity already been visited? */
Sakari Ailus29d8da02015-12-16 11:32:28 -0200352 if (media_entity_enum_test_and_set(&graph->ent_enum, next)) {
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300353 link_top(graph) = link_top(graph)->next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300354 continue;
355 }
356
357 /* Push the new entity to stack and start over. */
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300358 link_top(graph) = link_top(graph)->next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300359 stack_push(graph, next);
360 }
361
362 return stack_pop(graph);
363}
364EXPORT_SYMBOL_GPL(media_entity_graph_walk_next);
365
366/* -----------------------------------------------------------------------------
Laurent Pincharte02188c2010-08-25 09:00:41 -0300367 * Pipeline management
368 */
369
Sakari Ailusaf88be32012-01-11 06:25:15 -0300370__must_check int media_entity_pipeline_start(struct media_entity *entity,
371 struct media_pipeline *pipe)
Laurent Pincharte02188c2010-08-25 09:00:41 -0300372{
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300373 struct media_device *mdev = entity->graph_obj.mdev;
Sakari Ailus5dd87752015-12-16 11:32:21 -0200374 struct media_entity_graph *graph = &pipe->graph;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300375 struct media_entity *entity_err = entity;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300376 struct media_link *link;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300377 int ret;
Laurent Pincharte02188c2010-08-25 09:00:41 -0300378
379 mutex_lock(&mdev->graph_mutex);
380
Sakari Ailus74a413302015-12-16 11:32:29 -0200381 if (!pipe->streaming_count++) {
382 ret = media_entity_graph_walk_init(&pipe->graph, mdev);
383 if (ret)
384 goto error_graph_walk_start;
Sakari Ailus106b9902015-12-16 15:32:23 +0200385 }
386
387 media_entity_graph_walk_start(&pipe->graph, entity);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300388
Sakari Ailus5dd87752015-12-16 11:32:21 -0200389 while ((entity = media_entity_graph_walk_next(graph))) {
Mauro Carvalho Chehabef69ee12015-10-01 18:07:53 -0300390 DECLARE_BITMAP(active, MEDIA_ENTITY_MAX_PADS);
391 DECLARE_BITMAP(has_no_links, MEDIA_ENTITY_MAX_PADS);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300392
Laurent Pincharte02188c2010-08-25 09:00:41 -0300393 entity->stream_count++;
Sakari Ailus8aaf62b2015-11-29 17:20:02 -0200394
395 if (WARN_ON(entity->pipe && entity->pipe != pipe)) {
396 ret = -EBUSY;
397 goto error;
398 }
399
Laurent Pincharte02188c2010-08-25 09:00:41 -0300400 entity->pipe = pipe;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300401
402 /* Already streaming --- no need to check. */
403 if (entity->stream_count > 1)
404 continue;
405
406 if (!entity->ops || !entity->ops->link_validate)
407 continue;
408
Sakari Ailusde49c282013-10-13 08:00:26 -0300409 bitmap_zero(active, entity->num_pads);
410 bitmap_fill(has_no_links, entity->num_pads);
411
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300412 list_for_each_entry(link, &entity->links, list) {
Sakari Ailusde49c282013-10-13 08:00:26 -0300413 struct media_pad *pad = link->sink->entity == entity
414 ? link->sink : link->source;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300415
Sakari Ailusde49c282013-10-13 08:00:26 -0300416 /* Mark that a pad is connected by a link. */
417 bitmap_clear(has_no_links, pad->index, 1);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300418
Sakari Ailusde49c282013-10-13 08:00:26 -0300419 /*
420 * Pads that either do not need to connect or
421 * are connected through an enabled link are
422 * fine.
423 */
424 if (!(pad->flags & MEDIA_PAD_FL_MUST_CONNECT) ||
425 link->flags & MEDIA_LNK_FL_ENABLED)
426 bitmap_set(active, pad->index, 1);
427
428 /*
429 * Link validation will only take place for
430 * sink ends of the link that are enabled.
431 */
432 if (link->sink != pad ||
433 !(link->flags & MEDIA_LNK_FL_ENABLED))
Sakari Ailusaf88be32012-01-11 06:25:15 -0300434 continue;
435
436 ret = entity->ops->link_validate(link);
Sakari Ailusfab9d302014-10-28 20:35:04 -0300437 if (ret < 0 && ret != -ENOIOCTLCMD) {
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300438 dev_dbg(entity->graph_obj.mdev->dev,
Sakari Ailusfab9d302014-10-28 20:35:04 -0300439 "link validation failed for \"%s\":%u -> \"%s\":%u, error %d\n",
Sakari Ailus823ea2a2015-02-12 11:43:11 -0200440 link->source->entity->name,
441 link->source->index,
442 entity->name, link->sink->index, ret);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300443 goto error;
Sakari Ailusfab9d302014-10-28 20:35:04 -0300444 }
Sakari Ailusaf88be32012-01-11 06:25:15 -0300445 }
Sakari Ailusde49c282013-10-13 08:00:26 -0300446
447 /* Either no links or validated links are fine. */
448 bitmap_or(active, active, has_no_links, entity->num_pads);
449
450 if (!bitmap_full(active, entity->num_pads)) {
451 ret = -EPIPE;
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300452 dev_dbg(entity->graph_obj.mdev->dev,
Sakari Ailusfab9d302014-10-28 20:35:04 -0300453 "\"%s\":%u must be connected by an enabled link\n",
454 entity->name,
Sakari Ailus094f1ca2014-11-03 17:55:51 -0300455 (unsigned)find_first_zero_bit(
456 active, entity->num_pads));
Sakari Ailusde49c282013-10-13 08:00:26 -0300457 goto error;
458 }
Laurent Pincharte02188c2010-08-25 09:00:41 -0300459 }
460
461 mutex_unlock(&mdev->graph_mutex);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300462
463 return 0;
464
465error:
466 /*
467 * Link validation on graph failed. We revert what we did and
468 * return the error.
469 */
Sakari Ailus5dd87752015-12-16 11:32:21 -0200470 media_entity_graph_walk_start(graph, entity_err);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300471
Sakari Ailus5dd87752015-12-16 11:32:21 -0200472 while ((entity_err = media_entity_graph_walk_next(graph))) {
Sakari Ailusaf88be32012-01-11 06:25:15 -0300473 entity_err->stream_count--;
474 if (entity_err->stream_count == 0)
475 entity_err->pipe = NULL;
476
477 /*
478 * We haven't increased stream_count further than this
479 * so we quit here.
480 */
481 if (entity_err == entity)
482 break;
483 }
484
Sakari Ailus74a413302015-12-16 11:32:29 -0200485error_graph_walk_start:
486 if (!--pipe->streaming_count)
487 media_entity_graph_walk_cleanup(graph);
Sakari Ailus106b9902015-12-16 15:32:23 +0200488
Sakari Ailusaf88be32012-01-11 06:25:15 -0300489 mutex_unlock(&mdev->graph_mutex);
490
491 return ret;
Laurent Pincharte02188c2010-08-25 09:00:41 -0300492}
493EXPORT_SYMBOL_GPL(media_entity_pipeline_start);
494
Laurent Pincharte02188c2010-08-25 09:00:41 -0300495void media_entity_pipeline_stop(struct media_entity *entity)
496{
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300497 struct media_device *mdev = entity->graph_obj.mdev;
Sakari Ailus5dd87752015-12-16 11:32:21 -0200498 struct media_entity_graph *graph = &entity->pipe->graph;
Sakari Ailus74a413302015-12-16 11:32:29 -0200499 struct media_pipeline *pipe = entity->pipe;
Laurent Pincharte02188c2010-08-25 09:00:41 -0300500
501 mutex_lock(&mdev->graph_mutex);
502
Sakari Ailus74a413302015-12-16 11:32:29 -0200503 WARN_ON(!pipe->streaming_count);
Sakari Ailus5dd87752015-12-16 11:32:21 -0200504 media_entity_graph_walk_start(graph, entity);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300505
Sakari Ailus5dd87752015-12-16 11:32:21 -0200506 while ((entity = media_entity_graph_walk_next(graph))) {
Laurent Pincharte02188c2010-08-25 09:00:41 -0300507 entity->stream_count--;
508 if (entity->stream_count == 0)
509 entity->pipe = NULL;
510 }
511
Sakari Ailus74a413302015-12-16 11:32:29 -0200512 if (!--pipe->streaming_count)
513 media_entity_graph_walk_cleanup(graph);
Sakari Ailus106b9902015-12-16 15:32:23 +0200514
Laurent Pincharte02188c2010-08-25 09:00:41 -0300515 mutex_unlock(&mdev->graph_mutex);
516}
517EXPORT_SYMBOL_GPL(media_entity_pipeline_stop);
518
519/* -----------------------------------------------------------------------------
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300520 * Module use count
521 */
522
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300523struct media_entity *media_entity_get(struct media_entity *entity)
524{
525 if (entity == NULL)
526 return NULL;
527
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300528 if (entity->graph_obj.mdev->dev &&
529 !try_module_get(entity->graph_obj.mdev->dev->driver->owner))
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300530 return NULL;
531
532 return entity;
533}
534EXPORT_SYMBOL_GPL(media_entity_get);
535
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300536void media_entity_put(struct media_entity *entity)
537{
538 if (entity == NULL)
539 return;
540
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300541 if (entity->graph_obj.mdev->dev)
542 module_put(entity->graph_obj.mdev->dev->driver->owner);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300543}
544EXPORT_SYMBOL_GPL(media_entity_put);
545
546/* -----------------------------------------------------------------------------
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300547 * Links management
548 */
549
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300550static struct media_link *media_add_link(struct list_head *head)
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300551{
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300552 struct media_link *link;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300553
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300554 link = kzalloc(sizeof(*link), GFP_KERNEL);
555 if (link == NULL)
556 return NULL;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300557
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300558 list_add_tail(&link->list, head);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300559
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300560 return link;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300561}
562
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300563static void __media_entity_remove_link(struct media_entity *entity,
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200564 struct media_link *link)
565{
566 struct media_link *rlink, *tmp;
567 struct media_entity *remote;
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200568
569 if (link->source->entity == entity)
570 remote = link->sink->entity;
571 else
572 remote = link->source->entity;
573
574 list_for_each_entry_safe(rlink, tmp, &remote->links, list) {
Mauro Carvalho Chehab58f69ee2015-12-11 11:25:23 -0200575 if (rlink != link->reverse)
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200576 continue;
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200577
578 if (link->source->entity == entity)
579 remote->num_backlinks--;
580
581 /* Remove the remote link */
582 list_del(&rlink->list);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200583 media_gobj_destroy(&rlink->graph_obj);
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200584 kfree(rlink);
585
586 if (--remote->num_links == 0)
587 break;
588 }
589 list_del(&link->list);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200590 media_gobj_destroy(&link->graph_obj);
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200591 kfree(link);
592}
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300593
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300594int
Mauro Carvalho Chehab8df00a12015-08-07 08:14:38 -0300595media_create_pad_link(struct media_entity *source, u16 source_pad,
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300596 struct media_entity *sink, u16 sink_pad, u32 flags)
597{
598 struct media_link *link;
599 struct media_link *backlink;
600
601 BUG_ON(source == NULL || sink == NULL);
602 BUG_ON(source_pad >= source->num_pads);
603 BUG_ON(sink_pad >= sink->num_pads);
604
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300605 link = media_add_link(&source->links);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300606 if (link == NULL)
607 return -ENOMEM;
608
609 link->source = &source->pads[source_pad];
610 link->sink = &sink->pads[sink_pad];
Mauro Carvalho Chehab82ae2a52015-12-11 18:09:13 -0200611 link->flags = flags & ~MEDIA_LNK_FL_INTERFACE_LINK;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300612
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300613 /* Initialize graph object embedded at the new link */
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200614 media_gobj_create(source->graph_obj.mdev, MEDIA_GRAPH_LINK,
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300615 &link->graph_obj);
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300616
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300617 /* Create the backlink. Backlinks are used to help graph traversal and
618 * are not reported to userspace.
619 */
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300620 backlink = media_add_link(&sink->links);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300621 if (backlink == NULL) {
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300622 __media_entity_remove_link(source, link);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300623 return -ENOMEM;
624 }
625
626 backlink->source = &source->pads[source_pad];
627 backlink->sink = &sink->pads[sink_pad];
628 backlink->flags = flags;
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300629 backlink->is_backlink = true;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300630
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300631 /* Initialize graph object embedded at the new link */
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200632 media_gobj_create(sink->graph_obj.mdev, MEDIA_GRAPH_LINK,
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300633 &backlink->graph_obj);
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300634
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300635 link->reverse = backlink;
636 backlink->reverse = link;
637
638 sink->num_backlinks++;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300639 sink->num_links++;
640 source->num_links++;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300641
642 return 0;
643}
Mauro Carvalho Chehab8df00a12015-08-07 08:14:38 -0300644EXPORT_SYMBOL_GPL(media_create_pad_link);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300645
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300646void __media_entity_remove_links(struct media_entity *entity)
647{
648 struct media_link *link, *tmp;
649
650 list_for_each_entry_safe(link, tmp, &entity->links, list)
651 __media_entity_remove_link(entity, link);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300652
653 entity->num_links = 0;
654 entity->num_backlinks = 0;
655}
656EXPORT_SYMBOL_GPL(__media_entity_remove_links);
657
658void media_entity_remove_links(struct media_entity *entity)
659{
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200660 struct media_device *mdev = entity->graph_obj.mdev;
661
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300662 /* Do nothing if the entity is not registered. */
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200663 if (mdev == NULL)
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300664 return;
665
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200666 spin_lock(&mdev->lock);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300667 __media_entity_remove_links(entity);
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200668 spin_unlock(&mdev->lock);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300669}
670EXPORT_SYMBOL_GPL(media_entity_remove_links);
671
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300672static int __media_entity_setup_link_notify(struct media_link *link, u32 flags)
673{
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300674 int ret;
675
676 /* Notify both entities. */
677 ret = media_entity_call(link->source->entity, link_setup,
678 link->source, link->sink, flags);
679 if (ret < 0 && ret != -ENOIOCTLCMD)
680 return ret;
681
682 ret = media_entity_call(link->sink->entity, link_setup,
683 link->sink, link->source, flags);
684 if (ret < 0 && ret != -ENOIOCTLCMD) {
685 media_entity_call(link->source->entity, link_setup,
686 link->source, link->sink, link->flags);
687 return ret;
688 }
689
Laurent Pinchart7a6f0b22011-03-11 11:34:35 -0300690 link->flags = flags;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300691 link->reverse->flags = link->flags;
692
693 return 0;
694}
695
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300696int __media_entity_setup_link(struct media_link *link, u32 flags)
697{
Laurent Pinchart7a6f0b22011-03-11 11:34:35 -0300698 const u32 mask = MEDIA_LNK_FL_ENABLED;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300699 struct media_device *mdev;
700 struct media_entity *source, *sink;
701 int ret = -EBUSY;
702
703 if (link == NULL)
704 return -EINVAL;
705
Laurent Pinchart7a6f0b22011-03-11 11:34:35 -0300706 /* The non-modifiable link flags must not be modified. */
707 if ((link->flags & ~mask) != (flags & ~mask))
708 return -EINVAL;
709
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300710 if (link->flags & MEDIA_LNK_FL_IMMUTABLE)
711 return link->flags == flags ? 0 : -EINVAL;
712
713 if (link->flags == flags)
714 return 0;
715
716 source = link->source->entity;
717 sink = link->sink->entity;
718
Laurent Pincharte02188c2010-08-25 09:00:41 -0300719 if (!(link->flags & MEDIA_LNK_FL_DYNAMIC) &&
720 (source->stream_count || sink->stream_count))
721 return -EBUSY;
722
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300723 mdev = source->graph_obj.mdev;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300724
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -0300725 if (mdev->link_notify) {
726 ret = mdev->link_notify(link, flags,
727 MEDIA_DEV_NOTIFY_PRE_LINK_CH);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300728 if (ret < 0)
729 return ret;
730 }
731
732 ret = __media_entity_setup_link_notify(link, flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300733
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -0300734 if (mdev->link_notify)
735 mdev->link_notify(link, flags, MEDIA_DEV_NOTIFY_POST_LINK_CH);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300736
737 return ret;
738}
739
740int media_entity_setup_link(struct media_link *link, u32 flags)
741{
742 int ret;
743
Mauro Carvalho Chehab5c883ed2015-12-15 07:58:18 -0200744 mutex_lock(&link->graph_obj.mdev->graph_mutex);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300745 ret = __media_entity_setup_link(link, flags);
Mauro Carvalho Chehab5c883ed2015-12-15 07:58:18 -0200746 mutex_unlock(&link->graph_obj.mdev->graph_mutex);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300747
748 return ret;
749}
750EXPORT_SYMBOL_GPL(media_entity_setup_link);
751
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300752struct media_link *
753media_entity_find_link(struct media_pad *source, struct media_pad *sink)
754{
755 struct media_link *link;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300756
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300757 list_for_each_entry(link, &source->entity->links, list) {
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300758 if (link->source->entity == source->entity &&
759 link->source->index == source->index &&
760 link->sink->entity == sink->entity &&
761 link->sink->index == sink->index)
762 return link;
763 }
764
765 return NULL;
766}
767EXPORT_SYMBOL_GPL(media_entity_find_link);
768
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300769struct media_pad *media_entity_remote_pad(struct media_pad *pad)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300770{
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300771 struct media_link *link;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300772
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300773 list_for_each_entry(link, &pad->entity->links, list) {
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300774 if (!(link->flags & MEDIA_LNK_FL_ENABLED))
775 continue;
776
777 if (link->source == pad)
778 return link->sink;
779
780 if (link->sink == pad)
781 return link->source;
782 }
783
784 return NULL;
785
786}
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300787EXPORT_SYMBOL_GPL(media_entity_remote_pad);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300788
Mauro Carvalho Chehab1283f842015-08-28 15:43:36 -0300789static void media_interface_init(struct media_device *mdev,
790 struct media_interface *intf,
791 u32 gobj_type,
792 u32 intf_type, u32 flags)
793{
794 intf->type = intf_type;
795 intf->flags = flags;
796 INIT_LIST_HEAD(&intf->links);
797
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200798 media_gobj_create(mdev, gobj_type, &intf->graph_obj);
Mauro Carvalho Chehab1283f842015-08-28 15:43:36 -0300799}
800
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300801/* Functions related to the media interface via device nodes */
802
803struct media_intf_devnode *media_devnode_create(struct media_device *mdev,
804 u32 type, u32 flags,
Mauro Carvalho Chehab0b3b72df92015-09-09 08:19:25 -0300805 u32 major, u32 minor)
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300806{
807 struct media_intf_devnode *devnode;
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300808
Mauro Carvalho Chehab0b3b72df92015-09-09 08:19:25 -0300809 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300810 if (!devnode)
811 return NULL;
812
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300813 devnode->major = major;
814 devnode->minor = minor;
815
Mauro Carvalho Chehab1283f842015-08-28 15:43:36 -0300816 media_interface_init(mdev, &devnode->intf, MEDIA_GRAPH_INTF_DEVNODE,
817 type, flags);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300818
819 return devnode;
820}
821EXPORT_SYMBOL_GPL(media_devnode_create);
822
823void media_devnode_remove(struct media_intf_devnode *devnode)
824{
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300825 media_remove_intf_links(&devnode->intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200826 media_gobj_destroy(&devnode->intf.graph_obj);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300827 kfree(devnode);
828}
829EXPORT_SYMBOL_GPL(media_devnode_remove);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300830
831struct media_link *media_create_intf_link(struct media_entity *entity,
832 struct media_interface *intf,
833 u32 flags)
834{
835 struct media_link *link;
836
837 link = media_add_link(&intf->links);
838 if (link == NULL)
839 return NULL;
840
841 link->intf = intf;
842 link->entity = entity;
Mauro Carvalho Chehab82ae2a52015-12-11 18:09:13 -0200843 link->flags = flags | MEDIA_LNK_FL_INTERFACE_LINK;
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300844
845 /* Initialize graph object embedded at the new link */
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200846 media_gobj_create(intf->graph_obj.mdev, MEDIA_GRAPH_LINK,
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300847 &link->graph_obj);
848
849 return link;
850}
851EXPORT_SYMBOL_GPL(media_create_intf_link);
852
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300853void __media_remove_intf_link(struct media_link *link)
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300854{
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300855 list_del(&link->list);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200856 media_gobj_destroy(&link->graph_obj);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300857 kfree(link);
858}
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300859EXPORT_SYMBOL_GPL(__media_remove_intf_link);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300860
861void media_remove_intf_link(struct media_link *link)
862{
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200863 struct media_device *mdev = link->graph_obj.mdev;
864
865 /* Do nothing if the intf is not registered. */
866 if (mdev == NULL)
867 return;
868
869 spin_lock(&mdev->lock);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300870 __media_remove_intf_link(link);
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200871 spin_unlock(&mdev->lock);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300872}
873EXPORT_SYMBOL_GPL(media_remove_intf_link);
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300874
875void __media_remove_intf_links(struct media_interface *intf)
876{
877 struct media_link *link, *tmp;
878
879 list_for_each_entry_safe(link, tmp, &intf->links, list)
880 __media_remove_intf_link(link);
881
882}
883EXPORT_SYMBOL_GPL(__media_remove_intf_links);
884
885void media_remove_intf_links(struct media_interface *intf)
886{
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200887 struct media_device *mdev = intf->graph_obj.mdev;
888
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300889 /* Do nothing if the intf is not registered. */
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200890 if (mdev == NULL)
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300891 return;
892
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200893 spin_lock(&mdev->lock);
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300894 __media_remove_intf_links(intf);
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200895 spin_unlock(&mdev->lock);
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300896}
897EXPORT_SYMBOL_GPL(media_remove_intf_links);