summaryrefslogtreecommitdiffstats
path: root/meta-egvirt/recipes-kernel/kernel-module-virtio-video/files/virtio_video_caps.c
blob: fc815b18e1430266676ea53df68a989aadfbc06f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
// SPDX-License-Identifier: GPL-2.0+
/* Driver for virtio video device.
 *
 * Copyright 2020 OpenSynergy GmbH.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
 */

#include <media/v4l2-ioctl.h>
#include <media/videobuf2-dma-sg.h>

#include "virtio_video.h"

static void virtio_video_free_frame_rates(struct video_format_frame *frame)
{
	kfree(frame->frame_rates);
}

static void virtio_video_free_frames(struct video_format *fmt)
{
	size_t idx = 0;

	for (idx = 0; idx < fmt->desc.num_frames; idx++)
		virtio_video_free_frame_rates(&fmt->frames[idx]);
	kfree(fmt->frames);
}

static void virtio_video_free_fmt(struct list_head *fmts_list)
{
	struct video_format *fmt, *tmp;

	list_for_each_entry_safe(fmt, tmp, fmts_list, formats_list_entry) {
		list_del(&fmt->formats_list_entry);
		virtio_video_free_frames(fmt);
		kfree(fmt);
	}
}

static void virtio_video_free_fmts(struct virtio_video_device *vvd)
{
	virtio_video_free_fmt(&vvd->input_fmt_list);
	virtio_video_free_fmt(&vvd->output_fmt_list);
}

static void virtio_video_copy_fmt_range(struct virtio_video_format_range *d_rge,
					struct virtio_video_format_range *s_rge)
{
	d_rge->min = le32_to_cpu(s_rge->min);
	d_rge->max = le32_to_cpu(s_rge->max);
	d_rge->step = le32_to_cpu(s_rge->step);
}

static size_t
virtio_video_parse_virtio_frame_rate(struct virtio_video_device *vvd,
				     struct virtio_video_format_range *f_rate,
				     void *buf)
{
	struct virtio_video_format_range *virtio_frame_rate;

	virtio_frame_rate = buf;
	virtio_video_copy_fmt_range(f_rate, virtio_frame_rate);

	return sizeof(struct virtio_video_format_range);
}

static size_t virtio_video_parse_virtio_frame(struct virtio_video_device *vvd,
					      struct video_format_frame *frm,
					      void *buf)
{
	struct virtio_video_format_frame *virtio_frame;
	struct virtio_video_format_frame *frame = &frm->frame;
	struct virtio_video_format_range *rate;
	size_t idx, offset, extra_size;

	virtio_frame = buf;

	virtio_video_copy_fmt_range(&frame->width, &virtio_frame->width);
	virtio_video_copy_fmt_range(&frame->height, &virtio_frame->height);

	frame->num_rates = le32_to_cpu(virtio_frame->num_rates);
	frm->frame_rates = kcalloc(frame->num_rates,
				   sizeof(struct virtio_video_format_range),
				   GFP_KERNEL);

	offset = sizeof(struct virtio_video_format_frame);
	for (idx = 0; idx < frame->num_rates; idx++) {
		rate = &frm->frame_rates[idx];
		extra_size =
			virtio_video_parse_virtio_frame_rate(vvd, rate,
							     buf + offset);
		if (extra_size == 0) {
			kfree(frm->frame_rates);
			v4l2_err(&vvd->v4l2_dev,
				 "failed to parse frame rate\n");
			return 0;
		}
		offset += extra_size;
	}

	return offset;
}

static size_t virtio_video_parse_virtio_fmt(struct virtio_video_device *vvd,
					    struct video_format *fmt, void *buf)
{
	struct virtio_video_format_desc *virtio_fmt_desc;
	struct virtio_video_format_desc *fmt_desc;
	struct video_format_frame *frame;
	size_t idx, offset, extra_size;

	virtio_fmt_desc = buf;
	fmt_desc = &fmt->desc;

	fmt_desc->format =
		virtio_video_format_to_v4l2
		(le32_to_cpu(virtio_fmt_desc->format));
	fmt_desc->mask = le64_to_cpu(virtio_fmt_desc->mask);
	fmt_desc->planes_layout = le32_to_cpu(virtio_fmt_desc->planes_layout);

	fmt_desc->num_frames = le32_to_cpu(virtio_fmt_desc->num_frames);
	fmt->frames = kcalloc(fmt_desc->num_frames,
			      sizeof(struct video_format_frame),
			      GFP_KERNEL);

	offset = sizeof(struct virtio_video_format_desc);
	for (idx = 0; idx < fmt_desc->num_frames; idx++) {
		frame = &fmt->frames[idx];
		extra_size =
			virtio_video_parse_virtio_frame(vvd, frame,
							buf + offset);
		if (extra_size == 0) {
			kfree(fmt->frames);
			v4l2_err(&vvd->v4l2_dev, "failed to parse frame\n");
			return 0;
		}
		offset += extra_size;
	}

	return offset;
}

