3 * @author Nicolas VIVIEN
6 * @brief Device specific functions
8 * @note Copyright (C) Nicolas VIVIEN
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 #include <linux/errno.h>
28 #include <linux/string.h>
32 #include "sn9c20x-bridge.h"
33 #include "omnivision.h"
36 int (*sn_probes
[])(struct usb_sn9c20x
*dev
) = {
42 struct sn9c20x_video_mode sn9c20x_modes
[SN9C20X_N_MODES
] = {
46 .scale
= SN9C20X_1_4_SCALE
,
47 .window
= {65, 48, 1024, 768}
52 .scale
= SN9C20X_1_4_SCALE
,
53 .window
= {0, 0, 640, 480}
58 .scale
= SN9C20X_1_2_SCALE
,
59 .window
= {145, 96, 704, 576}
64 .scale
= SN9C20X_1_2_SCALE
,
65 .window
= {0, 0, 640, 480}
70 .scale
= SN9C20X_NO_SCALE
,
71 .window
= {145, 96, 704, 576}
76 .scale
= SN9C20X_NO_SCALE
,
77 .window
= {0, 0, 640, 480}
81 struct sn9c20x_video_format sn9c20x_fmts
[SN9C20X_N_FMTS
] = {
83 .pix_fmt
= V4L2_PIX_FMT_SN9C20X_I420
,
84 .desc
= "SN9C20X I420 (YUV 4:2:0)",
86 .set_format
= sn9c20x_set_yuv420
,
89 .pix_fmt
= V4L2_PIX_FMT_SBGGR8
,
90 .desc
= "Bayer 8bit (BGGR)",
92 .set_format
= sn9c20x_set_raw
,
96 .pix_fmt = V4L2_PIX_FMT_YUYV,
97 .desc = "YUYV (YUV 4:2:0)",
99 .set_format = sn9c20x_set_yuv422,
103 .pix_fmt
= V4L2_PIX_FMT_JPEG
,
104 .desc
= "JPEG (YUV 4:2:2)",
106 .set_format
= sn9c20x_set_jpeg
,
110 int sn9c20x_initialize_sensor(struct usb_sn9c20x
*dev
)
115 dev
->camera
.min_yavg
= 60;
116 dev
->camera
.max_yavg
= 150;
117 dev
->camera
.min_stable_yavg
= 70;
118 dev
->camera
.max_stable_yavg
= 140;
119 dev
->camera
.old_yavg
= -1;
121 /* Probe sensor first if sensor set to probe*/
122 if (dev
->camera
.sensor
== PROBE_SENSOR
) {
123 for (i
= 0; i
< ARRAY_SIZE(sn_probes
); i
++) {
124 ret
= sn_probes
[i
](dev
);
125 dev
->camera
.sensor
= ret
;
131 switch (dev
->camera
.sensor
) {
133 sn9c20x_write_i2c_array(dev
, soi968_init
, 0);
134 dev
->camera
.set_exposure
= soi968_set_exposure
;
135 dev
->camera
.set_auto_exposure
= soi968_set_autoexposure
;
136 dev
->camera
.set_gain
= soi968_set_gain
;
137 dev
->camera
.set_auto_gain
= ov_set_autogain
;
138 dev
->camera
.button_detect
= soi968_button_detect
;
139 dev
->camera
.hstart
= 60;
140 dev
->camera
.vstart
= 11;
141 UDIA_INFO("Detected SOI968 Sensor.\n");
144 sn9c20x_write_i2c_array(dev
, ov9650_init
, 0);
145 dev
->camera
.hstart
= 1;
146 dev
->camera
.vstart
= 7;
147 dev
->camera
.set_hvflip
= ov965x_set_hvflip
;
148 dev
->camera
.set_exposure
= ov_set_exposure
;
149 dev
->camera
.set_auto_gain
= ov_set_autogain
;
150 dev
->camera
.set_gain
= ov9650_set_gain
;
151 dev
->camera
.flip_detect
= ov965x_flip_detect
;
152 UDIA_INFO("Detected OV9650 Sensor.\n");
155 sn9c20x_write_i2c_array(dev
, ov9655_init
, 0);
156 dev
->camera
.set_exposure
= ov_set_exposure
;
157 dev
->camera
.set_auto_gain
= ov_set_autogain
;
158 dev
->camera
.hstart
= 0;
159 dev
->camera
.vstart
= 7;
160 UDIA_INFO("Detected OV9655 Sensor.\n");
163 sn9c20x_write_i2c_array(dev
, ov7670_init
, 0);
164 dev
->camera
.set_exposure
= ov_set_exposure
;
165 dev
->camera
.set_auto_gain
= ov_set_autogain
;
166 dev
->camera
.flip_detect
= ov7670_flip_detect
;
167 dev
->camera
.hstart
= 0;
168 dev
->camera
.vstart
= 1;
169 UDIA_INFO("Detected OV7670 Sensor.\n");
172 sn9c20x_write_i2c_array(dev
, ov7660_init
, 0);
173 dev
->camera
.set_exposure
= ov_set_exposure
;
174 dev
->camera
.set_auto_gain
= ov_set_autogain
;
175 dev
->camera
.hstart
= 1;
176 dev
->camera
.vstart
= 1;
177 UDIA_INFO("Detected OV7660 Sensor.\n");
180 sn9c20x_write_i2c_array(dev
, mt9v111_init
, 1);
181 dev
->camera
.set_hvflip
= mt9v111_set_hvflip
;
182 dev
->camera
.set_exposure
= mt9v111_set_exposure
;
183 dev
->camera
.set_auto_exposure
= mt9v111_set_autoexposure
;
184 dev
->camera
.hstart
= 2;
185 dev
->camera
.vstart
= 2;
186 UDIA_INFO("Detected MT9V111 Sensor.\n");
189 sn9c20x_write_i2c_array(dev
, mt9v112_init
, 1);
190 dev
->camera
.hstart
= 6;
191 dev
->camera
.vstart
= 2;
192 UDIA_INFO("Detected MT9V112 Sensor.\n");
195 sn9c20x_write_i2c_array(dev
, mt9m111_init
, 1);
196 dev
->camera
.hstart
= 6;
197 dev
->camera
.vstart
= 2;
198 UDIA_INFO("Detected MT9M111 Sensor.\n");
201 sn9c20x_write_i2c_array(dev
, mt9v011_init
, 1);
202 dev
->camera
.set_hvflip
= mt9v011_set_hvflip
;
203 dev
->camera
.set_exposure
= mt9v011_set_exposure
;
204 dev
->camera
.hstart
= 2;
205 dev
->camera
.vstart
= 2;
206 UDIA_INFO("Detected MT9V011 Sensor.\n");
209 sn9c20x_write_i2c_array(dev
, mt9m001_init
, 1);
210 dev
->camera
.hstart
= 2;
211 dev
->camera
.vstart
= 2;
212 UDIA_INFO("Detected MT9M001 Sensor.\n");
215 dev
->camera
.i2c_flags
|= SN9C20X_I2C_400KHZ
;
216 sn9c20x_write_i2c_array(dev
, hv7131r_init
, 0);
217 dev
->camera
.set_hvflip
= hv7131r_set_hvflip
;
218 dev
->camera
.set_gain
= hv7131r_set_gain
;
219 dev
->camera
.set_exposure
= hv7131r_set_exposure
;
220 dev
->camera
.hstart
= 0;
221 dev
->camera
.vstart
= 1;
222 UDIA_INFO("Detected HV7131R Sensor.\n");
226 UDIA_INFO("Unsupported sensor.\n");
233 * @brief Wrapper function to detect hardware states
235 * @param dev Pointer to device structure
239 int dev_sn9c20x_call_constantly(struct usb_sn9c20x
*dev
)
242 /* Know to be broken, temporarely disabled */
243 /*dev_sn9c20x_flip_detection(dev);*/
244 dev_sn9c20x_button_detection(dev
);
245 if (!dev
->camera
.set_auto_exposure
&&
246 dev
->vsettings
.auto_exposure
== V4L2_EXPOSURE_AUTO
) {
247 dev_sn9c20x_perform_soft_ae(dev
);
254 * @brief Wrapper function to detect a flipped sensor
256 * @param dev Pointer to device structure
258 * @returns 0 or negative error value
261 int dev_sn9c20x_flip_detection(struct usb_sn9c20x
*dev
)
264 if (dev
&& dev
->camera
.flip_detect
)
265 ret
= dev
->camera
.flip_detect(dev
);
270 * @brief Wrapper function to detect a pushed button
272 * @param dev Pointer to device structure
274 * @returns 0 or negative error value
277 int dev_sn9c20x_button_detection(struct usb_sn9c20x
*dev
)
280 if (dev
&& dev
->camera
.button_detect
)
281 ret
= dev
->camera
.button_detect(dev
);
286 * @brief Perform software autoexposure
290 * @returns 0 or negative error value
292 * @author Vasily Khoruzhick
294 int dev_sn9c20x_perform_soft_ae(struct usb_sn9c20x
*dev
)
297 int koef
= 100, new_exp
, i
;
301 if (!dev
->camera
.set_exposure
)
303 yavg
= atomic_read(&dev
->camera
.yavg
);
305 UDIA_DEBUG("Sensor YAVG: %d\n", yavg
);
307 /* Can't get YAVG - we have nothing to do */
311 /* Image is too dark */
312 if (yavg
< dev
->camera
.min_yavg
) {
313 /* yavg can't be 0 - in that way new_exp == infinity */
316 if (dev
->camera
.old_yavg
!= -1) {
317 /* Previous correction was made to make image darker,
318 * but we made it too dark. Calculating our error
319 * and taking it into account.
320 * Usually error is 0.7 - 2, so we multiply it by 100
322 if (dev
->camera
.old_yavg
> dev
->camera
.max_yavg
)
323 koef
= 100 * dev
->camera
.
324 min_stable_yavg
/ yavg
;
329 /* Calculating new exposure value. We assuming that
330 * exposure linearly depends on YAVG, but we taking
331 * our calculated error into account */
332 new_exp
= (dev
->camera
.min_stable_yavg
333 * dev
->vsettings
.exposure
* 100) / (yavg
* koef
);
335 /* Exposure can't be more than 0xff or less than 0x1 */
341 dev
->camera
.old_yavg
= yavg
;
343 /* Applying new exposure */
344 dev
->vsettings
.exposure
= new_exp
;
345 dev
->camera
.set_exposure(dev
);
348 /* Image is too bright */
349 else if (yavg
> dev
->camera
.max_yavg
) {
350 /* yavg can't be 0 - in that way new_exp == infinity */
353 if (dev
->camera
.old_yavg
!= -1) {
355 /* Previous correction was made to make image brighter,
356 * but we made it too bright. Calculating our error
357 * and taking it into account.
358 * Usually error is 0.7 - 2, so we multiply it by 100
360 if (dev
->camera
.old_yavg
< dev
->camera
.min_yavg
)
361 koef
= 100 * yavg
/ dev
->camera
.
367 /* Calculating new exposure value. We assuming that
368 * exposure linearly depends on YAVG, but we taking
369 * our calculated error into account */
370 new_exp
= (koef
* dev
->camera
.max_stable_yavg
371 * dev
->vsettings
.exposure
) / (yavg
* 100);
373 /* Exposure can't be more than 0xff or less than 0x1 */
379 dev
->camera
.old_yavg
= yavg
;
381 /* Applying new exposure */
382 dev
->vsettings
.exposure
= new_exp
;
383 dev
->camera
.set_exposure(dev
);