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/module.h>
11 #include <linux/freezer.h>
12 #include <linux/kthread.h>
14 #include "vimc-streamer.h"
17 * vimc_get_source_entity - get the entity connected with the first sink pad
19 * @ent: reference media_entity
21 * Helper function that returns the media entity containing the source pad
22 * linked with the first sink pad from the given media entity pad list.
24 static struct media_entity
*vimc_get_source_entity(struct media_entity
*ent
)
26 struct media_pad
*pad
;
29 for (i
= 0; i
< ent
->num_pads
; i
++) {
30 if (ent
->pads
[i
].flags
& MEDIA_PAD_FL_SOURCE
)
32 pad
= media_entity_remote_pad(&ent
->pads
[i
]);
33 return pad
? pad
->entity
: NULL
;
39 * vimc_streamer_pipeline_terminate - Disable stream in all ved in stream
41 * @stream: the pointer to the stream structure with the pipeline to be
44 * Calls s_stream to disable the stream in each entity of the pipeline
47 static void vimc_streamer_pipeline_terminate(struct vimc_stream
*stream
)
49 struct media_entity
*entity
;
50 struct v4l2_subdev
*sd
;
52 while (stream
->pipe_size
) {
54 entity
= stream
->ved_pipeline
[stream
->pipe_size
]->ent
;
55 entity
= vimc_get_source_entity(entity
);
56 stream
->ved_pipeline
[stream
->pipe_size
] = NULL
;
58 if (!is_media_entity_v4l2_subdev(entity
))
61 sd
= media_entity_to_v4l2_subdev(entity
);
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 s_stream to enable stream in all entities of the pipeline.
76 static int vimc_streamer_pipeline_init(struct vimc_stream
*stream
,
77 struct vimc_ent_device
*ved
)
79 struct media_entity
*entity
;
80 struct video_device
*vdev
;
81 struct v4l2_subdev
*sd
;
84 stream
->pipe_size
= 0;
85 while (stream
->pipe_size
< VIMC_STREAMER_PIPELINE_MAX_SIZE
) {
87 vimc_streamer_pipeline_terminate(stream
);
90 stream
->ved_pipeline
[stream
->pipe_size
++] = ved
;
92 entity
= vimc_get_source_entity(ved
->ent
);
93 /* Check if the end of the pipeline was reached*/
97 if (is_media_entity_v4l2_subdev(entity
)) {
98 sd
= media_entity_to_v4l2_subdev(entity
);
99 ret
= v4l2_subdev_call(sd
, video
, s_stream
, 1);
100 if (ret
&& ret
!= -ENOIOCTLCMD
) {
101 vimc_streamer_pipeline_terminate(stream
);
104 ved
= v4l2_get_subdevdata(sd
);
106 vdev
= container_of(entity
,
109 ved
= video_get_drvdata(vdev
);
113 vimc_streamer_pipeline_terminate(stream
);
117 static int vimc_streamer_thread(void *data
)
119 struct vimc_stream
*stream
= data
;
123 set_current_state(TASK_UNINTERRUPTIBLE
);
127 if (kthread_should_stop())
130 for (i
= stream
->pipe_size
- 1; i
>= 0; i
--) {
131 stream
->frame
= stream
->ved_pipeline
[i
]->process_frame(
132 stream
->ved_pipeline
[i
],
136 if (IS_ERR(stream
->frame
))
140 schedule_timeout(HZ
/ 60);
146 int vimc_streamer_s_stream(struct vimc_stream
*stream
,
147 struct vimc_ent_device
*ved
,
159 ret
= vimc_streamer_pipeline_init(stream
, ved
);
163 stream
->kthread
= kthread_run(vimc_streamer_thread
, stream
,
164 "vimc-streamer thread");
166 if (IS_ERR(stream
->kthread
))
167 return PTR_ERR(stream
->kthread
);
170 if (!stream
->kthread
)
173 ret
= kthread_stop(stream
->kthread
);
177 stream
->kthread
= NULL
;
179 vimc_streamer_pipeline_terminate(stream
);
184 EXPORT_SYMBOL_GPL(vimc_streamer_s_stream
);
186 MODULE_DESCRIPTION("Virtual Media Controller Driver (VIMC) Streamer");
187 MODULE_AUTHOR("Lucas A. M. Magalhães <lucmaga@gmail.com>");
188 MODULE_LICENSE("GPL");