Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * vimc-debayer.c Virtual Media Controller Driver
  4 *
  5 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
 
 
 
 
 
 
 
 
 
 
 
  6 */
  7
  8#include <linux/component.h>
  9#include <linux/module.h>
 10#include <linux/mod_devicetable.h>
 11#include <linux/platform_device.h>
 12#include <linux/vmalloc.h>
 13#include <linux/v4l2-mediabus.h>
 14#include <media/v4l2-subdev.h>
 15
 16#include "vimc-common.h"
 17
 18#define VIMC_DEB_DRV_NAME "vimc-debayer"
 19
 20static unsigned int deb_mean_win_size = 3;
 21module_param(deb_mean_win_size, uint, 0000);
 22MODULE_PARM_DESC(deb_mean_win_size, " the window size to calculate the mean.\n"
 23	"NOTE: the window size needs to be an odd number, as the main pixel "
 24	"stays in the center of the window, otherwise the next odd number "
 25	"is considered");
 26
 27#define IS_SINK(pad) (!pad)
 28#define IS_SRC(pad)  (pad)
 29
 30enum vimc_deb_rgb_colors {
 31	VIMC_DEB_RED = 0,
 32	VIMC_DEB_GREEN = 1,
 33	VIMC_DEB_BLUE = 2,
 34};
 35
 36struct vimc_deb_pix_map {
 37	u32 code;
 38	enum vimc_deb_rgb_colors order[2][2];
 39};
 40
 41struct vimc_deb_device {
 42	struct vimc_ent_device ved;
 43	struct v4l2_subdev sd;
 44	struct device *dev;
 45	/* The active format */
 46	struct v4l2_mbus_framefmt sink_fmt;
 47	u32 src_code;
 48	void (*set_rgb_src)(struct vimc_deb_device *vdeb, unsigned int lin,
 49			    unsigned int col, unsigned int rgb[3]);
 50	/* Values calculated when the stream starts */
 51	u8 *src_frame;
 52	const struct vimc_deb_pix_map *sink_pix_map;
 53	unsigned int sink_bpp;
 54};
 55
 56static const struct v4l2_mbus_framefmt sink_fmt_default = {
 57	.width = 640,
 58	.height = 480,
 59	.code = MEDIA_BUS_FMT_SRGGB8_1X8,
 60	.field = V4L2_FIELD_NONE,
 61	.colorspace = V4L2_COLORSPACE_DEFAULT,
 62};
 63
 64static const struct vimc_deb_pix_map vimc_deb_pix_map_list[] = {
 65	{
 66		.code = MEDIA_BUS_FMT_SBGGR8_1X8,
 67		.order = { { VIMC_DEB_BLUE, VIMC_DEB_GREEN },
 68			   { VIMC_DEB_GREEN, VIMC_DEB_RED } }
 69	},
 70	{
 71		.code = MEDIA_BUS_FMT_SGBRG8_1X8,
 72		.order = { { VIMC_DEB_GREEN, VIMC_DEB_BLUE },
 73			   { VIMC_DEB_RED, VIMC_DEB_GREEN } }
 74	},
 75	{
 76		.code = MEDIA_BUS_FMT_SGRBG8_1X8,
 77		.order = { { VIMC_DEB_GREEN, VIMC_DEB_RED },
 78			   { VIMC_DEB_BLUE, VIMC_DEB_GREEN } }
 79	},
 80	{
 81		.code = MEDIA_BUS_FMT_SRGGB8_1X8,
 82		.order = { { VIMC_DEB_RED, VIMC_DEB_GREEN },
 83			   { VIMC_DEB_GREEN, VIMC_DEB_BLUE } }
 84	},
 85	{
 86		.code = MEDIA_BUS_FMT_SBGGR10_1X10,
 87		.order = { { VIMC_DEB_BLUE, VIMC_DEB_GREEN },
 88			   { VIMC_DEB_GREEN, VIMC_DEB_RED } }
 89	},
 90	{
 91		.code = MEDIA_BUS_FMT_SGBRG10_1X10,
 92		.order = { { VIMC_DEB_GREEN, VIMC_DEB_BLUE },
 93			   { VIMC_DEB_RED, VIMC_DEB_GREEN } }
 94	},
 95	{
 96		.code = MEDIA_BUS_FMT_SGRBG10_1X10,
 97		.order = { { VIMC_DEB_GREEN, VIMC_DEB_RED },
 98			   { VIMC_DEB_BLUE, VIMC_DEB_GREEN } }
 99	},
100	{
101		.code = MEDIA_BUS_FMT_SRGGB10_1X10,
102		.order = { { VIMC_DEB_RED, VIMC_DEB_GREEN },
103			   { VIMC_DEB_GREEN, VIMC_DEB_BLUE } }
104	},
105	{
106		.code = MEDIA_BUS_FMT_SBGGR12_1X12,
107		.order = { { VIMC_DEB_BLUE, VIMC_DEB_GREEN },
108			   { VIMC_DEB_GREEN, VIMC_DEB_RED } }
109	},
110	{
111		.code = MEDIA_BUS_FMT_SGBRG12_1X12,
112		.order = { { VIMC_DEB_GREEN, VIMC_DEB_BLUE },
113			   { VIMC_DEB_RED, VIMC_DEB_GREEN } }
114	},
115	{
116		.code = MEDIA_BUS_FMT_SGRBG12_1X12,
117		.order = { { VIMC_DEB_GREEN, VIMC_DEB_RED },
118			   { VIMC_DEB_BLUE, VIMC_DEB_GREEN } }
119	},
120	{
121		.code = MEDIA_BUS_FMT_SRGGB12_1X12,
122		.order = { { VIMC_DEB_RED, VIMC_DEB_GREEN },
123			   { VIMC_DEB_GREEN, VIMC_DEB_BLUE } }
124	},
125};
126
127static const struct vimc_deb_pix_map *vimc_deb_pix_map_by_code(u32 code)
128{
129	unsigned int i;
130
131	for (i = 0; i < ARRAY_SIZE(vimc_deb_pix_map_list); i++)
132		if (vimc_deb_pix_map_list[i].code == code)
133			return &vimc_deb_pix_map_list[i];
134
135	return NULL;
136}
137
138static int vimc_deb_init_cfg(struct v4l2_subdev *sd,
139			     struct v4l2_subdev_pad_config *cfg)
140{
141	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
142	struct v4l2_mbus_framefmt *mf;
143	unsigned int i;
144
145	mf = v4l2_subdev_get_try_format(sd, cfg, 0);
146	*mf = sink_fmt_default;
147
148	for (i = 1; i < sd->entity.num_pads; i++) {
149		mf = v4l2_subdev_get_try_format(sd, cfg, i);
150		*mf = sink_fmt_default;
151		mf->code = vdeb->src_code;
152	}
153
154	return 0;
155}
156
157static int vimc_deb_enum_mbus_code(struct v4l2_subdev *sd,
158				   struct v4l2_subdev_pad_config *cfg,
159				   struct v4l2_subdev_mbus_code_enum *code)
160{
161	/* We only support one format for source pads */
162	if (IS_SRC(code->pad)) {
163		struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
164
165		if (code->index)
166			return -EINVAL;
167
168		code->code = vdeb->src_code;
169	} else {
170		if (code->index >= ARRAY_SIZE(vimc_deb_pix_map_list))
171			return -EINVAL;
172
173		code->code = vimc_deb_pix_map_list[code->index].code;
174	}
175
176	return 0;
177}
178
179static int vimc_deb_enum_frame_size(struct v4l2_subdev *sd,
180				    struct v4l2_subdev_pad_config *cfg,
181				    struct v4l2_subdev_frame_size_enum *fse)
182{
183	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
184
185	if (fse->index)
186		return -EINVAL;
187
188	if (IS_SINK(fse->pad)) {
189		const struct vimc_deb_pix_map *vpix =
190			vimc_deb_pix_map_by_code(fse->code);
191
192		if (!vpix)
193			return -EINVAL;
194	} else if (fse->code != vdeb->src_code) {
195		return -EINVAL;
196	}
197
198	fse->min_width = VIMC_FRAME_MIN_WIDTH;
199	fse->max_width = VIMC_FRAME_MAX_WIDTH;
200	fse->min_height = VIMC_FRAME_MIN_HEIGHT;
201	fse->max_height = VIMC_FRAME_MAX_HEIGHT;
202
203	return 0;
204}
205
206static int vimc_deb_get_fmt(struct v4l2_subdev *sd,
207			    struct v4l2_subdev_pad_config *cfg,
208			    struct v4l2_subdev_format *fmt)
209{
210	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
211
212	/* Get the current sink format */
213	fmt->format = fmt->which == V4L2_SUBDEV_FORMAT_TRY ?
214		      *v4l2_subdev_get_try_format(sd, cfg, 0) :
215		      vdeb->sink_fmt;
216
217	/* Set the right code for the source pad */
218	if (IS_SRC(fmt->pad))
219		fmt->format.code = vdeb->src_code;
220
221	return 0;
222}
223
224static void vimc_deb_adjust_sink_fmt(struct v4l2_mbus_framefmt *fmt)
225{
226	const struct vimc_deb_pix_map *vpix;
227
228	/* Don't accept a code that is not on the debayer table */
229	vpix = vimc_deb_pix_map_by_code(fmt->code);
230	if (!vpix)
231		fmt->code = sink_fmt_default.code;
232
233	fmt->width = clamp_t(u32, fmt->width, VIMC_FRAME_MIN_WIDTH,
234			     VIMC_FRAME_MAX_WIDTH) & ~1;
235	fmt->height = clamp_t(u32, fmt->height, VIMC_FRAME_MIN_HEIGHT,
236			      VIMC_FRAME_MAX_HEIGHT) & ~1;
237
238	if (fmt->field == V4L2_FIELD_ANY)
239		fmt->field = sink_fmt_default.field;
240
241	vimc_colorimetry_clamp(fmt);
242}
243
244static int vimc_deb_set_fmt(struct v4l2_subdev *sd,
245			    struct v4l2_subdev_pad_config *cfg,
246			    struct v4l2_subdev_format *fmt)
247{
248	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
249	struct v4l2_mbus_framefmt *sink_fmt;
250
251	if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
252		/* Do not change the format while stream is on */
253		if (vdeb->src_frame)
254			return -EBUSY;
255
256		sink_fmt = &vdeb->sink_fmt;
257	} else {
258		sink_fmt = v4l2_subdev_get_try_format(sd, cfg, 0);
259	}
260
261	/*
262	 * Do not change the format of the source pad,
263	 * it is propagated from the sink
264	 */
265	if (IS_SRC(fmt->pad)) {
266		fmt->format = *sink_fmt;
267		/* TODO: Add support for other formats */
268		fmt->format.code = vdeb->src_code;
269	} else {
270		/* Set the new format in the sink pad */
271		vimc_deb_adjust_sink_fmt(&fmt->format);
272
273		dev_dbg(vdeb->dev, "%s: sink format update: "
274			"old:%dx%d (0x%x, %d, %d, %d, %d) "
275			"new:%dx%d (0x%x, %d, %d, %d, %d)\n", vdeb->sd.name,
276			/* old */
277			sink_fmt->width, sink_fmt->height, sink_fmt->code,
278			sink_fmt->colorspace, sink_fmt->quantization,
279			sink_fmt->xfer_func, sink_fmt->ycbcr_enc,
280			/* new */
281			fmt->format.width, fmt->format.height, fmt->format.code,
282			fmt->format.colorspace,	fmt->format.quantization,
283			fmt->format.xfer_func, fmt->format.ycbcr_enc);
284
285		*sink_fmt = fmt->format;
286	}
287
288	return 0;
289}
290
291static const struct v4l2_subdev_pad_ops vimc_deb_pad_ops = {
292	.init_cfg		= vimc_deb_init_cfg,
293	.enum_mbus_code		= vimc_deb_enum_mbus_code,
294	.enum_frame_size	= vimc_deb_enum_frame_size,
295	.get_fmt		= vimc_deb_get_fmt,
296	.set_fmt		= vimc_deb_set_fmt,
297};
298
299static void vimc_deb_set_rgb_mbus_fmt_rgb888_1x24(struct vimc_deb_device *vdeb,
300						  unsigned int lin,
301						  unsigned int col,
302						  unsigned int rgb[3])
303{
304	unsigned int i, index;
305
306	index = VIMC_FRAME_INDEX(lin, col, vdeb->sink_fmt.width, 3);
307	for (i = 0; i < 3; i++)
308		vdeb->src_frame[index + i] = rgb[i];
309}
310
311static int vimc_deb_s_stream(struct v4l2_subdev *sd, int enable)
312{
313	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
 
314
315	if (enable) {
316		const struct vimc_pix_map *vpix;
317		unsigned int frame_size;
318
319		if (vdeb->src_frame)
320			return 0;
321
322		/* Calculate the frame size of the source pad */
323		vpix = vimc_pix_map_by_code(vdeb->src_code);
324		frame_size = vdeb->sink_fmt.width * vdeb->sink_fmt.height *
325				vpix->bpp;
326
327		/* Save the bytes per pixel of the sink */
328		vpix = vimc_pix_map_by_code(vdeb->sink_fmt.code);
329		vdeb->sink_bpp = vpix->bpp;
330
331		/* Get the corresponding pixel map from the table */
332		vdeb->sink_pix_map =
333			vimc_deb_pix_map_by_code(vdeb->sink_fmt.code);
334
335		/*
336		 * Allocate the frame buffer. Use vmalloc to be able to
337		 * allocate a large amount of memory
338		 */
339		vdeb->src_frame = vmalloc(frame_size);
340		if (!vdeb->src_frame)
341			return -ENOMEM;
342
 
 
 
 
 
 
 
343	} else {
344		if (!vdeb->src_frame)
345			return 0;
346
 
 
 
 
 
347		vfree(vdeb->src_frame);
348		vdeb->src_frame = NULL;
349	}
350
351	return 0;
352}
353
354static const struct v4l2_subdev_video_ops vimc_deb_video_ops = {
355	.s_stream = vimc_deb_s_stream,
356};
357
358static const struct v4l2_subdev_ops vimc_deb_ops = {
359	.pad = &vimc_deb_pad_ops,
360	.video = &vimc_deb_video_ops,
361};
362
363static unsigned int vimc_deb_get_val(const u8 *bytes,
364				     const unsigned int n_bytes)
365{
366	unsigned int i;
367	unsigned int acc = 0;
368
369	for (i = 0; i < n_bytes; i++)
370		acc = acc + (bytes[i] << (8 * i));
371
372	return acc;
373}
374
375static void vimc_deb_calc_rgb_sink(struct vimc_deb_device *vdeb,
376				   const u8 *frame,
377				   const unsigned int lin,
378				   const unsigned int col,
379				   unsigned int rgb[3])
380{
381	unsigned int i, seek, wlin, wcol;
382	unsigned int n_rgb[3] = {0, 0, 0};
383
384	for (i = 0; i < 3; i++)
385		rgb[i] = 0;
386
387	/*
388	 * Calculate how many we need to subtract to get to the pixel in
389	 * the top left corner of the mean window (considering the current
390	 * pixel as the center)
391	 */
392	seek = deb_mean_win_size / 2;
393
394	/* Sum the values of the colors in the mean window */
395
396	dev_dbg(vdeb->dev,
397		"deb: %s: --- Calc pixel %dx%d, window mean %d, seek %d ---\n",
398		vdeb->sd.name, lin, col, vdeb->sink_fmt.height, seek);
399
400	/*
401	 * Iterate through all the lines in the mean window, start
402	 * with zero if the pixel is outside the frame and don't pass
403	 * the height when the pixel is in the bottom border of the
404	 * frame
405	 */
406	for (wlin = seek > lin ? 0 : lin - seek;
407	     wlin < lin + seek + 1 && wlin < vdeb->sink_fmt.height;
408	     wlin++) {
409
410		/*
411		 * Iterate through all the columns in the mean window, start
412		 * with zero if the pixel is outside the frame and don't pass
413		 * the width when the pixel is in the right border of the
414		 * frame
415		 */
416		for (wcol = seek > col ? 0 : col - seek;
417		     wcol < col + seek + 1 && wcol < vdeb->sink_fmt.width;
418		     wcol++) {
419			enum vimc_deb_rgb_colors color;
420			unsigned int index;
421
422			/* Check which color this pixel is */
423			color = vdeb->sink_pix_map->order[wlin % 2][wcol % 2];
424
425			index = VIMC_FRAME_INDEX(wlin, wcol,
426						 vdeb->sink_fmt.width,
427						 vdeb->sink_bpp);
428
429			dev_dbg(vdeb->dev,
430				"deb: %s: RGB CALC: frame index %d, win pos %dx%d, color %d\n",
431				vdeb->sd.name, index, wlin, wcol, color);
432
433			/* Get its value */
434			rgb[color] = rgb[color] +
435				vimc_deb_get_val(&frame[index], vdeb->sink_bpp);
436
437			/* Save how many values we already added */
438			n_rgb[color]++;
439
440			dev_dbg(vdeb->dev, "deb: %s: RGB CALC: val %d, n %d\n",
441				vdeb->sd.name, rgb[color], n_rgb[color]);
442		}
443	}
444
445	/* Calculate the mean */
446	for (i = 0; i < 3; i++) {
447		dev_dbg(vdeb->dev,
448			"deb: %s: PRE CALC: %dx%d Color %d, val %d, n %d\n",
449			vdeb->sd.name, lin, col, i, rgb[i], n_rgb[i]);
450
451		if (n_rgb[i])
452			rgb[i] = rgb[i] / n_rgb[i];
453
454		dev_dbg(vdeb->dev,
455			"deb: %s: FINAL CALC: %dx%d Color %d, val %d\n",
456			vdeb->sd.name, lin, col, i, rgb[i]);
457	}
458}
459
460static void *vimc_deb_process_frame(struct vimc_ent_device *ved,
461				    const void *sink_frame)
 
