This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / drivers / usb / media / sn9c102_tas5130d1b.c
1 /***************************************************************************
2  * Driver for TAS5130D1B image sensor connected to the SN9C10[12] PC       *
3  * Camera Controllers                                                      *
4  *                                                                         *
5  * Copyright (C) 2004 by Luca Risolia <luca.risolia@studio.unibo.it>       *
6  *                                                                         *
7  * This program is free software; you can redistribute it and/or modify    *
8  * it under the terms of the GNU General Public License as published by    *
9  * the Free Software Foundation; either version 2 of the License, or       *
10  * (at your option) any later version.                                     *
11  *                                                                         *
12  * This program is distributed in the hope that it will be useful,         *
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of          *
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           *
15  * GNU General Public License for more details.                            *
16  *                                                                         *
17  * You should have received a copy of the GNU General Public License       *
18  * along with this program; if not, write to the Free Software             *
19  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.               *
20  ***************************************************************************/
21
22 #include "sn9c102_sensor.h"
23
24
25 static struct sn9c102_sensor tas5130d1b;
26
27
28 static int tas5130d1b_init(struct sn9c102_device* cam)
29 {
30         int err = 0;
31
32         err += sn9c102_write_reg(cam, 0x01, 0x01);
33         err += sn9c102_write_reg(cam, 0x20, 0x17);
34         err += sn9c102_write_reg(cam, 0x04, 0x01);
35         err += sn9c102_write_reg(cam, 0x01, 0x10);
36         err += sn9c102_write_reg(cam, 0x00, 0x11);
37         err += sn9c102_write_reg(cam, 0x00, 0x14);
38         err += sn9c102_write_reg(cam, 0x60, 0x17);
39         err += sn9c102_write_reg(cam, 0x07, 0x18);
40         err += sn9c102_write_reg(cam, 0x33, 0x19);
41
42         err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x00, 0x40,
43                                          0x47, 0, 0);
44         err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x02, 0x20,
45                                          0xa9, 0, 0);
46         err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x00, 0xc0,
47                                          0x49, 0, 0);
48         err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x02, 0x20,
49                                          0x6c, 0, 0);
50         err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x00, 0xc0,
51                                          0x08, 0, 0);
52         err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x00, 0x20,
53                                          0x00, 0, 0);
54
55         err += sn9c102_write_reg(cam, 0x63, 0x19);
56
57         return err;
58 }
59
60
61 static int tas5130d1b_set_crop(struct sn9c102_device* cam, 
62                                const struct v4l2_rect* rect)
63 {
64         struct sn9c102_sensor* s = &tas5130d1b;
65         int err = 0;
66         u8 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 104,
67            v_start = (u8)(rect->top - s->cropcap.bounds.top) + 12;
68
69         err += sn9c102_write_reg(cam, h_start, 0x12);
70         err += sn9c102_write_reg(cam, v_start, 0x13);
71
72         return err;
73 }
74
75
76 static struct sn9c102_sensor tas5130d1b = {
77         .name = "TAS5130D1B",
78         .maintainer = "Luca Risolia <luca.risolia@studio.unibo.it>",
79         .frequency = SN9C102_I2C_100KHZ,
80         .interface = SN9C102_I2C_3WIRES,
81         .init = &tas5130d1b_init,
82         .cropcap = {
83                 .bounds = {
84                         .left = 0,
85                         .top = 0,
86                         .width = 640,
87                         .height = 480,
88                 },
89                 .defrect = {
90                         .left = 0,
91                         .top = 0,
92                         .width = 640,
93                         .height = 480,
94                 },
95         },
96         .set_crop = &tas5130d1b_set_crop,
97         .pix_format = {
98                 .width = 640,
99                 .height = 480,
100                 .pixelformat = V4L2_PIX_FMT_SBGGR8,
101                 .priv = 8,
102         }
103 };
104
105
106 int sn9c102_probe_tas5130d1b(struct sn9c102_device* cam)
107 {
108         /* This sensor has no identifiers, so let's attach it anyway */
109         sn9c102_attach_sensor(cam, &tas5130d1b);
110
111         /* At the moment, only devices whose PID is 0x6025 have this sensor */
112         if (tas5130d1b.usbdev->descriptor.idProduct != 0x6025)
113                 return -ENODEV;
114
115         dev_info(tas5130d1b.dev, "TAS5130D1B detected, but the support for it "
116                                  "is disabled at the moment - needs further "
117                                  "testing -\n");
118
119         return -ENODEV;
120 }