1 /***************************************************************************
2 * Video4Linux driver for W996[87]CF JPEG USB Dual Mode Camera Chip. *
4 * Copyright (C) 2002-2004 by Luca Risolia <luca.risolia@studio.unibo.it> *
6 * - Memory management code from bttv driver by Ralph Metzler, *
7 * Marcus Metzler and Gerd Knorr. *
8 * - I2C interface to kernel, high-level image sensor control routines and *
9 * some symbolic names from OV511 driver by Mark W. McClelland. *
10 * - Low-level I2C fast write function by Piotr Czerczak. *
11 * - Low-level I2C read function by Frederic Jouault. *
13 * This program is free software; you can redistribute it and/or modify *
14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation; either version 2 of the License, or *
16 * (at your option) any later version. *
18 * This program is distributed in the hope that it will be useful, *
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
21 * GNU General Public License for more details. *
23 * You should have received a copy of the GNU General Public License *
24 * along with this program; if not, write to the Free Software *
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
26 ***************************************************************************/
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/kmod.h>
31 #include <linux/init.h>
33 #include <linux/vmalloc.h>
34 #include <linux/slab.h>
36 #include <linux/string.h>
37 #include <linux/errno.h>
38 #include <linux/sched.h>
39 #include <linux/ioctl.h>
40 #include <linux/delay.h>
41 #include <linux/stddef.h>
43 #include <asm/uaccess.h>
44 #include <linux/page-flags.h>
47 #include "w9968cf_decoder.h"
49 static struct w9968cf_vpp_t
* w9968cf_vpp
;
50 static DECLARE_WAIT_QUEUE_HEAD(w9968cf_vppmod_wait
);
52 static LIST_HEAD(w9968cf_dev_list
); /* head of V4L registered cameras list */
53 static DEFINE_MUTEX(w9968cf_devlist_mutex
); /* semaphore for list traversal */
55 static DECLARE_RWSEM(w9968cf_disconnect
); /* prevent races with open() */
58 /****************************************************************************
59 * Module macros and parameters *
60 ****************************************************************************/
62 MODULE_DEVICE_TABLE(usb
, winbond_id_table
);
64 MODULE_AUTHOR(W9968CF_MODULE_AUTHOR
" "W9968CF_AUTHOR_EMAIL
);
65 MODULE_DESCRIPTION(W9968CF_MODULE_NAME
);
66 MODULE_VERSION(W9968CF_MODULE_VERSION
);
67 MODULE_LICENSE(W9968CF_MODULE_LICENSE
);
68 MODULE_SUPPORTED_DEVICE("Video");
70 static int ovmod_load
= W9968CF_OVMOD_LOAD
;
71 static unsigned short simcams
= W9968CF_SIMCAMS
;
72 static short video_nr
[]={[0 ... W9968CF_MAX_DEVICES
-1] = -1}; /*-1=first free*/
73 static unsigned int packet_size
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
75 static unsigned short max_buffers
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
77 static int double_buffer
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
78 W9968CF_DOUBLE_BUFFER
};
79 static int clamping
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_CLAMPING
};
80 static unsigned short filter_type
[]= {[0 ... W9968CF_MAX_DEVICES
-1] =
82 static int largeview
[]= {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_LARGEVIEW
};
83 static unsigned short decompression
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
84 W9968CF_DECOMPRESSION
};
85 static int upscaling
[]= {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_UPSCALING
};
86 static unsigned short force_palette
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = 0};
87 static int force_rgb
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_FORCE_RGB
};
88 static int autobright
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_AUTOBRIGHT
};
89 static int autoexp
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_AUTOEXP
};
90 static unsigned short lightfreq
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
92 static int bandingfilter
[] = {[0 ... W9968CF_MAX_DEVICES
-1]=
93 W9968CF_BANDINGFILTER
};
94 static short clockdiv
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_CLOCKDIV
};
95 static int backlight
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_BACKLIGHT
};
96 static int mirror
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_MIRROR
};
97 static int monochrome
[] = {[0 ... W9968CF_MAX_DEVICES
-1]=W9968CF_MONOCHROME
};
98 static unsigned int brightness
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
100 static unsigned int hue
[] = {[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_HUE
};
101 static unsigned int colour
[]={[0 ... W9968CF_MAX_DEVICES
-1] = W9968CF_COLOUR
};
102 static unsigned int contrast
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
104 static unsigned int whiteness
[] = {[0 ... W9968CF_MAX_DEVICES
-1] =
107 static unsigned short debug
= W9968CF_DEBUG_LEVEL
;
108 static int specific_debug
= W9968CF_SPECIFIC_DEBUG
;
111 static unsigned int param_nv
[24]; /* number of values per parameter */
114 module_param(ovmod_load
, bool, 0644);
116 module_param(simcams
, ushort
, 0644);
117 module_param_array(video_nr
, short, ¶m_nv
[0], 0444);
118 module_param_array(packet_size
, uint
, ¶m_nv
[1], 0444);
119 module_param_array(max_buffers
, ushort
, ¶m_nv
[2], 0444);
120 module_param_array(double_buffer
, bool, ¶m_nv
[3], 0444);
121 module_param_array(clamping
, bool, ¶m_nv
[4], 0444);
122 module_param_array(filter_type
, ushort
, ¶m_nv
[5], 0444);
123 module_param_array(largeview
, bool, ¶m_nv
[6], 0444);
124 module_param_array(decompression
, ushort
, ¶m_nv
[7], 0444);
125 module_param_array(upscaling
, bool, ¶m_nv
[8], 0444);
126 module_param_array(force_palette
, ushort
, ¶m_nv
[9], 0444);
127 module_param_array(force_rgb
, ushort
, ¶m_nv
[10], 0444);
128 module_param_array(autobright
, bool, ¶m_nv
[11], 0444);
129 module_param_array(autoexp
, bool, ¶m_nv
[12], 0444);
130 module_param_array(lightfreq
, ushort
, ¶m_nv
[13], 0444);
131 module_param_array(bandingfilter
, bool, ¶m_nv
[14], 0444);
132 module_param_array(clockdiv
, short, ¶m_nv
[15], 0444);
133 module_param_array(backlight
, bool, ¶m_nv
[16], 0444);
134 module_param_array(mirror
, bool, ¶m_nv
[17], 0444);
135 module_param_array(monochrome
, bool, ¶m_nv
[18], 0444);
136 module_param_array(brightness
, uint
, ¶m_nv
[19], 0444);
137 module_param_array(hue
, uint
, ¶m_nv
[20], 0444);
138 module_param_array(colour
, uint
, ¶m_nv
[21], 0444);
139 module_param_array(contrast
, uint
, ¶m_nv
[22], 0444);
140 module_param_array(whiteness
, uint
, ¶m_nv
[23], 0444);
142 module_param(debug
, ushort
, 0644);
143 module_param(specific_debug
, bool, 0644);
147 MODULE_PARM_DESC(ovmod_load
,
148 "\n<0|1> Automatic 'ovcamchip' module loading."
149 "\n0 disabled, 1 enabled."
150 "\nIf enabled,'insmod' searches for the required 'ovcamchip'"
151 "\nmodule in the system, according to its configuration, and"
152 "\nattempts to load that module automatically. This action is"
153 "\nperformed once as soon as the 'w9968cf' module is loaded"
155 "\nDefault value is "__MODULE_STRING(W9968CF_OVMOD_LOAD
)"."
158 MODULE_PARM_DESC(simcams
,
159 "\n<n> Number of cameras allowed to stream simultaneously."
160 "\nn may vary from 0 to "
161 __MODULE_STRING(W9968CF_MAX_DEVICES
)"."
162 "\nDefault value is "__MODULE_STRING(W9968CF_SIMCAMS
)"."
164 MODULE_PARM_DESC(video_nr
,
165 "\n<-1|n[,...]> Specify V4L minor mode number."
166 "\n -1 = use next available (default)"
167 "\n n = use minor number n (integer >= 0)"
168 "\nYou can specify up to "__MODULE_STRING(W9968CF_MAX_DEVICES
)
171 "\nvideo_nr=-1,2,-1 would assign minor number 2 to"
172 "\nthe second camera and use auto for the first"
173 "\none and for every other camera."
175 MODULE_PARM_DESC(packet_size
,
176 "\n<n[,...]> Specify the maximum data payload"
177 "\nsize in bytes for alternate settings, for each device."
178 "\nn is scaled between 63 and 1023 "
179 "(default is "__MODULE_STRING(W9968CF_PACKET_SIZE
)")."
181 MODULE_PARM_DESC(max_buffers
,
182 "\n<n[,...]> For advanced users."
183 "\nSpecify the maximum number of video frame buffers"
184 "\nto allocate for each device, from 2 to "
185 __MODULE_STRING(W9968CF_MAX_BUFFERS
)
186 ". (default is "__MODULE_STRING(W9968CF_BUFFERS
)")."
188 MODULE_PARM_DESC(double_buffer
,
190 "Hardware double buffering: 0 disabled, 1 enabled."
191 "\nIt should be enabled if you want smooth video output: if"
192 "\nyou obtain out of sync. video, disable it, or try to"
193 "\ndecrease the 'clockdiv' module parameter value."
194 "\nDefault value is "__MODULE_STRING(W9968CF_DOUBLE_BUFFER
)
197 MODULE_PARM_DESC(clamping
,
198 "\n<0|1[,...]> Video data clamping: 0 disabled, 1 enabled."
199 "\nDefault value is "__MODULE_STRING(W9968CF_CLAMPING
)
202 MODULE_PARM_DESC(filter_type
,
203 "\n<0|1|2[,...]> Video filter type."
204 "\n0 none, 1 (1-2-1) 3-tap filter, "
205 "2 (2-3-6-3-2) 5-tap filter."
206 "\nDefault value is "__MODULE_STRING(W9968CF_FILTER_TYPE
)
208 "\nThe filter is used to reduce noise and aliasing artifacts"
209 "\nproduced by the CCD or CMOS image sensor, and the scaling"
212 MODULE_PARM_DESC(largeview
,
213 "\n<0|1[,...]> Large view: 0 disabled, 1 enabled."
214 "\nDefault value is "__MODULE_STRING(W9968CF_LARGEVIEW
)
217 MODULE_PARM_DESC(upscaling
,
218 "\n<0|1[,...]> Software scaling (for non-compressed video):"
219 "\n0 disabled, 1 enabled."
220 "\nDisable it if you have a slow CPU or you don't have"
222 "\nDefault value is "__MODULE_STRING(W9968CF_UPSCALING
)
224 "\nIf 'w9968cf-vpp' is not present, this parameter is"
227 MODULE_PARM_DESC(decompression
,
228 "\n<0|1|2[,...]> Software video decompression:"
229 "\n- 0 disables decompression (doesn't allow formats needing"
231 "\n- 1 forces decompression (allows formats needing"
232 " decompression only);"
233 "\n- 2 allows any permitted formats."
234 "\nFormats supporting compressed video are YUV422P and"
236 "\nin any resolutions where both width and height are "
238 "\nDefault value is "__MODULE_STRING(W9968CF_DECOMPRESSION
)
240 "\nIf 'w9968cf-vpp' is not present, forcing decompression is "
241 "\nnot allowed; in this case this parameter is set to 2."
243 MODULE_PARM_DESC(force_palette
,
245 "|" __MODULE_STRING(VIDEO_PALETTE_UYVY
)
246 "|" __MODULE_STRING(VIDEO_PALETTE_YUV420
)
247 "|" __MODULE_STRING(VIDEO_PALETTE_YUV422P
)
248 "|" __MODULE_STRING(VIDEO_PALETTE_YUV420P
)
249 "|" __MODULE_STRING(VIDEO_PALETTE_YUYV
)
250 "|" __MODULE_STRING(VIDEO_PALETTE_YUV422
)
251 "|" __MODULE_STRING(VIDEO_PALETTE_GREY
)
252 "|" __MODULE_STRING(VIDEO_PALETTE_RGB555
)
253 "|" __MODULE_STRING(VIDEO_PALETTE_RGB565
)
254 "|" __MODULE_STRING(VIDEO_PALETTE_RGB24
)
255 "|" __MODULE_STRING(VIDEO_PALETTE_RGB32
)
257 " Force picture palette."
259 "\n- 0 allows any of the following formats:"
260 "\n- UYVY 16 bpp - Original video, compression disabled"
261 "\n- YUV420 12 bpp - Original video, compression enabled"
262 "\n- YUV422P 16 bpp - Original video, compression enabled"
263 "\n- YUV420P 12 bpp - Original video, compression enabled"
264 "\n- YUVY 16 bpp - Software conversion from UYVY"
265 "\n- YUV422 16 bpp - Software conversion from UYVY"
266 "\n- GREY 8 bpp - Software conversion from UYVY"
267 "\n- RGB555 16 bpp - Software conversion from UYVY"
268 "\n- RGB565 16 bpp - Software conversion from UYVY"
269 "\n- RGB24 24 bpp - Software conversion from UYVY"
270 "\n- RGB32 32 bpp - Software conversion from UYVY"
271 "\nWhen not 0, this parameter will override 'decompression'."
272 "\nDefault value is 0 for every device."
273 "\nInitial palette is "
274 __MODULE_STRING(W9968CF_PALETTE_DECOMP_ON
)"."
275 "\nIf 'w9968cf-vpp' is not present, this parameter is"
278 MODULE_PARM_DESC(force_rgb
,
279 "\n<0|1[,...]> Read RGB video data instead of BGR:"
280 "\n 1 = use RGB component ordering."
281 "\n 0 = use BGR component ordering."
282 "\nThis parameter has effect when using RGBX palettes only."
283 "\nDefault value is "__MODULE_STRING(W9968CF_FORCE_RGB
)
286 MODULE_PARM_DESC(autobright
,
287 "\n<0|1[,...]> Image sensor automatically changes brightness:"
289 "\nDefault value is "__MODULE_STRING(W9968CF_AUTOBRIGHT
)
292 MODULE_PARM_DESC(autoexp
,
293 "\n<0|1[,...]> Image sensor automatically changes exposure:"
295 "\nDefault value is "__MODULE_STRING(W9968CF_AUTOEXP
)
298 MODULE_PARM_DESC(lightfreq
,
299 "\n<50|60[,...]> Light frequency in Hz:"
300 "\n 50 for European and Asian lighting,"
301 " 60 for American lighting."
302 "\nDefault value is "__MODULE_STRING(W9968CF_LIGHTFREQ
)
305 MODULE_PARM_DESC(bandingfilter
,
306 "\n<0|1[,...]> Banding filter to reduce effects of"
307 " fluorescent lighting:"
308 "\n 0 disabled, 1 enabled."
309 "\nThis filter tries to reduce the pattern of horizontal"
310 "\nlight/dark bands caused by some (usually fluorescent)"
312 "\nDefault value is "__MODULE_STRING(W9968CF_BANDINGFILTER
)
315 MODULE_PARM_DESC(clockdiv
,
317 "Force pixel clock divisor to a specific value (for experts):"
318 "\n n may vary from 0 to 127."
319 "\n -1 for automatic value."
320 "\nSee also the 'double_buffer' module parameter."
321 "\nDefault value is "__MODULE_STRING(W9968CF_CLOCKDIV
)
324 MODULE_PARM_DESC(backlight
,
325 "\n<0|1[,...]> Objects are lit from behind:"
327 "\nDefault value is "__MODULE_STRING(W9968CF_BACKLIGHT
)
330 MODULE_PARM_DESC(mirror
,
331 "\n<0|1[,...]> Reverse image horizontally:"
333 "\nDefault value is "__MODULE_STRING(W9968CF_MIRROR
)
336 MODULE_PARM_DESC(monochrome
,
337 "\n<0|1[,...]> Use image sensor as monochrome sensor:"
339 "\nNot all the sensors support monochrome color."
340 "\nDefault value is "__MODULE_STRING(W9968CF_MONOCHROME
)
343 MODULE_PARM_DESC(brightness
,
344 "\n<n[,...]> Set picture brightness (0-65535)."
345 "\nDefault value is "__MODULE_STRING(W9968CF_BRIGHTNESS
)
347 "\nThis parameter has no effect if 'autobright' is enabled."
349 MODULE_PARM_DESC(hue
,
350 "\n<n[,...]> Set picture hue (0-65535)."
351 "\nDefault value is "__MODULE_STRING(W9968CF_HUE
)
354 MODULE_PARM_DESC(colour
,
355 "\n<n[,...]> Set picture saturation (0-65535)."
356 "\nDefault value is "__MODULE_STRING(W9968CF_COLOUR
)
359 MODULE_PARM_DESC(contrast
,
360 "\n<n[,...]> Set picture contrast (0-65535)."
361 "\nDefault value is "__MODULE_STRING(W9968CF_CONTRAST
)
364 MODULE_PARM_DESC(whiteness
,
365 "\n<n[,...]> Set picture whiteness (0-65535)."
366 "\nDefault value is "__MODULE_STRING(W9968CF_WHITENESS
)
370 MODULE_PARM_DESC(debug
,
371 "\n<n> Debugging information level, from 0 to 6:"
372 "\n0 = none (use carefully)"
373 "\n1 = critical errors"
374 "\n2 = significant informations"
375 "\n3 = configuration or general messages"
377 "\n5 = called functions"
378 "\n6 = function internals"
379 "\nLevel 5 and 6 are useful for testing only, when only "
380 "one device is used."
381 "\nDefault value is "__MODULE_STRING(W9968CF_DEBUG_LEVEL
)"."
383 MODULE_PARM_DESC(specific_debug
,
384 "\n<0|1> Enable or disable specific debugging messages:"
385 "\n0 = print messages concerning every level"
387 "\n1 = print messages concerning the level"
388 " indicated by 'debug'."
389 "\nDefault value is "
390 __MODULE_STRING(W9968CF_SPECIFIC_DEBUG
)"."
392 #endif /* W9968CF_DEBUG */
396 /****************************************************************************
398 ****************************************************************************/
400 /* Video4linux interface */
401 static const struct file_operations w9968cf_fops
;
402 static int w9968cf_open(struct inode
*, struct file
*);
403 static int w9968cf_release(struct inode
*, struct file
*);
404 static int w9968cf_mmap(struct file
*, struct vm_area_struct
*);
405 static int w9968cf_ioctl(struct inode
*, struct file
*, unsigned, unsigned long);
406 static ssize_t
w9968cf_read(struct file
*, char __user
*, size_t, loff_t
*);
407 static int w9968cf_v4l_ioctl(struct inode
*, struct file
*, unsigned int,
411 static int w9968cf_start_transfer(struct w9968cf_device
*);
412 static int w9968cf_stop_transfer(struct w9968cf_device
*);
413 static int w9968cf_write_reg(struct w9968cf_device
*, u16 value
, u16 index
);
414 static int w9968cf_read_reg(struct w9968cf_device
*, u16 index
);
415 static int w9968cf_write_fsb(struct w9968cf_device
*, u16
* data
);
416 static int w9968cf_write_sb(struct w9968cf_device
*, u16 value
);
417 static int w9968cf_read_sb(struct w9968cf_device
*);
418 static int w9968cf_upload_quantizationtables(struct w9968cf_device
*);
419 static void w9968cf_urb_complete(struct urb
*urb
);
421 /* Low-level I2C (SMBus) I/O */
422 static int w9968cf_smbus_start(struct w9968cf_device
*);
423 static int w9968cf_smbus_stop(struct w9968cf_device
*);
424 static int w9968cf_smbus_write_byte(struct w9968cf_device
*, u8 v
);
425 static int w9968cf_smbus_read_byte(struct w9968cf_device
*, u8
* v
);
426 static int w9968cf_smbus_write_ack(struct w9968cf_device
*);
427 static int w9968cf_smbus_read_ack(struct w9968cf_device
*);
428 static int w9968cf_smbus_refresh_bus(struct w9968cf_device
*);
429 static int w9968cf_i2c_adap_read_byte(struct w9968cf_device
* cam
,
430 u16 address
, u8
* value
);
431 static int w9968cf_i2c_adap_read_byte_data(struct w9968cf_device
*, u16 address
,
432 u8 subaddress
, u8
* value
);
433 static int w9968cf_i2c_adap_write_byte(struct w9968cf_device
*,
434 u16 address
, u8 subaddress
);
435 static int w9968cf_i2c_adap_fastwrite_byte_data(struct w9968cf_device
*,
436 u16 address
, u8 subaddress
,
439 /* I2C interface to kernel */
440 static int w9968cf_i2c_init(struct w9968cf_device
*);
441 static int w9968cf_i2c_smbus_xfer(struct i2c_adapter
*, u16 addr
,
442 unsigned short flags
, char read_write
,
443 u8 command
, int size
, union i2c_smbus_data
*);
444 static u32
w9968cf_i2c_func(struct i2c_adapter
*);
445 static int w9968cf_i2c_attach_inform(struct i2c_client
*);
446 static int w9968cf_i2c_detach_inform(struct i2c_client
*);
448 /* Memory management */
449 static void* rvmalloc(unsigned long size
);
450 static void rvfree(void *mem
, unsigned long size
);
451 static void w9968cf_deallocate_memory(struct w9968cf_device
*);
452 static int w9968cf_allocate_memory(struct w9968cf_device
*);
454 /* High-level image sensor control functions */
455 static int w9968cf_sensor_set_control(struct w9968cf_device
*,int cid
,int val
);
456 static int w9968cf_sensor_get_control(struct w9968cf_device
*,int cid
,int *val
);
457 static int w9968cf_sensor_cmd(struct w9968cf_device
*,
458 unsigned int cmd
, void *arg
);
459 static int w9968cf_sensor_init(struct w9968cf_device
*);
460 static int w9968cf_sensor_update_settings(struct w9968cf_device
*);
461 static int w9968cf_sensor_get_picture(struct w9968cf_device
*);
462 static int w9968cf_sensor_update_picture(struct w9968cf_device
*,
463 struct video_picture pict
);
465 /* Other helper functions */
466 static void w9968cf_configure_camera(struct w9968cf_device
*,struct usb_device
*,
467 enum w9968cf_model_id
,
468 const unsigned short dev_nr
);
469 static void w9968cf_adjust_configuration(struct w9968cf_device
*);
470 static int w9968cf_turn_on_led(struct w9968cf_device
*);
471 static int w9968cf_init_chip(struct w9968cf_device
*);
472 static inline u16
w9968cf_valid_palette(u16 palette
);
473 static inline u16
w9968cf_valid_depth(u16 palette
);
474 static inline u8
w9968cf_need_decompression(u16 palette
);
475 static int w9968cf_set_picture(struct w9968cf_device
*, struct video_picture
);
476 static int w9968cf_set_window(struct w9968cf_device
*, struct video_window
);
477 static int w9968cf_postprocess_frame(struct w9968cf_device
*,
478 struct w9968cf_frame_t
*);
479 static int w9968cf_adjust_window_size(struct w9968cf_device
*, u16
* w
, u16
* h
);
480 static void w9968cf_init_framelist(struct w9968cf_device
*);
481 static void w9968cf_push_frame(struct w9968cf_device
*, u8 f_num
);
482 static void w9968cf_pop_frame(struct w9968cf_device
*,struct w9968cf_frame_t
**);
483 static void w9968cf_release_resources(struct w9968cf_device
*);
487 /****************************************************************************
489 ****************************************************************************/
491 /* Used to represent a list of values and their respective symbolic names */
492 struct w9968cf_symbolic_list
{
497 /*--------------------------------------------------------------------------
498 Returns the name of the matching element in the symbolic_list array. The
499 end of the list must be marked with an element that has a NULL name.
500 --------------------------------------------------------------------------*/
501 static inline const char *
502 symbolic(struct w9968cf_symbolic_list list
[], const int num
)
506 for (i
= 0; list
[i
].name
!= NULL
; i
++)
507 if (list
[i
].num
== num
)
508 return (list
[i
].name
);
513 static struct w9968cf_symbolic_list camlist
[] = {
514 { W9968CF_MOD_GENERIC
, "W996[87]CF JPEG USB Dual Mode Camera" },
515 { W9968CF_MOD_CLVBWGP
, "Creative Labs Video Blaster WebCam Go Plus" },
517 /* Other cameras (having the same descriptors as Generic W996[87]CF) */
518 { W9968CF_MOD_ADPVDMA
, "Aroma Digi Pen VGA Dual Mode ADG-5000" },
519 { W9986CF_MOD_AAU
, "AVerMedia AVerTV USB" },
520 { W9968CF_MOD_CLVBWG
, "Creative Labs Video Blaster WebCam Go" },
521 { W9968CF_MOD_LL
, "Lebon LDC-035A" },
522 { W9968CF_MOD_EEEMC
, "Ezonics EZ-802 EZMega Cam" },
523 { W9968CF_MOD_OOE
, "OmniVision OV8610-EDE" },
524 { W9968CF_MOD_ODPVDMPC
, "OPCOM Digi Pen VGA Dual Mode Pen Camera" },
525 { W9968CF_MOD_PDPII
, "Pretec Digi Pen-II" },
526 { W9968CF_MOD_PDP480
, "Pretec DigiPen-480" },
531 static struct w9968cf_symbolic_list senlist
[] = {
532 { CC_OV76BE
, "OV76BE" },
533 { CC_OV7610
, "OV7610" },
534 { CC_OV7620
, "OV7620" },
535 { CC_OV7620AE
, "OV7620AE" },
536 { CC_OV6620
, "OV6620" },
537 { CC_OV6630
, "OV6630" },
538 { CC_OV6630AE
, "OV6630AE" },
539 { CC_OV6630AF
, "OV6630AF" },
543 /* Video4Linux1 palettes */
544 static struct w9968cf_symbolic_list v4l1_plist
[] = {
545 { VIDEO_PALETTE_GREY
, "GREY" },
546 { VIDEO_PALETTE_HI240
, "HI240" },
547 { VIDEO_PALETTE_RGB565
, "RGB565" },
548 { VIDEO_PALETTE_RGB24
, "RGB24" },
549 { VIDEO_PALETTE_RGB32
, "RGB32" },
550 { VIDEO_PALETTE_RGB555
, "RGB555" },
551 { VIDEO_PALETTE_YUV422
, "YUV422" },
552 { VIDEO_PALETTE_YUYV
, "YUYV" },
553 { VIDEO_PALETTE_UYVY
, "UYVY" },
554 { VIDEO_PALETTE_YUV420
, "YUV420" },
555 { VIDEO_PALETTE_YUV411
, "YUV411" },
556 { VIDEO_PALETTE_RAW
, "RAW" },
557 { VIDEO_PALETTE_YUV422P
, "YUV422P" },
558 { VIDEO_PALETTE_YUV411P
, "YUV411P" },
559 { VIDEO_PALETTE_YUV420P
, "YUV420P" },
560 { VIDEO_PALETTE_YUV410P
, "YUV410P" },
564 /* Decoder error codes: */
565 static struct w9968cf_symbolic_list decoder_errlist
[] = {
566 { W9968CF_DEC_ERR_CORRUPTED_DATA
, "Corrupted data" },
567 { W9968CF_DEC_ERR_BUF_OVERFLOW
, "Buffer overflow" },
568 { W9968CF_DEC_ERR_NO_SOI
, "SOI marker not found" },
569 { W9968CF_DEC_ERR_NO_SOF0
, "SOF0 marker not found" },
570 { W9968CF_DEC_ERR_NO_SOS
, "SOS marker not found" },
571 { W9968CF_DEC_ERR_NO_EOI
, "EOI marker not found" },
575 /* URB error codes: */
576 static struct w9968cf_symbolic_list urb_errlist
[] = {
577 { -ENOMEM
, "No memory for allocation of internal structures" },
578 { -ENOSPC
, "The host controller's bandwidth is already consumed" },
579 { -ENOENT
, "URB was canceled by unlink_urb" },
580 { -EXDEV
, "ISO transfer only partially completed" },
581 { -EAGAIN
, "Too match scheduled for the future" },
582 { -ENXIO
, "URB already queued" },
583 { -EFBIG
, "Too much ISO frames requested" },
584 { -ENOSR
, "Buffer error (overrun)" },
585 { -EPIPE
, "Specified endpoint is stalled (device not responding)"},
586 { -EOVERFLOW
, "Babble (too much data)" },
587 { -EPROTO
, "Bit-stuff error (bad cable?)" },
588 { -EILSEQ
, "CRC/Timeout" },
589 { -ETIME
, "Device does not respond to token" },
590 { -ETIMEDOUT
, "Device does not respond to command" },
594 /****************************************************************************
595 * Memory management functions *
596 ****************************************************************************/
597 static void* rvmalloc(unsigned long size
)
602 size
= PAGE_ALIGN(size
);
603 mem
= vmalloc_32(size
);
607 memset(mem
, 0, size
); /* Clear the ram out, no junk to the user */
608 adr
= (unsigned long) mem
;
610 SetPageReserved(vmalloc_to_page((void *)adr
));
619 static void rvfree(void* mem
, unsigned long size
)
626 adr
= (unsigned long) mem
;
627 while ((long) size
> 0) {
628 ClearPageReserved(vmalloc_to_page((void *)adr
));
636 /*--------------------------------------------------------------------------
637 Deallocate previously allocated memory.
638 --------------------------------------------------------------------------*/
639 static void w9968cf_deallocate_memory(struct w9968cf_device
* cam
)
643 /* Free the isochronous transfer buffers */
644 for (i
= 0; i
< W9968CF_URBS
; i
++) {
645 kfree(cam
->transfer_buffer
[i
]);
646 cam
->transfer_buffer
[i
] = NULL
;
649 /* Free temporary frame buffer */
650 if (cam
->frame_tmp
.buffer
) {
651 rvfree(cam
->frame_tmp
.buffer
, cam
->frame_tmp
.size
);
652 cam
->frame_tmp
.buffer
= NULL
;
655 /* Free helper buffer */
656 if (cam
->frame_vpp
.buffer
) {
657 rvfree(cam
->frame_vpp
.buffer
, cam
->frame_vpp
.size
);
658 cam
->frame_vpp
.buffer
= NULL
;
661 /* Free video frame buffers */
662 if (cam
->frame
[0].buffer
) {
663 rvfree(cam
->frame
[0].buffer
, cam
->nbuffers
*cam
->frame
[0].size
);
664 cam
->frame
[0].buffer
= NULL
;
669 DBG(5, "Memory successfully deallocated")
673 /*--------------------------------------------------------------------------
674 Allocate memory buffers for USB transfers and video frames.
675 This function is called by open() only.
676 Return 0 on success, a negative number otherwise.
677 --------------------------------------------------------------------------*/
678 static int w9968cf_allocate_memory(struct w9968cf_device
* cam
)
680 const u16 p_size
= wMaxPacketSize
[cam
->altsetting
-1];
682 unsigned long hw_bufsize
, vpp_bufsize
;
685 /* NOTE: Deallocation is done elsewhere in case of error */
687 /* Calculate the max amount of raw data per frame from the device */
688 hw_bufsize
= cam
->maxwidth
*cam
->maxheight
*2;
690 /* Calculate the max buf. size needed for post-processing routines */
691 bpp
= (w9968cf_vpp
) ? 4 : 2;
693 vpp_bufsize
= max(W9968CF_MAX_WIDTH
*W9968CF_MAX_HEIGHT
*bpp
,
694 cam
->maxwidth
*cam
->maxheight
*bpp
);
696 vpp_bufsize
= cam
->maxwidth
*cam
->maxheight
*bpp
;
698 /* Allocate memory for the isochronous transfer buffers */
699 for (i
= 0; i
< W9968CF_URBS
; i
++) {
700 if (!(cam
->transfer_buffer
[i
] =
701 kzalloc(W9968CF_ISO_PACKETS
*p_size
, GFP_KERNEL
))) {
702 DBG(1, "Couldn't allocate memory for the isochronous "
703 "transfer buffers (%u bytes)",
704 p_size
* W9968CF_ISO_PACKETS
)
709 /* Allocate memory for the temporary frame buffer */
710 if (!(cam
->frame_tmp
.buffer
= rvmalloc(hw_bufsize
))) {
711 DBG(1, "Couldn't allocate memory for the temporary "
712 "video frame buffer (%lu bytes)", hw_bufsize
)
715 cam
->frame_tmp
.size
= hw_bufsize
;
716 cam
->frame_tmp
.number
= -1;
718 /* Allocate memory for the helper buffer */
720 if (!(cam
->frame_vpp
.buffer
= rvmalloc(vpp_bufsize
))) {
721 DBG(1, "Couldn't allocate memory for the helper buffer"
722 " (%lu bytes)", vpp_bufsize
)
725 cam
->frame_vpp
.size
= vpp_bufsize
;
727 cam
->frame_vpp
.buffer
= NULL
;
729 /* Allocate memory for video frame buffers */
730 cam
->nbuffers
= cam
->max_buffers
;
731 while (cam
->nbuffers
>= 2) {
732 if ((buff
= rvmalloc(cam
->nbuffers
* vpp_bufsize
)))
739 DBG(1, "Couldn't allocate memory for the video frame buffers")
744 if (cam
->nbuffers
!= cam
->max_buffers
)
745 DBG(2, "Couldn't allocate memory for %u video frame buffers. "
746 "Only memory for %u buffers has been allocated",
747 cam
->max_buffers
, cam
->nbuffers
)
749 for (i
= 0; i
< cam
->nbuffers
; i
++) {
750 cam
->frame
[i
].buffer
= buff
+ i
*vpp_bufsize
;
751 cam
->frame
[i
].size
= vpp_bufsize
;
752 cam
->frame
[i
].number
= i
;
754 if (i
!= cam
->nbuffers
-1)
755 cam
->frame
[i
].next
= &cam
->frame
[i
+1];
757 cam
->frame
[i
].next
= &cam
->frame
[0];
758 cam
->frame
[i
].status
= F_UNUSED
;
761 DBG(5, "Memory successfully allocated")
767 /****************************************************************************
768 * USB-specific functions *
769 ****************************************************************************/
771 /*--------------------------------------------------------------------------
772 This is an handler function which is called after the URBs are completed.
773 It collects multiple data packets coming from the camera by putting them
774 into frame buffers: one or more zero data length data packets are used to
775 mark the end of a video frame; the first non-zero data packet is the start
776 of the next video frame; if an error is encountered in a packet, the entire
777 video frame is discarded and grabbed again.
778 If there are no requested frames in the FIFO list, packets are collected into
780 --------------------------------------------------------------------------*/
781 static void w9968cf_urb_complete(struct urb
*urb
)
783 struct w9968cf_device
* cam
= (struct w9968cf_device
*)urb
->context
;
784 struct w9968cf_frame_t
** f
;
785 unsigned int len
, status
;
790 if ((!cam
->streaming
) || cam
->disconnected
) {
791 DBG(4, "Got interrupt, but not streaming")
795 /* "(*f)" will be used instead of "cam->frame_current" */
796 f
= &cam
->frame_current
;
798 /* If a frame has been requested and we are grabbing into
799 the temporary frame, we'll switch to that requested frame */
800 if ((*f
) == &cam
->frame_tmp
&& *cam
->requested_frame
) {
801 if (cam
->frame_tmp
.status
== F_GRABBING
) {
802 w9968cf_pop_frame(cam
, &cam
->frame_current
);
803 (*f
)->status
= F_GRABBING
;
804 (*f
)->length
= cam
->frame_tmp
.length
;
805 memcpy((*f
)->buffer
, cam
->frame_tmp
.buffer
,
807 DBG(6, "Switched from temp. frame to frame #%d",
812 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
813 len
= urb
->iso_frame_desc
[i
].actual_length
;
814 status
= urb
->iso_frame_desc
[i
].status
;
815 pos
= urb
->iso_frame_desc
[i
].offset
+ urb
->transfer_buffer
;
817 if (status
&& len
!= 0) {
818 DBG(4, "URB failed, error in data packet "
820 status
, symbolic(urb_errlist
, status
))
821 (*f
)->status
= F_ERROR
;
825 if (len
) { /* start of frame */
827 if ((*f
)->status
== F_UNUSED
) {
828 (*f
)->status
= F_GRABBING
;
832 /* Buffer overflows shouldn't happen, however...*/
833 if ((*f
)->length
+ len
> (*f
)->size
) {
834 DBG(4, "Buffer overflow: bad data packets")
835 (*f
)->status
= F_ERROR
;
838 if ((*f
)->status
== F_GRABBING
) {
839 memcpy((*f
)->buffer
+ (*f
)->length
, pos
, len
);
843 } else if ((*f
)->status
== F_GRABBING
) { /* end of frame */
845 DBG(6, "Frame #%d successfully grabbed", (*f
)->number
)
847 if (cam
->vpp_flag
& VPP_DECOMPRESSION
) {
848 err
= w9968cf_vpp
->check_headers((*f
)->buffer
,
851 DBG(4, "Skip corrupted frame: %s",
852 symbolic(decoder_errlist
, err
))
853 (*f
)->status
= F_UNUSED
;
854 continue; /* grab this frame again */
858 (*f
)->status
= F_READY
;
861 /* Take a pointer to the new frame from the FIFO list.
862 If the list is empty,we'll use the temporary frame*/
863 if (*cam
->requested_frame
)
864 w9968cf_pop_frame(cam
, &cam
->frame_current
);
866 cam
->frame_current
= &cam
->frame_tmp
;
867 (*f
)->status
= F_UNUSED
;
870 } else if ((*f
)->status
== F_ERROR
)
871 (*f
)->status
= F_UNUSED
; /* grab it again */
873 PDBGG("Frame length %lu | pack.#%u | pack.len. %u | state %d",
874 (unsigned long)(*f
)->length
, i
, len
, (*f
)->status
)
878 /* Resubmit this URB */
879 urb
->dev
= cam
->usbdev
;
881 spin_lock(&cam
->urb_lock
);
883 if ((err
= usb_submit_urb(urb
, GFP_ATOMIC
))) {
884 cam
->misconfigured
= 1;
885 DBG(1, "Couldn't resubmit the URB: error %d, %s",
886 err
, symbolic(urb_errlist
, err
))
888 spin_unlock(&cam
->urb_lock
);
890 /* Wake up the user process */
891 wake_up_interruptible(&cam
->wait_queue
);
895 /*---------------------------------------------------------------------------
896 Setup the URB structures for the isochronous transfer.
897 Submit the URBs so that the data transfer begins.
898 Return 0 on success, a negative number otherwise.
899 ---------------------------------------------------------------------------*/
900 static int w9968cf_start_transfer(struct w9968cf_device
* cam
)
902 struct usb_device
*udev
= cam
->usbdev
;
904 const u16 p_size
= wMaxPacketSize
[cam
->altsetting
-1];
911 for (i
= 0; i
< W9968CF_URBS
; i
++) {
912 urb
= usb_alloc_urb(W9968CF_ISO_PACKETS
, GFP_KERNEL
);
915 for (j
= 0; j
< i
; j
++)
916 usb_free_urb(cam
->urb
[j
]);
917 DBG(1, "Couldn't allocate the URB structures")
922 urb
->context
= (void*)cam
;
923 urb
->pipe
= usb_rcvisocpipe(udev
, 1);
924 urb
->transfer_flags
= URB_ISO_ASAP
;
925 urb
->number_of_packets
= W9968CF_ISO_PACKETS
;
926 urb
->complete
= w9968cf_urb_complete
;
927 urb
->transfer_buffer
= cam
->transfer_buffer
[i
];
928 urb
->transfer_buffer_length
= p_size
*W9968CF_ISO_PACKETS
;
930 for (j
= 0; j
< W9968CF_ISO_PACKETS
; j
++) {
931 urb
->iso_frame_desc
[j
].offset
= p_size
*j
;
932 urb
->iso_frame_desc
[j
].length
= p_size
;
936 /* Transfer size per frame, in WORD ! */
943 err
= w9968cf_write_reg(cam
, 0xbf17, 0x00); /* reset everything */
944 err
+= w9968cf_write_reg(cam
, 0xbf10, 0x00); /* normal operation */
947 err
+= w9968cf_write_reg(cam
, t_size
& 0xffff, 0x3d); /* low bits */
948 err
+= w9968cf_write_reg(cam
, t_size
>> 16, 0x3e); /* high bits */
950 if (cam
->vpp_flag
& VPP_DECOMPRESSION
)
951 err
+= w9968cf_upload_quantizationtables(cam
);
953 vidcapt
= w9968cf_read_reg(cam
, 0x16); /* read picture settings */
954 err
+= w9968cf_write_reg(cam
, vidcapt
|0x8000, 0x16); /* capt. enable */
956 err
+= usb_set_interface(udev
, 0, cam
->altsetting
);
957 err
+= w9968cf_write_reg(cam
, 0x8a05, 0x3c); /* USB FIFO enable */
959 if (err
|| (vidcapt
< 0)) {
960 for (i
= 0; i
< W9968CF_URBS
; i
++)
961 usb_free_urb(cam
->urb
[i
]);
962 DBG(1, "Couldn't tell the camera to start the data transfer")
966 w9968cf_init_framelist(cam
);
968 /* Begin to grab into the temporary buffer */
969 cam
->frame_tmp
.status
= F_UNUSED
;
970 cam
->frame_tmp
.queued
= 0;
971 cam
->frame_current
= &cam
->frame_tmp
;
973 if (!(cam
->vpp_flag
& VPP_DECOMPRESSION
))
974 DBG(5, "Isochronous transfer size: %lu bytes/frame",
975 (unsigned long)t_size
*2)
977 DBG(5, "Starting the isochronous transfer...")
981 /* Submit the URBs */
982 for (i
= 0; i
< W9968CF_URBS
; i
++) {
983 err
= usb_submit_urb(cam
->urb
[i
], GFP_KERNEL
);
986 for (j
= i
-1; j
>= 0; j
--) {
987 usb_kill_urb(cam
->urb
[j
]);
988 usb_free_urb(cam
->urb
[j
]);
990 DBG(1, "Couldn't send a transfer request to the "
991 "USB core (error #%d, %s)", err
,
992 symbolic(urb_errlist
, err
))
1001 /*--------------------------------------------------------------------------
1002 Stop the isochronous transfer and set alternate setting to 0 (0Mb/s).
1003 Return 0 on success, a negative number otherwise.
1004 --------------------------------------------------------------------------*/
1005 static int w9968cf_stop_transfer(struct w9968cf_device
* cam
)
1007 struct usb_device
*udev
= cam
->usbdev
;
1008 unsigned long lock_flags
;
1012 if (!cam
->streaming
)
1015 /* This avoids race conditions with usb_submit_urb()
1016 in the URB completition handler */
1017 spin_lock_irqsave(&cam
->urb_lock
, lock_flags
);
1019 spin_unlock_irqrestore(&cam
->urb_lock
, lock_flags
);
1021 for (i
= W9968CF_URBS
-1; i
>= 0; i
--)
1023 usb_kill_urb(cam
->urb
[i
]);
1024 usb_free_urb(cam
->urb
[i
]);
1028 if (cam
->disconnected
)
1031 err
= w9968cf_write_reg(cam
, 0x0a05, 0x3c); /* stop USB transfer */
1032 err
+= usb_set_interface(udev
, 0, 0); /* 0 Mb/s */
1033 err
+= w9968cf_write_reg(cam
, 0x0000, 0x39); /* disable JPEG encoder */
1034 err
+= w9968cf_write_reg(cam
, 0x0000, 0x16); /* stop video capture */
1037 DBG(2, "Failed to tell the camera to stop the isochronous "
1038 "transfer. However this is not a critical error.")
1043 DBG(5, "Isochronous transfer stopped")
1048 /*--------------------------------------------------------------------------
1049 Write a W9968CF register.
1050 Return 0 on success, -1 otherwise.
1051 --------------------------------------------------------------------------*/
1052 static int w9968cf_write_reg(struct w9968cf_device
* cam
, u16 value
, u16 index
)
1054 struct usb_device
* udev
= cam
->usbdev
;
1057 res
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), 0,
1058 USB_TYPE_VENDOR
| USB_DIR_OUT
| USB_RECIP_DEVICE
,
1059 value
, index
, NULL
, 0, W9968CF_USB_CTRL_TIMEOUT
);
1062 DBG(4, "Failed to write a register "
1063 "(value 0x%04X, index 0x%02X, error #%d, %s)",
1064 value
, index
, res
, symbolic(urb_errlist
, res
))
1066 return (res
>= 0) ? 0 : -1;
1070 /*--------------------------------------------------------------------------
1071 Read a W9968CF register.
1072 Return the register value on success, -1 otherwise.
1073 --------------------------------------------------------------------------*/
1074 static int w9968cf_read_reg(struct w9968cf_device
* cam
, u16 index
)
1076 struct usb_device
* udev
= cam
->usbdev
;
1077 u16
* buff
= cam
->control_buffer
;
1080 res
= usb_control_msg(udev
, usb_rcvctrlpipe(udev
, 0), 1,
1081 USB_DIR_IN
| USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
1082 0, index
, buff
, 2, W9968CF_USB_CTRL_TIMEOUT
);
1085 DBG(4, "Failed to read a register "
1086 "(index 0x%02X, error #%d, %s)",
1087 index
, res
, symbolic(urb_errlist
, res
))
1089 return (res
>= 0) ? (int)(*buff
) : -1;
1093 /*--------------------------------------------------------------------------
1094 Write 64-bit data to the fast serial bus registers.
1095 Return 0 on success, -1 otherwise.
1096 --------------------------------------------------------------------------*/
1097 static int w9968cf_write_fsb(struct w9968cf_device
* cam
, u16
* data
)
1099 struct usb_device
* udev
= cam
->usbdev
;
1105 res
= usb_control_msg(udev
, usb_sndctrlpipe(udev
, 0), 0,
1106 USB_TYPE_VENDOR
| USB_DIR_OUT
| USB_RECIP_DEVICE
,
1107 value
, 0x06, data
, 6, W9968CF_USB_CTRL_TIMEOUT
);
1110 DBG(4, "Failed to write the FSB registers "
1111 "(error #%d, %s)", res
, symbolic(urb_errlist
, res
))
1113 return (res
>= 0) ? 0 : -1;
1117 /*--------------------------------------------------------------------------
1118 Write data to the serial bus control register.
1119 Return 0 on success, a negative number otherwise.
1120 --------------------------------------------------------------------------*/
1121 static int w9968cf_write_sb(struct w9968cf_device
* cam
, u16 value
)
1125 err
= w9968cf_write_reg(cam
, value
, 0x01);
1126 udelay(W9968CF_I2C_BUS_DELAY
);
1132 /*--------------------------------------------------------------------------
1133 Read data from the serial bus control register.
1134 Return 0 on success, a negative number otherwise.
1135 --------------------------------------------------------------------------*/
1136 static int w9968cf_read_sb(struct w9968cf_device
* cam
)
1140 v
= w9968cf_read_reg(cam
, 0x01);
1141 udelay(W9968CF_I2C_BUS_DELAY
);
1147 /*--------------------------------------------------------------------------
1148 Upload quantization tables for the JPEG compression.
1149 This function is called by w9968cf_start_transfer().
1150 Return 0 on success, a negative number otherwise.
1151 --------------------------------------------------------------------------*/
1152 static int w9968cf_upload_quantizationtables(struct w9968cf_device
* cam
)
1157 err
+= w9968cf_write_reg(cam
, 0x0010, 0x39); /* JPEG clock enable */
1159 for (i
= 0, j
= 0; i
< 32; i
++, j
+= 2) {
1160 a
= Y_QUANTABLE
[j
] | ((unsigned)(Y_QUANTABLE
[j
+1]) << 8);
1161 b
= UV_QUANTABLE
[j
] | ((unsigned)(UV_QUANTABLE
[j
+1]) << 8);
1162 err
+= w9968cf_write_reg(cam
, a
, 0x40+i
);
1163 err
+= w9968cf_write_reg(cam
, b
, 0x60+i
);
1165 err
+= w9968cf_write_reg(cam
, 0x0012, 0x39); /* JPEG encoder enable */
1172 /****************************************************************************
1173 * Low-level I2C I/O functions. *
1174 * The adapter supports the following I2C transfer functions: *
1175 * i2c_adap_fastwrite_byte_data() (at 400 kHz bit frequency only) *
1176 * i2c_adap_read_byte_data() *
1177 * i2c_adap_read_byte() *
1178 ****************************************************************************/
1180 static int w9968cf_smbus_start(struct w9968cf_device
* cam
)
1184 err
+= w9968cf_write_sb(cam
, 0x0011); /* SDE=1, SDA=0, SCL=1 */
1185 err
+= w9968cf_write_sb(cam
, 0x0010); /* SDE=1, SDA=0, SCL=0 */
1191 static int w9968cf_smbus_stop(struct w9968cf_device
* cam
)
1195 err
+= w9968cf_write_sb(cam
, 0x0011); /* SDE=1, SDA=0, SCL=1 */
1196 err
+= w9968cf_write_sb(cam
, 0x0013); /* SDE=1, SDA=1, SCL=1 */
1202 static int w9968cf_smbus_write_byte(struct w9968cf_device
* cam
, u8 v
)
1207 for (bit
= 0 ; bit
< 8 ; bit
++) {
1208 sda
= (v
& 0x80) ? 2 : 0;
1210 /* SDE=1, SDA=sda, SCL=0 */
1211 err
+= w9968cf_write_sb(cam
, 0x10 | sda
);
1212 /* SDE=1, SDA=sda, SCL=1 */
1213 err
+= w9968cf_write_sb(cam
, 0x11 | sda
);
1214 /* SDE=1, SDA=sda, SCL=0 */
1215 err
+= w9968cf_write_sb(cam
, 0x10 | sda
);
1222 static int w9968cf_smbus_read_byte(struct w9968cf_device
* cam
, u8
* v
)
1228 for (bit
= 0 ; bit
< 8 ; bit
++) {
1230 err
+= w9968cf_write_sb(cam
, 0x0013);
1231 *v
|= (w9968cf_read_sb(cam
) & 0x0008) ? 1 : 0;
1232 err
+= w9968cf_write_sb(cam
, 0x0012);
1239 static int w9968cf_smbus_write_ack(struct w9968cf_device
* cam
)
1243 err
+= w9968cf_write_sb(cam
, 0x0010); /* SDE=1, SDA=0, SCL=0 */
1244 err
+= w9968cf_write_sb(cam
, 0x0011); /* SDE=1, SDA=0, SCL=1 */
1245 err
+= w9968cf_write_sb(cam
, 0x0010); /* SDE=1, SDA=0, SCL=0 */
1251 static int w9968cf_smbus_read_ack(struct w9968cf_device
* cam
)
1255 err
+= w9968cf_write_sb(cam
, 0x0013); /* SDE=1, SDA=1, SCL=1 */
1256 sda
= (w9968cf_read_sb(cam
) & 0x08) ? 1 : 0; /* sda = SDA */
1257 err
+= w9968cf_write_sb(cam
, 0x0012); /* SDE=1, SDA=1, SCL=0 */
1261 DBG(6, "Couldn't receive the ACK")
1269 /* This seems to refresh the communication through the serial bus */
1270 static int w9968cf_smbus_refresh_bus(struct w9968cf_device
* cam
)
1274 for (j
= 1; j
<= 10; j
++) {
1275 err
= w9968cf_write_reg(cam
, 0x0020, 0x01);
1276 err
+= w9968cf_write_reg(cam
, 0x0000, 0x01);
1285 /* SMBus protocol: S Addr Wr [A] Subaddr [A] Value [A] P */
1287 w9968cf_i2c_adap_fastwrite_byte_data(struct w9968cf_device
* cam
,
1288 u16 address
, u8 subaddress
,u8 value
)
1290 u16
* data
= cam
->data_buffer
;
1293 err
+= w9968cf_smbus_refresh_bus(cam
);
1295 /* Enable SBUS outputs */
1296 err
+= w9968cf_write_sb(cam
, 0x0020);
1298 data
[0] = 0x082f | ((address
& 0x80) ? 0x1500 : 0x0);
1299 data
[0] |= (address
& 0x40) ? 0x4000 : 0x0;
1300 data
[1] = 0x2082 | ((address
& 0x40) ? 0x0005 : 0x0);
1301 data
[1] |= (address
& 0x20) ? 0x0150 : 0x0;
1302 data
[1] |= (address
& 0x10) ? 0x5400 : 0x0;
1303 data
[2] = 0x8208 | ((address
& 0x08) ? 0x0015 : 0x0);
1304 data
[2] |= (address
& 0x04) ? 0x0540 : 0x0;
1305 data
[2] |= (address
& 0x02) ? 0x5000 : 0x0;
1306 data
[3] = 0x1d20 | ((address
& 0x02) ? 0x0001 : 0x0);
1307 data
[3] |= (address
& 0x01) ? 0x0054 : 0x0;
1309 err
+= w9968cf_write_fsb(cam
, data
);
1311 data
[0] = 0x8208 | ((subaddress
& 0x80) ? 0x0015 : 0x0);
1312 data
[0] |= (subaddress
& 0x40) ? 0x0540 : 0x0;
1313 data
[0] |= (subaddress
& 0x20) ? 0x5000 : 0x0;
1314 data
[1] = 0x0820 | ((subaddress
& 0x20) ? 0x0001 : 0x0);
1315 data
[1] |= (subaddress
& 0x10) ? 0x0054 : 0x0;
1316 data
[1] |= (subaddress
& 0x08) ? 0x1500 : 0x0;
1317 data
[1] |= (subaddress
& 0x04) ? 0x4000 : 0x0;
1318 data
[2] = 0x2082 | ((subaddress
& 0x04) ? 0x0005 : 0x0);
1319 data
[2] |= (subaddress
& 0x02) ? 0x0150 : 0x0;
1320 data
[2] |= (subaddress
& 0x01) ? 0x5400 : 0x0;
1323 err
+= w9968cf_write_fsb(cam
, data
);
1325 data
[0] = 0x8208 | ((value
& 0x80) ? 0x0015 : 0x0);
1326 data
[0] |= (value
& 0x40) ? 0x0540 : 0x0;
1327 data
[0] |= (value
& 0x20) ? 0x5000 : 0x0;
1328 data
[1] = 0x0820 | ((value
& 0x20) ? 0x0001 : 0x0);
1329 data
[1] |= (value
& 0x10) ? 0x0054 : 0x0;
1330 data
[1] |= (value
& 0x08) ? 0x1500 : 0x0;
1331 data
[1] |= (value
& 0x04) ? 0x4000 : 0x0;
1332 data
[2] = 0x2082 | ((value
& 0x04) ? 0x0005 : 0x0);
1333 data
[2] |= (value
& 0x02) ? 0x0150 : 0x0;
1334 data
[2] |= (value
& 0x01) ? 0x5400 : 0x0;
1337 err
+= w9968cf_write_fsb(cam
, data
);
1339 /* Disable SBUS outputs */
1340 err
+= w9968cf_write_sb(cam
, 0x0000);
1343 DBG(5, "I2C write byte data done, addr.0x%04X, subaddr.0x%02X "
1344 "value 0x%02X", address
, subaddress
, value
)
1346 DBG(5, "I2C write byte data failed, addr.0x%04X, "
1347 "subaddr.0x%02X, value 0x%02X",
1348 address
, subaddress
, value
)
1354 /* SMBus protocol: S Addr Wr [A] Subaddr [A] P S Addr+1 Rd [A] [Value] NA P */
1356 w9968cf_i2c_adap_read_byte_data(struct w9968cf_device
* cam
,
1357 u16 address
, u8 subaddress
,
1362 /* Serial data enable */
1363 err
+= w9968cf_write_sb(cam
, 0x0013); /* don't change ! */
1365 err
+= w9968cf_smbus_start(cam
);
1366 err
+= w9968cf_smbus_write_byte(cam
, address
);
1367 err
+= w9968cf_smbus_read_ack(cam
);
1368 err
+= w9968cf_smbus_write_byte(cam
, subaddress
);
1369 err
+= w9968cf_smbus_read_ack(cam
);
1370 err
+= w9968cf_smbus_stop(cam
);
1371 err
+= w9968cf_smbus_start(cam
);
1372 err
+= w9968cf_smbus_write_byte(cam
, address
+ 1);
1373 err
+= w9968cf_smbus_read_ack(cam
);
1374 err
+= w9968cf_smbus_read_byte(cam
, value
);
1375 err
+= w9968cf_smbus_write_ack(cam
);
1376 err
+= w9968cf_smbus_stop(cam
);
1378 /* Serial data disable */
1379 err
+= w9968cf_write_sb(cam
, 0x0000);
1382 DBG(5, "I2C read byte data done, addr.0x%04X, "
1383 "subaddr.0x%02X, value 0x%02X",
1384 address
, subaddress
, *value
)
1386 DBG(5, "I2C read byte data failed, addr.0x%04X, "
1387 "subaddr.0x%02X, wrong value 0x%02X",
1388 address
, subaddress
, *value
)
1394 /* SMBus protocol: S Addr+1 Rd [A] [Value] NA P */
1396 w9968cf_i2c_adap_read_byte(struct w9968cf_device
* cam
,
1397 u16 address
, u8
* value
)
1401 /* Serial data enable */
1402 err
+= w9968cf_write_sb(cam
, 0x0013);
1404 err
+= w9968cf_smbus_start(cam
);
1405 err
+= w9968cf_smbus_write_byte(cam
, address
+ 1);
1406 err
+= w9968cf_smbus_read_ack(cam
);
1407 err
+= w9968cf_smbus_read_byte(cam
, value
);
1408 err
+= w9968cf_smbus_write_ack(cam
);
1409 err
+= w9968cf_smbus_stop(cam
);
1411 /* Serial data disable */
1412 err
+= w9968cf_write_sb(cam
, 0x0000);
1415 DBG(5, "I2C read byte done, addr.0x%04X, "
1416 "value 0x%02X", address
, *value
)
1418 DBG(5, "I2C read byte failed, addr.0x%04X, "
1419 "wrong value 0x%02X", address
, *value
)
1425 /* SMBus protocol: S Addr Wr [A] Value [A] P */
1427 w9968cf_i2c_adap_write_byte(struct w9968cf_device
* cam
,
1428 u16 address
, u8 value
)
1430 DBG(4, "i2c_write_byte() is an unsupported transfer mode")
1436 /****************************************************************************
1437 * I2C interface to kernel *
1438 ****************************************************************************/
1441 w9968cf_i2c_smbus_xfer(struct i2c_adapter
*adapter
, u16 addr
,
1442 unsigned short flags
, char read_write
, u8 command
,
1443 int size
, union i2c_smbus_data
*data
)
1445 struct w9968cf_device
* cam
= i2c_get_adapdata(adapter
);
1454 DBG(4, "Rejected slave ID 0x%04X", addr
)
1458 if (size
== I2C_SMBUS_BYTE
) {
1459 /* Why addr <<= 1? See OVXXX0_SID defines in ovcamchip.h */
1462 if (read_write
== I2C_SMBUS_WRITE
)
1463 err
= w9968cf_i2c_adap_write_byte(cam
, addr
, command
);
1464 else if (read_write
== I2C_SMBUS_READ
)
1465 err
= w9968cf_i2c_adap_read_byte(cam
,addr
,&data
->byte
);
1467 } else if (size
== I2C_SMBUS_BYTE_DATA
) {
1470 if (read_write
== I2C_SMBUS_WRITE
)
1471 err
= w9968cf_i2c_adap_fastwrite_byte_data(cam
, addr
,
1472 command
, data
->byte
);
1473 else if (read_write
== I2C_SMBUS_READ
) {
1474 for (i
= 1; i
<= W9968CF_I2C_RW_RETRIES
; i
++) {
1475 err
= w9968cf_i2c_adap_read_byte_data(cam
,addr
,
1476 command
, &data
->byte
);
1478 if (w9968cf_smbus_refresh_bus(cam
)) {
1490 DBG(4, "Unsupported I2C transfer mode (%d)", size
)
1498 static u32
w9968cf_i2c_func(struct i2c_adapter
* adap
)
1500 return I2C_FUNC_SMBUS_READ_BYTE
|
1501 I2C_FUNC_SMBUS_READ_BYTE_DATA
|
1502 I2C_FUNC_SMBUS_WRITE_BYTE_DATA
;
1506 static int w9968cf_i2c_attach_inform(struct i2c_client
* client
)
1508 struct w9968cf_device
* cam
= i2c_get_adapdata(client
->adapter
);
1509 int id
= client
->driver
->id
, err
= 0;
1511 if (id
== I2C_DRIVERID_OVCAMCHIP
) {
1512 cam
->sensor_client
= client
;
1513 err
= w9968cf_sensor_init(cam
);
1515 cam
->sensor_client
= NULL
;
1519 DBG(4, "Rejected client [%s] with driver [%s]",
1520 client
->name
, client
->driver
->driver
.name
)
1524 DBG(5, "I2C attach client [%s] with driver [%s]",
1525 client
->name
, client
->driver
->driver
.name
)
1531 static int w9968cf_i2c_detach_inform(struct i2c_client
* client
)
1533 struct w9968cf_device
* cam
= i2c_get_adapdata(client
->adapter
);
1535 if (cam
->sensor_client
== client
)
1536 cam
->sensor_client
= NULL
;
1538 DBG(5, "I2C detach client [%s]", client
->name
)
1544 static int w9968cf_i2c_init(struct w9968cf_device
* cam
)
1548 static struct i2c_algorithm algo
= {
1549 .smbus_xfer
= w9968cf_i2c_smbus_xfer
,
1550 .functionality
= w9968cf_i2c_func
,
1553 static struct i2c_adapter adap
= {
1554 .id
= I2C_HW_SMBUS_W9968CF
,
1555 .class = I2C_CLASS_CAM_DIGITAL
,
1556 .owner
= THIS_MODULE
,
1557 .client_register
= w9968cf_i2c_attach_inform
,
1558 .client_unregister
= w9968cf_i2c_detach_inform
,
1562 memcpy(&cam
->i2c_adapter
, &adap
, sizeof(struct i2c_adapter
));
1563 strcpy(cam
->i2c_adapter
.name
, "w9968cf");
1564 cam
->i2c_adapter
.dev
.parent
= &cam
->usbdev
->dev
;
1565 i2c_set_adapdata(&cam
->i2c_adapter
, cam
);
1567 DBG(6, "Registering I2C adapter with kernel...")
1569 err
= i2c_add_adapter(&cam
->i2c_adapter
);
1571 DBG(1, "Failed to register the I2C adapter")
1573 DBG(5, "I2C adapter registered")
1580 /****************************************************************************
1581 * Helper functions *
1582 ****************************************************************************/
1584 /*--------------------------------------------------------------------------
1585 Turn on the LED on some webcams. A beep should be heard too.
1586 Return 0 on success, a negative number otherwise.
1587 --------------------------------------------------------------------------*/
1588 static int w9968cf_turn_on_led(struct w9968cf_device
* cam
)
1592 err
+= w9968cf_write_reg(cam
, 0xff00, 0x00); /* power-down */
1593 err
+= w9968cf_write_reg(cam
, 0xbf17, 0x00); /* reset everything */
1594 err
+= w9968cf_write_reg(cam
, 0xbf10, 0x00); /* normal operation */
1595 err
+= w9968cf_write_reg(cam
, 0x0010, 0x01); /* serial bus, SDS high */
1596 err
+= w9968cf_write_reg(cam
, 0x0000, 0x01); /* serial bus, SDS low */
1597 err
+= w9968cf_write_reg(cam
, 0x0010, 0x01); /* ..high 'beep-beep' */
1600 DBG(2, "Couldn't turn on the LED")
1602 DBG(5, "LED turned on")
1608 /*--------------------------------------------------------------------------
1609 Write some registers for the device initialization.
1610 This function is called once on open().
1611 Return 0 on success, a negative number otherwise.
1612 --------------------------------------------------------------------------*/
1613 static int w9968cf_init_chip(struct w9968cf_device
* cam
)
1615 unsigned long hw_bufsize
= cam
->maxwidth
*cam
->maxheight
*2,
1617 u0
= y0
+ hw_bufsize
/2,
1618 v0
= u0
+ hw_bufsize
/4,
1619 y1
= v0
+ hw_bufsize
/4,
1620 u1
= y1
+ hw_bufsize
/2,
1621 v1
= u1
+ hw_bufsize
/4;
1624 err
+= w9968cf_write_reg(cam
, 0xff00, 0x00); /* power off */
1625 err
+= w9968cf_write_reg(cam
, 0xbf10, 0x00); /* power on */
1627 err
+= w9968cf_write_reg(cam
, 0x405d, 0x03); /* DRAM timings */
1628 err
+= w9968cf_write_reg(cam
, 0x0030, 0x04); /* SDRAM timings */
1630 err
+= w9968cf_write_reg(cam
, y0
& 0xffff, 0x20); /* Y buf.0, low */
1631 err
+= w9968cf_write_reg(cam
, y0
>> 16, 0x21); /* Y buf.0, high */
1632 err
+= w9968cf_write_reg(cam
, u0
& 0xffff, 0x24); /* U buf.0, low */
1633 err
+= w9968cf_write_reg(cam
, u0
>> 16, 0x25); /* U buf.0, high */
1634 err
+= w9968cf_write_reg(cam
, v0
& 0xffff, 0x28); /* V buf.0, low */
1635 err
+= w9968cf_write_reg(cam
, v0
>> 16, 0x29); /* V buf.0, high */
1637 err
+= w9968cf_write_reg(cam
, y1
& 0xffff, 0x22); /* Y buf.1, low */
1638 err
+= w9968cf_write_reg(cam
, y1
>> 16, 0x23); /* Y buf.1, high */
1639 err
+= w9968cf_write_reg(cam
, u1
& 0xffff, 0x26); /* U buf.1, low */
1640 err
+= w9968cf_write_reg(cam
, u1
>> 16, 0x27); /* U buf.1, high */
1641 err
+= w9968cf_write_reg(cam
, v1
& 0xffff, 0x2a); /* V buf.1, low */
1642 err
+= w9968cf_write_reg(cam
, v1
>> 16, 0x2b); /* V buf.1, high */
1644 err
+= w9968cf_write_reg(cam
, y1
& 0xffff, 0x32); /* JPEG buf 0 low */
1645 err
+= w9968cf_write_reg(cam
, y1
>> 16, 0x33); /* JPEG buf 0 high */
1647 err
+= w9968cf_write_reg(cam
, y1
& 0xffff, 0x34); /* JPEG buf 1 low */
1648 err
+= w9968cf_write_reg(cam
, y1
>> 16, 0x35); /* JPEG bug 1 high */
1650 err
+= w9968cf_write_reg(cam
, 0x0000, 0x36);/* JPEG restart interval */
1651 err
+= w9968cf_write_reg(cam
, 0x0804, 0x37);/*JPEG VLE FIFO threshold*/
1652 err
+= w9968cf_write_reg(cam
, 0x0000, 0x38);/* disable hw up-scaling */
1653 err
+= w9968cf_write_reg(cam
, 0x0000, 0x3f); /* JPEG/MCTL test data */
1655 err
+= w9968cf_set_picture(cam
, cam
->picture
); /* this before */
1656 err
+= w9968cf_set_window(cam
, cam
->window
);
1659 DBG(1, "Chip initialization failed")
1661 DBG(5, "Chip successfully initialized")
1667 /*--------------------------------------------------------------------------
1668 Return non-zero if the palette is supported, 0 otherwise.
1669 --------------------------------------------------------------------------*/
1670 static inline u16
w9968cf_valid_palette(u16 palette
)
1673 while (w9968cf_formatlist
[i
].palette
!= 0) {
1674 if (palette
== w9968cf_formatlist
[i
].palette
)
1682 /*--------------------------------------------------------------------------
1683 Return the depth corresponding to the given palette.
1684 Palette _must_ be supported !
1685 --------------------------------------------------------------------------*/
1686 static inline u16
w9968cf_valid_depth(u16 palette
)
1689 while (w9968cf_formatlist
[i
].palette
!= palette
)
1692 return w9968cf_formatlist
[i
].depth
;
1696 /*--------------------------------------------------------------------------
1697 Return non-zero if the format requires decompression, 0 otherwise.
1698 --------------------------------------------------------------------------*/
1699 static inline u8
w9968cf_need_decompression(u16 palette
)
1702 while (w9968cf_formatlist
[i
].palette
!= 0) {
1703 if (palette
== w9968cf_formatlist
[i
].palette
)
1704 return w9968cf_formatlist
[i
].compression
;
1711 /*--------------------------------------------------------------------------
1712 Change the picture settings of the camera.
1713 Return 0 on success, a negative number otherwise.
1714 --------------------------------------------------------------------------*/
1716 w9968cf_set_picture(struct w9968cf_device
* cam
, struct video_picture pict
)
1718 u16 fmt
, hw_depth
, hw_palette
, reg_v
= 0x0000;
1721 /* Make sure we are using a valid depth */
1722 pict
.depth
= w9968cf_valid_depth(pict
.palette
);
1726 hw_depth
= pict
.depth
; /* depth used by the winbond chip */
1727 hw_palette
= pict
.palette
; /* palette used by the winbond chip */
1729 /* VS & HS polarities */
1730 reg_v
= (cam
->vs_polarity
<< 12) | (cam
->hs_polarity
<< 11);
1734 case VIDEO_PALETTE_UYVY
:
1736 cam
->vpp_flag
= VPP_NONE
;
1738 case VIDEO_PALETTE_YUV422P
:
1740 cam
->vpp_flag
= VPP_DECOMPRESSION
;
1742 case VIDEO_PALETTE_YUV420
:
1743 case VIDEO_PALETTE_YUV420P
:
1745 cam
->vpp_flag
= VPP_DECOMPRESSION
;
1747 case VIDEO_PALETTE_YUYV
:
1748 case VIDEO_PALETTE_YUV422
:
1750 cam
->vpp_flag
= VPP_SWAP_YUV_BYTES
;
1751 hw_palette
= VIDEO_PALETTE_UYVY
;
1753 /* Original video is used instead of RGBX palettes.
1754 Software conversion later. */
1755 case VIDEO_PALETTE_GREY
:
1756 case VIDEO_PALETTE_RGB555
:
1757 case VIDEO_PALETTE_RGB565
:
1758 case VIDEO_PALETTE_RGB24
:
1759 case VIDEO_PALETTE_RGB32
:
1760 reg_v
|= 0x0000; /* UYVY 16 bit is used */
1762 hw_palette
= VIDEO_PALETTE_UYVY
;
1763 cam
->vpp_flag
= VPP_UYVY_TO_RGBX
;
1767 /* NOTE: due to memory issues, it is better to disable the hardware
1768 double buffering during compression */
1769 if (cam
->double_buffer
&& !(cam
->vpp_flag
& VPP_DECOMPRESSION
))
1775 if (cam
->filter_type
== 1)
1777 else if (cam
->filter_type
== 2)
1780 if ((err
= w9968cf_write_reg(cam
, reg_v
, 0x16)))
1783 if ((err
= w9968cf_sensor_update_picture(cam
, pict
)))
1786 /* If all went well, update the device data structure */
1787 memcpy(&cam
->picture
, &pict
, sizeof(pict
));
1788 cam
->hw_depth
= hw_depth
;
1789 cam
->hw_palette
= hw_palette
;
1791 /* Settings changed, so we clear the frame buffers */
1792 memset(cam
->frame
[0].buffer
, 0, cam
->nbuffers
*cam
->frame
[0].size
);
1794 DBG(4, "Palette is %s, depth is %u bpp",
1795 symbolic(v4l1_plist
, pict
.palette
), pict
.depth
)
1800 DBG(1, "Failed to change picture settings")
1805 /*--------------------------------------------------------------------------
1806 Change the capture area size of the camera.
1807 This function _must_ be called _after_ w9968cf_set_picture().
1808 Return 0 on success, a negative number otherwise.
1809 --------------------------------------------------------------------------*/
1811 w9968cf_set_window(struct w9968cf_device
* cam
, struct video_window win
)
1813 u16 x
, y
, w
, h
, scx
, scy
, cw
, ch
, ax
, ay
;
1814 unsigned long fw
, fh
;
1815 struct ovcamchip_window s_win
;
1818 /* Work around to avoid FP arithmetics */
1819 #define SC(x) ((x) << 10)
1820 #define UNSC(x) ((x) >> 10)
1822 /* Make sure we are using a supported resolution */
1823 if ((err
= w9968cf_adjust_window_size(cam
, (u16
*)&win
.width
,
1824 (u16
*)&win
.height
)))
1827 /* Scaling factors */
1828 fw
= SC(win
.width
) / cam
->maxwidth
;
1829 fh
= SC(win
.height
) / cam
->maxheight
;
1831 /* Set up the width and height values used by the chip */
1832 if ((win
.width
> cam
->maxwidth
) || (win
.height
> cam
->maxheight
)) {
1833 cam
->vpp_flag
|= VPP_UPSCALE
;
1834 /* Calculate largest w,h mantaining the same w/h ratio */
1835 w
= (fw
>= fh
) ? cam
->maxwidth
: SC(win
.width
)/fh
;
1836 h
= (fw
>= fh
) ? SC(win
.height
)/fw
: cam
->maxheight
;
1837 if (w
< cam
->minwidth
) /* just in case */
1839 if (h
< cam
->minheight
) /* just in case */
1842 cam
->vpp_flag
&= ~VPP_UPSCALE
;
1847 /* x,y offsets of the cropped area */
1848 scx
= cam
->start_cropx
;
1849 scy
= cam
->start_cropy
;
1851 /* Calculate cropped area manteining the right w/h ratio */
1852 if (cam
->largeview
&& !(cam
->vpp_flag
& VPP_UPSCALE
)) {
1853 cw
= (fw
>= fh
) ? cam
->maxwidth
: SC(win
.width
)/fh
;
1854 ch
= (fw
>= fh
) ? SC(win
.height
)/fw
: cam
->maxheight
;
1860 /* Setup the window of the sensor */
1861 s_win
.format
= VIDEO_PALETTE_UYVY
;
1862 s_win
.width
= cam
->maxwidth
;
1863 s_win
.height
= cam
->maxheight
;
1864 s_win
.quarter
= 0; /* full progressive video */
1867 s_win
.x
= (s_win
.width
- cw
) / 2;
1868 s_win
.y
= (s_win
.height
- ch
) / 2;
1871 if (cam
->clockdiv
>= 0)
1872 s_win
.clockdiv
= cam
->clockdiv
; /* manual override */
1874 switch (cam
->sensor
) {
1887 s_win
.clockdiv
= W9968CF_DEF_CLOCKDIVISOR
;
1890 /* We have to scale win.x and win.y offsets */
1891 if ( (cam
->largeview
&& !(cam
->vpp_flag
& VPP_UPSCALE
))
1892 || (cam
->vpp_flag
& VPP_UPSCALE
) ) {
1900 if ((ax
+ cw
) > cam
->maxwidth
)
1901 ax
= cam
->maxwidth
- cw
;
1903 if ((ay
+ ch
) > cam
->maxheight
)
1904 ay
= cam
->maxheight
- ch
;
1906 /* Adjust win.x, win.y */
1907 if ( (cam
->largeview
&& !(cam
->vpp_flag
& VPP_UPSCALE
))
1908 || (cam
->vpp_flag
& VPP_UPSCALE
) ) {
1909 win
.x
= UNSC(ax
*fw
);
1910 win
.y
= UNSC(ay
*fh
);
1916 /* Offsets used by the chip */
1921 if ((err
= w9968cf_sensor_cmd(cam
, OVCAMCHIP_CMD_S_MODE
, &s_win
)))
1924 err
+= w9968cf_write_reg(cam
, scx
+ x
, 0x10);
1925 err
+= w9968cf_write_reg(cam
, scy
+ y
, 0x11);
1926 err
+= w9968cf_write_reg(cam
, scx
+ x
+ cw
, 0x12);
1927 err
+= w9968cf_write_reg(cam
, scy
+ y
+ ch
, 0x13);
1928 err
+= w9968cf_write_reg(cam
, w
, 0x14);
1929 err
+= w9968cf_write_reg(cam
, h
, 0x15);
1931 /* JPEG width & height */
1932 err
+= w9968cf_write_reg(cam
, w
, 0x30);
1933 err
+= w9968cf_write_reg(cam
, h
, 0x31);
1935 /* Y & UV frame buffer strides (in WORD) */
1936 if (cam
->vpp_flag
& VPP_DECOMPRESSION
) {
1937 err
+= w9968cf_write_reg(cam
, w
/2, 0x2c);
1938 err
+= w9968cf_write_reg(cam
, w
/4, 0x2d);
1940 err
+= w9968cf_write_reg(cam
, w
, 0x2c);
1945 /* If all went well, update the device data structure */
1946 memcpy(&cam
->window
, &win
, sizeof(win
));
1950 /* Settings changed, so we clear the frame buffers */
1951 memset(cam
->frame
[0].buffer
, 0, cam
->nbuffers
*cam
->frame
[0].size
);
1953 DBG(4, "The capture area is %dx%d, Offset (x,y)=(%u,%u)",
1954 win
.width
, win
.height
, win
.x
, win
.y
)
1956 PDBGG("x=%u ,y=%u, w=%u, h=%u, ax=%u, ay=%u, s_win.x=%u, s_win.y=%u, "
1957 "cw=%u, ch=%u, win.x=%u, win.y=%u, win.width=%u, win.height=%u",
1958 x
, y
, w
, h
, ax
, ay
, s_win
.x
, s_win
.y
, cw
, ch
, win
.x
, win
.y
,
1959 win
.width
, win
.height
)
1964 DBG(1, "Failed to change the capture area size")
1969 /*--------------------------------------------------------------------------
1970 Adjust the asked values for window width and height.
1971 Return 0 on success, -1 otherwise.
1972 --------------------------------------------------------------------------*/
1974 w9968cf_adjust_window_size(struct w9968cf_device
* cam
, u16
* width
, u16
* height
)
1978 if ((*width
< cam
->minwidth
) || (*height
< cam
->minheight
))
1981 maxw
= cam
->upscaling
&& !(cam
->vpp_flag
& VPP_DECOMPRESSION
) &&
1982 w9968cf_vpp
? max((u16
)W9968CF_MAX_WIDTH
, cam
->maxwidth
)
1984 maxh
= cam
->upscaling
&& !(cam
->vpp_flag
& VPP_DECOMPRESSION
) &&
1985 w9968cf_vpp
? max((u16
)W9968CF_MAX_HEIGHT
, cam
->maxheight
)
1993 if (cam
->vpp_flag
& VPP_DECOMPRESSION
) {
1994 *width
&= ~15L; /* multiple of 16 */
1998 PDBGG("Window size adjusted w=%u, h=%u ", *width
, *height
)
2004 /*--------------------------------------------------------------------------
2005 Initialize the FIFO list of requested frames.
2006 --------------------------------------------------------------------------*/
2007 static void w9968cf_init_framelist(struct w9968cf_device
* cam
)
2011 for (i
= 0; i
< cam
->nbuffers
; i
++) {
2012 cam
->requested_frame
[i
] = NULL
;
2013 cam
->frame
[i
].queued
= 0;
2014 cam
->frame
[i
].status
= F_UNUSED
;
2019 /*--------------------------------------------------------------------------
2020 Add a frame in the FIFO list of requested frames.
2021 This function is called in process context.
2022 --------------------------------------------------------------------------*/
2023 static void w9968cf_push_frame(struct w9968cf_device
* cam
, u8 f_num
)
2026 unsigned long lock_flags
;
2028 spin_lock_irqsave(&cam
->flist_lock
, lock_flags
);
2030 for (f
=0; cam
->requested_frame
[f
] != NULL
; f
++);
2031 cam
->requested_frame
[f
] = &cam
->frame
[f_num
];
2032 cam
->frame
[f_num
].queued
= 1;
2033 cam
->frame
[f_num
].status
= F_UNUSED
; /* clear the status */
2035 spin_unlock_irqrestore(&cam
->flist_lock
, lock_flags
);
2037 DBG(6, "Frame #%u pushed into the FIFO list. Position %u", f_num
, f
)
2041 /*--------------------------------------------------------------------------
2042 Read, store and remove the first pointer in the FIFO list of requested
2043 frames. This function is called in interrupt context.
2044 --------------------------------------------------------------------------*/
2046 w9968cf_pop_frame(struct w9968cf_device
* cam
, struct w9968cf_frame_t
** framep
)
2050 spin_lock(&cam
->flist_lock
);
2052 *framep
= cam
->requested_frame
[0];
2054 /* Shift the list of pointers */
2055 for (i
= 0; i
< cam
->nbuffers
-1; i
++)
2056 cam
->requested_frame
[i
] = cam
->requested_frame
[i
+1];
2057 cam
->requested_frame
[i
] = NULL
;
2059 spin_unlock(&cam
->flist_lock
);
2061 DBG(6,"Popped frame #%d from the list", (*framep
)->number
)
2065 /*--------------------------------------------------------------------------
2066 High-level video post-processing routine on grabbed frames.
2067 Return 0 on success, a negative number otherwise.
2068 --------------------------------------------------------------------------*/
2070 w9968cf_postprocess_frame(struct w9968cf_device
* cam
,
2071 struct w9968cf_frame_t
* fr
)
2073 void *pIn
= fr
->buffer
, *pOut
= cam
->frame_vpp
.buffer
, *tmp
;
2074 u16 w
= cam
->window
.width
,
2075 h
= cam
->window
.height
,
2076 d
= cam
->picture
.depth
,
2077 fmt
= cam
->picture
.palette
,
2078 rgb
= cam
->force_rgb
,
2079 hw_w
= cam
->hw_width
,
2080 hw_h
= cam
->hw_height
,
2081 hw_d
= cam
->hw_depth
;
2084 #define _PSWAP(pIn, pOut) {tmp = (pIn); (pIn) = (pOut); (pOut) = tmp;}
2086 if (cam
->vpp_flag
& VPP_DECOMPRESSION
) {
2087 memcpy(pOut
, pIn
, fr
->length
);
2089 err
= w9968cf_vpp
->decode(pIn
, fr
->length
, hw_w
, hw_h
, pOut
);
2090 PDBGG("Compressed frame length: %lu",(unsigned long)fr
->length
)
2091 fr
->length
= (hw_w
*hw_h
*hw_d
)/8;
2094 DBG(4, "An error occurred while decoding the frame: "
2095 "%s", symbolic(decoder_errlist
, err
))
2098 DBG(6, "Frame decoded")
2101 if (cam
->vpp_flag
& VPP_SWAP_YUV_BYTES
) {
2102 w9968cf_vpp
->swap_yuvbytes(pIn
, fr
->length
);
2103 DBG(6, "Original UYVY component ordering changed")
2106 if (cam
->vpp_flag
& VPP_UPSCALE
) {
2107 w9968cf_vpp
->scale_up(pIn
, pOut
, hw_w
, hw_h
, hw_d
, w
, h
);
2108 fr
->length
= (w
*h
*hw_d
)/8;
2110 DBG(6, "Vertical up-scaling done: %u,%u,%ubpp->%u,%u",
2111 hw_w
, hw_h
, hw_d
, w
, h
)
2114 if (cam
->vpp_flag
& VPP_UYVY_TO_RGBX
) {
2115 w9968cf_vpp
->uyvy_to_rgbx(pIn
, fr
->length
, pOut
, fmt
, rgb
);
2116 fr
->length
= (w
*h
*d
)/8;
2118 DBG(6, "UYVY-16bit to %s conversion done",
2119 symbolic(v4l1_plist
, fmt
))
2122 if (pOut
== fr
->buffer
)
2123 memcpy(fr
->buffer
, cam
->frame_vpp
.buffer
, fr
->length
);
2130 /****************************************************************************
2131 * Image sensor control routines *
2132 ****************************************************************************/
2135 w9968cf_sensor_set_control(struct w9968cf_device
* cam
, int cid
, int val
)
2137 struct ovcamchip_control ctl
;
2143 err
= w9968cf_sensor_cmd(cam
, OVCAMCHIP_CMD_S_CTRL
, &ctl
);
2150 w9968cf_sensor_get_control(struct w9968cf_device
* cam
, int cid
, int* val
)
2152 struct ovcamchip_control ctl
;
2157 err
= w9968cf_sensor_cmd(cam
, OVCAMCHIP_CMD_G_CTRL
, &ctl
);
2166 w9968cf_sensor_cmd(struct w9968cf_device
* cam
, unsigned int cmd
, void* arg
)
2168 struct i2c_client
* c
= cam
->sensor_client
;
2171 if (!c
|| !c
->driver
|| !c
->driver
->command
)
2174 rc
= c
->driver
->command(c
, cmd
, arg
);
2175 /* The I2C driver returns -EPERM on non-supported controls */
2176 return (rc
< 0 && rc
!= -EPERM
) ? rc
: 0;
2180 /*--------------------------------------------------------------------------
2181 Update some settings of the image sensor.
2182 Returns: 0 on success, a negative number otherwise.
2183 --------------------------------------------------------------------------*/
2184 static int w9968cf_sensor_update_settings(struct w9968cf_device
* cam
)
2188 /* Auto brightness */
2189 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_AUTOBRIGHT
,
2195 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_AUTOEXP
,
2200 /* Banding filter */
2201 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_BANDFILT
,
2206 /* Light frequency */
2207 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_FREQ
,
2213 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_BACKLIGHT
,
2219 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_MIRROR
,
2228 /*--------------------------------------------------------------------------
2229 Get some current picture settings from the image sensor and update the
2230 internal 'picture' structure of the camera.
2231 Returns: 0 on success, a negative number otherwise.
2232 --------------------------------------------------------------------------*/
2233 static int w9968cf_sensor_get_picture(struct w9968cf_device
* cam
)
2237 err
= w9968cf_sensor_get_control(cam
, OVCAMCHIP_CID_CONT
, &v
);
2240 cam
->picture
.contrast
= v
;
2242 err
= w9968cf_sensor_get_control(cam
, OVCAMCHIP_CID_BRIGHT
, &v
);
2245 cam
->picture
.brightness
= v
;
2247 err
= w9968cf_sensor_get_control(cam
, OVCAMCHIP_CID_SAT
, &v
);
2250 cam
->picture
.colour
= v
;
2252 err
= w9968cf_sensor_get_control(cam
, OVCAMCHIP_CID_HUE
, &v
);
2255 cam
->picture
.hue
= v
;
2257 DBG(5, "Got picture settings from the image sensor")
2259 PDBGG("Brightness, contrast, hue, colour, whiteness are "
2260 "%u,%u,%u,%u,%u", cam
->picture
.brightness
,cam
->picture
.contrast
,
2261 cam
->picture
.hue
, cam
->picture
.colour
, cam
->picture
.whiteness
)
2267 /*--------------------------------------------------------------------------
2268 Update picture settings of the image sensor.
2269 Returns: 0 on success, a negative number otherwise.
2270 --------------------------------------------------------------------------*/
2272 w9968cf_sensor_update_picture(struct w9968cf_device
* cam
,
2273 struct video_picture pict
)
2277 if ((!cam
->sensor_initialized
)
2278 || pict
.contrast
!= cam
->picture
.contrast
) {
2279 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_CONT
,
2283 DBG(4, "Contrast changed from %u to %u",
2284 cam
->picture
.contrast
, pict
.contrast
)
2285 cam
->picture
.contrast
= pict
.contrast
;
2288 if (((!cam
->sensor_initialized
) ||
2289 pict
.brightness
!= cam
->picture
.brightness
) && (!cam
->auto_brt
)) {
2290 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_BRIGHT
,
2294 DBG(4, "Brightness changed from %u to %u",
2295 cam
->picture
.brightness
, pict
.brightness
)
2296 cam
->picture
.brightness
= pict
.brightness
;
2299 if ((!cam
->sensor_initialized
) || pict
.colour
!= cam
->picture
.colour
) {
2300 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_SAT
,
2304 DBG(4, "Colour changed from %u to %u",
2305 cam
->picture
.colour
, pict
.colour
)
2306 cam
->picture
.colour
= pict
.colour
;
2309 if ((!cam
->sensor_initialized
) || pict
.hue
!= cam
->picture
.hue
) {
2310 err
= w9968cf_sensor_set_control(cam
, OVCAMCHIP_CID_HUE
,
2314 DBG(4, "Hue changed from %u to %u",
2315 cam
->picture
.hue
, pict
.hue
)
2316 cam
->picture
.hue
= pict
.hue
;
2322 DBG(4, "Failed to change sensor picture setting")
2328 /****************************************************************************
2329 * Camera configuration *
2330 ****************************************************************************/
2332 /*--------------------------------------------------------------------------
2333 This function is called when a supported image sensor is detected.
2334 Return 0 if the initialization succeeds, a negative number otherwise.
2335 --------------------------------------------------------------------------*/
2336 static int w9968cf_sensor_init(struct w9968cf_device
* cam
)
2340 if ((err
= w9968cf_sensor_cmd(cam
, OVCAMCHIP_CMD_INITIALIZE
,
2344 if ((err
= w9968cf_sensor_cmd(cam
, OVCAMCHIP_CMD_Q_SUBTYPE
,
2348 /* NOTE: Make sure width and height are a multiple of 16 */
2349 switch (cam
->sensor_client
->addr
) {
2351 cam
->maxwidth
= 352;
2352 cam
->maxheight
= 288;
2354 cam
->minheight
= 48;
2357 cam
->maxwidth
= 640;
2358 cam
->maxheight
= 480;
2360 cam
->minheight
= 48;
2363 DBG(1, "Not supported image sensor detected for %s",
2364 symbolic(camlist
, cam
->id
))
2368 /* These values depend on the ones in the ovxxx0.c sources */
2369 switch (cam
->sensor
) {
2371 cam
->start_cropx
= 287;
2372 cam
->start_cropy
= 35;
2373 /* Seems to work around a bug in the image sensor */
2374 cam
->vs_polarity
= 1;
2375 cam
->hs_polarity
= 1;
2378 cam
->start_cropx
= 320;
2379 cam
->start_cropy
= 35;
2380 cam
->vs_polarity
= 1;
2381 cam
->hs_polarity
= 0;
2384 if ((err
= w9968cf_sensor_update_settings(cam
)))
2387 if ((err
= w9968cf_sensor_update_picture(cam
, cam
->picture
)))
2390 cam
->sensor_initialized
= 1;
2392 DBG(2, "%s image sensor initialized", symbolic(senlist
, cam
->sensor
))
2396 cam
->sensor_initialized
= 0;
2397 cam
->sensor
= CC_UNKNOWN
;
2398 DBG(1, "Image sensor initialization failed for %s (/dev/video%d). "
2399 "Try to detach and attach this device again",
2400 symbolic(camlist
, cam
->id
), cam
->v4ldev
->minor
)
2405 /*--------------------------------------------------------------------------
2406 Fill some basic fields in the main device data structure.
2407 This function is called once on w9968cf_usb_probe() for each recognized
2409 --------------------------------------------------------------------------*/
2411 w9968cf_configure_camera(struct w9968cf_device
* cam
,
2412 struct usb_device
* udev
,
2413 enum w9968cf_model_id mod_id
,
2414 const unsigned short dev_nr
)
2416 mutex_init(&cam
->fileop_mutex
);
2417 init_waitqueue_head(&cam
->open
);
2418 spin_lock_init(&cam
->urb_lock
);
2419 spin_lock_init(&cam
->flist_lock
);
2422 cam
->disconnected
= 0;
2424 cam
->sensor
= CC_UNKNOWN
;
2425 cam
->sensor_initialized
= 0;
2427 /* Calculate the alternate setting number (from 1 to 16)
2428 according to the 'packet_size' module parameter */
2429 if (packet_size
[dev_nr
] < W9968CF_MIN_PACKET_SIZE
)
2430 packet_size
[dev_nr
] = W9968CF_MIN_PACKET_SIZE
;
2431 for (cam
->altsetting
= 1;
2432 packet_size
[dev_nr
] < wMaxPacketSize
[cam
->altsetting
-1];
2435 cam
->max_buffers
= (max_buffers
[dev_nr
] < 2 ||
2436 max_buffers
[dev_nr
] > W9968CF_MAX_BUFFERS
)
2437 ? W9968CF_BUFFERS
: (u8
)max_buffers
[dev_nr
];
2439 cam
->double_buffer
= (double_buffer
[dev_nr
] == 0 ||
2440 double_buffer
[dev_nr
] == 1)
2441 ? (u8
)double_buffer
[dev_nr
]:W9968CF_DOUBLE_BUFFER
;
2443 cam
->clamping
= (clamping
[dev_nr
] == 0 || clamping
[dev_nr
] == 1)
2444 ? (u8
)clamping
[dev_nr
] : W9968CF_CLAMPING
;
2446 cam
->filter_type
= (filter_type
[dev_nr
] == 0 ||
2447 filter_type
[dev_nr
] == 1 ||
2448 filter_type
[dev_nr
] == 2)
2449 ? (u8
)filter_type
[dev_nr
] : W9968CF_FILTER_TYPE
;
2453 cam
->largeview
= (largeview
[dev_nr
] == 0 || largeview
[dev_nr
] == 1)
2454 ? (u8
)largeview
[dev_nr
] : W9968CF_LARGEVIEW
;
2456 cam
->decompression
= (decompression
[dev_nr
] == 0 ||
2457 decompression
[dev_nr
] == 1 ||
2458 decompression
[dev_nr
] == 2)
2459 ? (u8
)decompression
[dev_nr
]:W9968CF_DECOMPRESSION
;
2461 cam
->upscaling
= (upscaling
[dev_nr
] == 0 ||
2462 upscaling
[dev_nr
] == 1)
2463 ? (u8
)upscaling
[dev_nr
] : W9968CF_UPSCALING
;
2465 cam
->auto_brt
= (autobright
[dev_nr
] == 0 || autobright
[dev_nr
] == 1)
2466 ? (u8
)autobright
[dev_nr
] : W9968CF_AUTOBRIGHT
;
2468 cam
->auto_exp
= (autoexp
[dev_nr
] == 0 || autoexp
[dev_nr
] == 1)
2469 ? (u8
)autoexp
[dev_nr
] : W9968CF_AUTOEXP
;
2471 cam
->lightfreq
= (lightfreq
[dev_nr
] == 50 || lightfreq
[dev_nr
] == 60)
2472 ? (u8
)lightfreq
[dev_nr
] : W9968CF_LIGHTFREQ
;
2474 cam
->bandfilt
= (bandingfilter
[dev_nr
] == 0 ||
2475 bandingfilter
[dev_nr
] == 1)
2476 ? (u8
)bandingfilter
[dev_nr
] : W9968CF_BANDINGFILTER
;
2478 cam
->backlight
= (backlight
[dev_nr
] == 0 || backlight
[dev_nr
] == 1)
2479 ? (u8
)backlight
[dev_nr
] : W9968CF_BACKLIGHT
;
2481 cam
->clockdiv
= (clockdiv
[dev_nr
] == -1 || clockdiv
[dev_nr
] >= 0)
2482 ? (s8
)clockdiv
[dev_nr
] : W9968CF_CLOCKDIV
;
2484 cam
->mirror
= (mirror
[dev_nr
] == 0 || mirror
[dev_nr
] == 1)
2485 ? (u8
)mirror
[dev_nr
] : W9968CF_MIRROR
;
2487 cam
->monochrome
= (monochrome
[dev_nr
] == 0 || monochrome
[dev_nr
] == 1)
2488 ? monochrome
[dev_nr
] : W9968CF_MONOCHROME
;
2490 cam
->picture
.brightness
= (u16
)brightness
[dev_nr
];
2491 cam
->picture
.hue
= (u16
)hue
[dev_nr
];
2492 cam
->picture
.colour
= (u16
)colour
[dev_nr
];
2493 cam
->picture
.contrast
= (u16
)contrast
[dev_nr
];
2494 cam
->picture
.whiteness
= (u16
)whiteness
[dev_nr
];
2495 if (w9968cf_valid_palette((u16
)force_palette
[dev_nr
])) {
2496 cam
->picture
.palette
= (u16
)force_palette
[dev_nr
];
2497 cam
->force_palette
= 1;
2499 cam
->force_palette
= 0;
2500 if (cam
->decompression
== 0)
2501 cam
->picture
.palette
= W9968CF_PALETTE_DECOMP_OFF
;
2502 else if (cam
->decompression
== 1)
2503 cam
->picture
.palette
= W9968CF_PALETTE_DECOMP_FORCE
;
2505 cam
->picture
.palette
= W9968CF_PALETTE_DECOMP_ON
;
2507 cam
->picture
.depth
= w9968cf_valid_depth(cam
->picture
.palette
);
2509 cam
->force_rgb
= (force_rgb
[dev_nr
] == 0 || force_rgb
[dev_nr
] == 1)
2510 ? (u8
)force_rgb
[dev_nr
] : W9968CF_FORCE_RGB
;
2514 cam
->window
.width
= W9968CF_WIDTH
;
2515 cam
->window
.height
= W9968CF_HEIGHT
;
2516 cam
->window
.chromakey
= 0;
2517 cam
->window
.clipcount
= 0;
2518 cam
->window
.flags
= 0;
2520 DBG(3, "%s configured with settings #%u:",
2521 symbolic(camlist
, cam
->id
), dev_nr
)
2523 DBG(3, "- Data packet size for USB isochrnous transfer: %u bytes",
2524 wMaxPacketSize
[cam
->altsetting
-1])
2526 DBG(3, "- Number of requested video frame buffers: %u",
2529 if (cam
->double_buffer
)
2530 DBG(3, "- Hardware double buffering enabled")
2532 DBG(3, "- Hardware double buffering disabled")
2534 if (cam
->filter_type
== 0)
2535 DBG(3, "- Video filtering disabled")
2536 else if (cam
->filter_type
== 1)
2537 DBG(3, "- Video filtering enabled: type 1-2-1")
2538 else if (cam
->filter_type
== 2)
2539 DBG(3, "- Video filtering enabled: type 2-3-6-3-2")
2542 DBG(3, "- Video data clamping (CCIR-601 format) enabled")
2544 DBG(3, "- Video data clamping (CCIR-601 format) disabled")
2547 DBG(3, "- Large view enabled")
2549 DBG(3, "- Large view disabled")
2551 if ((cam
->decompression
) == 0 && (!cam
->force_palette
))
2552 DBG(3, "- Decompression disabled")
2553 else if ((cam
->decompression
) == 1 && (!cam
->force_palette
))
2554 DBG(3, "- Decompression forced")
2555 else if ((cam
->decompression
) == 2 && (!cam
->force_palette
))
2556 DBG(3, "- Decompression allowed")
2559 DBG(3, "- Software image scaling enabled")
2561 DBG(3, "- Software image scaling disabled")
2563 if (cam
->force_palette
)
2564 DBG(3, "- Image palette forced to %s",
2565 symbolic(v4l1_plist
, cam
->picture
.palette
))
2568 DBG(3, "- RGB component ordering will be used instead of BGR")
2571 DBG(3, "- Auto brightness enabled")
2573 DBG(3, "- Auto brightness disabled")
2576 DBG(3, "- Auto exposure enabled")
2578 DBG(3, "- Auto exposure disabled")
2581 DBG(3, "- Backlight exposure algorithm enabled")
2583 DBG(3, "- Backlight exposure algorithm disabled")
2586 DBG(3, "- Mirror enabled")
2588 DBG(3, "- Mirror disabled")
2591 DBG(3, "- Banding filter enabled")
2593 DBG(3, "- Banding filter disabled")
2595 DBG(3, "- Power lighting frequency: %u", cam
->lightfreq
)
2597 if (cam
->clockdiv
== -1)
2598 DBG(3, "- Automatic clock divisor enabled")
2600 DBG(3, "- Clock divisor: %d", cam
->clockdiv
)
2602 if (cam
->monochrome
)
2603 DBG(3, "- Image sensor used as monochrome")
2605 DBG(3, "- Image sensor not used as monochrome")
2609 /*--------------------------------------------------------------------------
2610 If the video post-processing module is not loaded, some parameters
2612 --------------------------------------------------------------------------*/
2613 static void w9968cf_adjust_configuration(struct w9968cf_device
* cam
)
2616 if (cam
->decompression
== 1) {
2617 cam
->decompression
= 2;
2618 DBG(2, "Video post-processing module not found: "
2619 "'decompression' parameter forced to 2")
2621 if (cam
->upscaling
) {
2623 DBG(2, "Video post-processing module not found: "
2624 "'upscaling' parameter forced to 0")
2626 if (cam
->picture
.palette
!= VIDEO_PALETTE_UYVY
) {
2627 cam
->force_palette
= 0;
2628 DBG(2, "Video post-processing module not found: "
2629 "'force_palette' parameter forced to 0")
2631 cam
->picture
.palette
= VIDEO_PALETTE_UYVY
;
2632 cam
->picture
.depth
= w9968cf_valid_depth(cam
->picture
.palette
);
2637 /*--------------------------------------------------------------------------
2638 Release the resources used by the driver.
2639 This function is called on disconnect
2640 (or on close if deallocation has been deferred)
2641 --------------------------------------------------------------------------*/
2642 static void w9968cf_release_resources(struct w9968cf_device
* cam
)
2644 mutex_lock(&w9968cf_devlist_mutex
);
2646 DBG(2, "V4L device deregistered: /dev/video%d", cam
->v4ldev
->minor
)
2648 video_unregister_device(cam
->v4ldev
);
2649 list_del(&cam
->v4llist
);
2650 i2c_del_adapter(&cam
->i2c_adapter
);
2651 w9968cf_deallocate_memory(cam
);
2652 kfree(cam
->control_buffer
);
2653 kfree(cam
->data_buffer
);
2655 mutex_unlock(&w9968cf_devlist_mutex
);
2660 /****************************************************************************
2661 * Video4Linux interface *
2662 ****************************************************************************/
2664 static int w9968cf_open(struct inode
* inode
, struct file
* filp
)
2666 struct w9968cf_device
* cam
;
2669 /* This the only safe way to prevent race conditions with disconnect */
2670 if (!down_read_trylock(&w9968cf_disconnect
))
2673 cam
= (struct w9968cf_device
*)video_get_drvdata(video_devdata(filp
));
2675 mutex_lock(&cam
->dev_mutex
);
2677 if (cam
->sensor
== CC_UNKNOWN
) {
2678 DBG(2, "No supported image sensor has been detected by the "
2679 "'ovcamchip' module for the %s (/dev/video%d). Make "
2680 "sure it is loaded *before* (re)connecting the camera.",
2681 symbolic(camlist
, cam
->id
), cam
->v4ldev
->minor
)
2682 mutex_unlock(&cam
->dev_mutex
);
2683 up_read(&w9968cf_disconnect
);
2688 DBG(2, "%s (/dev/video%d) has been already occupied by '%s'",
2689 symbolic(camlist
, cam
->id
),cam
->v4ldev
->minor
,cam
->command
)
2690 if ((filp
->f_flags
& O_NONBLOCK
)||(filp
->f_flags
& O_NDELAY
)) {
2691 mutex_unlock(&cam
->dev_mutex
);
2692 up_read(&w9968cf_disconnect
);
2693 return -EWOULDBLOCK
;
2695 mutex_unlock(&cam
->dev_mutex
);
2696 err
= wait_event_interruptible_exclusive(cam
->open
,
2697 cam
->disconnected
||
2700 up_read(&w9968cf_disconnect
);
2703 if (cam
->disconnected
) {
2704 up_read(&w9968cf_disconnect
);
2707 mutex_lock(&cam
->dev_mutex
);
2710 DBG(5, "Opening '%s', /dev/video%d ...",
2711 symbolic(camlist
, cam
->id
), cam
->v4ldev
->minor
)
2714 cam
->misconfigured
= 0;
2716 w9968cf_adjust_configuration(cam
);
2718 if ((err
= w9968cf_allocate_memory(cam
)))
2719 goto deallocate_memory
;
2721 if ((err
= w9968cf_init_chip(cam
)))
2722 goto deallocate_memory
;
2724 if ((err
= w9968cf_start_transfer(cam
)))
2725 goto deallocate_memory
;
2727 filp
->private_data
= cam
;
2730 strcpy(cam
->command
, current
->comm
);
2732 init_waitqueue_head(&cam
->wait_queue
);
2734 DBG(5, "Video device is open")
2736 mutex_unlock(&cam
->dev_mutex
);
2737 up_read(&w9968cf_disconnect
);
2742 w9968cf_deallocate_memory(cam
);
2743 DBG(2, "Failed to open the video device")
2744 mutex_unlock(&cam
->dev_mutex
);
2745 up_read(&w9968cf_disconnect
);
2750 static int w9968cf_release(struct inode
* inode
, struct file
* filp
)
2752 struct w9968cf_device
* cam
;
2754 cam
= (struct w9968cf_device
*)video_get_drvdata(video_devdata(filp
));
2756 mutex_lock(&cam
->dev_mutex
); /* prevent disconnect() to be called */
2758 w9968cf_stop_transfer(cam
);
2760 if (cam
->disconnected
) {
2761 w9968cf_release_resources(cam
);
2762 mutex_unlock(&cam
->dev_mutex
);
2768 w9968cf_deallocate_memory(cam
);
2769 wake_up_interruptible_nr(&cam
->open
, 1);
2771 DBG(5, "Video device closed")
2772 mutex_unlock(&cam
->dev_mutex
);
2778 w9968cf_read(struct file
* filp
, char __user
* buf
, size_t count
, loff_t
* f_pos
)
2780 struct w9968cf_device
* cam
;
2781 struct w9968cf_frame_t
* fr
;
2784 cam
= (struct w9968cf_device
*)video_get_drvdata(video_devdata(filp
));
2786 if (filp
->f_flags
& O_NONBLOCK
)
2787 return -EWOULDBLOCK
;
2789 if (mutex_lock_interruptible(&cam
->fileop_mutex
))
2790 return -ERESTARTSYS
;
2792 if (cam
->disconnected
) {
2793 DBG(2, "Device not present")
2794 mutex_unlock(&cam
->fileop_mutex
);
2798 if (cam
->misconfigured
) {
2799 DBG(2, "The camera is misconfigured. Close and open it again.")
2800 mutex_unlock(&cam
->fileop_mutex
);
2804 if (!cam
->frame
[0].queued
)
2805 w9968cf_push_frame(cam
, 0);
2807 if (!cam
->frame
[1].queued
)
2808 w9968cf_push_frame(cam
, 1);
2810 err
= wait_event_interruptible(cam
->wait_queue
,
2811 cam
->frame
[0].status
== F_READY
||
2812 cam
->frame
[1].status
== F_READY
||
2815 mutex_unlock(&cam
->fileop_mutex
);
2818 if (cam
->disconnected
) {
2819 mutex_unlock(&cam
->fileop_mutex
);
2823 fr
= (cam
->frame
[0].status
== F_READY
) ? &cam
->frame
[0]:&cam
->frame
[1];
2826 w9968cf_postprocess_frame(cam
, fr
);
2828 if (count
> fr
->length
)
2831 if (copy_to_user(buf
, fr
->buffer
, count
)) {
2832 fr
->status
= F_UNUSED
;
2833 mutex_unlock(&cam
->fileop_mutex
);
2838 fr
->status
= F_UNUSED
;
2840 DBG(5, "%zu bytes read", count
)
2842 mutex_unlock(&cam
->fileop_mutex
);
2847 static int w9968cf_mmap(struct file
* filp
, struct vm_area_struct
*vma
)
2849 struct w9968cf_device
* cam
= (struct w9968cf_device
*)
2850 video_get_drvdata(video_devdata(filp
));
2851 unsigned long vsize
= vma
->vm_end
- vma
->vm_start
,
2852 psize
= cam
->nbuffers
* cam
->frame
[0].size
,
2853 start
= vma
->vm_start
,
2854 pos
= (unsigned long)cam
->frame
[0].buffer
,
2857 if (cam
->disconnected
) {
2858 DBG(2, "Device not present")
2862 if (cam
->misconfigured
) {
2863 DBG(2, "The camera is misconfigured. Close and open it again")
2867 PDBGG("mmapping %lu bytes...", vsize
)
2869 if (vsize
> psize
- (vma
->vm_pgoff
<< PAGE_SHIFT
))
2873 page
= vmalloc_to_pfn((void *)pos
);
2874 if (remap_pfn_range(vma
, start
, page
+ vma
->vm_pgoff
,
2875 PAGE_SIZE
, vma
->vm_page_prot
))
2882 DBG(5, "mmap method successfully called")
2888 w9968cf_ioctl(struct inode
* inode
, struct file
* filp
,
2889 unsigned int cmd
, unsigned long arg
)
2891 struct w9968cf_device
* cam
;
2894 cam
= (struct w9968cf_device
*)video_get_drvdata(video_devdata(filp
));
2896 if (mutex_lock_interruptible(&cam
->fileop_mutex
))
2897 return -ERESTARTSYS
;
2899 if (cam
->disconnected
) {
2900 DBG(2, "Device not present")
2901 mutex_unlock(&cam
->fileop_mutex
);
2905 if (cam
->misconfigured
) {
2906 DBG(2, "The camera is misconfigured. Close and open it again.")
2907 mutex_unlock(&cam
->fileop_mutex
);
2911 err
= w9968cf_v4l_ioctl(inode
, filp
, cmd
, (void __user
*)arg
);
2913 mutex_unlock(&cam
->fileop_mutex
);
2918 static int w9968cf_v4l_ioctl(struct inode
* inode
, struct file
* filp
,
2919 unsigned int cmd
, void __user
* arg
)
2921 struct w9968cf_device
* cam
;
2922 const char* v4l1_ioctls
[] = {
2923 "?", "CGAP", "GCHAN", "SCHAN", "GTUNER", "STUNER",
2924 "GPICT", "SPICT", "CCAPTURE", "GWIN", "SWIN", "GFBUF",
2925 "SFBUF", "KEY", "GFREQ", "SFREQ", "GAUDIO", "SAUDIO",
2926 "SYNC", "MCAPTURE", "GMBUF", "GUNIT", "GCAPTURE", "SCAPTURE",
2927 "SPLAYMODE", "SWRITEMODE", "GPLAYINFO", "SMICROCODE",
2928 "GVBIFMT", "SVBIFMT"
2931 #define V4L1_IOCTL(cmd) \
2932 ((_IOC_NR((cmd)) < ARRAY_SIZE(v4l1_ioctls)) ? \
2933 v4l1_ioctls[_IOC_NR((cmd))] : "?")
2935 cam
= (struct w9968cf_device
*)video_get_drvdata(video_devdata(filp
));
2939 case VIDIOCGCAP
: /* get video capability */
2941 struct video_capability cap
= {
2942 .type
= VID_TYPE_CAPTURE
| VID_TYPE_SCALES
,
2945 .minwidth
= cam
->minwidth
,
2946 .minheight
= cam
->minheight
,
2948 sprintf(cap
.name
, "W996[87]CF USB Camera #%d",
2949 cam
->v4ldev
->minor
);
2950 cap
.maxwidth
= (cam
->upscaling
&& w9968cf_vpp
)
2951 ? max((u16
)W9968CF_MAX_WIDTH
, cam
->maxwidth
)
2953 cap
.maxheight
= (cam
->upscaling
&& w9968cf_vpp
)
2954 ? max((u16
)W9968CF_MAX_HEIGHT
, cam
->maxheight
)
2957 if (copy_to_user(arg
, &cap
, sizeof(cap
)))
2960 DBG(5, "VIDIOCGCAP successfully called")
2964 case VIDIOCGCHAN
: /* get video channel informations */
2966 struct video_channel chan
;
2967 if (copy_from_user(&chan
, arg
, sizeof(chan
)))
2970 if (chan
.channel
!= 0)
2973 strcpy(chan
.name
, "Camera");
2976 chan
.type
= VIDEO_TYPE_CAMERA
;
2977 chan
.norm
= VIDEO_MODE_AUTO
;
2979 if (copy_to_user(arg
, &chan
, sizeof(chan
)))
2982 DBG(5, "VIDIOCGCHAN successfully called")
2986 case VIDIOCSCHAN
: /* set active channel */
2988 struct video_channel chan
;
2990 if (copy_from_user(&chan
, arg
, sizeof(chan
)))
2993 if (chan
.channel
!= 0)
2996 DBG(5, "VIDIOCSCHAN successfully called")
3000 case VIDIOCGPICT
: /* get image properties of the picture */
3002 if (w9968cf_sensor_get_picture(cam
))
3005 if (copy_to_user(arg
, &cam
->picture
, sizeof(cam
->picture
)))
3008 DBG(5, "VIDIOCGPICT successfully called")
3012 case VIDIOCSPICT
: /* change picture settings */
3014 struct video_picture pict
;
3017 if (copy_from_user(&pict
, arg
, sizeof(pict
)))
3020 if ( (cam
->force_palette
|| !w9968cf_vpp
)
3021 && pict
.palette
!= cam
->picture
.palette
) {
3022 DBG(4, "Palette %s rejected: only %s is allowed",
3023 symbolic(v4l1_plist
, pict
.palette
),
3024 symbolic(v4l1_plist
, cam
->picture
.palette
))
3028 if (!w9968cf_valid_palette(pict
.palette
)) {
3029 DBG(4, "Palette %s not supported. VIDIOCSPICT failed",
3030 symbolic(v4l1_plist
, pict
.palette
))
3034 if (!cam
->force_palette
) {
3035 if (cam
->decompression
== 0) {
3036 if (w9968cf_need_decompression(pict
.palette
)) {
3037 DBG(4, "Decompression disabled: palette %s is not "
3038 "allowed. VIDIOCSPICT failed",
3039 symbolic(v4l1_plist
, pict
.palette
))
3042 } else if (cam
->decompression
== 1) {
3043 if (!w9968cf_need_decompression(pict
.palette
)) {
3044 DBG(4, "Decompression forced: palette %s is not "
3045 "allowed. VIDIOCSPICT failed",
3046 symbolic(v4l1_plist
, pict
.palette
))
3052 if (pict
.depth
!= w9968cf_valid_depth(pict
.palette
)) {
3053 DBG(4, "Requested depth %u bpp is not valid for %s "
3054 "palette: ignored and changed to %u bpp",
3055 pict
.depth
, symbolic(v4l1_plist
, pict
.palette
),
3056 w9968cf_valid_depth(pict
.palette
))
3057 pict
.depth
= w9968cf_valid_depth(pict
.palette
);
3060 if (pict
.palette
!= cam
->picture
.palette
) {
3061 if(*cam
->requested_frame
3062 || cam
->frame_current
->queued
) {
3063 err
= wait_event_interruptible
3065 cam
->disconnected
||
3066 (!*cam
->requested_frame
&&
3067 !cam
->frame_current
->queued
) );
3070 if (cam
->disconnected
)
3074 if (w9968cf_stop_transfer(cam
))
3077 if (w9968cf_set_picture(cam
, pict
))
3080 if (w9968cf_start_transfer(cam
))
3083 } else if (w9968cf_sensor_update_picture(cam
, pict
))
3087 DBG(5, "VIDIOCSPICT successfully called")
3091 case VIDIOCSWIN
: /* set capture area */
3093 struct video_window win
;
3096 if (copy_from_user(&win
, arg
, sizeof(win
)))
3099 DBG(6, "VIDIOCSWIN called: clipcount=%d, flags=%u, "
3100 "x=%u, y=%u, %ux%u", win
.clipcount
, win
.flags
,
3101 win
.x
, win
.y
, win
.width
, win
.height
)
3103 if (win
.clipcount
!= 0 || win
.flags
!= 0)
3106 if ((err
= w9968cf_adjust_window_size(cam
, (u16
*)&win
.width
,
3107 (u16
*)&win
.height
))) {
3108 DBG(4, "Resolution not supported (%ux%u). "
3109 "VIDIOCSWIN failed", win
.width
, win
.height
)
3113 if (win
.x
!= cam
->window
.x
||
3114 win
.y
!= cam
->window
.y
||
3115 win
.width
!= cam
->window
.width
||
3116 win
.height
!= cam
->window
.height
) {
3117 if(*cam
->requested_frame
3118 || cam
->frame_current
->queued
) {
3119 err
= wait_event_interruptible
3121 cam
->disconnected
||
3122 (!*cam
->requested_frame
&&
3123 !cam
->frame_current
->queued
) );
3126 if (cam
->disconnected
)
3130 if (w9968cf_stop_transfer(cam
))
3133 /* This _must_ be called before set_window() */
3134 if (w9968cf_set_picture(cam
, cam
->picture
))
3137 if (w9968cf_set_window(cam
, win
))
3140 if (w9968cf_start_transfer(cam
))
3144 DBG(5, "VIDIOCSWIN successfully called. ")
3148 case VIDIOCGWIN
: /* get current window properties */
3150 if (copy_to_user(arg
,&cam
->window
,sizeof(struct video_window
)))
3153 DBG(5, "VIDIOCGWIN successfully called")
3157 case VIDIOCGMBUF
: /* request for memory (mapped) buffer */
3159 struct video_mbuf mbuf
;
3162 mbuf
.size
= cam
->nbuffers
* cam
->frame
[0].size
;
3163 mbuf
.frames
= cam
->nbuffers
;
3164 for (i
= 0; i
< cam
->nbuffers
; i
++)
3165 mbuf
.offsets
[i
] = (unsigned long)cam
->frame
[i
].buffer
-
3166 (unsigned long)cam
->frame
[0].buffer
;
3168 if (copy_to_user(arg
, &mbuf
, sizeof(mbuf
)))
3171 DBG(5, "VIDIOCGMBUF successfully called")
3175 case VIDIOCMCAPTURE
: /* start the capture to a frame */
3177 struct video_mmap mmap
;
3178 struct w9968cf_frame_t
* fr
;
3181 if (copy_from_user(&mmap
, arg
, sizeof(mmap
)))
3184 DBG(6, "VIDIOCMCAPTURE called: frame #%u, format=%s, %dx%d",
3185 mmap
.frame
, symbolic(v4l1_plist
, mmap
.format
),
3186 mmap
.width
, mmap
.height
)
3188 if (mmap
.frame
>= cam
->nbuffers
) {
3189 DBG(4, "Invalid frame number (%u). "
3190 "VIDIOCMCAPTURE failed", mmap
.frame
)
3194 if (mmap
.format
!=cam
->picture
.palette
&&
3195 (cam
->force_palette
|| !w9968cf_vpp
)) {
3196 DBG(4, "Palette %s rejected: only %s is allowed",
3197 symbolic(v4l1_plist
, mmap
.format
),
3198 symbolic(v4l1_plist
, cam
->picture
.palette
))
3202 if (!w9968cf_valid_palette(mmap
.format
)) {
3203 DBG(4, "Palette %s not supported. "
3204 "VIDIOCMCAPTURE failed",
3205 symbolic(v4l1_plist
, mmap
.format
))
3209 if (!cam
->force_palette
) {
3210 if (cam
->decompression
== 0) {
3211 if (w9968cf_need_decompression(mmap
.format
)) {
3212 DBG(4, "Decompression disabled: palette %s is not "
3213 "allowed. VIDIOCSPICT failed",
3214 symbolic(v4l1_plist
, mmap
.format
))
3217 } else if (cam
->decompression
== 1) {
3218 if (!w9968cf_need_decompression(mmap
.format
)) {
3219 DBG(4, "Decompression forced: palette %s is not "
3220 "allowed. VIDIOCSPICT failed",
3221 symbolic(v4l1_plist
, mmap
.format
))
3227 if ((err
= w9968cf_adjust_window_size(cam
, (u16
*)&mmap
.width
,
3228 (u16
*)&mmap
.height
))) {
3229 DBG(4, "Resolution not supported (%dx%d). "
3230 "VIDIOCMCAPTURE failed",
3231 mmap
.width
, mmap
.height
)
3235 fr
= &cam
->frame
[mmap
.frame
];
3237 if (mmap
.width
!= cam
->window
.width
||
3238 mmap
.height
!= cam
->window
.height
||
3239 mmap
.format
!= cam
->picture
.palette
) {
3241 struct video_window win
;
3242 struct video_picture pict
;
3244 if(*cam
->requested_frame
3245 || cam
->frame_current
->queued
) {
3246 DBG(6, "VIDIOCMCAPTURE. Change settings for "
3247 "frame #%u: %dx%d, format %s. Wait...",
3248 mmap
.frame
, mmap
.width
, mmap
.height
,
3249 symbolic(v4l1_plist
, mmap
.format
))
3250 err
= wait_event_interruptible
3252 cam
->disconnected
||
3253 (!*cam
->requested_frame
&&
3254 !cam
->frame_current
->queued
) );
3257 if (cam
->disconnected
)
3261 memcpy(&win
, &cam
->window
, sizeof(win
));
3262 memcpy(&pict
, &cam
->picture
, sizeof(pict
));
3263 win
.width
= mmap
.width
;
3264 win
.height
= mmap
.height
;
3265 pict
.palette
= mmap
.format
;
3267 if (w9968cf_stop_transfer(cam
))
3270 /* This before set_window */
3271 if (w9968cf_set_picture(cam
, pict
))
3274 if (w9968cf_set_window(cam
, win
))
3277 if (w9968cf_start_transfer(cam
))
3280 } else if (fr
->queued
) {
3282 DBG(6, "Wait until frame #%u is free", mmap
.frame
)
3284 err
= wait_event_interruptible(cam
->wait_queue
,
3285 cam
->disconnected
||
3289 if (cam
->disconnected
)
3293 w9968cf_push_frame(cam
, mmap
.frame
);
3294 DBG(5, "VIDIOCMCAPTURE(%u): successfully called", mmap
.frame
)
3298 case VIDIOCSYNC
: /* wait until the capture of a frame is finished */
3301 struct w9968cf_frame_t
* fr
;
3304 if (copy_from_user(&f_num
, arg
, sizeof(f_num
)))
3307 if (f_num
>= cam
->nbuffers
) {
3308 DBG(4, "Invalid frame number (%u). "
3309 "VIDIOCMCAPTURE failed", f_num
)
3313 DBG(6, "VIDIOCSYNC called for frame #%u", f_num
)
3315 fr
= &cam
->frame
[f_num
];
3317 switch (fr
->status
) {
3320 DBG(4, "VIDIOSYNC: Frame #%u not requested!",
3326 err
= wait_event_interruptible(cam
->wait_queue
,
3327 (fr
->status
== F_READY
)
3328 || cam
->disconnected
);
3331 if (cam
->disconnected
)
3339 w9968cf_postprocess_frame(cam
, fr
);
3341 fr
->status
= F_UNUSED
;
3343 DBG(5, "VIDIOCSYNC(%u) successfully called", f_num
)
3347 case VIDIOCGUNIT
:/* report the unit numbers of the associated devices*/
3349 struct video_unit unit
= {
3350 .video
= cam
->v4ldev
->minor
,
3351 .vbi
= VIDEO_NO_UNIT
,
3352 .radio
= VIDEO_NO_UNIT
,
3353 .audio
= VIDEO_NO_UNIT
,
3354 .teletext
= VIDEO_NO_UNIT
,
3357 if (copy_to_user(arg
, &unit
, sizeof(unit
)))
3360 DBG(5, "VIDIOCGUNIT successfully called")
3369 if (clear_user(arg
, sizeof(struct video_buffer
)))
3372 DBG(5, "VIDIOCGFBUF successfully called")
3378 struct video_tuner tuner
;
3379 if (copy_from_user(&tuner
, arg
, sizeof(tuner
)))
3382 if (tuner
.tuner
!= 0)
3385 strcpy(tuner
.name
, "no_tuner");
3387 tuner
.rangehigh
= 0;
3388 tuner
.flags
= VIDEO_TUNER_NORM
;
3389 tuner
.mode
= VIDEO_MODE_AUTO
;
3390 tuner
.signal
= 0xffff;
3392 if (copy_to_user(arg
, &tuner
, sizeof(tuner
)))
3395 DBG(5, "VIDIOCGTUNER successfully called")
3401 struct video_tuner tuner
;
3402 if (copy_from_user(&tuner
, arg
, sizeof(tuner
)))
3405 if (tuner
.tuner
!= 0)
3408 if (tuner
.mode
!= VIDEO_MODE_AUTO
)
3411 DBG(5, "VIDIOCSTUNER successfully called")
3421 case VIDIOCSPLAYMODE
:
3422 case VIDIOCSWRITEMODE
:
3423 case VIDIOCGPLAYINFO
:
3424 case VIDIOCSMICROCODE
:
3427 DBG(4, "Unsupported V4L1 IOCtl: VIDIOC%s "
3433 _IOC_TYPE(cmd
),_IOC_NR(cmd
),_IOC_DIR(cmd
),_IOC_SIZE(cmd
))
3438 DBG(4, "Invalid V4L1 IOCtl: VIDIOC%s "
3444 _IOC_TYPE(cmd
),_IOC_NR(cmd
),_IOC_DIR(cmd
),_IOC_SIZE(cmd
))
3446 return -ENOIOCTLCMD
;
3448 } /* end of switch */
3451 cam
->misconfigured
= 1;
3452 DBG(1, "VIDIOC%s failed because of hardware problems. "
3453 "To use the camera, close and open it again.", V4L1_IOCTL(cmd
))
3458 static const struct file_operations w9968cf_fops
= {
3459 .owner
= THIS_MODULE
,
3460 .open
= w9968cf_open
,
3461 .release
= w9968cf_release
,
3462 .read
= w9968cf_read
,
3463 .ioctl
= w9968cf_ioctl
,
3464 #ifdef CONFIG_COMPAT
3465 .compat_ioctl
= v4l_compat_ioctl32
,
3467 .mmap
= w9968cf_mmap
,
3468 .llseek
= no_llseek
,
3473 /****************************************************************************
3474 * USB probe and V4L registration, disconnect and id_table[] definition *
3475 ****************************************************************************/
3478 w9968cf_usb_probe(struct usb_interface
* intf
, const struct usb_device_id
* id
)
3480 struct usb_device
*udev
= interface_to_usbdev(intf
);
3481 struct w9968cf_device
* cam
;
3483 enum w9968cf_model_id mod_id
;
3484 struct list_head
* ptr
;
3485 u8 sc
= 0; /* number of simultaneous cameras */
3486 static unsigned short dev_nr
; /* 0 - we are handling device number n */
3488 if (le16_to_cpu(udev
->descriptor
.idVendor
) == winbond_id_table
[0].idVendor
&&
3489 le16_to_cpu(udev
->descriptor
.idProduct
) == winbond_id_table
[0].idProduct
)
3490 mod_id
= W9968CF_MOD_CLVBWGP
; /* see camlist[] table */
3491 else if (le16_to_cpu(udev
->descriptor
.idVendor
) == winbond_id_table
[1].idVendor
&&
3492 le16_to_cpu(udev
->descriptor
.idProduct
) == winbond_id_table
[1].idProduct
)
3493 mod_id
= W9968CF_MOD_GENERIC
; /* see camlist[] table */
3497 cam
= (struct w9968cf_device
*)
3498 kzalloc(sizeof(struct w9968cf_device
), GFP_KERNEL
);
3502 mutex_init(&cam
->dev_mutex
);
3503 mutex_lock(&cam
->dev_mutex
);
3506 /* NOTE: a local copy is used to avoid possible race conditions */
3507 memcpy(&cam
->dev
, &udev
->dev
, sizeof(struct device
));
3509 DBG(2, "%s detected", symbolic(camlist
, mod_id
))
3511 if (simcams
> W9968CF_MAX_DEVICES
)
3512 simcams
= W9968CF_SIMCAMS
;
3514 /* How many cameras are connected ? */
3515 mutex_lock(&w9968cf_devlist_mutex
);
3516 list_for_each(ptr
, &w9968cf_dev_list
)
3518 mutex_unlock(&w9968cf_devlist_mutex
);
3520 if (sc
>= simcams
) {
3521 DBG(2, "Device rejected: too many connected cameras "
3522 "(max. %u)", simcams
)
3528 /* Allocate 2 bytes of memory for camera control USB transfers */
3529 if (!(cam
->control_buffer
= kzalloc(2, GFP_KERNEL
))) {
3530 DBG(1,"Couldn't allocate memory for camera control transfers")
3535 /* Allocate 8 bytes of memory for USB data transfers to the FSB */
3536 if (!(cam
->data_buffer
= kzalloc(8, GFP_KERNEL
))) {
3537 DBG(1, "Couldn't allocate memory for data "
3538 "transfers to the FSB")
3543 /* Register the V4L device */
3544 cam
->v4ldev
= video_device_alloc();
3546 DBG(1, "Could not allocate memory for a V4L structure")
3551 strcpy(cam
->v4ldev
->name
, symbolic(camlist
, mod_id
));
3552 cam
->v4ldev
->owner
= THIS_MODULE
;
3553 cam
->v4ldev
->type
= VID_TYPE_CAPTURE
| VID_TYPE_SCALES
;
3554 cam
->v4ldev
->fops
= &w9968cf_fops
;
3555 cam
->v4ldev
->minor
= video_nr
[dev_nr
];
3556 cam
->v4ldev
->release
= video_device_release
;
3557 video_set_drvdata(cam
->v4ldev
, cam
);
3558 cam
->v4ldev
->parent
= &cam
->dev
;
3560 err
= video_register_device(cam
->v4ldev
, VFL_TYPE_GRABBER
,
3563 DBG(1, "V4L device registration failed")
3564 if (err
== -ENFILE
&& video_nr
[dev_nr
] == -1)
3565 DBG(2, "Couldn't find a free /dev/videoX node")
3566 video_nr
[dev_nr
] = -1;
3567 dev_nr
= (dev_nr
< W9968CF_MAX_DEVICES
-1) ? dev_nr
+1 : 0;
3571 DBG(2, "V4L device registered as /dev/video%d", cam
->v4ldev
->minor
)
3573 /* Set some basic constants */
3574 w9968cf_configure_camera(cam
, udev
, mod_id
, dev_nr
);
3576 /* Add a new entry into the list of V4L registered devices */
3577 mutex_lock(&w9968cf_devlist_mutex
);
3578 list_add(&cam
->v4llist
, &w9968cf_dev_list
);
3579 mutex_unlock(&w9968cf_devlist_mutex
);
3580 dev_nr
= (dev_nr
< W9968CF_MAX_DEVICES
-1) ? dev_nr
+1 : 0;
3582 w9968cf_turn_on_led(cam
);
3584 w9968cf_i2c_init(cam
);
3586 usb_set_intfdata(intf
, cam
);
3587 mutex_unlock(&cam
->dev_mutex
);
3590 fail
: /* Free unused memory */
3591 kfree(cam
->control_buffer
);
3592 kfree(cam
->data_buffer
);
3594 video_device_release(cam
->v4ldev
);
3595 mutex_unlock(&cam
->dev_mutex
);
3601 static void w9968cf_usb_disconnect(struct usb_interface
* intf
)
3603 struct w9968cf_device
* cam
=
3604 (struct w9968cf_device
*)usb_get_intfdata(intf
);
3606 down_write(&w9968cf_disconnect
);
3609 /* Prevent concurrent accesses to data */
3610 mutex_lock(&cam
->dev_mutex
);
3612 cam
->disconnected
= 1;
3614 DBG(2, "Disconnecting %s...", symbolic(camlist
, cam
->id
))
3616 wake_up_interruptible_all(&cam
->open
);
3619 DBG(2, "The device is open (/dev/video%d)! "
3620 "Process name: %s. Deregistration and memory "
3621 "deallocation are deferred on close.",
3622 cam
->v4ldev
->minor
, cam
->command
)
3623 cam
->misconfigured
= 1;
3624 w9968cf_stop_transfer(cam
);
3625 wake_up_interruptible(&cam
->wait_queue
);
3627 w9968cf_release_resources(cam
);
3629 mutex_unlock(&cam
->dev_mutex
);
3635 up_write(&w9968cf_disconnect
);
3639 static struct usb_driver w9968cf_usb_driver
= {
3641 .id_table
= winbond_id_table
,
3642 .probe
= w9968cf_usb_probe
,
3643 .disconnect
= w9968cf_usb_disconnect
,
3648 /****************************************************************************
3649 * Module init, exit and intermodule communication *
3650 ****************************************************************************/
3652 static int __init
w9968cf_module_init(void)
3656 KDBG(2, W9968CF_MODULE_NAME
" "W9968CF_MODULE_VERSION
)
3657 KDBG(3, W9968CF_MODULE_AUTHOR
)
3660 request_module("ovcamchip");
3662 if ((err
= usb_register(&w9968cf_usb_driver
)))
3669 static void __exit
w9968cf_module_exit(void)
3671 /* w9968cf_usb_disconnect() will be called */
3672 usb_deregister(&w9968cf_usb_driver
);
3674 KDBG(2, W9968CF_MODULE_NAME
" deregistered")
3678 module_init(w9968cf_module_init
);
3679 module_exit(w9968cf_module_exit
);