Commit bf475d32 authored by Mikhail Rudenko's avatar Mikhail Rudenko Committed by Mauro Carvalho Chehab

media: i2c: ov4689: Move pixel array size out of struct ov4689_mode

Pixel array dimensions and default crop size do not belong to the
ov4689_mode structure, since they are mode independent. Make them
defines instead.
Signed-off-by: default avatarMikhail Rudenko <mike.rudenko@gmail.com>
Reviewed-by: default avatarKieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: default avatarSakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent 6b3ad3bc
...@@ -70,6 +70,11 @@ ...@@ -70,6 +70,11 @@
#define OV4689_LANES 4 #define OV4689_LANES 4
#define OV4689_XVCLK_FREQ 24000000 #define OV4689_XVCLK_FREQ 24000000
#define OV4689_PIXEL_ARRAY_WIDTH 2720
#define OV4689_PIXEL_ARRAY_HEIGHT 1536
#define OV4689_DUMMY_ROWS 8 /* 8 dummy rows on each side */
#define OV4689_DUMMY_COLUMNS 16 /* 16 dummy columns on each side */
static const char *const ov4689_supply_names[] = { static const char *const ov4689_supply_names[] = {
"avdd", /* Analog power */ "avdd", /* Analog power */
"dovdd", /* Digital I/O power */ "dovdd", /* Digital I/O power */
...@@ -90,10 +95,6 @@ struct ov4689_mode { ...@@ -90,10 +95,6 @@ struct ov4689_mode {
u32 vts_def; u32 vts_def;
u32 exp_def; u32 exp_def;
u32 pixel_rate; u32 pixel_rate;
u32 sensor_width;
u32 sensor_height;
u32 crop_top;
u32 crop_left;
const struct cci_reg_sequence *reg_list; const struct cci_reg_sequence *reg_list;
unsigned int num_regs; unsigned int num_regs;
}; };
...@@ -254,10 +255,6 @@ static const struct ov4689_mode supported_modes[] = { ...@@ -254,10 +255,6 @@ static const struct ov4689_mode supported_modes[] = {
.id = OV4689_MODE_2688_1520, .id = OV4689_MODE_2688_1520,
.width = 2688, .width = 2688,
.height = 1520, .height = 1520,
.sensor_width = 2720,
.sensor_height = 1536,
.crop_top = 8,
.crop_left = 16,
.exp_def = 1536, .exp_def = 1536,
.hts_def = 10296, .hts_def = 10296,
.hts_min = 3432, .hts_min = 3432,
...@@ -385,8 +382,6 @@ static int ov4689_get_selection(struct v4l2_subdev *sd, ...@@ -385,8 +382,6 @@ static int ov4689_get_selection(struct v4l2_subdev *sd,
struct v4l2_subdev_state *state, struct v4l2_subdev_state *state,
struct v4l2_subdev_selection *sel) struct v4l2_subdev_selection *sel)
{ {
const struct ov4689_mode *mode = to_ov4689(sd)->cur_mode;
if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE) if (sel->which != V4L2_SUBDEV_FORMAT_ACTIVE)
return -EINVAL; return -EINVAL;
...@@ -394,15 +389,17 @@ static int ov4689_get_selection(struct v4l2_subdev *sd, ...@@ -394,15 +389,17 @@ static int ov4689_get_selection(struct v4l2_subdev *sd,
case V4L2_SEL_TGT_CROP_BOUNDS: case V4L2_SEL_TGT_CROP_BOUNDS:
sel->r.top = 0; sel->r.top = 0;
sel->r.left = 0; sel->r.left = 0;
sel->r.width = mode->sensor_width; sel->r.width = OV4689_PIXEL_ARRAY_WIDTH;
sel->r.height = mode->sensor_height; sel->r.height = OV4689_PIXEL_ARRAY_HEIGHT;
return 0; return 0;
case V4L2_SEL_TGT_CROP: case V4L2_SEL_TGT_CROP:
case V4L2_SEL_TGT_CROP_DEFAULT: case V4L2_SEL_TGT_CROP_DEFAULT:
sel->r.top = mode->crop_top; sel->r.top = OV4689_DUMMY_ROWS;
sel->r.left = mode->crop_left; sel->r.left = OV4689_DUMMY_COLUMNS;
sel->r.width = mode->width; sel->r.width =
sel->r.height = mode->height; OV4689_PIXEL_ARRAY_WIDTH - 2 * OV4689_DUMMY_COLUMNS;
sel->r.height =
OV4689_PIXEL_ARRAY_HEIGHT - 2 * OV4689_DUMMY_ROWS;
return 0; return 0;
} }
......
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