initial commit with v2.6.9
[linux-2.6.9-moxart.git] / drivers / usb / media / sn9c102_tas5130d1b.c
blob0bab19435399bf290ab57ca327d73abada048972
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 ***************************************************************************/
22 #include "sn9c102_sensor.h"
25 static struct sn9c102_sensor tas5130d1b;
28 static int tas5130d1b_init(struct sn9c102_device* cam)
30 int err = 0;
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);
41 err += sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11, 0x00, 0x40,
42 0x47, 0, 0);
44 return err;
48 static int tas5130d1b_set_ctrl(struct sn9c102_device* cam,
49 const struct v4l2_control* ctrl)
51 switch (ctrl->id) {
52 case V4L2_CID_GAIN:
53 return sn9c102_i2c_try_raw_write(cam, &tas5130d1b, 4, 0x11,
54 0x02, 0x20,
55 0xff - (ctrl->value & 0xff),
56 0, 0);
57 default:
58 return -EINVAL;
63 static int tas5130d1b_set_crop(struct sn9c102_device* cam,
64 const struct v4l2_rect* rect)
66 struct sn9c102_sensor* s = &tas5130d1b;
67 u8 h_start = (u8)(rect->left - s->cropcap.bounds.left) + 104,
68 v_start = (u8)(rect->top - s->cropcap.bounds.top) + 12;
69 int err = 0;
71 err += sn9c102_write_reg(cam, h_start, 0x12);
72 err += sn9c102_write_reg(cam, v_start, 0x13);
74 /* Do NOT change! */
75 err += sn9c102_write_reg(cam, 0x1d, 0x1a);
76 err += sn9c102_write_reg(cam, 0x10, 0x1b);
77 err += sn9c102_write_reg(cam, 0xf3, 0x19);
79 return err;
83 static struct sn9c102_sensor tas5130d1b = {
84 .name = "TAS5130D1B",
85 .maintainer = "Luca Risolia <luca.risolia@studio.unibo.it>",
86 .frequency = SN9C102_I2C_100KHZ,
87 .interface = SN9C102_I2C_3WIRES,
88 .init = &tas5130d1b_init,
89 .qctrl = {
91 .id = V4L2_CID_GAIN,
92 .type = V4L2_CTRL_TYPE_INTEGER,
93 .name = "global gain",
94 .minimum = 0x00,
95 .maximum = 0xff,
96 .step = 0x01,
97 .default_value = 0x00,
98 .flags = 0,
101 .set_ctrl = &tas5130d1b_set_ctrl,
102 .cropcap = {
103 .bounds = {
104 .left = 0,
105 .top = 0,
106 .width = 640,
107 .height = 480,
109 .defrect = {
110 .left = 0,
111 .top = 0,
112 .width = 640,
113 .height = 480,
116 .set_crop = &tas5130d1b_set_crop,
117 .pix_format = {
118 .width = 640,
119 .height = 480,
120 .pixelformat = V4L2_PIX_FMT_SBGGR8,
121 .priv = 8,
126 int sn9c102_probe_tas5130d1b(struct sn9c102_device* cam)
128 /* This sensor has no identifiers, so let's attach it anyway */
129 sn9c102_attach_sensor(cam, &tas5130d1b);
131 /* At the moment, sensor detection is based on USB pid/vid */
132 if (tas5130d1b.usbdev->descriptor.idProduct != 0x6025)
133 return -ENODEV;
135 return 0;