int virtio_video_parse_virtio_capability(struct virtio_video_device *vvd,
					 void *resp_buf,
					 struct list_head *ret_fmt_list,
					 uint32_t *ret_num_fmts)
{
	struct virtio_video_query_capability_resp *resp = resp_buf;
	struct video_format *fmt;
	uint32_t fmt_count;
	int fmt_idx;
	size_t offset;
	int ret;

	if (!resp || ret_fmt_list == NULL || ret_num_fmts == NULL) {
		v4l2_err(&vvd->v4l2_dev, "invalid arguments!\n");
		return -EINVAL;
	}

	if (le32_to_cpu(resp->num_descs) <= 0) {
		v4l2_err(&vvd->v4l2_dev, "invalid capability response\n");
		return -EINVAL;
	}

	fmt_count = le32_to_cpu(resp->num_descs);
	offset = sizeof(struct virtio_video_query_capability_resp);

	for (fmt_idx = 0; fmt_idx < fmt_count; fmt_idx++) {
		size_t fmt_size = 0;

		fmt = kzalloc(sizeof(*fmt), GFP_KERNEL);
		if (!fmt) {
			ret = -ENOMEM;
			goto alloc_err;
		}

		fmt_size = virtio_video_parse_virtio_fmt(vvd, fmt,
							 resp_buf + offset);
		if (fmt_size == 0) {
			v4l2_err(&vvd->v4l2_dev, "failed to parse fmt\n");
			ret = -ENOENT;
			goto parse_fmt_err;
		}
		offset += fmt_size;
		list_add(&fmt->formats_list_entry, ret_fmt_list);
	}

	*ret_num_fmts = fmt_count;
	return 0;

parse_fmt_err:
	kfree(fmt);
alloc_err:
	virtio_video_free_fmts(vvd);
	return ret;
}

int virtio_video_parse_virtio_capabilities(struct virtio_video_device *vvd,
					   void *input_buf, void *output_buf)
{
	int ret;

	if (input_buf) {
		ret = virtio_video_parse_virtio_capability(vvd, input_buf,
						&vvd->input_fmt_list,
						&vvd->num_input_fmts);
		if (ret) {
			v4l2_err(&vvd->v4l2_dev,
				 "Failed to parse input capability: %d\n",
				 ret);
			return ret;
		}
	}

	if (output_buf) {
		ret = virtio_video_parse_virtio_capability(vvd, output_buf,
						 &vvd->output_fmt_list,
						 &vvd->num_output_fmts);
		if (ret) {
			v4l2_err(&vvd->v4l2_dev,
				 "Failed to parse output capability: %d\n",
				 ret);
			return ret;
		}
	}

	return 0;
}

void virtio_video_clean_capability(struct virtio_video_device *vvd)
{
	virtio_video_free_fmts(vvd);
}

static void
virtio_video_free_control_fmt_data(struct video_control_fmt_data *data)
{
	kfree(data->entries);
	kfree(data);
}

static void virtio_video_free_control_formats(struct virtio_video_device *vvd)
{
	struct video_control_format *c_fmt, *tmp;

	list_for_each_entry_safe(c_fmt, tmp, &vvd->controls_fmt_list,
				 controls_list_entry) {
		list_del(&c_fmt->controls_list_entry);
		virtio_video_free_control_fmt_data(c_fmt->profile);
		virtio_video_free_control_fmt_data(c_fmt->level);
		kfree(c_fmt);
	}
}

static int virtio_video_parse_control_levels(struct virtio_video_device *vvd,
					     struct video_control_format *fmt)
{
	int idx, ret;
	struct virtio_video_query_control_resp *resp_buf;
	struct virtio_video_query_control_resp_level *l_resp_buf;
	struct video_control_fmt_data *level;
	enum virtio_video_format virtio_format;
	uint32_t *virtio_levels;
	uint32_t num_levels, mask = 0;
	int max = 0, min = UINT_MAX;
	size_t resp_size;

	resp_size = vvd->max_resp_len;

	virtio_format = virtio_video_v4l2_format_to_virtio(fmt->format);

	resp_buf = kzalloc(resp_size, GFP_KERNEL);
	if (IS_ERR(resp_buf)) {
		ret = PTR_ERR(resp_buf);
		goto lvl_err;
	}

	ret = virtio_video_query_control_level(vvd, resp_buf, resp_size,
					       virtio_format);
	if (ret) {
		v4l2_err(&vvd->v4l2_dev, "failed to query level\n");
		goto lvl_err;
	}

	l_resp_buf = (void *)((char *)resp_buf + sizeof(*resp_buf));
	num_levels = le32_to_cpu(l_resp_buf->num);
	if (num_levels == 0)
		goto lvl_err;

	fmt->level = kzalloc(sizeof(*level), GFP_KERNEL);
	if (!fmt->level) {
		ret = -ENOMEM;
		goto lvl_err;
	}

