blob: f9f723f5e4f06bdcb1c306e61c597bb187bcfb49 [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:
Shuah Khan66c1db12016-03-04 18:14:05 -030049 return "dvb-frontend";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030050 case MEDIA_INTF_T_DVB_DEMUX:
Shuah Khan66c1db12016-03-04 18:14:05 -030051 return "dvb-demux";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030052 case MEDIA_INTF_T_DVB_DVR:
Shuah Khan66c1db12016-03-04 18:14:05 -030053 return "dvb-dvr";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030054 case MEDIA_INTF_T_DVB_CA:
Shuah Khan66c1db12016-03-04 18:14:05 -030055 return "dvb-ca";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030056 case MEDIA_INTF_T_DVB_NET:
Shuah Khan66c1db12016-03-04 18:14:05 -030057 return "dvb-net";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030058 case MEDIA_INTF_T_V4L_VIDEO:
Shuah Khan66c1db12016-03-04 18:14:05 -030059 return "v4l-video";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030060 case MEDIA_INTF_T_V4L_VBI:
Shuah Khan66c1db12016-03-04 18:14:05 -030061 return "v4l-vbi";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030062 case MEDIA_INTF_T_V4L_RADIO:
Shuah Khan66c1db12016-03-04 18:14:05 -030063 return "v4l-radio";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030064 case MEDIA_INTF_T_V4L_SUBDEV:
Shuah Khan66c1db12016-03-04 18:14:05 -030065 return "v4l-subdev";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030066 case MEDIA_INTF_T_V4L_SWRADIO:
Shuah Khan66c1db12016-03-04 18:14:05 -030067 return "v4l-swradio";
Nick Dyerb2fe22d2016-07-18 18:10:30 -030068 case MEDIA_INTF_T_V4L_TOUCH:
69 return "v4l-touch";
Shuah Khan5af557a2016-02-11 21:41:18 -020070 case MEDIA_INTF_T_ALSA_PCM_CAPTURE:
Shuah Khan66c1db12016-03-04 18:14:05 -030071 return "alsa-pcm-capture";
Shuah Khan5af557a2016-02-11 21:41:18 -020072 case MEDIA_INTF_T_ALSA_PCM_PLAYBACK:
Shuah Khan66c1db12016-03-04 18:14:05 -030073 return "alsa-pcm-playback";
Shuah Khan5af557a2016-02-11 21:41:18 -020074 case MEDIA_INTF_T_ALSA_CONTROL:
75 return "alsa-control";
76 case MEDIA_INTF_T_ALSA_COMPRESS:
Shuah Khan66c1db12016-03-04 18:14:05 -030077 return "alsa-compress";
Shuah Khan5af557a2016-02-11 21:41:18 -020078 case MEDIA_INTF_T_ALSA_RAWMIDI:
Shuah Khan66c1db12016-03-04 18:14:05 -030079 return "alsa-rawmidi";
Shuah Khan5af557a2016-02-11 21:41:18 -020080 case MEDIA_INTF_T_ALSA_HWDEP:
Shuah Khan66c1db12016-03-04 18:14:05 -030081 return "alsa-hwdep";
Shuah Khan5af557a2016-02-11 21:41:18 -020082 case MEDIA_INTF_T_ALSA_SEQUENCER:
Shuah Khan66c1db12016-03-04 18:14:05 -030083 return "alsa-sequencer";
Shuah Khan5af557a2016-02-11 21:41:18 -020084 case MEDIA_INTF_T_ALSA_TIMER:
Shuah Khan66c1db12016-03-04 18:14:05 -030085 return "alsa-timer";
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -030086 default:
87 return "unknown-intf";
88 }
89};
90
Sakari Ailusc8d54cd2015-12-16 11:44:32 -020091__must_check int __media_entity_enum_init(struct media_entity_enum *ent_enum,
92 int idx_max)
93{
Sakari Ailusf7b5dff2016-01-27 12:47:54 -020094 idx_max = ALIGN(idx_max, BITS_PER_LONG);
95 ent_enum->bmap = kcalloc(idx_max / BITS_PER_LONG, sizeof(long),
96 GFP_KERNEL);
Sakari Ailus030e89e2015-12-16 11:32:36 -020097 if (!ent_enum->bmap)
98 return -ENOMEM;
Sakari Ailusc8d54cd2015-12-16 11:44:32 -020099
100 bitmap_zero(ent_enum->bmap, idx_max);
101 ent_enum->idx_max = idx_max;
102
103 return 0;
104}
105EXPORT_SYMBOL_GPL(__media_entity_enum_init);
106
Sakari Ailusc8d54cd2015-12-16 11:44:32 -0200107void media_entity_enum_cleanup(struct media_entity_enum *ent_enum)
108{
Sakari Ailus030e89e2015-12-16 11:32:36 -0200109 kfree(ent_enum->bmap);
Sakari Ailusc8d54cd2015-12-16 11:44:32 -0200110}
111EXPORT_SYMBOL_GPL(media_entity_enum_cleanup);
112
113/**
Mauro Carvalho Chehab1fc25d32015-12-11 12:14:58 -0200114 * dev_dbg_obj - Prints in debug mode a change on some object
115 *
116 * @event_name: Name of the event to report. Could be __func__
117 * @gobj: Pointer to the object
118 *
119 * Enabled only if DEBUG or CONFIG_DYNAMIC_DEBUG. Otherwise, it
120 * won't produce any code.
121 */
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300122static void dev_dbg_obj(const char *event_name, struct media_gobj *gobj)
123{
124#if defined(DEBUG) || defined (CONFIG_DYNAMIC_DEBUG)
125 switch (media_type(gobj)) {
126 case MEDIA_GRAPH_ENTITY:
127 dev_dbg(gobj->mdev->dev,
Mauro Carvalho Chehab05b3b772015-12-16 14:28:01 -0200128 "%s id %u: entity '%s'\n",
129 event_name, media_id(gobj),
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300130 gobj_to_entity(gobj)->name);
131 break;
132 case MEDIA_GRAPH_LINK:
133 {
134 struct media_link *link = gobj_to_link(gobj);
135
136 dev_dbg(gobj->mdev->dev,
Mauro Carvalho Chehab05b3b772015-12-16 14:28:01 -0200137 "%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));
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300143 break;
144 }
145 case MEDIA_GRAPH_PAD:
146 {
147 struct media_pad *pad = gobj_to_pad(gobj);
148
149 dev_dbg(gobj->mdev->dev,
Mauro Carvalho Chehab05b3b772015-12-16 14:28:01 -0200150 "%s id %u: %s%spad '%s':%d\n",
151 event_name, media_id(gobj),
152 pad->flags & MEDIA_PAD_FL_SINK ? "sink " : "",
Mauro Carvalho Chehab6c24d462015-08-21 18:26:42 -0300153 pad->flags & MEDIA_PAD_FL_SOURCE ? "source " : "",
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300154 pad->entity->name, pad->index);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300155 break;
156 }
157 case MEDIA_GRAPH_INTF_DEVNODE:
158 {
159 struct media_interface *intf = gobj_to_intf(gobj);
160 struct media_intf_devnode *devnode = intf_to_devnode(intf);
161
162 dev_dbg(gobj->mdev->dev,
Mauro Carvalho Chehab05b3b772015-12-16 14:28:01 -0200163 "%s id %u: intf_devnode %s - major: %d, minor: %d\n",
164 event_name, media_id(gobj),
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300165 intf_type(intf),
166 devnode->major, devnode->minor);
167 break;
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300168 }
169 }
170#endif
171}
172
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200173void media_gobj_create(struct media_device *mdev,
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300174 enum media_gobj_type type,
175 struct media_gobj *gobj)
176{
Mauro Carvalho Chehab8f6d3682015-08-19 20:18:35 -0300177 BUG_ON(!mdev);
178
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300179 gobj->mdev = mdev;
180
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300181 /* Create a per-type unique object ID */
Mauro Carvalho Chehab05b3b772015-12-16 14:28:01 -0200182 gobj->id = media_gobj_gen_id(type, ++mdev->id);
183
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300184 switch (type) {
185 case MEDIA_GRAPH_ENTITY:
Mauro Carvalho Chehab05bfa9f2015-08-23 07:51:33 -0300186 list_add_tail(&gobj->list, &mdev->entities);
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300187 break;
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -0300188 case MEDIA_GRAPH_PAD:
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300189 list_add_tail(&gobj->list, &mdev->pads);
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -0300190 break;
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300191 case MEDIA_GRAPH_LINK:
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300192 list_add_tail(&gobj->list, &mdev->links);
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300193 break;
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300194 case MEDIA_GRAPH_INTF_DEVNODE:
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300195 list_add_tail(&gobj->list, &mdev->interfaces);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300196 break;
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -0300197 }
Mauro Carvalho Chehab2521fda2015-08-23 09:40:26 -0300198
199 mdev->topology_version++;
200
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300201 dev_dbg_obj(__func__, gobj);
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300202}
203
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200204void media_gobj_destroy(struct media_gobj *gobj)
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300205{
Mauro Carvalho Chehab39a956c2015-08-13 14:42:42 -0300206 dev_dbg_obj(__func__, gobj);
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300207
Max Kellermann67537432016-08-09 23:32:57 +0200208 /* Do nothing if the object is not linked. */
209 if (gobj->mdev == NULL)
210 return;
211
Mauro Carvalho Chehab2521fda2015-08-23 09:40:26 -0300212 gobj->mdev->topology_version++;
213
Mauro Carvalho Chehab9155d852015-08-23 08:00:33 -0300214 /* Remove the object from mdev list */
215 list_del(&gobj->list);
Max Kellermann67537432016-08-09 23:32:57 +0200216
217 gobj->mdev = NULL;
Mauro Carvalho Chehabec6e4c92015-08-25 10:28:36 -0300218}
219
Mauro Carvalho Chehab1fc25d32015-12-11 12:14:58 -0200220int media_entity_pads_init(struct media_entity *entity, u16 num_pads,
221 struct media_pad *pads)
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300222{
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300223 struct media_device *mdev = entity->graph_obj.mdev;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300224 unsigned int i;
225
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300226 entity->num_pads = num_pads;
227 entity->pads = pads;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300228
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300229 if (mdev)
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300230 mutex_lock(&mdev->graph_mutex);
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300231
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300232 for (i = 0; i < num_pads; i++) {
233 pads[i].entity = entity;
234 pads[i].index = i;
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300235 if (mdev)
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200236 media_gobj_create(mdev, MEDIA_GRAPH_PAD,
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300237 &entity->pads[i].graph_obj);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300238 }
239
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300240 if (mdev)
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300241 mutex_unlock(&mdev->graph_mutex);
Javier Martinez Canillasdb141a32015-09-08 14:10:56 -0300242
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300243 return 0;
244}
Mauro Carvalho Chehabab22e772015-12-11 07:44:40 -0200245EXPORT_SYMBOL_GPL(media_entity_pads_init);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300246
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300247/* -----------------------------------------------------------------------------
248 * Graph traversal
249 */
250
251static struct media_entity *
252media_entity_other(struct media_entity *entity, struct media_link *link)
253{
254 if (link->source->entity == entity)
255 return link->sink->entity;
256 else
257 return link->source->entity;
258}
259
260/* push an entity to traversal stack */
261static void stack_push(struct media_entity_graph *graph,
262 struct media_entity *entity)
263{
264 if (graph->top == MEDIA_ENTITY_ENUM_MAX_DEPTH - 1) {
265 WARN_ON(1);
266 return;
267 }
268 graph->top++;
Javier Martinez Canillas313895f2015-12-11 15:16:36 -0200269 graph->stack[graph->top].link = entity->links.next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300270 graph->stack[graph->top].entity = entity;
271}
272
273static struct media_entity *stack_pop(struct media_entity_graph *graph)
274{
275 struct media_entity *entity;
276
277 entity = graph->stack[graph->top].entity;
278 graph->top--;
279
280 return entity;
281}
282
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300283#define link_top(en) ((en)->stack[(en)->top].link)
284#define stack_top(en) ((en)->stack[(en)->top].entity)
285
Sakari Ailus0798ce42015-12-16 11:32:37 -0200286/*
287 * TODO: Get rid of this.
288 */
Mauro Carvalho Chehab430a6722015-12-16 15:18:25 -0200289#define MEDIA_ENTITY_MAX_PADS 512
Sakari Ailus0798ce42015-12-16 11:32:37 -0200290
Sakari Ailuse03d2202015-12-16 11:32:22 -0200291/**
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
295 *
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().
299 *
300 * Returns error on failure, zero on success.
301 */
302__must_check int media_entity_graph_walk_init(
303 struct media_entity_graph *graph, struct media_device *mdev)
304{
Sakari Ailus29d8da02015-12-16 11:32:28 -0200305 return media_entity_enum_init(&graph->ent_enum, mdev);
Sakari Ailuse03d2202015-12-16 11:32:22 -0200306}
307EXPORT_SYMBOL_GPL(media_entity_graph_walk_init);
308
309/**
310 * media_entity_graph_walk_cleanup - Release resources related to graph walking
311 * @graph: Media graph structure that was used to walk the graph
312 */
313void media_entity_graph_walk_cleanup(struct media_entity_graph *graph)
314{
Sakari Ailus29d8da02015-12-16 11:32:28 -0200315 media_entity_enum_cleanup(&graph->ent_enum);
Sakari Ailuse03d2202015-12-16 11:32:22 -0200316}
317EXPORT_SYMBOL_GPL(media_entity_graph_walk_cleanup);
318
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300319void media_entity_graph_walk_start(struct media_entity_graph *graph,
320 struct media_entity *entity)
321{
Sakari Ailus29d8da02015-12-16 11:32:28 -0200322 media_entity_enum_zero(&graph->ent_enum);
323 media_entity_enum_set(&graph->ent_enum, entity);
324
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300325 graph->top = 0;
326 graph->stack[graph->top].entity = NULL;
327 stack_push(graph, entity);
328}
329EXPORT_SYMBOL_GPL(media_entity_graph_walk_start);
330
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300331struct media_entity *
332media_entity_graph_walk_next(struct media_entity_graph *graph)
333{
334 if (stack_top(graph) == NULL)
335 return NULL;
336
337 /*
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
340 * found.
341 */
Javier Martinez Canillas313895f2015-12-11 15:16:36 -0200342 while (link_top(graph) != &stack_top(graph)->links) {
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300343 struct media_entity *entity = stack_top(graph);
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300344 struct media_link *link;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300345 struct media_entity *next;
346
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300347 link = list_entry(link_top(graph), typeof(*link), list);
348
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300349 /* The link is not enabled so we do not follow. */
350 if (!(link->flags & MEDIA_LNK_FL_ENABLED)) {
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300351 link_top(graph) = link_top(graph)->next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300352 continue;
353 }
354
355 /* Get the entity in the other end of the link . */
356 next = media_entity_other(entity, link);
357
Laurent Pinchart5c7b25b2013-06-07 12:45:11 -0300358 /* Has the entity already been visited? */
Sakari Ailus29d8da02015-12-16 11:32:28 -0200359 if (media_entity_enum_test_and_set(&graph->ent_enum, next)) {
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300360 link_top(graph) = link_top(graph)->next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300361 continue;
362 }
363
364 /* Push the new entity to stack and start over. */
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300365 link_top(graph) = link_top(graph)->next;
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300366 stack_push(graph, next);
367 }
368
369 return stack_pop(graph);
370}
371EXPORT_SYMBOL_GPL(media_entity_graph_walk_next);
372
373/* -----------------------------------------------------------------------------
Laurent Pincharte02188c2010-08-25 09:00:41 -0300374 * Pipeline management
375 */
376
Shuah Khanfb49f202016-02-11 21:41:24 -0200377__must_check int __media_entity_pipeline_start(struct media_entity *entity,
378 struct media_pipeline *pipe)
Laurent Pincharte02188c2010-08-25 09:00:41 -0300379{
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300380 struct media_device *mdev = entity->graph_obj.mdev;
Sakari Ailus5dd87752015-12-16 11:32:21 -0200381 struct media_entity_graph *graph = &pipe->graph;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300382 struct media_entity *entity_err = entity;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300383 struct media_link *link;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300384 int ret;
Laurent Pincharte02188c2010-08-25 09:00:41 -0300385
Sakari Ailus74a413302015-12-16 11:32:29 -0200386 if (!pipe->streaming_count++) {
387 ret = media_entity_graph_walk_init(&pipe->graph, mdev);
388 if (ret)
389 goto error_graph_walk_start;
Sakari Ailus106b9902015-12-16 15:32:23 +0200390 }
391
392 media_entity_graph_walk_start(&pipe->graph, entity);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300393
Sakari Ailus5dd87752015-12-16 11:32:21 -0200394 while ((entity = media_entity_graph_walk_next(graph))) {
Mauro Carvalho Chehabef69ee12015-10-01 18:07:53 -0300395 DECLARE_BITMAP(active, MEDIA_ENTITY_MAX_PADS);
396 DECLARE_BITMAP(has_no_links, MEDIA_ENTITY_MAX_PADS);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300397
Laurent Pincharte02188c2010-08-25 09:00:41 -0300398 entity->stream_count++;
Sakari Ailus8aaf62b2015-11-29 17:20:02 -0200399
400 if (WARN_ON(entity->pipe && entity->pipe != pipe)) {
401 ret = -EBUSY;
402 goto error;
403 }
404
Laurent Pincharte02188c2010-08-25 09:00:41 -0300405 entity->pipe = pipe;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300406
407 /* Already streaming --- no need to check. */
408 if (entity->stream_count > 1)
409 continue;
410
411 if (!entity->ops || !entity->ops->link_validate)
412 continue;
413
Sakari Ailusde49c282013-10-13 08:00:26 -0300414 bitmap_zero(active, entity->num_pads);
415 bitmap_fill(has_no_links, entity->num_pads);
416
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300417 list_for_each_entry(link, &entity->links, list) {
Sakari Ailusde49c282013-10-13 08:00:26 -0300418 struct media_pad *pad = link->sink->entity == entity
419 ? link->sink : link->source;
Sakari Ailusaf88be32012-01-11 06:25:15 -0300420
Sakari Ailusde49c282013-10-13 08:00:26 -0300421 /* Mark that a pad is connected by a link. */
422 bitmap_clear(has_no_links, pad->index, 1);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300423
Sakari Ailusde49c282013-10-13 08:00:26 -0300424 /*
425 * Pads that either do not need to connect or
426 * are connected through an enabled link are
427 * fine.
428 */
429 if (!(pad->flags & MEDIA_PAD_FL_MUST_CONNECT) ||
430 link->flags & MEDIA_LNK_FL_ENABLED)
431 bitmap_set(active, pad->index, 1);
432
433 /*
434 * Link validation will only take place for
435 * sink ends of the link that are enabled.
436 */
437 if (link->sink != pad ||
438 !(link->flags & MEDIA_LNK_FL_ENABLED))
Sakari Ailusaf88be32012-01-11 06:25:15 -0300439 continue;
440
441 ret = entity->ops->link_validate(link);
Sakari Ailusfab9d302014-10-28 20:35:04 -0300442 if (ret < 0 && ret != -ENOIOCTLCMD) {
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300443 dev_dbg(entity->graph_obj.mdev->dev,
Sakari Ailusfab9d302014-10-28 20:35:04 -0300444 "link validation failed for \"%s\":%u -> \"%s\":%u, error %d\n",
Sakari Ailus823ea2a2015-02-12 11:43:11 -0200445 link->source->entity->name,
446 link->source->index,
447 entity->name, link->sink->index, ret);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300448 goto error;
Sakari Ailusfab9d302014-10-28 20:35:04 -0300449 }
Sakari Ailusaf88be32012-01-11 06:25:15 -0300450 }
Sakari Ailusde49c282013-10-13 08:00:26 -0300451
452 /* Either no links or validated links are fine. */
453 bitmap_or(active, active, has_no_links, entity->num_pads);
454
455 if (!bitmap_full(active, entity->num_pads)) {
Helen Mae Koike Fornazier47dfdb32015-06-28 16:14:10 -0300456 ret = -ENOLINK;
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300457 dev_dbg(entity->graph_obj.mdev->dev,
Sakari Ailusfab9d302014-10-28 20:35:04 -0300458 "\"%s\":%u must be connected by an enabled link\n",
459 entity->name,
Sakari Ailus094f1ca2014-11-03 17:55:51 -0300460 (unsigned)find_first_zero_bit(
461 active, entity->num_pads));
Sakari Ailusde49c282013-10-13 08:00:26 -0300462 goto error;
463 }
Laurent Pincharte02188c2010-08-25 09:00:41 -0300464 }
465
Sakari Ailusaf88be32012-01-11 06:25:15 -0300466 return 0;
467
468error:
469 /*
470 * Link validation on graph failed. We revert what we did and
471 * return the error.
472 */
Sakari Ailus5dd87752015-12-16 11:32:21 -0200473 media_entity_graph_walk_start(graph, entity_err);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300474
Sakari Ailus5dd87752015-12-16 11:32:21 -0200475 while ((entity_err = media_entity_graph_walk_next(graph))) {
Shuah Khan3801bc72016-01-30 18:10:52 -0200476 /* 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;
481 }
Sakari Ailusaf88be32012-01-11 06:25:15 -0300482
483 /*
484 * We haven't increased stream_count further than this
485 * so we quit here.
486 */
487 if (entity_err == entity)
488 break;
489 }
490
Sakari Ailus74a413302015-12-16 11:32:29 -0200491error_graph_walk_start:
492 if (!--pipe->streaming_count)
493 media_entity_graph_walk_cleanup(graph);
Sakari Ailus106b9902015-12-16 15:32:23 +0200494
Shuah Khanfb49f202016-02-11 21:41:24 -0200495 return ret;
496}
497EXPORT_SYMBOL_GPL(__media_entity_pipeline_start);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300498
Shuah Khanfb49f202016-02-11 21:41:24 -0200499__must_check int media_entity_pipeline_start(struct media_entity *entity,
500 struct media_pipeline *pipe)
501{
502 struct media_device *mdev = entity->graph_obj.mdev;
503 int ret;
504
505 mutex_lock(&mdev->graph_mutex);
506 ret = __media_entity_pipeline_start(entity, pipe);
507 mutex_unlock(&mdev->graph_mutex);
Sakari Ailusaf88be32012-01-11 06:25:15 -0300508 return ret;
Laurent Pincharte02188c2010-08-25 09:00:41 -0300509}
510EXPORT_SYMBOL_GPL(media_entity_pipeline_start);
511
Shuah Khanfb49f202016-02-11 21:41:24 -0200512void __media_entity_pipeline_stop(struct media_entity *entity)
Laurent Pincharte02188c2010-08-25 09:00:41 -0300513{
Sakari Ailus5dd87752015-12-16 11:32:21 -0200514 struct media_entity_graph *graph = &entity->pipe->graph;
Sakari Ailus74a413302015-12-16 11:32:29 -0200515 struct media_pipeline *pipe = entity->pipe;
Laurent Pincharte02188c2010-08-25 09:00:41 -0300516
Laurent Pincharte02188c2010-08-25 09:00:41 -0300517
Sakari Ailus74a413302015-12-16 11:32:29 -0200518 WARN_ON(!pipe->streaming_count);
Sakari Ailus5dd87752015-12-16 11:32:21 -0200519 media_entity_graph_walk_start(graph, entity);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300520
Sakari Ailus5dd87752015-12-16 11:32:21 -0200521 while ((entity = media_entity_graph_walk_next(graph))) {
Shuah Khan3801bc72016-01-30 18:10:52 -0200522 /* don't let the stream_count go negative */
523 if (entity->stream_count > 0) {
524 entity->stream_count--;
525 if (entity->stream_count == 0)
526 entity->pipe = NULL;
527 }
Laurent Pincharte02188c2010-08-25 09:00:41 -0300528 }
529
Sakari Ailus74a413302015-12-16 11:32:29 -0200530 if (!--pipe->streaming_count)
531 media_entity_graph_walk_cleanup(graph);
Sakari Ailus106b9902015-12-16 15:32:23 +0200532
Shuah Khanfb49f202016-02-11 21:41:24 -0200533}
534EXPORT_SYMBOL_GPL(__media_entity_pipeline_stop);
535
536void media_entity_pipeline_stop(struct media_entity *entity)
537{
538 struct media_device *mdev = entity->graph_obj.mdev;
539
540 mutex_lock(&mdev->graph_mutex);
541 __media_entity_pipeline_stop(entity);
Laurent Pincharte02188c2010-08-25 09:00:41 -0300542 mutex_unlock(&mdev->graph_mutex);
543}
544EXPORT_SYMBOL_GPL(media_entity_pipeline_stop);
545
546/* -----------------------------------------------------------------------------
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300547 * Module use count
548 */
549
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300550struct media_entity *media_entity_get(struct media_entity *entity)
551{
552 if (entity == NULL)
553 return NULL;
554
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300555 if (entity->graph_obj.mdev->dev &&
556 !try_module_get(entity->graph_obj.mdev->dev->driver->owner))
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300557 return NULL;
558
559 return entity;
560}
561EXPORT_SYMBOL_GPL(media_entity_get);
562
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300563void media_entity_put(struct media_entity *entity)
564{
565 if (entity == NULL)
566 return;
567
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300568 if (entity->graph_obj.mdev->dev)
569 module_put(entity->graph_obj.mdev->dev->driver->owner);
Laurent Pinchart503c3d822010-03-07 15:04:59 -0300570}
571EXPORT_SYMBOL_GPL(media_entity_put);
572
573/* -----------------------------------------------------------------------------
Sakari Ailusa5ccc482010-03-07 16:14:14 -0300574 * Links management
575 */
576
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300577static struct media_link *media_add_link(struct list_head *head)
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300578{
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300579 struct media_link *link;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300580
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300581 link = kzalloc(sizeof(*link), GFP_KERNEL);
582 if (link == NULL)
583 return NULL;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300584
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300585 list_add_tail(&link->list, head);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300586
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300587 return link;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300588}
589
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300590static void __media_entity_remove_link(struct media_entity *entity,
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200591 struct media_link *link)
592{
593 struct media_link *rlink, *tmp;
594 struct media_entity *remote;
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200595
596 if (link->source->entity == entity)
597 remote = link->sink->entity;
598 else
599 remote = link->source->entity;
600
601 list_for_each_entry_safe(rlink, tmp, &remote->links, list) {
Mauro Carvalho Chehab58f69ee2015-12-11 11:25:23 -0200602 if (rlink != link->reverse)
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200603 continue;
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200604
605 if (link->source->entity == entity)
606 remote->num_backlinks--;
607
608 /* Remove the remote link */
609 list_del(&rlink->list);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200610 media_gobj_destroy(&rlink->graph_obj);
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200611 kfree(rlink);
612
613 if (--remote->num_links == 0)
614 break;
615 }
616 list_del(&link->list);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200617 media_gobj_destroy(&link->graph_obj);
Mauro Carvalho Chehab5abad222015-12-11 11:19:38 -0200618 kfree(link);
619}
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300620
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300621int
Mauro Carvalho Chehab8df00a12015-08-07 08:14:38 -0300622media_create_pad_link(struct media_entity *source, u16 source_pad,
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300623 struct media_entity *sink, u16 sink_pad, u32 flags)
624{
625 struct media_link *link;
626 struct media_link *backlink;
627
628 BUG_ON(source == NULL || sink == NULL);
629 BUG_ON(source_pad >= source->num_pads);
630 BUG_ON(sink_pad >= sink->num_pads);
631
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300632 link = media_add_link(&source->links);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300633 if (link == NULL)
634 return -ENOMEM;
635
636 link->source = &source->pads[source_pad];
637 link->sink = &sink->pads[sink_pad];
Mauro Carvalho Chehab82ae2a52015-12-11 18:09:13 -0200638 link->flags = flags & ~MEDIA_LNK_FL_INTERFACE_LINK;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300639
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300640 /* Initialize graph object embedded at the new link */
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200641 media_gobj_create(source->graph_obj.mdev, MEDIA_GRAPH_LINK,
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300642 &link->graph_obj);
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300643
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300644 /* Create the backlink. Backlinks are used to help graph traversal and
645 * are not reported to userspace.
646 */
Mauro Carvalho Chehab23615de2015-08-20 08:21:35 -0300647 backlink = media_add_link(&sink->links);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300648 if (backlink == NULL) {
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300649 __media_entity_remove_link(source, link);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300650 return -ENOMEM;
651 }
652
653 backlink->source = &source->pads[source_pad];
654 backlink->sink = &sink->pads[sink_pad];
655 backlink->flags = flags;
Mauro Carvalho Chehab39d1ebc62015-08-30 09:53:57 -0300656 backlink->is_backlink = true;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300657
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300658 /* Initialize graph object embedded at the new link */
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200659 media_gobj_create(sink->graph_obj.mdev, MEDIA_GRAPH_LINK,
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300660 &backlink->graph_obj);
Mauro Carvalho Chehab6b6a4272015-08-14 12:54:36 -0300661
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300662 link->reverse = backlink;
663 backlink->reverse = link;
664
665 sink->num_backlinks++;
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300666 sink->num_links++;
667 source->num_links++;
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300668
669 return 0;
670}
Mauro Carvalho Chehab8df00a12015-08-07 08:14:38 -0300671EXPORT_SYMBOL_GPL(media_create_pad_link);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300672
Mauro Carvalho Chehabb01cc9c2015-12-30 09:45:48 -0200673int 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,
679 const u16 sink_pad,
680 u32 flags,
681 const bool allow_both_undefined)
682{
683 struct media_entity *entity;
684 unsigned function;
685 int ret;
686
687 /* Trivial case: 1:1 relation */
688 if (source && sink)
689 return media_create_pad_link(source, source_pad,
690 sink, sink_pad, flags);
691
692 /* Worse case scenario: n:n relation */
693 if (!source && !sink) {
694 if (!allow_both_undefined)
695 return 0;
696 media_device_for_each_entity(source, mdev) {
697 if (source->function != source_function)
698 continue;
699 media_device_for_each_entity(sink, mdev) {
700 if (sink->function != sink_function)
701 continue;
702 ret = media_create_pad_link(source, source_pad,
703 sink, sink_pad,
704 flags);
705 if (ret)
706 return ret;
707 flags &= ~(MEDIA_LNK_FL_ENABLED |
708 MEDIA_LNK_FL_IMMUTABLE);
709 }
710 }
711 return 0;
712 }
713
714 /* Handle 1:n and n:1 cases */
715 if (source)
716 function = sink_function;
717 else
718 function = source_function;
719
720 media_device_for_each_entity(entity, mdev) {
721 if (entity->function != function)
722 continue;
723
724 if (source)
725 ret = media_create_pad_link(source, source_pad,
726 entity, sink_pad, flags);
727 else
728 ret = media_create_pad_link(entity, source_pad,
729 sink, sink_pad, flags);
730 if (ret)
731 return ret;
732 flags &= ~(MEDIA_LNK_FL_ENABLED | MEDIA_LNK_FL_IMMUTABLE);
733 }
734 return 0;
735}
736EXPORT_SYMBOL_GPL(media_create_pad_links);
737
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300738void __media_entity_remove_links(struct media_entity *entity)
739{
740 struct media_link *link, *tmp;
741
742 list_for_each_entry_safe(link, tmp, &entity->links, list)
743 __media_entity_remove_link(entity, link);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300744
745 entity->num_links = 0;
746 entity->num_backlinks = 0;
747}
748EXPORT_SYMBOL_GPL(__media_entity_remove_links);
749
750void media_entity_remove_links(struct media_entity *entity)
751{
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200752 struct media_device *mdev = entity->graph_obj.mdev;
753
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300754 /* Do nothing if the entity is not registered. */
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200755 if (mdev == NULL)
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300756 return;
757
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300758 mutex_lock(&mdev->graph_mutex);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300759 __media_entity_remove_links(entity);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300760 mutex_unlock(&mdev->graph_mutex);
Sylwester Nawrocki7349cec2013-05-09 08:29:32 -0300761}
762EXPORT_SYMBOL_GPL(media_entity_remove_links);
763
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300764static int __media_entity_setup_link_notify(struct media_link *link, u32 flags)
765{
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300766 int ret;
767
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)
772 return ret;
773
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);
779 return ret;
780 }
781
Laurent Pinchart7a6f0b22011-03-11 11:34:35 -0300782 link->flags = flags;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300783 link->reverse->flags = link->flags;
784
785 return 0;
786}
787
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300788int __media_entity_setup_link(struct media_link *link, u32 flags)
789{
Laurent Pinchart7a6f0b22011-03-11 11:34:35 -0300790 const u32 mask = MEDIA_LNK_FL_ENABLED;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300791 struct media_device *mdev;
792 struct media_entity *source, *sink;
793 int ret = -EBUSY;
794
795 if (link == NULL)
796 return -EINVAL;
797
Laurent Pinchart7a6f0b22011-03-11 11:34:35 -0300798 /* The non-modifiable link flags must not be modified. */
799 if ((link->flags & ~mask) != (flags & ~mask))
800 return -EINVAL;
801
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300802 if (link->flags & MEDIA_LNK_FL_IMMUTABLE)
803 return link->flags == flags ? 0 : -EINVAL;
804
805 if (link->flags == flags)
806 return 0;
807
808 source = link->source->entity;
809 sink = link->sink->entity;
810
Laurent Pincharte02188c2010-08-25 09:00:41 -0300811 if (!(link->flags & MEDIA_LNK_FL_DYNAMIC) &&
812 (source->stream_count || sink->stream_count))
813 return -EBUSY;
814
Javier Martinez Canillasd10c9892015-08-19 12:35:21 -0300815 mdev = source->graph_obj.mdev;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300816
Laurent Pinchart68429f52015-11-03 00:27:51 -0200817 if (mdev->ops && mdev->ops->link_notify) {
818 ret = mdev->ops->link_notify(link, flags,
819 MEDIA_DEV_NOTIFY_PRE_LINK_CH);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300820 if (ret < 0)
821 return ret;
822 }
823
824 ret = __media_entity_setup_link_notify(link, flags);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300825
Laurent Pinchart68429f52015-11-03 00:27:51 -0200826 if (mdev->ops && mdev->ops->link_notify)
827 mdev->ops->link_notify(link, flags,
828 MEDIA_DEV_NOTIFY_POST_LINK_CH);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300829
830 return ret;
831}
Shuah Khanefc70272016-02-11 21:41:23 -0200832EXPORT_SYMBOL_GPL(__media_entity_setup_link);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300833
834int media_entity_setup_link(struct media_link *link, u32 flags)
835{
836 int ret;
837
Mauro Carvalho Chehab5c883ed2015-12-15 07:58:18 -0200838 mutex_lock(&link->graph_obj.mdev->graph_mutex);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300839 ret = __media_entity_setup_link(link, flags);
Mauro Carvalho Chehab5c883ed2015-12-15 07:58:18 -0200840 mutex_unlock(&link->graph_obj.mdev->graph_mutex);
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300841
842 return ret;
843}
844EXPORT_SYMBOL_GPL(media_entity_setup_link);
845
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300846struct media_link *
847media_entity_find_link(struct media_pad *source, struct media_pad *sink)
848{
849 struct media_link *link;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300850
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300851 list_for_each_entry(link, &source->entity->links, list) {
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300852 if (link->source->entity == source->entity &&
853 link->source->index == source->index &&
854 link->sink->entity == sink->entity &&
855 link->sink->index == sink->index)
856 return link;
857 }
858
859 return NULL;
860}
861EXPORT_SYMBOL_GPL(media_entity_find_link);
862
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300863struct media_pad *media_entity_remote_pad(struct media_pad *pad)
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300864{
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300865 struct media_link *link;
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300866
Mauro Carvalho Chehab57208e52015-08-07 06:55:40 -0300867 list_for_each_entry(link, &pad->entity->links, list) {
Laurent Pinchart97548ed2009-12-09 08:40:03 -0300868 if (!(link->flags & MEDIA_LNK_FL_ENABLED))
869 continue;
870
871 if (link->source == pad)
872 return link->sink;
873
874 if (link->sink == pad)
875 return link->source;
876 }
877
878 return NULL;
879
880}
Andrzej Hajda1bddf1b2013-06-03 05:16:13 -0300881EXPORT_SYMBOL_GPL(media_entity_remote_pad);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300882
Mauro Carvalho Chehab1283f842015-08-28 15:43:36 -0300883static void media_interface_init(struct media_device *mdev,
884 struct media_interface *intf,
885 u32 gobj_type,
886 u32 intf_type, u32 flags)
887{
888 intf->type = intf_type;
889 intf->flags = flags;
890 INIT_LIST_HEAD(&intf->links);
891
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200892 media_gobj_create(mdev, gobj_type, &intf->graph_obj);
Mauro Carvalho Chehab1283f842015-08-28 15:43:36 -0300893}
894
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300895/* Functions related to the media interface via device nodes */
896
897struct media_intf_devnode *media_devnode_create(struct media_device *mdev,
898 u32 type, u32 flags,
Mauro Carvalho Chehab0b3b72df92015-09-09 08:19:25 -0300899 u32 major, u32 minor)
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300900{
901 struct media_intf_devnode *devnode;
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300902
Mauro Carvalho Chehab0b3b72df92015-09-09 08:19:25 -0300903 devnode = kzalloc(sizeof(*devnode), GFP_KERNEL);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300904 if (!devnode)
905 return NULL;
906
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300907 devnode->major = major;
908 devnode->minor = minor;
909
Mauro Carvalho Chehab1283f842015-08-28 15:43:36 -0300910 media_interface_init(mdev, &devnode->intf, MEDIA_GRAPH_INTF_DEVNODE,
911 type, flags);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300912
913 return devnode;
914}
915EXPORT_SYMBOL_GPL(media_devnode_create);
916
917void media_devnode_remove(struct media_intf_devnode *devnode)
918{
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300919 media_remove_intf_links(&devnode->intf);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200920 media_gobj_destroy(&devnode->intf.graph_obj);
Mauro Carvalho Chehab27e543f2015-08-20 09:07:34 -0300921 kfree(devnode);
922}
923EXPORT_SYMBOL_GPL(media_devnode_remove);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300924
925struct media_link *media_create_intf_link(struct media_entity *entity,
926 struct media_interface *intf,
927 u32 flags)
928{
929 struct media_link *link;
930
931 link = media_add_link(&intf->links);
932 if (link == NULL)
933 return NULL;
934
935 link->intf = intf;
936 link->entity = entity;
Mauro Carvalho Chehab82ae2a52015-12-11 18:09:13 -0200937 link->flags = flags | MEDIA_LNK_FL_INTERFACE_LINK;
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300938
939 /* Initialize graph object embedded at the new link */
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200940 media_gobj_create(intf->graph_obj.mdev, MEDIA_GRAPH_LINK,
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300941 &link->graph_obj);
942
943 return link;
944}
945EXPORT_SYMBOL_GPL(media_create_intf_link);
946
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300947void __media_remove_intf_link(struct media_link *link)
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300948{
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300949 list_del(&link->list);
Mauro Carvalho Chehabc350ef82015-12-11 11:55:40 -0200950 media_gobj_destroy(&link->graph_obj);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300951 kfree(link);
952}
Mauro Carvalho Chehabd47109f2015-08-29 21:23:44 -0300953EXPORT_SYMBOL_GPL(__media_remove_intf_link);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300954
955void media_remove_intf_link(struct media_link *link)
956{
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200957 struct media_device *mdev = link->graph_obj.mdev;
958
959 /* Do nothing if the intf is not registered. */
960 if (mdev == NULL)
961 return;
962
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300963 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300964 __media_remove_intf_link(link);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300965 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab86e26622015-08-07 10:36:25 -0300966}
967EXPORT_SYMBOL_GPL(media_remove_intf_link);
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300968
969void __media_remove_intf_links(struct media_interface *intf)
970{
971 struct media_link *link, *tmp;
972
973 list_for_each_entry_safe(link, tmp, &intf->links, list)
974 __media_remove_intf_link(link);
975
976}
977EXPORT_SYMBOL_GPL(__media_remove_intf_links);
978
979void media_remove_intf_links(struct media_interface *intf)
980{
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200981 struct media_device *mdev = intf->graph_obj.mdev;
982
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300983 /* Do nothing if the intf is not registered. */
Mauro Carvalho Chehabcc4a8252015-12-15 08:01:13 -0200984 if (mdev == NULL)
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300985 return;
986
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300987 mutex_lock(&mdev->graph_mutex);
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300988 __media_remove_intf_links(intf);
Mauro Carvalho Chehabe2c91d42016-04-06 10:55:24 -0300989 mutex_unlock(&mdev->graph_mutex);
Mauro Carvalho Chehab7c4696a2015-08-24 08:46:46 -0300990}
991EXPORT_SYMBOL_GPL(media_remove_intf_links);