462{
463	struct vimc_deb_device *vdeb = container_of(ved, struct vimc_deb_device,
464						    ved);
465	unsigned int rgb[3];
466	unsigned int i, j;
467
468	/* If the stream in this node is not active, just return */
469	if (!vdeb->src_frame)
470		return ERR_PTR(-EINVAL);
471
472	for (i = 0; i < vdeb->sink_fmt.height; i++)
473		for (j = 0; j < vdeb->sink_fmt.width; j++) {
474			vimc_deb_calc_rgb_sink(vdeb, sink_frame, i, j, rgb);
475			vdeb->set_rgb_src(vdeb, i, j, rgb);
476		}
477
478	return vdeb->src_frame;
479
480}
481
482static void vimc_deb_release(struct v4l2_subdev *sd)
483{
484	struct vimc_deb_device *vdeb =
485				container_of(sd, struct vimc_deb_device, sd);
486
487	kfree(vdeb);
488}
489
490static const struct v4l2_subdev_internal_ops vimc_deb_int_ops = {
491	.release = vimc_deb_release,
492};
493
494static void vimc_deb_comp_unbind(struct device *comp, struct device *master,
495				 void *master_data)
496{
497	struct vimc_ent_device *ved = dev_get_drvdata(comp);
498	struct vimc_deb_device *vdeb = container_of(ved, struct vimc_deb_device,
499						    ved);
500
501	vimc_ent_sd_unregister(ved, &vdeb->sd);
 
502}
503
504static int vimc_deb_comp_bind(struct device *comp, struct device *master,
505			      void *master_data)
506{
507	struct v4l2_device *v4l2_dev = master_data;
508	struct vimc_platform_data *pdata = comp->platform_data;
509	struct vimc_deb_device *vdeb;
510	int ret;
511
512	/* Allocate the vdeb struct */
513	vdeb = kzalloc(sizeof(*vdeb), GFP_KERNEL);
514	if (!vdeb)
515		return -ENOMEM;
516
517	/* Initialize ved and sd */
518	ret = vimc_ent_sd_register(&vdeb->ved, &vdeb->sd, v4l2_dev,
519				   pdata->entity_name,
520				   MEDIA_ENT_F_PROC_VIDEO_PIXEL_ENC_CONV, 2,
521				   (const unsigned long[2]) {MEDIA_PAD_FL_SINK,
522				   MEDIA_PAD_FL_SOURCE},
523				   &vimc_deb_int_ops, &vimc_deb_ops);
524	if (ret) {
525		kfree(vdeb);
526		return ret;
527	}
528
529	vdeb->ved.process_frame = vimc_deb_process_frame;
530	dev_set_drvdata(comp, &vdeb->ved);
531	vdeb->dev = comp;
532
533	/* Initialize the frame format */
534	vdeb->sink_fmt = sink_fmt_default;
535	/*
536	 * TODO: Add support for more output formats, we only support
537	 * RGB888 for now
538	 * NOTE: the src format is always the same as the sink, except
539	 * for the code
540	 */
541	vdeb->src_code = MEDIA_BUS_FMT_RGB888_1X24;
542	vdeb->set_rgb_src = vimc_deb_set_rgb_mbus_fmt_rgb888_1x24;
543
544	return 0;
545}
546
547static const struct component_ops vimc_deb_comp_ops = {
548	.bind = vimc_deb_comp_bind,
549	.unbind = vimc_deb_comp_unbind,
550};
551
552static int vimc_deb_probe(struct platform_device *pdev)
553{
554	return component_add(&pdev->dev, &vimc_deb_comp_ops);
555}
556
557static int vimc_deb_remove(struct platform_device *pdev)
558{
559	component_del(&pdev->dev, &vimc_deb_comp_ops);
560
561	return 0;
562}
563
564static const struct platform_device_id vimc_deb_driver_ids[] = {
565	{
566		.name           = VIMC_DEB_DRV_NAME,
567	},
568	{ }
569};
570
571static struct platform_driver vimc_deb_pdrv = {
572	.probe		= vimc_deb_probe,
573	.remove		= vimc_deb_remove,
574	.id_table	= vimc_deb_driver_ids,
575	.driver		= {
576		.name	= VIMC_DEB_DRV_NAME,
577	},
578};
579
580module_platform_driver(vimc_deb_pdrv);
581
582MODULE_DEVICE_TABLE(platform, vimc_deb_driver_ids);
583
584MODULE_DESCRIPTION("Virtual Media Controller Driver (VIMC) Debayer");
585MODULE_AUTHOR("Helen Mae Koike Fornazier <helen.fornazier@gmail.com>");
586MODULE_LICENSE("GPL");
v4.17
 
  1/*
  2 * vimc-debayer.c Virtual Media Controller Driver
  3 *
  4 * Copyright (C) 2015-2017 Helen Koike <helen.fornazier@gmail.com>
  5 *
  6 * This program is free software; you can redistribute it and/or modify
  7 * it under the terms of the GNU General Public License as published by
  8 * the Free Software Foundation; either version 2 of the License, or
  9 * (at your option) any later version.
 10 *
 11 * This program is distributed in the hope that it will be useful,
 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 14 * GNU General Public License for more details.
 15 *
 16 */
 17
 18#include <linux/component.h>
 19#include <linux/module.h>
 
 20#include <linux/platform_device.h>
 21#include <linux/vmalloc.h>
 22#include <linux/v4l2-mediabus.h>
 23#include <media/v4l2-subdev.h>
 24
 25#include "vimc-common.h"
 26
 27#define VIMC_DEB_DRV_NAME "vimc-debayer"
 28
 29static unsigned int deb_mean_win_size = 3;
 30module_param(deb_mean_win_size, uint, 0000);
 31MODULE_PARM_DESC(deb_mean_win_size, " the window size to calculate the mean.\n"
 32	"NOTE: the window size need to be an odd number, as the main pixel "
 33	"stays in the center of the window, otherwise the next odd number "
 34	"is considered");
 35
 36#define IS_SINK(pad) (!pad)
 37#define IS_SRC(pad)  (pad)
 38
 39enum vimc_deb_rgb_colors {
 40	VIMC_DEB_RED = 0,
 41	VIMC_DEB_GREEN = 1,
 42	VIMC_DEB_BLUE = 2,
 43};
 44
 45struct vimc_deb_pix_map {
 46	u32 code;
 47	enum vimc_deb_rgb_colors order[2][2];
 48};
 49
 50struct vimc_deb_device {
 51	struct vimc_ent_device ved;
 52	struct v4l2_subdev sd;
 53	struct device *dev;
 54	/* The active format */
 55	struct v4l2_mbus_framefmt sink_fmt;
 56	u32 src_code;
 57	void (*set_rgb_src)(struct vimc_deb_device *vdeb, unsigned int lin,
 58			    unsigned int col, unsigned int rgb[3]);
 59	/* Values calculated when the stream starts */
 60	u8 *src_frame;
 61	const struct vimc_deb_pix_map *sink_pix_map;
 62	unsigned int sink_bpp;
 63};
 64
 65static const struct v4l2_mbus_framefmt sink_fmt_default = {
 66	.width = 640,
 67	.height = 480,
 68	.code = MEDIA_BUS_FMT_RGB888_1X24,
 69	.field = V4L2_FIELD_NONE,
 70	.colorspace = V4L2_COLORSPACE_DEFAULT,
 71};
 72
 73static const struct vimc_deb_pix_map vimc_deb_pix_map_list[] = {
 74	{
 75		.code = MEDIA_BUS_FMT_SBGGR8_1X8,
 76		.order = { { VIMC_DEB_BLUE, VIMC_DEB_GREEN },
 77			   { VIMC_DEB_GREEN, VIMC_DEB_RED } }
 78	},
 79	{
 80		.code = MEDIA_BUS_FMT_SGBRG8_1X8,
 81		.order = { { VIMC_DEB_GREEN, VIMC_DEB_BLUE },
 82			   { VIMC_DEB_RED, VIMC_DEB_GREEN } }
 83	},
 84	{
 85		.code = MEDIA_BUS_FMT_SGRBG8_1X8,
 86		.order = { { VIMC_DEB_GREEN, VIMC_DEB_RED },
 87			   { VIMC_DEB_BLUE, VIMC_DEB_GREEN } }
 88	},
 89	{
 90		.code = MEDIA_BUS_FMT_SRGGB8_1X8,
 91		.order = { { VIMC_DEB_RED, VIMC_DEB_GREEN },
 92			   { VIMC_DEB_GREEN, VIMC_DEB_BLUE } }
 93	},
 94	{
 95		.code = MEDIA_BUS_FMT_SBGGR10_1X10,
 96		.order = { { VIMC_DEB_BLUE, VIMC_DEB_GREEN },
 97			   { VIMC_DEB_GREEN, VIMC_DEB_RED } }
 98	},
 99	{
100		.code = MEDIA_BUS_FMT_SGBRG10_1X10,
101		.order = { { VIMC_DEB_GREEN, VIMC_DEB_BLUE },
102			   { VIMC_DEB_RED, VIMC_DEB_GREEN } }
103	},
104	{
105		.code = MEDIA_BUS_FMT_SGRBG10_1X10,
106		.order = { { VIMC_DEB_GREEN, VIMC_DEB_RED },
107			   { VIMC_DEB_BLUE, VIMC_DEB_GREEN } }
108	},
109	{
110		.code = MEDIA_BUS_FMT_SRGGB10_1X10,
111		.order = { { VIMC_DEB_RED, VIMC_DEB_GREEN },
112			   { VIMC_DEB_GREEN, VIMC_DEB_BLUE } }
113	},
114	{
115		.code = MEDIA_BUS_FMT_SBGGR12_1X12,
116		.order = { { VIMC_DEB_BLUE, VIMC_DEB_GREEN },
117			   { VIMC_DEB_GREEN, VIMC_DEB_RED } }
118	},
119	{
120		.code = MEDIA_BUS_FMT_SGBRG12_1X12,
121		.order = { { VIMC_DEB_GREEN, VIMC_DEB_BLUE },
122			   { VIMC_DEB_RED, VIMC_DEB_GREEN } }
123	},
124	{
125		.code = MEDIA_BUS_FMT_SGRBG12_1X12,
126		.order = { { VIMC_DEB_GREEN, VIMC_DEB_RED },
127			   { VIMC_DEB_BLUE, VIMC_DEB_GREEN } }
128	},
129	{
130		.code = MEDIA_BUS_FMT_SRGGB12_1X12,
131		.order = { { VIMC_DEB_RED, VIMC_DEB_GREEN },
132			   { VIMC_DEB_GREEN, VIMC_DEB_BLUE } }
133	},
134};
135
136static const struct vimc_deb_pix_map *vimc_deb_pix_map_by_code(u32 code)
137{
138	unsigned int i;
139
140	for (i = 0; i < ARRAY_SIZE(vimc_deb_pix_map_list); i++)
141		if (vimc_deb_pix_map_list[i].code == code)
142			return &vimc_deb_pix_map_list[i];
143
144	return NULL;
145}
146
147static int vimc_deb_init_cfg(struct v4l2_subdev *sd,
148			     struct v4l2_subdev_pad_config *cfg)
149{
150	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
151	struct v4l2_mbus_framefmt *mf;
152	unsigned int i;
153
154	mf = v4l2_subdev_get_try_format(sd, cfg, 0);
155	*mf = sink_fmt_default;
156
157	for (i = 1; i < sd->entity.num_pads; i++) {
158		mf = v4l2_subdev_get_try_format(sd, cfg, i);
159		*mf = sink_fmt_default;
160		mf->code = vdeb->src_code;
161	}
162
163	return 0;
164}
165
166static int vimc_deb_enum_mbus_code(struct v4l2_subdev *sd,
167				   struct v4l2_subdev_pad_config *cfg,
168				   struct v4l2_subdev_mbus_code_enum *code)
169{
170	/* We only support one format for source pads */
171	if (IS_SRC(code->pad)) {
172		struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
173
174		if (code->index)
175			return -EINVAL;
176
177		code->code = vdeb->src_code;
178	} else {
179		if (code->index >= ARRAY_SIZE(vimc_deb_pix_map_list))
180			return -EINVAL;
181
182		code->code = vimc_deb_pix_map_list[code->index].code;
183	}
184
185	return 0;
186}
187
188static int vimc_deb_enum_frame_size(struct v4l2_subdev *sd,
189				    struct v4l2_subdev_pad_config *cfg,
190				    struct v4l2_subdev_frame_size_enum *fse)
191{
192	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
193
194	if (fse->index)
195		return -EINVAL;
196
197	if (IS_SINK(fse->pad)) {
198		const struct vimc_deb_pix_map *vpix =
199			vimc_deb_pix_map_by_code(fse->code);
200
201		if (!vpix)
202			return -EINVAL;
203	} else if (fse->code != vdeb->src_code) {
204		return -EINVAL;
205	}
206
207	fse->min_width = VIMC_FRAME_MIN_WIDTH;
208	fse->max_width = VIMC_FRAME_MAX_WIDTH;
209	fse->min_height = VIMC_FRAME_MIN_HEIGHT;
210	fse->max_height = VIMC_FRAME_MAX_HEIGHT;
211
212	return 0;
213}
214
215static int vimc_deb_get_fmt(struct v4l2_subdev *sd,
216			    struct v4l2_subdev_pad_config *cfg,
217			    struct v4l2_subdev_format *fmt)
218{
219	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
220
221	/* Get the current sink format */
222	fmt->format = fmt->which == V4L2_SUBDEV_FORMAT_TRY ?
223		      *v4l2_subdev_get_try_format(sd, cfg, 0) :
224		      vdeb->sink_fmt;
225
226	/* Set the right code for the source pad */
227	if (IS_SRC(fmt->pad))
228		fmt->format.code = vdeb->src_code;
229
230	return 0;
231}
232
233static void vimc_deb_adjust_sink_fmt(struct v4l2_mbus_framefmt *fmt)
234{
235	const struct vimc_deb_pix_map *vpix;
236
237	/* Don't accept a code that is not on the debayer table */
238	vpix = vimc_deb_pix_map_by_code(fmt->code);
239	if (!vpix)
240		fmt->code = sink_fmt_default.code;
241
242	fmt->width = clamp_t(u32, fmt->width, VIMC_FRAME_MIN_WIDTH,
243			     VIMC_FRAME_MAX_WIDTH) & ~1;
244	fmt->height = clamp_t(u32, fmt->height, VIMC_FRAME_MIN_HEIGHT,
245			      VIMC_FRAME_MAX_HEIGHT) & ~1;
246
247	if (fmt->field == V4L2_FIELD_ANY)
248		fmt->field = sink_fmt_default.field;
249
250	vimc_colorimetry_clamp(fmt);
251}
252
253static int vimc_deb_set_fmt(struct v4l2_subdev *sd,
254			    struct v4l2_subdev_pad_config *cfg,
255			    struct v4l2_subdev_format *fmt)
256{
257	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
258	struct v4l2_mbus_framefmt *sink_fmt;
259
260	if (fmt->which == V4L2_SUBDEV_FORMAT_ACTIVE) {
261		/* Do not change the format while stream is on */
262		if (vdeb->src_frame)
263			return -EBUSY;
264
265		sink_fmt = &vdeb->sink_fmt;
266	} else {
267		sink_fmt = v4l2_subdev_get_try_format(sd, cfg, 0);
268	}
269
270	/*
271	 * Do not change the format of the source pad,
272	 * it is propagated from the sink
273	 */
274	if (IS_SRC(fmt->pad)) {
275		fmt->format = *sink_fmt;
276		/* TODO: Add support for other formats */
277		fmt->format.code = vdeb->src_code;
278	} else {
279		/* Set the new format in the sink pad */
280		vimc_deb_adjust_sink_fmt(&fmt->format);
281
282		dev_dbg(vdeb->dev, "%s: sink format update: "
283			"old:%dx%d (0x%x, %d, %d, %d, %d) "
284			"new:%dx%d (0x%x, %d, %d, %d, %d)\n", vdeb->sd.name,
285			/* old */
286			sink_fmt->width, sink_fmt->height, sink_fmt->code,
287			sink_fmt->colorspace, sink_fmt->quantization,
288			sink_fmt->xfer_func, sink_fmt->ycbcr_enc,
289			/* new */
290			fmt->format.width, fmt->format.height, fmt->format.code,
291			fmt->format.colorspace,	fmt->format.quantization,
292			fmt->format.xfer_func, fmt->format.ycbcr_enc);
293
294		*sink_fmt = fmt->format;
295	}
296
297	return 0;
298}
299
300static const struct v4l2_subdev_pad_ops vimc_deb_pad_ops = {
301	.init_cfg		= vimc_deb_init_cfg,
302	.enum_mbus_code		= vimc_deb_enum_mbus_code,
303	.enum_frame_size	= vimc_deb_enum_frame_size,
304	.get_fmt		= vimc_deb_get_fmt,
305	.set_fmt		= vimc_deb_set_fmt,
306};
307
308static void vimc_deb_set_rgb_mbus_fmt_rgb888_1x24(struct vimc_deb_device *vdeb,
309						  unsigned int lin,
310						  unsigned int col,
311						  unsigned int rgb[3])
312{
313	unsigned int i, index;
314
315	index = VIMC_FRAME_INDEX(lin, col, vdeb->sink_fmt.width, 3);
316	for (i = 0; i < 3; i++)
317		vdeb->src_frame[index + i] = rgb[i];
318}
319
320static int vimc_deb_s_stream(struct v4l2_subdev *sd, int enable)
321{
322	struct vimc_deb_device *vdeb = v4l2_get_subdevdata(sd);
323	int ret;
324
325	if (enable) {
326		const struct vimc_pix_map *vpix;
327		unsigned int frame_size;
328
329		if (vdeb->src_frame)
330			return 0;
331
332		/* Calculate the frame size of the source pad */
333		vpix = vimc_pix_map_by_code(vdeb->src_code);
334		frame_size = vdeb->sink_fmt.width * vdeb->sink_fmt.height *
335				vpix->bpp;
336
337		/* Save the bytes per pixel of the sink */
338		vpix = vimc_pix_map_by_code(vdeb->sink_fmt.code);
339		vdeb->sink_bpp = vpix->bpp;
340
341		/* Get the corresponding pixel map from the table */
342		vdeb->sink_pix_map =
343			vimc_deb_pix_map_by_code(vdeb->sink_fmt.code);
344
345		/*
346		 * Allocate the frame buffer. Use vmalloc to be able to
347		 * allocate a large amount of memory
348		 */
349		vdeb->src_frame = vmalloc(frame_size);
350		if (!vdeb->src_frame)
351			return -ENOMEM;
352
353		/* Turn the stream on in the subdevices directly connected */
354		ret = vimc_pipeline_s_stream(&vdeb->sd.entity, 1);
355		if (ret) {
356			vfree(vdeb->src_frame);
357			vdeb->src_frame = NULL;
358			return ret;
359		}
360	} else {
361		if (!vdeb->src_frame)
362			return 0;
363
364		/* Disable streaming from the pipe */
365		ret = vimc_pipeline_s_stream(&vdeb->sd.entity, 0);
366		if (ret)
367			return ret;
368
369		vfree(vdeb->src_frame);
370		vdeb->src_frame = NULL;
371	}
372
373	return 0;
374}
375
376static const struct v4l2_subdev_video_ops vimc_deb_video_ops = {
377	.s_stream = vimc_deb_s_stream,
378};
379
380static const struct v4l2_subdev_ops vimc_deb_ops = {
381	.pad = &vimc_deb_pad_ops,
382	.video = &vimc_deb_video_ops,
383};
384
385static unsigned int vimc_deb_get_val(const u8 *bytes,
386				     const unsigned int n_bytes)
387{
388	unsigned int i;
389	unsigned int acc = 0;
390
391	for (i = 0; i < n_bytes; i++)
392		acc = acc + (bytes[i] << (8 * i));
393
394	return acc;
395}
396
397static void vimc_deb_calc_rgb_sink(struct vimc_deb_device *vdeb,
398				   const u8 *frame,
399				   const unsigned int lin,
400				   const unsigned int col,
401				   unsigned int rgb[3])
402{
403	unsigned int i, seek, wlin, wcol;
404	unsigned int n_rgb[3] = {0, 0, 0};
405
406	for (i = 0; i < 3; i++)
407		rgb[i] = 0;
408
409	/*
410	 * Calculate how many we need to subtract to get to the pixel in
411	 * the top left corner of the mean window (considering the current
412	 * pixel as the center)
413	 */
414	seek = deb_mean_win_size / 2;
415
416	/* Sum the values of the colors in the mean window */
417
418	dev_dbg(vdeb->dev,
419		"deb: %s: --- Calc pixel %dx%d, window mean %d, seek %d ---\n",
420		vdeb->sd.name, lin, col, vdeb->sink_fmt.height, seek);
421
422	/*
423	 * Iterate through all the lines in the mean window, start
424	 * with zero if the pixel is outside the frame and don't pass
425	 * the height when the pixel is in the bottom border of the
426	 * frame
427	 */
428	for (wlin = seek > lin ? 0 : lin - seek;
429	     wlin < lin + seek + 1 && wlin < vdeb->sink_fmt.height;
430	     wlin++) {
431
432		/*
433		 * Iterate through all the columns in the mean window, start
434		 * with zero if the pixel is outside the frame and don't pass
435		 * the width when the pixel is in the right border of the
436		 * frame
437		 */
438		for (wcol = seek > col ? 0 : col - seek;
439		     wcol < col + seek + 1 && wcol < vdeb->sink_fmt.width;
440		     wcol++) {
441			enum vimc_deb_rgb_colors color;
442			unsigned int index;
443
444			/* Check which color this pixel is */
445			color = vdeb->sink_pix_map->order[wlin % 2][wcol % 2];
446
447			index = VIMC_FRAME_INDEX(wlin, wcol,
448						 vdeb->sink_fmt.width,
449						 vdeb->sink_bpp);
450
451			dev_dbg(vdeb->dev,
452				"deb: %s: RGB CALC: frame index %d, win pos %dx%d, color %d\n",
453				vdeb->sd.name, index, wlin, wcol, color);
454
455			/* Get its value */
456			rgb[color] = rgb[color] +
457				vimc_deb_get_val(&frame[index], vdeb->sink_bpp);
458
459			/* Save how many values we already added */
460			n_rgb[color]++;
461
462			dev_dbg(vdeb->dev, "deb: %s: RGB CALC: val %d, n %d\n",
463				vdeb->sd.name, rgb[color], n_rgb[color]);
464		}
465	}
466
467	/* Calculate the mean */
468	for (i = 0; i < 3; i++) {
469		dev_dbg(vdeb->dev,
470			"deb: %s: PRE CALC: %dx%d Color %d, val %d, n %d\n",
471			vdeb->sd.name, lin, col, i, rgb[i], n_rgb[i]);
472
473		if (n_rgb[i])
474			rgb[i] = rgb[i] / n_rgb[i];
475
476		dev_dbg(vdeb->dev,
477			"deb: %s: FINAL CALC: %dx%d Color %d, val %d\n",
478			vdeb->sd.name, lin, col, i, rgb[i]);
479	}
480}
481
482static void vimc_deb_process_frame(struct vimc_ent_device *ved,
483				   struct media_pad *sink,
484				   const void *sink_frame)
485{
486	struct vimc_deb_device *vdeb = container_of(ved, struct vimc_deb_device,
487						    ved);
488	unsigned int rgb[3];
489	unsigned int i, j;
490
491	/* If the stream in this node is not active, just return */
492	if (!vdeb->src_frame)
493		return;
494
495	for (i = 0; i < vdeb->sink_fmt.height; i++)
496		for (j = 0; j < vdeb->sink_fmt.width; j++) {
497			vimc_deb_calc_rgb_sink(vdeb, sink_frame, i, j, rgb);
498			vdeb->set_rgb_src(vdeb, i, j, rgb);
499		}
500
501	/* Propagate the frame through all source pads */
502	for (i = 1; i < vdeb->sd.entity.num_pads; i++) {
503		struct media_pad *pad = &vdeb->sd.entity.pads[i];
504
505		vimc_propagate_frame(pad, vdeb->src_frame);
506	}
 
 
 
 
507}
508
 
 
 
 
509static void vimc_deb_comp_unbind(struct device *comp, struct device *master,
510				 void *master_data)
511{
512	struct vimc_ent_device *ved = dev_get_drvdata(comp);
513	struct vimc_deb_device *vdeb = container_of(ved, struct vimc_deb_device,
514						    ved);
515
516	vimc_ent_sd_unregister(ved, &vdeb->sd);
517	kfree(vdeb);
518}
519
520static int vimc_deb_comp_bind(struct device *comp, struct device *master,
521			      void *master_data)
522{
523	struct v4l2_device *v4l2_dev = master_data;
524	struct vimc_platform_data *pdata = comp->platform_data;
525	struct vimc_deb_device *vdeb;
526	int ret;
527
528	/* Allocate the vdeb struct */
529	vdeb = kzalloc(sizeof(*vdeb), GFP_KERNEL);
530	if (!vdeb)
531		return -ENOMEM;
532
533	/* Initialize ved and sd */
534	ret = vimc_ent_sd_register(&vdeb->ved, &vdeb->sd, v4l2_dev,
535				   pdata->entity_name,
536				   MEDIA_ENT_F_PROC_VIDEO_PIXEL_ENC_CONV, 2,
537				   (const unsigned long[2]) {MEDIA_PAD_FL_SINK,
538				   MEDIA_PAD_FL_SOURCE},
539				   &vimc_deb_ops);
540	if (ret) {
541		kfree(vdeb);
542		return ret;
543	}
544
545	vdeb->ved.process_frame = vimc_deb_process_frame;
546	dev_set_drvdata(comp, &vdeb->ved);
547	vdeb->dev = comp;
548
549	/* Initialize the frame format */
550	vdeb->sink_fmt = sink_fmt_default;
551	/*
552	 * TODO: Add support for more output formats, we only support
553	 * RGB888 for now
554	 * NOTE: the src format is always the same as the sink, except
555	 * for the code
556	 */
557	vdeb->src_code = MEDIA_BUS_FMT_RGB888_1X24;
558	vdeb->set_rgb_src = vimc_deb_set_rgb_mbus_fmt_rgb888_1x24;
559
560	return 0;
561}
562
563static const struct component_ops vimc_deb_comp_ops = {
564	.bind = vimc_deb_comp_bind,
565	.unbind = vimc_deb_comp_unbind,
566};
567
568static int vimc_deb_probe(struct platform_device *pdev)
569{
570	return component_add(&pdev->dev, &vimc_deb_comp_ops);
571}
572
573static int vimc_deb_remove(struct platform_device *pdev)
574{
575	component_del(&pdev->dev, &vimc_deb_comp_ops);
576
577	return 0;
578}
579
580static const struct platform_device_id vimc_deb_driver_ids[] = {
581	{
582		.name           = VIMC_DEB_DRV_NAME,
583	},
584	{ }
585};
586
587static struct platform_driver vimc_deb_pdrv = {
588	.probe		= vimc_deb_probe,
589	.remove		= vimc_deb_remove,
590	.id_table	= vimc_deb_driver_ids,
591	.driver		= {
592		.name	= VIMC_DEB_DRV_NAME,
593	},
594};
595
596module_platform_driver(vimc_deb_pdrv);
597
598MODULE_DEVICE_TABLE(platform, vimc_deb_driver_ids);
599
600MODULE_DESCRIPTION("Virtual Media Controller Driver (VIMC) Debayer");
601MODULE_AUTHOR("Helen Mae Koike Fornazier <helen.fornazier@gmail.com>");
602MODULE_LICENSE("GPL");