	level = fmt->level;
	level->entries = kcalloc(num_levels, sizeof(uint32_t), GFP_KERNEL);
	if (!level->entries) {
		kfree(fmt->level);
		ret = -ENOMEM;
		goto lvl_err;
	}

	virtio_levels = (void *)((char *)l_resp_buf + sizeof(*l_resp_buf));

	for (idx = 0; idx < num_levels; idx++) {
		level->entries[idx] =
			virtio_video_level_to_v4l2
			(le32_to_cpu(virtio_levels[idx]));

		mask = mask | (1 << level->entries[idx]);
		if (level->entries[idx] > max)
			max = level->entries[idx];
		if (level->entries[idx] < min)
			min = level->entries[idx];
	}
	level->min = min;
	level->max = max;
	level->num = num_levels;
	level->skip_mask = ~mask;

lvl_err:
	kfree(resp_buf);

	return ret;
}

static int virtio_video_parse_control_profiles(struct virtio_video_device *vvd,
					       struct video_control_format *fmt)
{
	int idx, ret;
	struct virtio_video_query_control_resp *resp_buf;
	struct virtio_video_query_control_resp_profile *p_resp_buf;
	struct video_control_fmt_data *profile;
	uint32_t virtio_format, num_profiles, mask = 0;
	uint32_t *virtio_profiles;
	int max = 0, min = UINT_MAX;
	size_t resp_size;

	resp_size = vvd->max_resp_len;
	virtio_format = virtio_video_v4l2_format_to_virtio(fmt->format);
	resp_buf = kzalloc(resp_size, GFP_KERNEL);
	if (IS_ERR(resp_buf)) {
		ret = PTR_ERR(resp_buf);
		goto prf_err;
	}

	ret = virtio_video_query_control_profile(vvd, resp_buf, resp_size,
						 virtio_format);
	if (ret) {
		v4l2_err(&vvd->v4l2_dev, "failed to query profile\n");
		goto prf_err;
	}

	p_resp_buf = (void *)((char *)resp_buf + sizeof(*resp_buf));
	num_profiles = le32_to_cpu(p_resp_buf->num);
	if (num_profiles == 0)
		goto prf_err;

	fmt->profile = kzalloc(sizeof(*profile), GFP_KERNEL);
	if (!fmt->profile) {
		ret = -ENOMEM;
		goto prf_err;
	}

	profile = fmt->profile;
	profile->entries = kcalloc(num_profiles, sizeof(uint32_t), GFP_KERNEL);
	if (!profile->entries) {
		kfree(fmt->profile);
		ret = -ENOMEM;
		goto prf_err;
	}

	virtio_profiles = (void *)((char *)p_resp_buf + sizeof(*p_resp_buf));

	for (idx = 0; idx < num_profiles; idx++) {
		profile->entries[idx] =
			virtio_video_profile_to_v4l2
			(le32_to_cpu(virtio_profiles[idx]));

		mask = mask | (1 << profile->entries[idx]);
		if (profile->entries[idx] > max)
			max = profile->entries[idx];
		if (profile->entries[idx] < min)
			min = profile->entries[idx];
	}
	profile->min = min;
	profile->max = max;
	profile->num = num_profiles;
	profile->skip_mask = ~mask;

prf_err:
	kfree(resp_buf);

	return ret;
}

int virtio_video_parse_virtio_control(struct virtio_video_device *vvd)
{
	struct video_format *fmt;
	struct video_control_format *c_fmt;
	uint32_t virtio_format;
	int ret;

	list_for_each_entry(fmt, &vvd->output_fmt_list, formats_list_entry) {
		virtio_format =
			virtio_video_v4l2_format_to_virtio(fmt->desc.format);
		if (virtio_format < VIRTIO_VIDEO_FORMAT_CODED_MIN ||
		    virtio_format > VIRTIO_VIDEO_FORMAT_CODED_MAX)
			continue;

		c_fmt = kzalloc(sizeof(*c_fmt), GFP_KERNEL);
		if (!c_fmt) {
			ret = -ENOMEM;
			goto parse_ctrl_alloc_err;
		}

		c_fmt->format = fmt->desc.format;

		ret = virtio_video_parse_control_profiles(vvd, c_fmt);
		if (ret) {
			v4l2_err(&vvd->v4l2_dev,
				 "failed to parse control profile\n");
			goto parse_ctrl_prf_err;
		}

		ret = virtio_video_parse_control_levels(vvd, c_fmt);
		if (ret) {
			v4l2_err(&vvd->v4l2_dev,
				 "failed to parse control level\n");
			goto parse_ctrl_lvl_err;
		}
		list_add(&c_fmt->controls_list_entry, &vvd->controls_fmt_list);
	}
	return 0;

parse_ctrl_lvl_err:
	virtio_video_free_control_fmt_data(c_fmt->profile);
parse_ctrl_prf_err:
	kfree(c_fmt);
parse_ctrl_alloc_err:
	virtio_video_free_control_formats(vvd);

	return ret;
}

void virtio_video_clean_control(struct virtio_video_device *vvd)
{
	virtio_video_free_control_formats(vvd);
}