Commit 554946c3 authored by Helen Fornazier's avatar Helen Fornazier Committed by Mauro Carvalho Chehab

[media] vimc: sen: Integrate the tpg on the sensor

Initialize the test pattern generator on the sensor
Generate a colored bar image instead of a grey one
Signed-off-by: default avatarHelen Koike <helen.koike@collabora.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent ab924af9
...@@ -2,6 +2,7 @@ config VIDEO_VIMC ...@@ -2,6 +2,7 @@ config VIDEO_VIMC
tristate "Virtual Media Controller Driver (VIMC)" tristate "Virtual Media Controller Driver (VIMC)"
depends on VIDEO_DEV && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API depends on VIDEO_DEV && VIDEO_V4L2 && VIDEO_V4L2_SUBDEV_API
select VIDEOBUF2_VMALLOC select VIDEOBUF2_VMALLOC
select VIDEO_V4L2_TPG
default n default n
---help--- ---help---
Skeleton driver for Virtual Media Controller Skeleton driver for Virtual Media Controller
......
...@@ -20,17 +20,20 @@ ...@@ -20,17 +20,20 @@
#include <linux/v4l2-mediabus.h> #include <linux/v4l2-mediabus.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
#include <media/v4l2-subdev.h> #include <media/v4l2-subdev.h>
#include <media/v4l2-tpg.h>
#include "vimc-sensor.h" #include "vimc-sensor.h"
#define VIMC_SEN_FRAME_MAX_WIDTH 4096
struct vimc_sen_device { struct vimc_sen_device {
struct vimc_ent_device ved; struct vimc_ent_device ved;
struct v4l2_subdev sd; struct v4l2_subdev sd;
struct tpg_data tpg;
struct task_struct *kthread_sen; struct task_struct *kthread_sen;
u8 *frame; u8 *frame;
/* The active format */ /* The active format */
struct v4l2_mbus_framefmt mbus_format; struct v4l2_mbus_framefmt mbus_format;
int frame_size;
}; };
static int vimc_sen_enum_mbus_code(struct v4l2_subdev *sd, static int vimc_sen_enum_mbus_code(struct v4l2_subdev *sd,
...@@ -84,6 +87,24 @@ static int vimc_sen_get_fmt(struct v4l2_subdev *sd, ...@@ -84,6 +87,24 @@ static int vimc_sen_get_fmt(struct v4l2_subdev *sd,
return 0; return 0;
} }
static void vimc_sen_tpg_s_format(struct vimc_sen_device *vsen)
{
const struct vimc_pix_map *vpix =
vimc_pix_map_by_code(vsen->mbus_format.code);
tpg_reset_source(&vsen->tpg, vsen->mbus_format.width,
vsen->mbus_format.height, vsen->mbus_format.field);
tpg_s_bytesperline(&vsen->tpg, 0, vsen->mbus_format.width * vpix->bpp);
tpg_s_buf_height(&vsen->tpg, vsen->mbus_format.height);
tpg_s_fourcc(&vsen->tpg, vpix->pixelformat);
/* TODO: add support for V4L2_FIELD_ALTERNATE */
tpg_s_field(&vsen->tpg, vsen->mbus_format.field, false);
tpg_s_colorspace(&vsen->tpg, vsen->mbus_format.colorspace);
tpg_s_ycbcr_enc(&vsen->tpg, vsen->mbus_format.ycbcr_enc);
tpg_s_quantization(&vsen->tpg, vsen->mbus_format.quantization);
tpg_s_xfer_func(&vsen->tpg, vsen->mbus_format.xfer_func);
}
static const struct v4l2_subdev_pad_ops vimc_sen_pad_ops = { static const struct v4l2_subdev_pad_ops vimc_sen_pad_ops = {
.enum_mbus_code = vimc_sen_enum_mbus_code, .enum_mbus_code = vimc_sen_enum_mbus_code,
.enum_frame_size = vimc_sen_enum_frame_size, .enum_frame_size = vimc_sen_enum_frame_size,
...@@ -97,7 +118,7 @@ static const struct media_entity_operations vimc_sen_mops = { ...@@ -97,7 +118,7 @@ static const struct media_entity_operations vimc_sen_mops = {
.link_validate = v4l2_subdev_link_validate, .link_validate = v4l2_subdev_link_validate,
}; };
static int vimc_thread_sen(void *data) static int vimc_sen_tpg_thread(void *data)
{ {
struct vimc_sen_device *vsen = data; struct vimc_sen_device *vsen = data;
unsigned int i; unsigned int i;
...@@ -110,7 +131,7 @@ static int vimc_thread_sen(void *data) ...@@ -110,7 +131,7 @@ static int vimc_thread_sen(void *data)
if (kthread_should_stop()) if (kthread_should_stop())
break; break;
memset(vsen->frame, 100, vsen->frame_size); tpg_fill_plane_buffer(&vsen->tpg, 0, 0, vsen->frame);
/* Send the frame to all source pads */ /* Send the frame to all source pads */
for (i = 0; i < vsen->sd.entity.num_pads; i++) for (i = 0; i < vsen->sd.entity.num_pads; i++)
...@@ -132,26 +153,31 @@ static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -132,26 +153,31 @@ static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable)
if (enable) { if (enable) {
const struct vimc_pix_map *vpix; const struct vimc_pix_map *vpix;
unsigned int frame_size;
if (vsen->kthread_sen) if (vsen->kthread_sen)
return -EINVAL; /* tpg is already executing */
return 0;
/* Calculate the frame size */ /* Calculate the frame size */
vpix = vimc_pix_map_by_code(vsen->mbus_format.code); vpix = vimc_pix_map_by_code(vsen->mbus_format.code);
vsen->frame_size = vsen->mbus_format.width * vpix->bpp * frame_size = vsen->mbus_format.width * vpix->bpp *
vsen->mbus_format.height; vsen->mbus_format.height;
/* /*
* Allocate the frame buffer. Use vmalloc to be able to * Allocate the frame buffer. Use vmalloc to be able to
* allocate a large amount of memory * allocate a large amount of memory
*/ */
vsen->frame = vmalloc(vsen->frame_size); vsen->frame = vmalloc(frame_size);
if (!vsen->frame) if (!vsen->frame)
return -ENOMEM; return -ENOMEM;
/* configure the test pattern generator */
vimc_sen_tpg_s_format(vsen);
/* Initialize the image generator thread */ /* Initialize the image generator thread */
vsen->kthread_sen = kthread_run(vimc_thread_sen, vsen, "%s-sen", vsen->kthread_sen = kthread_run(vimc_sen_tpg_thread, vsen,
vsen->sd.v4l2_dev->name); "%s-sen", vsen->sd.v4l2_dev->name);
if (IS_ERR(vsen->kthread_sen)) { if (IS_ERR(vsen->kthread_sen)) {
dev_err(vsen->sd.v4l2_dev->dev, dev_err(vsen->sd.v4l2_dev->dev,
"%s: kernel_thread() failed\n", vsen->sd.name); "%s: kernel_thread() failed\n", vsen->sd.name);
...@@ -161,15 +187,17 @@ static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -161,15 +187,17 @@ static int vimc_sen_s_stream(struct v4l2_subdev *sd, int enable)
} }
} else { } else {
if (!vsen->kthread_sen) if (!vsen->kthread_sen)
return -EINVAL; return 0;
/* Stop image generator */ /* Stop image generator */
ret = kthread_stop(vsen->kthread_sen); ret = kthread_stop(vsen->kthread_sen);
vsen->kthread_sen = NULL; if (ret)
return ret;
vsen->kthread_sen = NULL;
vfree(vsen->frame); vfree(vsen->frame);
vsen->frame = NULL; vsen->frame = NULL;
return ret; return 0;
} }
return 0; return 0;
...@@ -189,6 +217,7 @@ static void vimc_sen_destroy(struct vimc_ent_device *ved) ...@@ -189,6 +217,7 @@ static void vimc_sen_destroy(struct vimc_ent_device *ved)
struct vimc_sen_device *vsen = struct vimc_sen_device *vsen =
container_of(ved, struct vimc_sen_device, ved); container_of(ved, struct vimc_sen_device, ved);
tpg_free(&vsen->tpg);
v4l2_device_unregister_subdev(&vsen->sd); v4l2_device_unregister_subdev(&vsen->sd);
media_entity_cleanup(ved->ent); media_entity_cleanup(ved->ent);
kfree(vsen); kfree(vsen);
...@@ -254,17 +283,26 @@ struct vimc_ent_device *vimc_sen_create(struct v4l2_device *v4l2_dev, ...@@ -254,17 +283,26 @@ struct vimc_ent_device *vimc_sen_create(struct v4l2_device *v4l2_dev,
vsen->mbus_format.quantization = V4L2_QUANTIZATION_FULL_RANGE; vsen->mbus_format.quantization = V4L2_QUANTIZATION_FULL_RANGE;
vsen->mbus_format.xfer_func = V4L2_XFER_FUNC_SRGB; vsen->mbus_format.xfer_func = V4L2_XFER_FUNC_SRGB;
/* Initialize the test pattern generator */
tpg_init(&vsen->tpg, vsen->mbus_format.width,
vsen->mbus_format.height);
ret = tpg_alloc(&vsen->tpg, VIMC_SEN_FRAME_MAX_WIDTH);
if (ret)
goto err_clean_m_ent;
/* Register the subdev with the v4l2 and the media framework */ /* Register the subdev with the v4l2 and the media framework */
ret = v4l2_device_register_subdev(v4l2_dev, &vsen->sd); ret = v4l2_device_register_subdev(v4l2_dev, &vsen->sd);
if (ret) { if (ret) {
dev_err(vsen->sd.v4l2_dev->dev, dev_err(vsen->sd.v4l2_dev->dev,
"%s: subdev register failed (err=%d)\n", "%s: subdev register failed (err=%d)\n",
vsen->sd.name, ret); vsen->sd.name, ret);
goto err_clean_m_ent; goto err_free_tpg;
} }
return &vsen->ved; return &vsen->ved;
err_free_tpg:
tpg_free(&vsen->tpg);
err_clean_m_ent: err_clean_m_ent:
media_entity_cleanup(&vsen->sd.entity); media_entity_cleanup(&vsen->sd.entity);
err_clean_pads: err_clean_pads:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment