Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / media / v4l2-core / v4l2-mc.c
blob4bb91359e3a9a7f6c5477668ddf13cf49f85e73c
1 // SPDX-License-Identifier: GPL-2.0-or-later
3 /*
4 * Media Controller ancillary functions
6 * Copyright (c) 2016 Mauro Carvalho Chehab <mchehab@kernel.org>
7 * Copyright (C) 2016 Shuah Khan <shuahkh@osg.samsung.com>
8 * Copyright (C) 2006-2010 Nokia Corporation
9 * Copyright (c) 2016 Intel Corporation.
12 #include <linux/module.h>
13 #include <linux/pci.h>
14 #include <linux/usb.h>
15 #include <media/media-device.h>
16 #include <media/media-entity.h>
17 #include <media/v4l2-fh.h>
18 #include <media/v4l2-mc.h>
19 #include <media/v4l2-subdev.h>
20 #include <media/videobuf2-core.h>
22 int v4l2_mc_create_media_graph(struct media_device *mdev)
25 struct media_entity *entity;
26 struct media_entity *if_vid = NULL, *if_aud = NULL;
27 struct media_entity *tuner = NULL, *decoder = NULL;
28 struct media_entity *io_v4l = NULL, *io_vbi = NULL, *io_swradio = NULL;
29 bool is_webcam = false;
30 u32 flags;
31 int ret, pad_sink, pad_source;
33 if (!mdev)
34 return 0;
36 media_device_for_each_entity(entity, mdev) {
37 switch (entity->function) {
38 case MEDIA_ENT_F_IF_VID_DECODER:
39 if_vid = entity;
40 break;
41 case MEDIA_ENT_F_IF_AUD_DECODER:
42 if_aud = entity;
43 break;
44 case MEDIA_ENT_F_TUNER:
45 tuner = entity;
46 break;
47 case MEDIA_ENT_F_ATV_DECODER:
48 decoder = entity;
49 break;
50 case MEDIA_ENT_F_IO_V4L:
51 io_v4l = entity;
52 break;
53 case MEDIA_ENT_F_IO_VBI:
54 io_vbi = entity;
55 break;
56 case MEDIA_ENT_F_IO_SWRADIO:
57 io_swradio = entity;
58 break;
59 case MEDIA_ENT_F_CAM_SENSOR:
60 is_webcam = true;
61 break;
65 /* It should have at least one I/O entity */
66 if (!io_v4l && !io_vbi && !io_swradio) {
67 dev_warn(mdev->dev, "Didn't find any I/O entity\n");
68 return -EINVAL;
72 * Here, webcams are modelled on a very simple way: the sensor is
73 * connected directly to the I/O entity. All dirty details, like
74 * scaler and crop HW are hidden. While such mapping is not enough
75 * for mc-centric hardware, it is enough for v4l2 interface centric
76 * PC-consumer's hardware.
78 if (is_webcam) {
79 if (!io_v4l) {
80 dev_warn(mdev->dev, "Didn't find a MEDIA_ENT_F_IO_V4L\n");
81 return -EINVAL;
84 media_device_for_each_entity(entity, mdev) {
85 if (entity->function != MEDIA_ENT_F_CAM_SENSOR)
86 continue;
87 ret = media_create_pad_link(entity, 0,
88 io_v4l, 0,
89 MEDIA_LNK_FL_ENABLED);
90 if (ret) {
91 dev_warn(mdev->dev, "Failed to create a sensor link\n");
92 return ret;
95 if (!decoder)
96 return 0;
99 /* The device isn't a webcam. So, it should have a decoder */
100 if (!decoder) {
101 dev_warn(mdev->dev, "Decoder not found\n");
102 return -EINVAL;
105 /* Link the tuner and IF video output pads */
106 if (tuner) {
107 if (if_vid) {
108 pad_source = media_get_pad_index(tuner,
109 MEDIA_PAD_FL_SOURCE,
110 PAD_SIGNAL_ANALOG);
111 pad_sink = media_get_pad_index(if_vid,
112 MEDIA_PAD_FL_SINK,
113 PAD_SIGNAL_ANALOG);
114 if (pad_source < 0 || pad_sink < 0) {
115 dev_warn(mdev->dev, "Couldn't get tuner and/or PLL pad(s): (%d, %d)\n",
116 pad_source, pad_sink);
117 return -EINVAL;
119 ret = media_create_pad_link(tuner, pad_source,
120 if_vid, pad_sink,
121 MEDIA_LNK_FL_ENABLED);
122 if (ret) {
123 dev_warn(mdev->dev, "Couldn't create tuner->PLL link)\n");
124 return ret;
127 pad_source = media_get_pad_index(if_vid,
128 MEDIA_PAD_FL_SOURCE,
129 PAD_SIGNAL_ANALOG);
130 pad_sink = media_get_pad_index(decoder,
131 MEDIA_PAD_FL_SINK,
132 PAD_SIGNAL_ANALOG);
133 if (pad_source < 0 || pad_sink < 0) {
134 dev_warn(mdev->dev, "get decoder and/or PLL pad(s): (%d, %d)\n",
135 pad_source, pad_sink);
136 return -EINVAL;
138 ret = media_create_pad_link(if_vid, pad_source,
139 decoder, pad_sink,
140 MEDIA_LNK_FL_ENABLED);
141 if (ret) {
142 dev_warn(mdev->dev, "couldn't link PLL to decoder\n");
143 return ret;
145 } else {
146 pad_source = media_get_pad_index(tuner,
147 MEDIA_PAD_FL_SOURCE,
148 PAD_SIGNAL_ANALOG);
149 pad_sink = media_get_pad_index(decoder,
150 MEDIA_PAD_FL_SINK,
151 PAD_SIGNAL_ANALOG);
152 if (pad_source < 0 || pad_sink < 0) {
153 dev_warn(mdev->dev, "couldn't get tuner and/or decoder pad(s): (%d, %d)\n",
154 pad_source, pad_sink);
155 return -EINVAL;
157 ret = media_create_pad_link(tuner, pad_source,
158 decoder, pad_sink,
159 MEDIA_LNK_FL_ENABLED);
160 if (ret)
161 return ret;
164 if (if_aud) {
165 pad_source = media_get_pad_index(tuner,
166 MEDIA_PAD_FL_SOURCE,
167 PAD_SIGNAL_AUDIO);
168 pad_sink = media_get_pad_index(if_aud,
169 MEDIA_PAD_FL_SINK,
170 PAD_SIGNAL_AUDIO);
171 if (pad_source < 0 || pad_sink < 0) {
172 dev_warn(mdev->dev, "couldn't get tuner and/or decoder pad(s) for audio: (%d, %d)\n",
173 pad_source, pad_sink);
174 return -EINVAL;
176 ret = media_create_pad_link(tuner, pad_source,
177 if_aud, pad_sink,
178 MEDIA_LNK_FL_ENABLED);
179 if (ret) {
180 dev_warn(mdev->dev, "couldn't link tuner->audio PLL\n");
181 return ret;
183 } else {
184 if_aud = tuner;
189 /* Create demod to V4L, VBI and SDR radio links */
190 if (io_v4l) {
191 pad_source = media_get_pad_index(decoder, MEDIA_PAD_FL_SOURCE,
192 PAD_SIGNAL_DV);
193 if (pad_source < 0) {
194 dev_warn(mdev->dev, "couldn't get decoder output pad for V4L I/O\n");
195 return -EINVAL;
197 ret = media_create_pad_link(decoder, pad_source,
198 io_v4l, 0,
199 MEDIA_LNK_FL_ENABLED);
200 if (ret) {
201 dev_warn(mdev->dev, "couldn't link decoder output to V4L I/O\n");
202 return ret;
206 if (io_swradio) {
207 pad_source = media_get_pad_index(decoder, MEDIA_PAD_FL_SOURCE,
208 PAD_SIGNAL_DV);
209 if (pad_source < 0) {
210 dev_warn(mdev->dev, "couldn't get decoder output pad for SDR\n");
211 return -EINVAL;
213 ret = media_create_pad_link(decoder, pad_source,
214 io_swradio, 0,
215 MEDIA_LNK_FL_ENABLED);
216 if (ret) {
217 dev_warn(mdev->dev, "couldn't link decoder output to SDR\n");
218 return ret;
222 if (io_vbi) {
223 pad_source = media_get_pad_index(decoder, MEDIA_PAD_FL_SOURCE,
224 PAD_SIGNAL_DV);
225 if (pad_source < 0) {
226 dev_warn(mdev->dev, "couldn't get decoder output pad for VBI\n");
227 return -EINVAL;
229 ret = media_create_pad_link(decoder, pad_source,
230 io_vbi, 0,
231 MEDIA_LNK_FL_ENABLED);
232 if (ret) {
233 dev_warn(mdev->dev, "couldn't link decoder output to VBI\n");
234 return ret;
238 /* Create links for the media connectors */
239 flags = MEDIA_LNK_FL_ENABLED;
240 media_device_for_each_entity(entity, mdev) {
241 switch (entity->function) {
242 case MEDIA_ENT_F_CONN_RF:
243 if (!tuner)
244 continue;
245 pad_sink = media_get_pad_index(tuner, MEDIA_PAD_FL_SINK,
246 PAD_SIGNAL_ANALOG);
247 if (pad_sink < 0) {
248 dev_warn(mdev->dev, "couldn't get tuner analog pad sink\n");
249 return -EINVAL;
251 ret = media_create_pad_link(entity, 0, tuner,
252 pad_sink,
253 flags);
254 break;
255 case MEDIA_ENT_F_CONN_SVIDEO:
256 case MEDIA_ENT_F_CONN_COMPOSITE:
257 pad_sink = media_get_pad_index(decoder,
258 MEDIA_PAD_FL_SINK,
259 PAD_SIGNAL_ANALOG);
260 if (pad_sink < 0) {
261 dev_warn(mdev->dev, "couldn't get decoder analog pad sink\n");
262 return -EINVAL;
264 ret = media_create_pad_link(entity, 0, decoder,
265 pad_sink,
266 flags);
267 break;
268 default:
269 continue;
271 if (ret)
272 return ret;
274 flags = 0;
277 return 0;
279 EXPORT_SYMBOL_GPL(v4l2_mc_create_media_graph);
281 int v4l_enable_media_source(struct video_device *vdev)
283 struct media_device *mdev = vdev->entity.graph_obj.mdev;
284 int ret = 0, err;
286 if (!mdev)
287 return 0;
289 mutex_lock(&mdev->graph_mutex);
290 if (!mdev->enable_source)
291 goto end;
292 err = mdev->enable_source(&vdev->entity, &vdev->pipe);
293 if (err)
294 ret = -EBUSY;
295 end:
296 mutex_unlock(&mdev->graph_mutex);
297 return ret;
299 EXPORT_SYMBOL_GPL(v4l_enable_media_source);
301 void v4l_disable_media_source(struct video_device *vdev)
303 struct media_device *mdev = vdev->entity.graph_obj.mdev;
305 if (mdev) {
306 mutex_lock(&mdev->graph_mutex);
307 if (mdev->disable_source)
308 mdev->disable_source(&vdev->entity);
309 mutex_unlock(&mdev->graph_mutex);
312 EXPORT_SYMBOL_GPL(v4l_disable_media_source);
314 int v4l_vb2q_enable_media_source(struct vb2_queue *q)
316 struct v4l2_fh *fh = q->owner;
318 if (fh && fh->vdev)
319 return v4l_enable_media_source(fh->vdev);
320 return 0;
322 EXPORT_SYMBOL_GPL(v4l_vb2q_enable_media_source);
324 int v4l2_create_fwnode_links_to_pad(struct v4l2_subdev *src_sd,
325 struct media_pad *sink, u32 flags)
327 struct fwnode_handle *endpoint;
329 if (!(sink->flags & MEDIA_PAD_FL_SINK))
330 return -EINVAL;
332 fwnode_graph_for_each_endpoint(dev_fwnode(src_sd->dev), endpoint) {
333 struct fwnode_handle *remote_ep;
334 int src_idx, sink_idx, ret;
335 struct media_pad *src;
337 src_idx = media_entity_get_fwnode_pad(&src_sd->entity,
338 endpoint,
339 MEDIA_PAD_FL_SOURCE);
340 if (src_idx < 0) {
341 dev_dbg(src_sd->dev, "no source pad found for %pfw\n",
342 endpoint);
343 continue;
346 remote_ep = fwnode_graph_get_remote_endpoint(endpoint);
347 if (!remote_ep) {
348 dev_dbg(src_sd->dev, "no remote ep found for %pfw\n",
349 endpoint);
350 continue;
354 * ask the sink to verify it owns the remote endpoint,
355 * and translate to a sink pad.
357 sink_idx = media_entity_get_fwnode_pad(sink->entity,
358 remote_ep,
359 MEDIA_PAD_FL_SINK);
360 fwnode_handle_put(remote_ep);
362 if (sink_idx < 0 || sink_idx != sink->index) {
363 dev_dbg(src_sd->dev,
364 "sink pad index mismatch or error (is %d, expected %u)\n",
365 sink_idx, sink->index);
366 continue;
370 * the source endpoint corresponds to one of its source pads,
371 * the source endpoint connects to an endpoint at the sink
372 * entity, and the sink endpoint corresponds to the sink
373 * pad requested, so we have found an endpoint connection
374 * that works, create the media link for it.
377 src = &src_sd->entity.pads[src_idx];
379 /* skip if link already exists */
380 if (media_entity_find_link(src, sink)) {
381 dev_dbg(src_sd->dev,
382 "link %s:%d -> %s:%d already exists\n",
383 src_sd->entity.name, src_idx,
384 sink->entity->name, sink_idx);
385 continue;
388 dev_dbg(src_sd->dev, "creating link %s:%d -> %s:%d\n",
389 src_sd->entity.name, src_idx,
390 sink->entity->name, sink_idx);
392 ret = media_create_pad_link(&src_sd->entity, src_idx,
393 sink->entity, sink_idx, flags);
394 if (ret) {
395 dev_err(src_sd->dev,
396 "link %s:%d -> %s:%d failed with %d\n",
397 src_sd->entity.name, src_idx,
398 sink->entity->name, sink_idx, ret);
400 fwnode_handle_put(endpoint);
401 return ret;
405 return 0;
407 EXPORT_SYMBOL_GPL(v4l2_create_fwnode_links_to_pad);
409 int v4l2_create_fwnode_links(struct v4l2_subdev *src_sd,
410 struct v4l2_subdev *sink_sd)
412 unsigned int i;
414 for (i = 0; i < sink_sd->entity.num_pads; i++) {
415 struct media_pad *pad = &sink_sd->entity.pads[i];
416 int ret;
418 if (!(pad->flags & MEDIA_PAD_FL_SINK))
419 continue;
421 ret = v4l2_create_fwnode_links_to_pad(src_sd, pad, 0);
422 if (ret)
423 return ret;
426 return 0;
428 EXPORT_SYMBOL_GPL(v4l2_create_fwnode_links);
430 /* -----------------------------------------------------------------------------
431 * Pipeline power management
433 * Entities must be powered up when part of a pipeline that contains at least
434 * one open video device node.
436 * To achieve this use the entity use_count field to track the number of users.
437 * For entities corresponding to video device nodes the use_count field stores
438 * the users count of the node. For entities corresponding to subdevs the
439 * use_count field stores the total number of users of all video device nodes
440 * in the pipeline.
442 * The v4l2_pipeline_pm_{get, put}() functions must be called in the open() and
443 * close() handlers of video device nodes. It increments or decrements the use
444 * count of all subdev entities in the pipeline.
446 * To react to link management on powered pipelines, the link setup notification
447 * callback updates the use count of all entities in the source and sink sides
448 * of the link.
452 * pipeline_pm_use_count - Count the number of users of a pipeline
453 * @entity: The entity
455 * Return the total number of users of all video device nodes in the pipeline.
457 static int pipeline_pm_use_count(struct media_entity *entity,
458 struct media_graph *graph)
460 int use = 0;
462 media_graph_walk_start(graph, entity);
464 while ((entity = media_graph_walk_next(graph))) {
465 if (is_media_entity_v4l2_video_device(entity))
466 use += entity->use_count;
469 return use;
473 * pipeline_pm_power_one - Apply power change to an entity
474 * @entity: The entity
475 * @change: Use count change
477 * Change the entity use count by @change. If the entity is a subdev update its
478 * power state by calling the core::s_power operation when the use count goes
479 * from 0 to != 0 or from != 0 to 0.
481 * Return 0 on success or a negative error code on failure.
483 static int pipeline_pm_power_one(struct media_entity *entity, int change)
485 struct v4l2_subdev *subdev;
486 int ret;
488 subdev = is_media_entity_v4l2_subdev(entity)
489 ? media_entity_to_v4l2_subdev(entity) : NULL;
491 if (entity->use_count == 0 && change > 0 && subdev != NULL) {
492 ret = v4l2_subdev_call(subdev, core, s_power, 1);
493 if (ret < 0 && ret != -ENOIOCTLCMD)
494 return ret;
497 entity->use_count += change;
498 WARN_ON(entity->use_count < 0);
500 if (entity->use_count == 0 && change < 0 && subdev != NULL)
501 v4l2_subdev_call(subdev, core, s_power, 0);
503 return 0;
507 * pipeline_pm_power - Apply power change to all entities in a pipeline
508 * @entity: The entity
509 * @change: Use count change
511 * Walk the pipeline to update the use count and the power state of all non-node
512 * entities.
514 * Return 0 on success or a negative error code on failure.
516 static int pipeline_pm_power(struct media_entity *entity, int change,
517 struct media_graph *graph)
519 struct media_entity *first = entity;
520 int ret = 0;
522 if (!change)
523 return 0;
525 media_graph_walk_start(graph, entity);
527 while (!ret && (entity = media_graph_walk_next(graph)))
528 if (is_media_entity_v4l2_subdev(entity))
529 ret = pipeline_pm_power_one(entity, change);
531 if (!ret)
532 return ret;
534 media_graph_walk_start(graph, first);
536 while ((first = media_graph_walk_next(graph))
537 && first != entity)
538 if (is_media_entity_v4l2_subdev(first))
539 pipeline_pm_power_one(first, -change);
541 return ret;
544 static int v4l2_pipeline_pm_use(struct media_entity *entity, unsigned int use)
546 struct media_device *mdev = entity->graph_obj.mdev;
547 int change = use ? 1 : -1;
548 int ret;
550 mutex_lock(&mdev->graph_mutex);
552 /* Apply use count to node. */
553 entity->use_count += change;
554 WARN_ON(entity->use_count < 0);
556 /* Apply power change to connected non-nodes. */
557 ret = pipeline_pm_power(entity, change, &mdev->pm_count_walk);
558 if (ret < 0)
559 entity->use_count -= change;
561 mutex_unlock(&mdev->graph_mutex);
563 return ret;
566 int v4l2_pipeline_pm_get(struct media_entity *entity)
568 return v4l2_pipeline_pm_use(entity, 1);
570 EXPORT_SYMBOL_GPL(v4l2_pipeline_pm_get);
572 void v4l2_pipeline_pm_put(struct media_entity *entity)
574 /* Powering off entities shouldn't fail. */
575 WARN_ON(v4l2_pipeline_pm_use(entity, 0));
577 EXPORT_SYMBOL_GPL(v4l2_pipeline_pm_put);
579 int v4l2_pipeline_link_notify(struct media_link *link, u32 flags,
580 unsigned int notification)
582 struct media_graph *graph = &link->graph_obj.mdev->pm_count_walk;
583 struct media_entity *source = link->source->entity;
584 struct media_entity *sink = link->sink->entity;
585 int source_use;
586 int sink_use;
587 int ret = 0;
589 source_use = pipeline_pm_use_count(source, graph);
590 sink_use = pipeline_pm_use_count(sink, graph);
592 if (notification == MEDIA_DEV_NOTIFY_POST_LINK_CH &&
593 !(flags & MEDIA_LNK_FL_ENABLED)) {
594 /* Powering off entities is assumed to never fail. */
595 pipeline_pm_power(source, -sink_use, graph);
596 pipeline_pm_power(sink, -source_use, graph);
597 return 0;
600 if (notification == MEDIA_DEV_NOTIFY_PRE_LINK_CH &&
601 (flags & MEDIA_LNK_FL_ENABLED)) {
603 ret = pipeline_pm_power(source, sink_use, graph);
604 if (ret < 0)
605 return ret;
607 ret = pipeline_pm_power(sink, source_use, graph);
608 if (ret < 0)
609 pipeline_pm_power(source, -sink_use, graph);
612 return ret;
614 EXPORT_SYMBOL_GPL(v4l2_pipeline_link_notify);