V4L/DVB (10029): m5602: remove uneeded test on po1030
[linux-2.6/libata-dev.git] / drivers / media / video / gspca / m5602 / m5602_po1030.c
blobf9932a16fbd783cdf2a145c10571b3befd928877
1 /*
2 * Driver for the po1030 sensor
4 * Copyright (c) 2008 Erik Andrén
5 * Copyright (c) 2007 Ilyes Gouta. Based on the m5603x Linux Driver Project.
6 * Copyright (c) 2005 m5603x Linux Driver Project <m5602@x3ng.com.br>
8 * Portions of code to USB interface and ALi driver software,
9 * Copyright (c) 2006 Willem Duinker
10 * v4l2 interface modeled after the V4L2 driver
11 * for SN9C10x PC Camera Controllers
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation, version 2.
19 #include "m5602_po1030.h"
21 static void po1030_dump_registers(struct sd *sd);
23 int po1030_probe(struct sd *sd)
25 u8 prod_id = 0, ver_id = 0, i;
27 if (force_sensor) {
28 if (force_sensor == PO1030_SENSOR) {
29 info("Forcing a %s sensor", po1030.name);
30 goto sensor_found;
32 /* If we want to force another sensor, don't try to probe this
33 * one */
34 return -ENODEV;
37 info("Probing for a po1030 sensor");
39 /* Run the pre-init to actually probe the unit */
40 for (i = 0; i < ARRAY_SIZE(preinit_po1030); i++) {
41 u8 data = preinit_po1030[i][2];
42 if (preinit_po1030[i][0] == SENSOR)
43 m5602_write_sensor(sd,
44 preinit_po1030[i][1], &data, 1);
45 else
46 m5602_write_bridge(sd, preinit_po1030[i][1], data);
49 if (m5602_read_sensor(sd, 0x3, &prod_id, 1))
50 return -ENODEV;
52 if (m5602_read_sensor(sd, 0x4, &ver_id, 1))
53 return -ENODEV;
55 if ((prod_id == 0x02) && (ver_id == 0xef)) {
56 info("Detected a po1030 sensor");
57 goto sensor_found;
59 return -ENODEV;
61 sensor_found:
62 sd->gspca_dev.cam.cam_mode = po1030.modes;
63 sd->gspca_dev.cam.nmodes = po1030.nmodes;
64 sd->desc->ctrls = po1030.ctrls;
65 sd->desc->nctrls = po1030.nctrls;
66 return 0;
69 int po1030_init(struct sd *sd)
71 int i, err = 0;
73 /* Init the sensor */
74 for (i = 0; i < ARRAY_SIZE(init_po1030) && !err; i++) {
75 u8 data[2] = {0x00, 0x00};
77 switch (init_po1030[i][0]) {
78 case BRIDGE:
79 err = m5602_write_bridge(sd,
80 init_po1030[i][1],
81 init_po1030[i][2]);
82 break;
84 case SENSOR:
85 data[0] = init_po1030[i][2];
86 err = m5602_write_sensor(sd,
87 init_po1030[i][1], data, 1);
88 break;
90 default:
91 info("Invalid stream command, exiting init");
92 return -EINVAL;
96 if (dump_sensor)
97 po1030_dump_registers(sd);
99 return err;
102 int po1030_get_exposure(struct gspca_dev *gspca_dev, __s32 *val)
104 struct sd *sd = (struct sd *) gspca_dev;
105 u8 i2c_data;
106 int err;
108 err = m5602_read_sensor(sd, PO1030_REG_INTEGLINES_H,
109 &i2c_data, 1);
110 if (err < 0)
111 goto out;
112 *val = (i2c_data << 8);
114 err = m5602_read_sensor(sd, PO1030_REG_INTEGLINES_M,
115 &i2c_data, 1);
116 *val |= i2c_data;
118 PDEBUG(D_V4L2, "Exposure read as %d", *val);
119 out:
120 return err;
123 int po1030_set_exposure(struct gspca_dev *gspca_dev, __s32 val)
125 struct sd *sd = (struct sd *) gspca_dev;
126 u8 i2c_data;
127 int err;
129 PDEBUG(D_V4L2, "Set exposure to %d", val & 0xffff);
131 i2c_data = ((val & 0xff00) >> 8);
132 PDEBUG(D_V4L2, "Set exposure to high byte to 0x%x",
133 i2c_data);
135 err = m5602_write_sensor(sd, PO1030_REG_INTEGLINES_H,
136 &i2c_data, 1);
137 if (err < 0)
138 goto out;
140 i2c_data = (val & 0xff);
141 PDEBUG(D_V4L2, "Set exposure to low byte to 0x%x",
142 i2c_data);
143 err = m5602_write_sensor(sd, PO1030_REG_INTEGLINES_M,
144 &i2c_data, 1);
146 out:
147 return err;
150 int po1030_get_gain(struct gspca_dev *gspca_dev, __s32 *val)
152 struct sd *sd = (struct sd *) gspca_dev;
153 u8 i2c_data;
154 int err;
156 err = m5602_read_sensor(sd, PO1030_REG_GLOBALGAIN,
157 &i2c_data, 1);
158 *val = i2c_data;
159 PDEBUG(D_V4L2, "Read global gain %d", *val);
161 return err;
164 int po1030_get_hflip(struct gspca_dev *gspca_dev, __s32 *val)
166 struct sd *sd = (struct sd *) gspca_dev;
167 u8 i2c_data;
168 int err;
170 err = m5602_read_sensor(sd, PO1030_REG_CONTROL2,
171 &i2c_data, 1);
173 *val = (i2c_data >> 7) & 0x01 ;
175 PDEBUG(D_V4L2, "Read hflip %d", *val);
177 return err;
180 int po1030_set_hflip(struct gspca_dev *gspca_dev, __s32 val)
182 struct sd *sd = (struct sd *) gspca_dev;
183 u8 i2c_data;
184 int err;
186 PDEBUG(D_V4L2, "Set hflip %d", val);
188 i2c_data = (val & 0x01) << 7;
190 err = m5602_write_sensor(sd, PO1030_REG_CONTROL2,
191 &i2c_data, 1);
193 return err;
196 int po1030_get_vflip(struct gspca_dev *gspca_dev, __s32 *val)
198 struct sd *sd = (struct sd *) gspca_dev;
199 u8 i2c_data;
200 int err;
202 err = m5602_read_sensor(sd, PO1030_REG_GLOBALGAIN,
203 &i2c_data, 1);
205 *val = (i2c_data >> 6) & 0x01;
207 PDEBUG(D_V4L2, "Read vflip %d", *val);
209 return err;
212 int po1030_set_vflip(struct gspca_dev *gspca_dev, __s32 val)
214 struct sd *sd = (struct sd *) gspca_dev;
215 u8 i2c_data;
216 int err;
218 PDEBUG(D_V4L2, "Set vflip %d", val);
220 i2c_data = (val & 0x01) << 6;
222 err = m5602_write_sensor(sd, PO1030_REG_CONTROL2,
223 &i2c_data, 1);
225 return err;
228 int po1030_set_gain(struct gspca_dev *gspca_dev, __s32 val)
230 struct sd *sd = (struct sd *) gspca_dev;
231 u8 i2c_data;
232 int err;
234 i2c_data = val & 0xff;
235 PDEBUG(D_V4L2, "Set global gain to %d", i2c_data);
236 err = m5602_write_sensor(sd, PO1030_REG_GLOBALGAIN,
237 &i2c_data, 1);
238 return err;
241 int po1030_get_red_balance(struct gspca_dev *gspca_dev, __s32 *val)
243 struct sd *sd = (struct sd *) gspca_dev;
244 u8 i2c_data;
245 int err;
247 err = m5602_read_sensor(sd, PO1030_REG_RED_GAIN,
248 &i2c_data, 1);
249 *val = i2c_data;
250 PDEBUG(D_V4L2, "Read red gain %d", *val);
251 return err;
254 int po1030_set_red_balance(struct gspca_dev *gspca_dev, __s32 val)
256 struct sd *sd = (struct sd *) gspca_dev;
257 u8 i2c_data;
258 int err;
260 i2c_data = val & 0xff;
261 PDEBUG(D_V4L2, "Set red gain to %d", i2c_data);
262 err = m5602_write_sensor(sd, PO1030_REG_RED_GAIN,
263 &i2c_data, 1);
264 return err;
267 int po1030_get_blue_balance(struct gspca_dev *gspca_dev, __s32 *val)
269 struct sd *sd = (struct sd *) gspca_dev;
270 u8 i2c_data;
271 int err;
273 err = m5602_read_sensor(sd, PO1030_REG_BLUE_GAIN,
274 &i2c_data, 1);
275 *val = i2c_data;
276 PDEBUG(D_V4L2, "Read blue gain %d", *val);
278 return err;
281 int po1030_set_blue_balance(struct gspca_dev *gspca_dev, __s32 val)
283 struct sd *sd = (struct sd *) gspca_dev;
284 u8 i2c_data;
285 int err;
286 i2c_data = val & 0xff;
287 PDEBUG(D_V4L2, "Set blue gain to %d", i2c_data);
288 err = m5602_write_sensor(sd, PO1030_REG_BLUE_GAIN,
289 &i2c_data, 1);
291 return err;
294 int po1030_power_down(struct sd *sd)
296 return 0;
299 static void po1030_dump_registers(struct sd *sd)
301 int address;
302 u8 value = 0;
304 info("Dumping the po1030 sensor core registers");
305 for (address = 0; address < 0x7f; address++) {
306 m5602_read_sensor(sd, address, &value, 1);
307 info("register 0x%x contains 0x%x",
308 address, value);
311 info("po1030 register state dump complete");
313 info("Probing for which registers that are read/write");
314 for (address = 0; address < 0xff; address++) {
315 u8 old_value, ctrl_value;
316 u8 test_value[2] = {0xff, 0xff};
318 m5602_read_sensor(sd, address, &old_value, 1);
319 m5602_write_sensor(sd, address, test_value, 1);
320 m5602_read_sensor(sd, address, &ctrl_value, 1);
322 if (ctrl_value == test_value[0])
323 info("register 0x%x is writeable", address);
324 else
325 info("register 0x%x is read only", address);
327 /* Restore original value */
328 m5602_write_sensor(sd, address, &old_value, 1);