Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27b1e4ca authored by Erik Andrén's avatar Erik Andrén Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (10041): m5602 - rework parts of the resolution initialization

parent 1f614f40
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -139,7 +139,6 @@ int ov9650_init(struct sd *sd)
		data = 0x30;
		err = m5602_write_sensor(sd, OV9650_MVFP, &data, 1);
	}

	return err;
}

@@ -148,6 +147,13 @@ int ov9650_start(struct sd *sd)
	int i, err = 0;
	struct cam *cam = &sd->gspca_dev.cam;

	for (i = 0; i < ARRAY_SIZE(res_init_ov9650) && !err; i++) {
		u8 data = res_init_ov9650[i][1];
		err = m5602_write_bridge(sd, res_init_ov9650[i][0], data);
	}
	if (err < 0)
		return err;

	switch (cam->cam_mode[sd->gspca_dev.curr_mode].width)
	{
	case 640:
+25 −34
Original line number Diff line number Diff line
@@ -458,21 +458,20 @@ static const unsigned char power_down_ov9650[][3] =
	{BRIDGE, M5602_XB_GPIO_EN_L, 0x06},
	{BRIDGE, M5602_XB_GPIO_DAT_H, 0x02},
	{BRIDGE, M5602_XB_SEN_CLK_DIV, 0x04},
	{BRIDGE, M5602_XB_SEN_CLK_CTRL, 0xb0}
	{BRIDGE, M5602_XB_SEN_CLK_CTRL, 0xb0},
};

static const unsigned char VGA_ov9650[][3] =
static const unsigned char res_init_ov9650[][2] =
{
	{SENSOR, OV9650_COM7, OV9650_VGA_SELECT |
			      OV9650_RGB_SELECT |
			      OV9650_RAW_RGB_SELECT},

	{BRIDGE, M5602_XB_LINE_OF_FRAME_H, 0x82},
	{BRIDGE, M5602_XB_LINE_OF_FRAME_L, 0x00},
	{BRIDGE, M5602_XB_PIX_OF_LINE_H, 0x82},
	{BRIDGE, M5602_XB_PIX_OF_LINE_L, 0x00},
	{BRIDGE, M5602_XB_SIG_INI, 0x01},
	{M5602_XB_LINE_OF_FRAME_H, 0x82},
	{M5602_XB_LINE_OF_FRAME_L, 0x00},
	{M5602_XB_PIX_OF_LINE_H, 0x82},
	{M5602_XB_PIX_OF_LINE_L, 0x00},
	{M5602_XB_SIG_INI, 0x01}
};

static const unsigned char VGA_ov9650[][3] =
{
	/* Moves the view window in a vertical orientation */
	{BRIDGE, M5602_XB_VSYNC_PARA, 0x00},
	{BRIDGE, M5602_XB_VSYNC_PARA, 0x09},
@@ -484,21 +483,15 @@ static const unsigned char VGA_ov9650[][3] =
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x00},
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x62}, /* 98 */
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x02}, /* 640 + 98 */
	{BRIDGE, M5602_XB_HSYNC_PARA, 0xe2}
};
	{BRIDGE, M5602_XB_HSYNC_PARA, 0xe2},

static const unsigned char CIF_ov9650[][3] =
{
	{SENSOR, OV9650_COM7, OV9650_CIF_SELECT |
	{SENSOR, OV9650_COM7, OV9650_VGA_SELECT |
			      OV9650_RGB_SELECT |
			      OV9650_RAW_RGB_SELECT},
};

	{BRIDGE, M5602_XB_LINE_OF_FRAME_H, 0x82},
	{BRIDGE, M5602_XB_LINE_OF_FRAME_L, 0x00},
	{BRIDGE, M5602_XB_PIX_OF_LINE_H, 0x82},
	{BRIDGE, M5602_XB_PIX_OF_LINE_L, 0x00},
	{BRIDGE, M5602_XB_SIG_INI, 0x01},

static const unsigned char CIF_ov9650[][3] =
{
	/* Moves the view window in a vertical orientation */
	{BRIDGE, M5602_XB_VSYNC_PARA, 0x00},
	{BRIDGE, M5602_XB_VSYNC_PARA, 0x09},
@@ -510,21 +503,15 @@ static const unsigned char CIF_ov9650[][3] =
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x00},
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x62}, /* 98 */
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x01}, /* 352 + 98 */
	{BRIDGE, M5602_XB_HSYNC_PARA, 0xc2}
};
	{BRIDGE, M5602_XB_HSYNC_PARA, 0xc2},

static const unsigned char QVGA_ov9650[][3] =
{
	{SENSOR, OV9650_COM7, OV9650_QVGA_SELECT |
	{SENSOR, OV9650_COM7, OV9650_CIF_SELECT |
			      OV9650_RGB_SELECT |
			      OV9650_RAW_RGB_SELECT},
};

	{BRIDGE, M5602_XB_LINE_OF_FRAME_H, 0x82},
	{BRIDGE, M5602_XB_LINE_OF_FRAME_L, 0x00},
	{BRIDGE, M5602_XB_PIX_OF_LINE_H, 0x82},
	{BRIDGE, M5602_XB_PIX_OF_LINE_L, 0x00},
	{BRIDGE, M5602_XB_SIG_INI, 0x01},

static const unsigned char QVGA_ov9650[][3] =
{
	/* Moves the view window in a vertical orientation */
	{BRIDGE, M5602_XB_VSYNC_PARA, 0x00},
	{BRIDGE, M5602_XB_VSYNC_PARA, 0x08},
@@ -536,7 +523,11 @@ static const unsigned char QVGA_ov9650[][3] =
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x00},
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x31}, /* 50 */
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x01}, /* 320 + 50 */
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x71}
	{BRIDGE, M5602_XB_HSYNC_PARA, 0x71},

	{SENSOR, OV9650_COM7, OV9650_QVGA_SELECT |
			      OV9650_RGB_SELECT |
			      OV9650_RAW_RGB_SELECT},
};

#endif