1 // SPDX-License-Identifier: GPL-2.0+
3 * vimc-streamer.c Virtual Media Controller Driver
5 * Copyright (C) 2018 Lucas A. M. Magalhães <lucmaga@gmail.com>
9 #include <linux/init.h>
10 #include <linux/freezer.h>
11 #include <linux/kthread.h>
13 #include "vimc-streamer.h"
16 * vimc_get_source_entity - get the entity connected with the first sink pad
18 * @ent: reference media_entity
20 * Helper function that returns the media entity containing the source pad
21 * linked with the first sink pad from the given media entity pad list.
23 * Return: The source pad or NULL, if it wasn't found.
25 static struct media_entity
*vimc_get_source_entity(struct media_entity
*ent
)
27 struct media_pad
*pad
;
30 for (i
= 0; i
< ent
->num_pads
; i
++) {
31 if (ent
->pads
[i
].flags
& MEDIA_PAD_FL_SOURCE
)
33 pad
= media_entity_remote_pad(&ent
->pads
[i
]);
34 return pad
? pad
->entity
: NULL
;
40 * vimc_streamer_pipeline_terminate - Disable stream in all ved in stream
42 * @stream: the pointer to the stream structure with the pipeline to be
45 * Calls s_stream to disable the stream in each entity of the pipeline
48 static void vimc_streamer_pipeline_terminate(struct vimc_stream
*stream
)
50 struct vimc_ent_device
*ved
;
51 struct v4l2_subdev
*sd
;
53 while (stream
->pipe_size
) {
55 ved
= stream
->ved_pipeline
[stream
->pipe_size
];
56 stream
->ved_pipeline
[stream
->pipe_size
] = NULL
;
58 if (!is_media_entity_v4l2_subdev(ved
->ent
))
61 sd
= media_entity_to_v4l2_subdev(ved
->ent
);
62 v4l2_subdev_call(sd
, video
, s_stream
, 0);
67 * vimc_streamer_pipeline_init - Initializes the stream structure
69 * @stream: the pointer to the stream structure to be initialized
70 * @ved: the pointer to the vimc entity initializing the stream
72 * Initializes the stream structure. Walks through the entity graph to
73 * construct the pipeline used later on the streamer thread.
74 * Calls vimc_streamer_s_stream() to enable stream in all entities of
77 * Return: 0 if success, error code otherwise.
79 static int vimc_streamer_pipeline_init(struct vimc_stream
*stream
,
80 struct vimc_ent_device
*ved
)
82 struct media_entity
*entity
;
83 struct video_device
*vdev
;
84 struct v4l2_subdev
*sd
;
87 stream
->pipe_size
= 0;
88 while (stream
->pipe_size
< VIMC_STREAMER_PIPELINE_MAX_SIZE
) {
90 vimc_streamer_pipeline_terminate(stream
);
93 stream
->ved_pipeline
[stream
->pipe_size
++] = ved
;
95 if (is_media_entity_v4l2_subdev(ved
->ent
)) {
96 sd
= media_entity_to_v4l2_subdev(ved
->ent
);
97 ret
= v4l2_subdev_call(sd
, video
, s_stream
, 1);
98 if (ret
&& ret
!= -ENOIOCTLCMD
) {
99 dev_err(ved
->dev
, "subdev_call error %s\n",
101 vimc_streamer_pipeline_terminate(stream
);
106 entity
= vimc_get_source_entity(ved
->ent
);
107 /* Check if the end of the pipeline was reached */
109 /* the first entity of the pipe should be source only */
110 if (!vimc_is_source(ved
->ent
)) {
112 "first entity in the pipe '%s' is not a source\n",
114 vimc_streamer_pipeline_terminate(stream
);
120 /* Get the next device in the pipeline */
121 if (is_media_entity_v4l2_subdev(entity
)) {
122 sd
= media_entity_to_v4l2_subdev(entity
);
123 ved
= v4l2_get_subdevdata(sd
);
125 vdev
= container_of(entity
,
128 ved
= video_get_drvdata(vdev
);
132 vimc_streamer_pipeline_terminate(stream
);
137 * vimc_streamer_thread - Process frames through the pipeline
139 * @data: vimc_stream struct of the current stream
141 * From the source to the sink, gets a frame from each subdevice and send to
142 * the next one of the pipeline at a fixed framerate.
145 * Always zero (created as ``int`` instead of ``void`` to comply with
148 static int vimc_streamer_thread(void *data
)
150 struct vimc_stream
*stream
= data
;
158 if (kthread_should_stop())
161 for (i
= stream
->pipe_size
- 1; i
>= 0; i
--) {
162 frame
= stream
->ved_pipeline
[i
]->process_frame(
163 stream
->ved_pipeline
[i
], frame
);
164 if (!frame
|| IS_ERR(frame
))
168 set_current_state(TASK_UNINTERRUPTIBLE
);
169 schedule_timeout(HZ
/ 60);
176 * vimc_streamer_s_stream - Start/stop the streaming on the media pipeline
178 * @stream: the pointer to the stream structure of the current stream
179 * @ved: pointer to the vimc entity of the entity of the stream
180 * @enable: flag to determine if stream should start/stop
182 * When starting, check if there is no ``stream->kthread`` allocated. This
183 * should indicate that a stream is already running. Then, it initializes the
184 * pipeline, creates and runs a kthread to consume buffers through the pipeline.
185 * When stopping, analogously check if there is a stream running, stop the
186 * thread and terminates the pipeline.
188 * Return: 0 if success, error code otherwise.
190 int vimc_streamer_s_stream(struct vimc_stream
*stream
,
191 struct vimc_ent_device
*ved
,
203 ret
= vimc_streamer_pipeline_init(stream
, ved
);
207 stream
->kthread
= kthread_run(vimc_streamer_thread
, stream
,
208 "vimc-streamer thread");
210 if (IS_ERR(stream
->kthread
)) {
211 ret
= PTR_ERR(stream
->kthread
);
212 dev_err(ved
->dev
, "kthread_run failed with %d\n", ret
);
213 vimc_streamer_pipeline_terminate(stream
);
214 stream
->kthread
= NULL
;
219 if (!stream
->kthread
)
222 ret
= kthread_stop(stream
->kthread
);
224 * kthread_stop returns -EINTR in cases when streamon was
225 * immediately followed by streamoff, and the thread didn't had
226 * a chance to run. Ignore errors to stop the stream in the
230 dev_dbg(ved
->dev
, "kthread_stop returned '%d'\n", ret
);
232 stream
->kthread
= NULL
;
234 vimc_streamer_pipeline_terminate(stream
);