* PATCH: gspca-sonixb-fix-sif-cams.patch
@ 2008-07-14 20:44 Hans de Goede
0 siblings, 0 replies; only message in thread
From: Hans de Goede @ 2008-07-14 20:44 UTC (permalink / raw)
To: Jean-Francois Moine; +Cc: video4linux-list
[-- Attachment #1: Type: text/plain, Size: 669 bytes --]
Hi,
One of the sn9c103 + ov7660 patches has hardcoded the bridge registers 0x15
and 0x16 (H-size and V-size in units of 16 pixels) to 0x28 0x1e, which will
only work for 640x480 res sensors and not for 352x288 res sensors. This patch
restores the old behavior of reading these register from the per sensor bridge
init settings, and fixes the ov7660_3 init settings to correctly set these
registers to 0x28, 0x1e.
This fixes my 2 sn9c10x test cams:
0c45:6005 Microdia Sweex Mini WebCam tas5110
0c45:6011 Microdia PC Camera (SN9C102) ov6550
Which BTW can be set green on your cam test matrix :)
Signed-off-by: Hans de Goede <j.w.r.degoede@hhs.nl>
Regards,
Hans
[-- Attachment #2: gspca-sonixb-fix-sif-cams.patch --]
[-- Type: text/x-patch, Size: 1943 bytes --]
One of the sn9c103 + ov7660 patches has hardcoded the bridge registers 0x15
and 0x16 (H-size and V-size in units of 16 pixels) to 0x28 0x1e, which will
only work for 640x480 res sensors and not for 352x288 res sensors. This patch
restores the old behavior of reading these register from the per sensor bridge
init settings, and fixes the ov7660_3 init settings to correctly set these
registers to 0x28, 0x1e.
This fixes my 2 sn9c10x test cams:
0c45:6005 Microdia Sweex Mini WebCam tas5110
0c45:6011 Microdia PC Camera (SN9C102) ov6550
Which BTW can be set green on your cam test matrix :)
Signed-off-by: Hans de Goede <j.w.r.degoede@hhs.nl>
diff -r fa6e3138e75c linux/drivers/media/video/gspca/sonixb.c
--- a/linux/drivers/media/video/gspca/sonixb.c Mon Jul 14 18:53:03 2008 +0200
+++ b/linux/drivers/media/video/gspca/sonixb.c Mon Jul 14 22:28:56 2008 +0200
@@ -270,7 +270,7 @@
0x44, 0x44, 0x00, 0x1a, 0x20, 0x20, 0x20, 0x80, /* r01 .. r08 */
0x21, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, /* r09 .. r10 */
0x00, 0x01, 0x01, 0x0a, /* r11 .. r14 */
- 0x16, 0x12, /* H & V sizes r15 .. r16 */
+ 0x28, 0x1e, /* H & V sizes r15 .. r16 */
0x68, 0x8f, MCK_INIT1, /* r17 .. r19 */
0x1d, 0x10, 0x02, 0x03, 0x0f, 0x0c, 0x00, /* r1a .. r20 */
0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80, /* r21 .. r28 */
@@ -811,7 +811,6 @@
const __u8 *sn9c10x;
__u8 reg01, reg17;
__u8 reg17_19[3];
- static const __u8 reg15[2] = { 0x28, 0x1e };
mode = gspca_dev->cam.cam_mode[(int) gspca_dev->curr_mode].priv;
switch (sd->sensor) {
@@ -931,8 +930,8 @@
sizeof tas5130_sensor_init);
break;
}
- /* H_size V_size 0x28, 0x1e maybe 640x480 */
- reg_w(gspca_dev, 0x15, reg15, 2);
+ /* H_size V_size 0x28, 0x1e -> 640x480. 0x16, 0x12 -> 352x288 */
+ reg_w(gspca_dev, 0x15, &sn9c10x[0x15 - 1], 2);
/* compression register */
reg_w(gspca_dev, 0x18, ®17_19[1], 1);
if (sd->sensor != SENSOR_OV7630_3) {
[-- Attachment #3: Type: text/plain, Size: 164 bytes --]
--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-07-14 20:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-14 20:44 PATCH: gspca-sonixb-fix-sif-cams.patch Hans de Goede
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox