Commit d46ebd46 authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Mauro Carvalho Chehab

[media] V4L: mt9t112: support the new mbus-config subdev ops

Extend the driver to also support [gs]_mbus_config() subdevice video
operations.
Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent a3505755
...@@ -34,11 +34,7 @@ ...@@ -34,11 +34,7 @@
/* #define EXT_CLOCK 24000000 */ /* #define EXT_CLOCK 24000000 */
/************************************************************************ /************************************************************************
macro macro
************************************************************************/ ************************************************************************/
/* /*
* frame size * frame size
...@@ -80,11 +76,7 @@ ...@@ -80,11 +76,7 @@
#define VAR8(id, offset) _VAR(id, offset, 0x8000) #define VAR8(id, offset) _VAR(id, offset, 0x8000)
/************************************************************************ /************************************************************************
struct struct
************************************************************************/ ************************************************************************/
struct mt9t112_frame_size { struct mt9t112_frame_size {
u16 width; u16 width;
...@@ -108,15 +100,12 @@ struct mt9t112_priv { ...@@ -108,15 +100,12 @@ struct mt9t112_priv {
int model; int model;
u32 flags; u32 flags;
/* for flags */ /* for flags */
#define INIT_DONE (1<<0) #define INIT_DONE (1 << 0)
#define PCLK_RISING (1 << 1)
}; };
/************************************************************************ /************************************************************************
supported format supported format
************************************************************************/ ************************************************************************/
static const struct mt9t112_format mt9t112_cfmts[] = { static const struct mt9t112_format mt9t112_cfmts[] = {
...@@ -154,11 +143,7 @@ static const struct mt9t112_format mt9t112_cfmts[] = { ...@@ -154,11 +143,7 @@ static const struct mt9t112_format mt9t112_cfmts[] = {
}; };
/************************************************************************ /************************************************************************
general function general function
************************************************************************/ ************************************************************************/
static struct mt9t112_priv *to_mt9t112(const struct i2c_client *client) static struct mt9t112_priv *to_mt9t112(const struct i2c_client *client)
{ {
...@@ -758,15 +743,18 @@ static int mt9t112_init_camera(const struct i2c_client *client) ...@@ -758,15 +743,18 @@ static int mt9t112_init_camera(const struct i2c_client *client)
} }
/************************************************************************ /************************************************************************
soc_camera_ops soc_camera_ops
************************************************************************/ ************************************************************************/
static int mt9t112_set_bus_param(struct soc_camera_device *icd, static int mt9t112_set_bus_param(struct soc_camera_device *icd,
unsigned long flags) unsigned long flags)
{ {
struct soc_camera_link *icl = to_soc_camera_link(icd);
struct i2c_client *client = to_i2c_client(to_soc_camera_control(icd));
struct mt9t112_priv *priv = to_mt9t112(client);
if (soc_camera_apply_sensor_flags(icl, flags) & SOCAM_PCLK_SAMPLE_RISING)
priv->flags |= PCLK_RISING;
return 0; return 0;
} }
...@@ -795,11 +783,7 @@ static struct soc_camera_ops mt9t112_ops = { ...@@ -795,11 +783,7 @@ static struct soc_camera_ops mt9t112_ops = {
}; };
/************************************************************************ /************************************************************************
v4l2_subdev_core_ops v4l2_subdev_core_ops
************************************************************************/ ************************************************************************/
static int mt9t112_g_chip_ident(struct v4l2_subdev *sd, static int mt9t112_g_chip_ident(struct v4l2_subdev *sd,
struct v4l2_dbg_chip_ident *id) struct v4l2_dbg_chip_ident *id)
...@@ -850,11 +834,7 @@ static struct v4l2_subdev_core_ops mt9t112_subdev_core_ops = { ...@@ -850,11 +834,7 @@ static struct v4l2_subdev_core_ops mt9t112_subdev_core_ops = {
/************************************************************************ /************************************************************************
v4l2_subdev_video_ops v4l2_subdev_video_ops
************************************************************************/ ************************************************************************/
static int mt9t112_s_stream(struct v4l2_subdev *sd, int enable) static int mt9t112_s_stream(struct v4l2_subdev *sd, int enable)
{ {
...@@ -877,8 +857,7 @@ static int mt9t112_s_stream(struct v4l2_subdev *sd, int enable) ...@@ -877,8 +857,7 @@ static int mt9t112_s_stream(struct v4l2_subdev *sd, int enable)
} }
if (!(priv->flags & INIT_DONE)) { if (!(priv->flags & INIT_DONE)) {
u16 param = (MT9T112_FLAG_PCLK_RISING_EDGE & u16 param = PCLK_RISING & priv->flags ? 0x0001 : 0x0000;
priv->info->flags) ? 0x0001 : 0x0000;
ECHECKER(ret, mt9t112_init_camera(client)); ECHECKER(ret, mt9t112_init_camera(client));
...@@ -1027,6 +1006,36 @@ static int mt9t112_enum_fmt(struct v4l2_subdev *sd, unsigned int index, ...@@ -1027,6 +1006,36 @@ static int mt9t112_enum_fmt(struct v4l2_subdev *sd, unsigned int index,
return 0; return 0;
} }
static int mt9t112_g_mbus_config(struct v4l2_subdev *sd,
struct v4l2_mbus_config *cfg)
{
struct i2c_client *client = v4l2_get_subdevdata(sd);
struct soc_camera_device *icd = client->dev.platform_data;
struct soc_camera_link *icl = to_soc_camera_link(icd);
cfg->flags = V4L2_MBUS_MASTER | V4L2_MBUS_VSYNC_ACTIVE_HIGH |
V4L2_MBUS_HSYNC_ACTIVE_HIGH | V4L2_MBUS_DATA_ACTIVE_HIGH |
V4L2_MBUS_PCLK_SAMPLE_RISING | V4L2_MBUS_PCLK_SAMPLE_FALLING;
cfg->type = V4L2_MBUS_PARALLEL;
cfg->flags = soc_camera_apply_board_flags(icl, cfg);
return 0;
}
static int mt9t112_s_mbus_config(struct v4l2_subdev *sd,
const struct v4l2_mbus_config *cfg)
{
struct i2c_client *client = v4l2_get_subdevdata(sd);
struct soc_camera_device *icd = client->dev.platform_data;
struct soc_camera_link *icl = to_soc_camera_link(icd);
struct mt9t112_priv *priv = to_mt9t112(client);
if (soc_camera_apply_board_flags(icl, cfg) & V4L2_MBUS_PCLK_SAMPLE_RISING)
priv->flags |= PCLK_RISING;
return 0;
}
static struct v4l2_subdev_video_ops mt9t112_subdev_video_ops = { static struct v4l2_subdev_video_ops mt9t112_subdev_video_ops = {
.s_stream = mt9t112_s_stream, .s_stream = mt9t112_s_stream,
.g_mbus_fmt = mt9t112_g_fmt, .g_mbus_fmt = mt9t112_g_fmt,
...@@ -1036,14 +1045,12 @@ static struct v4l2_subdev_video_ops mt9t112_subdev_video_ops = { ...@@ -1036,14 +1045,12 @@ static struct v4l2_subdev_video_ops mt9t112_subdev_video_ops = {
.g_crop = mt9t112_g_crop, .g_crop = mt9t112_g_crop,
.s_crop = mt9t112_s_crop, .s_crop = mt9t112_s_crop,
.enum_mbus_fmt = mt9t112_enum_fmt, .enum_mbus_fmt = mt9t112_enum_fmt,
.g_mbus_config = mt9t112_g_mbus_config,
.s_mbus_config = mt9t112_s_mbus_config,
}; };
/************************************************************************ /************************************************************************
i2c driver i2c driver
************************************************************************/ ************************************************************************/
static struct v4l2_subdev_ops mt9t112_subdev_ops = { static struct v4l2_subdev_ops mt9t112_subdev_ops = {
.core = &mt9t112_subdev_core_ops, .core = &mt9t112_subdev_core_ops,
...@@ -1147,11 +1154,7 @@ static struct i2c_driver mt9t112_i2c_driver = { ...@@ -1147,11 +1154,7 @@ static struct i2c_driver mt9t112_i2c_driver = {
}; };
/************************************************************************ /************************************************************************
module function module function
************************************************************************/ ************************************************************************/
static int __init mt9t112_module_init(void) static int __init mt9t112_module_init(void)
{ {
......
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