mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-17 22:41:25 +00:00
V4L/DVB (11528): gspca - m5602-s5k4aa: Consolidate the gain settings, adjust row start
Signed-off-by: Erik Andr?n <erik.andren@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
a68985d469
commit
71c6e59d47
@ -111,7 +111,7 @@ const static struct ctrl s5k4aa_ctrls[] = {
|
||||
.minimum = 0,
|
||||
.maximum = 127,
|
||||
.step = 1,
|
||||
.default_value = 0xa0,
|
||||
.default_value = DEFAULT_GAIN_2,
|
||||
.flags = V4L2_CTRL_FLAG_SLIDER
|
||||
},
|
||||
.set = s5k4aa_set_gain,
|
||||
|
@ -57,6 +57,8 @@
|
||||
#define S5K4AA_RM_H_FLIP 0x40
|
||||
#define S5K4AA_RM_V_FLIP 0x80
|
||||
|
||||
#define DEFAULT_GAIN_2 0x5f
|
||||
|
||||
/*****************************************************************************/
|
||||
|
||||
/* Kernel module parameters */
|
||||
@ -171,9 +173,6 @@ static const unsigned char init_s5k4aa[][4] =
|
||||
{SENSOR, S5K4AA_PAGE_MAP, 0x02, 0x00},
|
||||
{SENSOR, 0x0c, 0x05, 0x00},
|
||||
{SENSOR, 0x02, 0x0e, 0x00},
|
||||
{SENSOR, S5K4AA_GAIN_1, 0x0f, 0x00},
|
||||
{SENSOR, S5K4AA_GAIN_2, 0x00, 0x00},
|
||||
{SENSOR, S5K4AA_GLOBAL_GAIN__, 0x01, 0x00},
|
||||
{SENSOR, 0x11, 0x00, 0x00},
|
||||
{SENSOR, 0x12, 0x00, 0x00},
|
||||
{SENSOR, S5K4AA_PAGE_MAP, 0x02, 0x00},
|
||||
@ -247,9 +246,6 @@ static const unsigned char init_s5k4aa[][4] =
|
||||
{SENSOR, 0x12, 0xc3, 0x00},
|
||||
{SENSOR, S5K4AA_PAGE_MAP, 0x02, 0x00},
|
||||
{SENSOR, 0x02, 0x0e, 0x00},
|
||||
{SENSOR_LONG, S5K4AA_GLOBAL_GAIN__, 0x0f, 0x00},
|
||||
{SENSOR, S5K4AA_GAIN_1, 0x0b, 0x00},
|
||||
{SENSOR, S5K4AA_GAIN_2, 0xa0, 0x00}
|
||||
};
|
||||
|
||||
static const unsigned char VGA_s5k4aa[][4] =
|
||||
@ -289,7 +285,7 @@ static const unsigned char VGA_s5k4aa[][4] =
|
||||
{SENSOR, 0x37, 0x01, 0x00},
|
||||
/* ROWSTART_HI, ROWSTART_LO : 10 + (1024-960)/2 = 42 = 0x002a */
|
||||
{SENSOR, S5K4AA_ROWSTART_HI, 0x00, 0x00},
|
||||
{SENSOR, S5K4AA_ROWSTART_LO, 0x2a, 0x00},
|
||||
{SENSOR, S5K4AA_ROWSTART_LO, 0x29, 0x00},
|
||||
{SENSOR, S5K4AA_COLSTART_HI, 0x00, 0x00},
|
||||
{SENSOR, S5K4AA_COLSTART_LO, 0x0c, 0x00},
|
||||
/* window_height_hi, window_height_lo : 960 = 0x03c0 */
|
||||
@ -306,9 +302,7 @@ static const unsigned char VGA_s5k4aa[][4] =
|
||||
{SENSOR, 0x12, 0xc3, 0x00},
|
||||
{SENSOR, S5K4AA_PAGE_MAP, 0x02, 0x00},
|
||||
{SENSOR, 0x02, 0x0e, 0x00},
|
||||
{SENSOR_LONG, S5K4AA_GLOBAL_GAIN__, 0x0f, 0x00},
|
||||
{SENSOR, S5K4AA_GAIN_1, 0x0b, 0x00},
|
||||
{SENSOR, S5K4AA_GAIN_2, 0xa0, 0x00}
|
||||
{SENSOR, S5K4AA_GAIN_1, 0x10, 0x00},
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user