blob: 1303641c70c13a8e750ace579806c7a48dcbea50 [file] [log] [blame]
Luc Saillard2b455db2006-04-24 10:29:46 -03001/* Linux driver for Philips webcam
2 USB and Video4Linux interface part.
3 (C) 1999-2004 Nemosoft Unv.
4 (C) 2004-2006 Luc Saillard (luc@saillard.org)
Hans de Goede6c9cac82011-06-26 12:52:01 -03005 (C) 2011 Hans de Goede <hdegoede@redhat.com>
Luc Saillard2b455db2006-04-24 10:29:46 -03006
7 NOTE: this version of pwc is an unofficial (modified) release of pwc & pcwx
8 driver and thus may have bugs that are not present in the original version.
9 Please send bug reports and support requests to <luc@saillard.org>.
10 The decompression routines have been implemented by reverse-engineering the
11 Nemosoft binary pwcx module. Caveat emptor.
12
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.
17
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.
22
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26
27*/
28
29#include <linux/errno.h>
30#include <linux/init.h>
31#include <linux/mm.h>
32#include <linux/module.h>
33#include <linux/poll.h>
Luc Saillard2b455db2006-04-24 10:29:46 -030034#include <linux/vmalloc.h>
Hans de Goede6c9cac82011-06-26 12:52:01 -030035#include <linux/jiffies.h>
Luc Saillard2b455db2006-04-24 10:29:46 -030036#include <asm/io.h>
37
38#include "pwc.h"
39
Hans de Goede6c9cac82011-06-26 12:52:01 -030040#define PWC_CID_CUSTOM(ctrl) ((V4L2_CID_USER_BASE | 0xf000) + custom_ ## ctrl)
41
42static int pwc_g_volatile_ctrl(struct v4l2_ctrl *ctrl);
43static int pwc_s_ctrl(struct v4l2_ctrl *ctrl);
44
45static const struct v4l2_ctrl_ops pwc_ctrl_ops = {
46 .g_volatile_ctrl = pwc_g_volatile_ctrl,
47 .s_ctrl = pwc_s_ctrl,
Luc Saillard2b455db2006-04-24 10:29:46 -030048};
49
Hans de Goede6c9cac82011-06-26 12:52:01 -030050enum { awb_indoor, awb_outdoor, awb_fl, awb_manual, awb_auto };
51enum { custom_autocontour, custom_contour, custom_noise_reduction,
Hans de Goedef4af65952011-10-09 09:56:23 -030052 custom_awb_speed, custom_awb_delay,
Hans de Goede6c9cac82011-06-26 12:52:01 -030053 custom_save_user, custom_restore_user, custom_restore_factory };
54
55const char * const pwc_auto_whitebal_qmenu[] = {
56 "Indoor (Incandescant Lighting) Mode",
57 "Outdoor (Sunlight) Mode",
58 "Indoor (Fluorescent Lighting) Mode",
59 "Manual Mode",
60 "Auto Mode",
61 NULL
62};
63
64static const struct v4l2_ctrl_config pwc_auto_white_balance_cfg = {
65 .ops = &pwc_ctrl_ops,
66 .id = V4L2_CID_AUTO_WHITE_BALANCE,
67 .type = V4L2_CTRL_TYPE_MENU,
68 .max = awb_auto,
69 .qmenu = pwc_auto_whitebal_qmenu,
70};
71
72static const struct v4l2_ctrl_config pwc_autocontour_cfg = {
73 .ops = &pwc_ctrl_ops,
74 .id = PWC_CID_CUSTOM(autocontour),
75 .type = V4L2_CTRL_TYPE_BOOLEAN,
76 .name = "Auto contour",
77 .min = 0,
78 .max = 1,
79 .step = 1,
80};
81
82static const struct v4l2_ctrl_config pwc_contour_cfg = {
83 .ops = &pwc_ctrl_ops,
84 .id = PWC_CID_CUSTOM(contour),
85 .type = V4L2_CTRL_TYPE_INTEGER,
86 .name = "Contour",
Hans Verkuil43d23f32011-08-26 08:40:43 -030087 .flags = V4L2_CTRL_FLAG_SLIDER,
Hans de Goede6c9cac82011-06-26 12:52:01 -030088 .min = 0,
89 .max = 63,
90 .step = 1,
91};
92
93static const struct v4l2_ctrl_config pwc_backlight_cfg = {
94 .ops = &pwc_ctrl_ops,
95 .id = V4L2_CID_BACKLIGHT_COMPENSATION,
96 .type = V4L2_CTRL_TYPE_BOOLEAN,
97 .min = 0,
98 .max = 1,
99 .step = 1,
100};
101
102static const struct v4l2_ctrl_config pwc_flicker_cfg = {
103 .ops = &pwc_ctrl_ops,
104 .id = V4L2_CID_BAND_STOP_FILTER,
105 .type = V4L2_CTRL_TYPE_BOOLEAN,
106 .min = 0,
107 .max = 1,
108 .step = 1,
109};
110
111static const struct v4l2_ctrl_config pwc_noise_reduction_cfg = {
112 .ops = &pwc_ctrl_ops,
113 .id = PWC_CID_CUSTOM(noise_reduction),
114 .type = V4L2_CTRL_TYPE_INTEGER,
115 .name = "Dynamic Noise Reduction",
116 .min = 0,
117 .max = 3,
118 .step = 1,
119};
120
121static const struct v4l2_ctrl_config pwc_save_user_cfg = {
122 .ops = &pwc_ctrl_ops,
123 .id = PWC_CID_CUSTOM(save_user),
124 .type = V4L2_CTRL_TYPE_BUTTON,
125 .name = "Save User Settings",
126};
127
128static const struct v4l2_ctrl_config pwc_restore_user_cfg = {
129 .ops = &pwc_ctrl_ops,
130 .id = PWC_CID_CUSTOM(restore_user),
131 .type = V4L2_CTRL_TYPE_BUTTON,
132 .name = "Restore User Settings",
133};
134
135static const struct v4l2_ctrl_config pwc_restore_factory_cfg = {
136 .ops = &pwc_ctrl_ops,
137 .id = PWC_CID_CUSTOM(restore_factory),
138 .type = V4L2_CTRL_TYPE_BUTTON,
139 .name = "Restore Factory Settings",
140};
141
Hans de Goedef4af65952011-10-09 09:56:23 -0300142static const struct v4l2_ctrl_config pwc_awb_speed_cfg = {
143 .ops = &pwc_ctrl_ops,
144 .id = PWC_CID_CUSTOM(awb_speed),
145 .type = V4L2_CTRL_TYPE_INTEGER,
146 .name = "Auto White Balance Speed",
147 .min = 1,
148 .max = 32,
149 .step = 1,
150};
151
152static const struct v4l2_ctrl_config pwc_awb_delay_cfg = {
153 .ops = &pwc_ctrl_ops,
154 .id = PWC_CID_CUSTOM(awb_delay),
155 .type = V4L2_CTRL_TYPE_INTEGER,
156 .name = "Auto White Balance Delay",
157 .min = 0,
158 .max = 63,
159 .step = 1,
160};
161
Hans de Goede6c9cac82011-06-26 12:52:01 -0300162int pwc_init_controls(struct pwc_device *pdev)
163{
164 struct v4l2_ctrl_handler *hdl;
165 struct v4l2_ctrl_config cfg;
166 int r, def;
167
168 hdl = &pdev->ctrl_handler;
169 r = v4l2_ctrl_handler_init(hdl, 20);
170 if (r)
171 return r;
172
173 /* Brightness, contrast, saturation, gamma */
174 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, BRIGHTNESS_FORMATTER, &def);
175 if (r || def > 127)
176 def = 63;
177 pdev->brightness = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
178 V4L2_CID_BRIGHTNESS, 0, 127, 1, def);
179
180 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, CONTRAST_FORMATTER, &def);
181 if (r || def > 63)
182 def = 31;
183 pdev->contrast = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
184 V4L2_CID_CONTRAST, 0, 63, 1, def);
185
186 if (pdev->type >= 675) {
187 if (pdev->type < 730)
188 pdev->saturation_fmt = SATURATION_MODE_FORMATTER2;
189 else
190 pdev->saturation_fmt = SATURATION_MODE_FORMATTER1;
191 r = pwc_get_s8_ctrl(pdev, GET_CHROM_CTL, pdev->saturation_fmt,
192 &def);
193 if (r || def < -100 || def > 100)
194 def = 0;
195 pdev->saturation = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
196 V4L2_CID_SATURATION, -100, 100, 1, def);
197 }
198
199 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, GAMMA_FORMATTER, &def);
200 if (r || def > 31)
201 def = 15;
202 pdev->gamma = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
203 V4L2_CID_GAMMA, 0, 31, 1, def);
204
205 /* auto white balance, red gain, blue gain */
206 r = pwc_get_u8_ctrl(pdev, GET_CHROM_CTL, WB_MODE_FORMATTER, &def);
207 if (r || def > awb_auto)
208 def = awb_auto;
209 cfg = pwc_auto_white_balance_cfg;
210 cfg.name = v4l2_ctrl_get_name(cfg.id);
211 cfg.def = def;
212 pdev->auto_white_balance = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
213 /* check auto controls to avoid NULL deref in v4l2_ctrl_auto_cluster */
214 if (!pdev->auto_white_balance)
215 return hdl->error;
216
217 r = pwc_get_u8_ctrl(pdev, GET_CHROM_CTL,
218 PRESET_MANUAL_RED_GAIN_FORMATTER, &def);
219 if (r)
220 def = 127;
221 pdev->red_balance = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
222 V4L2_CID_RED_BALANCE, 0, 255, 1, def);
223
224 r = pwc_get_u8_ctrl(pdev, GET_CHROM_CTL,
225 PRESET_MANUAL_BLUE_GAIN_FORMATTER, &def);
226 if (r)
227 def = 127;
228 pdev->blue_balance = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
229 V4L2_CID_BLUE_BALANCE, 0, 255, 1, def);
230
Hans Verkuil43d23f32011-08-26 08:40:43 -0300231 v4l2_ctrl_auto_cluster(3, &pdev->auto_white_balance, awb_manual, true);
Hans de Goede6c9cac82011-06-26 12:52:01 -0300232
233 /* autogain, gain */
234 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, AGC_MODE_FORMATTER, &def);
235 if (r || (def != 0 && def != 0xff))
236 def = 0;
237 /* Note a register value if 0 means auto gain is on */
238 pdev->autogain = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
239 V4L2_CID_AUTOGAIN, 0, 1, 1, def == 0);
240 if (!pdev->autogain)
241 return hdl->error;
242
243 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, PRESET_AGC_FORMATTER, &def);
244 if (r || def > 63)
245 def = 31;
246 pdev->gain = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
247 V4L2_CID_GAIN, 0, 63, 1, def);
248
249 /* auto exposure, exposure */
250 if (DEVICE_USE_CODEC2(pdev->type)) {
251 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, SHUTTER_MODE_FORMATTER,
252 &def);
253 if (r || (def != 0 && def != 0xff))
254 def = 0;
255 /*
256 * def = 0 auto, def = ff manual
257 * menu idx 0 = auto, idx 1 = manual
258 */
259 pdev->exposure_auto = v4l2_ctrl_new_std_menu(hdl,
260 &pwc_ctrl_ops,
261 V4L2_CID_EXPOSURE_AUTO,
262 1, 0, def != 0);
263 if (!pdev->exposure_auto)
264 return hdl->error;
265
266 /* GET_LUM_CTL, PRESET_SHUTTER_FORMATTER is unreliable */
267 r = pwc_get_u16_ctrl(pdev, GET_STATUS_CTL,
268 READ_SHUTTER_FORMATTER, &def);
269 if (r || def > 655)
270 def = 655;
271 pdev->exposure = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
272 V4L2_CID_EXPOSURE, 0, 655, 1, def);
273 /* CODEC2: separate auto gain & auto exposure */
274 v4l2_ctrl_auto_cluster(2, &pdev->autogain, 0, true);
275 v4l2_ctrl_auto_cluster(2, &pdev->exposure_auto,
276 V4L2_EXPOSURE_MANUAL, true);
277 } else if (DEVICE_USE_CODEC3(pdev->type)) {
278 /* GET_LUM_CTL, PRESET_SHUTTER_FORMATTER is unreliable */
279 r = pwc_get_u16_ctrl(pdev, GET_STATUS_CTL,
280 READ_SHUTTER_FORMATTER, &def);
281 if (r || def > 255)
282 def = 255;
283 pdev->exposure = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
284 V4L2_CID_EXPOSURE, 0, 255, 1, def);
285 /* CODEC3: both gain and exposure controlled by autogain */
286 pdev->autogain_expo_cluster[0] = pdev->autogain;
287 pdev->autogain_expo_cluster[1] = pdev->gain;
288 pdev->autogain_expo_cluster[2] = pdev->exposure;
289 v4l2_ctrl_auto_cluster(3, pdev->autogain_expo_cluster,
290 0, true);
291 }
292
293 /* color / bw setting */
294 r = pwc_get_u8_ctrl(pdev, GET_CHROM_CTL, COLOUR_MODE_FORMATTER,
295 &def);
296 if (r || (def != 0 && def != 0xff))
297 def = 0xff;
298 /* def = 0 bw, def = ff color, menu idx 0 = color, idx 1 = bw */
299 pdev->colorfx = v4l2_ctrl_new_std_menu(hdl, &pwc_ctrl_ops,
300 V4L2_CID_COLORFX, 1, 0, def == 0);
301
302 /* autocontour, contour */
303 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, AUTO_CONTOUR_FORMATTER, &def);
304 if (r || (def != 0 && def != 0xff))
305 def = 0;
306 cfg = pwc_autocontour_cfg;
307 cfg.def = def == 0;
308 pdev->autocontour = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
309 if (!pdev->autocontour)
310 return hdl->error;
311
312 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL, PRESET_CONTOUR_FORMATTER, &def);
313 if (r || def > 63)
314 def = 31;
315 cfg = pwc_contour_cfg;
316 cfg.def = def;
317 pdev->contour = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
318
319 v4l2_ctrl_auto_cluster(2, &pdev->autocontour, 0, false);
320
321 /* backlight */
322 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL,
323 BACK_LIGHT_COMPENSATION_FORMATTER, &def);
324 if (r || (def != 0 && def != 0xff))
325 def = 0;
326 cfg = pwc_backlight_cfg;
327 cfg.name = v4l2_ctrl_get_name(cfg.id);
328 cfg.def = def == 0;
329 pdev->backlight = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
330
331 /* flikker rediction */
332 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL,
333 FLICKERLESS_MODE_FORMATTER, &def);
334 if (r || (def != 0 && def != 0xff))
335 def = 0;
336 cfg = pwc_flicker_cfg;
337 cfg.name = v4l2_ctrl_get_name(cfg.id);
338 cfg.def = def == 0;
339 pdev->flicker = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
340
341 /* Dynamic noise reduction */
342 r = pwc_get_u8_ctrl(pdev, GET_LUM_CTL,
343 DYNAMIC_NOISE_CONTROL_FORMATTER, &def);
344 if (r || def > 3)
345 def = 2;
346 cfg = pwc_noise_reduction_cfg;
347 cfg.def = def;
348 pdev->noise_reduction = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
349
350 /* Save / Restore User / Factory Settings */
351 pdev->save_user = v4l2_ctrl_new_custom(hdl, &pwc_save_user_cfg, NULL);
352 pdev->restore_user = v4l2_ctrl_new_custom(hdl, &pwc_restore_user_cfg,
353 NULL);
354 if (pdev->restore_user)
Hans Verkuil43d23f32011-08-26 08:40:43 -0300355 pdev->restore_user->flags |= V4L2_CTRL_FLAG_UPDATE;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300356 pdev->restore_factory = v4l2_ctrl_new_custom(hdl,
357 &pwc_restore_factory_cfg,
358 NULL);
359 if (pdev->restore_factory)
Hans Verkuil43d23f32011-08-26 08:40:43 -0300360 pdev->restore_factory->flags |= V4L2_CTRL_FLAG_UPDATE;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300361
Hans de Goedef4af65952011-10-09 09:56:23 -0300362 /* Auto White Balance speed & delay */
363 r = pwc_get_u8_ctrl(pdev, GET_CHROM_CTL,
364 AWB_CONTROL_SPEED_FORMATTER, &def);
365 if (r || def < 1 || def > 32)
366 def = 1;
367 cfg = pwc_awb_speed_cfg;
368 cfg.def = def;
369 pdev->awb_speed = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
370
371 r = pwc_get_u8_ctrl(pdev, GET_CHROM_CTL,
372 AWB_CONTROL_DELAY_FORMATTER, &def);
373 if (r || def > 63)
374 def = 0;
375 cfg = pwc_awb_delay_cfg;
376 cfg.def = def;
377 pdev->awb_delay = v4l2_ctrl_new_custom(hdl, &cfg, NULL);
378
Dan Carpenter4264a8b2011-07-23 15:53:03 -0300379 if (!(pdev->features & FEATURE_MOTOR_PANTILT))
Hans de Goede294e2892011-07-03 12:23:24 -0300380 return hdl->error;
381
382 /* Motor pan / tilt / reset */
383 pdev->motor_pan = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
384 V4L2_CID_PAN_RELATIVE, -4480, 4480, 64, 0);
385 if (!pdev->motor_pan)
386 return hdl->error;
387 pdev->motor_tilt = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
388 V4L2_CID_TILT_RELATIVE, -1920, 1920, 64, 0);
389 pdev->motor_pan_reset = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
390 V4L2_CID_PAN_RESET, 0, 0, 0, 0);
391 pdev->motor_tilt_reset = v4l2_ctrl_new_std(hdl, &pwc_ctrl_ops,
392 V4L2_CID_TILT_RESET, 0, 0, 0, 0);
393 v4l2_ctrl_cluster(4, &pdev->motor_pan);
394
Hans de Goede6c9cac82011-06-26 12:52:01 -0300395 return hdl->error;
396}
Luc Saillard2b455db2006-04-24 10:29:46 -0300397
398static void pwc_vidioc_fill_fmt(const struct pwc_device *pdev, struct v4l2_format *f)
399{
400 memset(&f->fmt.pix, 0, sizeof(struct v4l2_pix_format));
401 f->fmt.pix.width = pdev->view.x;
402 f->fmt.pix.height = pdev->view.y;
403 f->fmt.pix.field = V4L2_FIELD_NONE;
Hans Verkuil479567c2010-09-12 17:05:11 -0300404 if (pdev->pixfmt == V4L2_PIX_FMT_YUV420) {
Luc Saillard2b455db2006-04-24 10:29:46 -0300405 f->fmt.pix.pixelformat = V4L2_PIX_FMT_YUV420;
406 f->fmt.pix.bytesperline = (f->fmt.pix.width * 3)/2;
407 f->fmt.pix.sizeimage = f->fmt.pix.height * f->fmt.pix.bytesperline;
408 } else {
409 /* vbandlength contains 4 lines ... */
410 f->fmt.pix.bytesperline = pdev->vbandlength/4;
411 f->fmt.pix.sizeimage = pdev->frame_size + sizeof(struct pwc_raw_frame);
412 if (DEVICE_USE_CODEC1(pdev->type))
413 f->fmt.pix.pixelformat = V4L2_PIX_FMT_PWC1;
414 else
415 f->fmt.pix.pixelformat = V4L2_PIX_FMT_PWC2;
416 }
417 PWC_DEBUG_IOCTL("pwc_vidioc_fill_fmt() "
418 "width=%d, height=%d, bytesperline=%d, sizeimage=%d, pixelformat=%c%c%c%c\n",
419 f->fmt.pix.width,
420 f->fmt.pix.height,
421 f->fmt.pix.bytesperline,
422 f->fmt.pix.sizeimage,
423 (f->fmt.pix.pixelformat)&255,
424 (f->fmt.pix.pixelformat>>8)&255,
425 (f->fmt.pix.pixelformat>>16)&255,
426 (f->fmt.pix.pixelformat>>24)&255);
427}
428
429/* ioctl(VIDIOC_TRY_FMT) */
430static int pwc_vidioc_try_fmt(struct pwc_device *pdev, struct v4l2_format *f)
431{
432 if (f->type != V4L2_BUF_TYPE_VIDEO_CAPTURE) {
433 PWC_DEBUG_IOCTL("Bad video type must be V4L2_BUF_TYPE_VIDEO_CAPTURE\n");
434 return -EINVAL;
435 }
436
437 switch (f->fmt.pix.pixelformat) {
438 case V4L2_PIX_FMT_YUV420:
439 break;
440 case V4L2_PIX_FMT_PWC1:
441 if (DEVICE_USE_CODEC23(pdev->type)) {
442 PWC_DEBUG_IOCTL("codec1 is only supported for old pwc webcam\n");
443 return -EINVAL;
444 }
445 break;
446 case V4L2_PIX_FMT_PWC2:
447 if (DEVICE_USE_CODEC1(pdev->type)) {
448 PWC_DEBUG_IOCTL("codec23 is only supported for new pwc webcam\n");
449 return -EINVAL;
450 }
451 break;
452 default:
453 PWC_DEBUG_IOCTL("Unsupported pixel format\n");
454 return -EINVAL;
455
456 }
457
458 if (f->fmt.pix.width > pdev->view_max.x)
459 f->fmt.pix.width = pdev->view_max.x;
460 else if (f->fmt.pix.width < pdev->view_min.x)
461 f->fmt.pix.width = pdev->view_min.x;
462
463 if (f->fmt.pix.height > pdev->view_max.y)
464 f->fmt.pix.height = pdev->view_max.y;
465 else if (f->fmt.pix.height < pdev->view_min.y)
466 f->fmt.pix.height = pdev->view_min.y;
467
468 return 0;
469}
470
471/* ioctl(VIDIOC_SET_FMT) */
Hans de Goede4fba4712011-06-26 12:13:44 -0300472
473static int pwc_s_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *f)
Luc Saillard2b455db2006-04-24 10:29:46 -0300474{
Hans de Goede4fba4712011-06-26 12:13:44 -0300475 struct pwc_device *pdev = video_drvdata(file);
Luc Saillard2b455db2006-04-24 10:29:46 -0300476 int ret, fps, snapshot, compression, pixelformat;
477
Hans de Goedeb824bb42011-06-25 17:39:19 -0300478 if (!pdev->udev)
479 return -ENODEV;
480
Hans de Goede4fba4712011-06-26 12:13:44 -0300481 if (pdev->capt_file != NULL &&
482 pdev->capt_file != file)
483 return -EBUSY;
484
485 pdev->capt_file = file;
486
Luc Saillard2b455db2006-04-24 10:29:46 -0300487 ret = pwc_vidioc_try_fmt(pdev, f);
488 if (ret<0)
489 return ret;
490
491 pixelformat = f->fmt.pix.pixelformat;
492 compression = pdev->vcompression;
493 snapshot = 0;
494 fps = pdev->vframes;
495 if (f->fmt.pix.priv) {
496 compression = (f->fmt.pix.priv & PWC_QLT_MASK) >> PWC_QLT_SHIFT;
497 snapshot = !!(f->fmt.pix.priv & PWC_FPS_SNAPSHOT);
498 fps = (f->fmt.pix.priv & PWC_FPS_FRMASK) >> PWC_FPS_SHIFT;
499 if (fps == 0)
500 fps = pdev->vframes;
501 }
502
Hans Verkuil479567c2010-09-12 17:05:11 -0300503 if (pixelformat != V4L2_PIX_FMT_YUV420 &&
504 pixelformat != V4L2_PIX_FMT_PWC1 &&
505 pixelformat != V4L2_PIX_FMT_PWC2)
506 return -EINVAL;
Luc Saillard2b455db2006-04-24 10:29:46 -0300507
Hans de Goede885fe182011-06-06 15:33:44 -0300508 if (vb2_is_streaming(&pdev->vb_queue))
Hans de Goede3751e282010-11-16 11:39:25 -0300509 return -EBUSY;
510
511 PWC_DEBUG_IOCTL("Trying to set format to: width=%d height=%d fps=%d "
Luc Saillard2b455db2006-04-24 10:29:46 -0300512 "compression=%d snapshot=%d format=%c%c%c%c\n",
513 f->fmt.pix.width, f->fmt.pix.height, fps,
514 compression, snapshot,
515 (pixelformat)&255,
516 (pixelformat>>8)&255,
517 (pixelformat>>16)&255,
518 (pixelformat>>24)&255);
519
Hans de Goede3751e282010-11-16 11:39:25 -0300520 ret = pwc_set_video_mode(pdev,
Luc Saillard2b455db2006-04-24 10:29:46 -0300521 f->fmt.pix.width,
522 f->fmt.pix.height,
523 fps,
524 compression,
525 snapshot);
526
Hans de Goede3751e282010-11-16 11:39:25 -0300527 PWC_DEBUG_IOCTL("pwc_set_video_mode(), return=%d\n", ret);
Luc Saillard2b455db2006-04-24 10:29:46 -0300528
529 if (ret)
530 return ret;
531
Hans Verkuil479567c2010-09-12 17:05:11 -0300532 pdev->pixfmt = pixelformat;
533
Luc Saillard2b455db2006-04-24 10:29:46 -0300534 pwc_vidioc_fill_fmt(pdev, f);
535
536 return 0;
537
538}
539
Hans Verkuilafa38522011-01-22 06:34:55 -0300540static int pwc_querycap(struct file *file, void *fh, struct v4l2_capability *cap)
Luc Saillard2b455db2006-04-24 10:29:46 -0300541{
Hans Verkuilafa38522011-01-22 06:34:55 -0300542 struct pwc_device *pdev = video_drvdata(file);
Luc Saillard2b455db2006-04-24 10:29:46 -0300543
Hans de Goedeb824bb42011-06-25 17:39:19 -0300544 if (!pdev->udev)
545 return -ENODEV;
546
Hans Verkuilafa38522011-01-22 06:34:55 -0300547 strcpy(cap->driver, PWC_NAME);
Hans de Goede6c9cac82011-06-26 12:52:01 -0300548 strlcpy(cap->card, pdev->vdev.name, sizeof(cap->card));
Hans Verkuilafa38522011-01-22 06:34:55 -0300549 usb_make_path(pdev->udev, cap->bus_info, sizeof(cap->bus_info));
Hans Verkuilafa38522011-01-22 06:34:55 -0300550 cap->capabilities =
551 V4L2_CAP_VIDEO_CAPTURE |
552 V4L2_CAP_STREAMING |
553 V4L2_CAP_READWRITE;
Luc Saillard2b455db2006-04-24 10:29:46 -0300554 return 0;
555}
556
Hans Verkuilafa38522011-01-22 06:34:55 -0300557static int pwc_enum_input(struct file *file, void *fh, struct v4l2_input *i)
558{
559 if (i->index) /* Only one INPUT is supported */
560 return -EINVAL;
561
562 strcpy(i->name, "usb");
563 return 0;
564}
565
566static int pwc_g_input(struct file *file, void *fh, unsigned int *i)
567{
568 *i = 0;
569 return 0;
570}
571
572static int pwc_s_input(struct file *file, void *fh, unsigned int i)
573{
574 return i ? -EINVAL : 0;
575}
576
Hans de Goede6c9cac82011-06-26 12:52:01 -0300577static int pwc_g_volatile_ctrl(struct v4l2_ctrl *ctrl)
Hans Verkuilafa38522011-01-22 06:34:55 -0300578{
Hans de Goede6c9cac82011-06-26 12:52:01 -0300579 struct pwc_device *pdev =
580 container_of(ctrl->handler, struct pwc_device, ctrl_handler);
581 int ret = 0;
Hans Verkuilafa38522011-01-22 06:34:55 -0300582
Hans de Goedec1127132011-07-03 11:50:51 -0300583 /*
584 * Sometimes it can take quite long for the pwc to complete usb control
585 * transfers, so release the modlock to give streaming by another
586 * process / thread the chance to continue with a dqbuf.
587 */
588 mutex_unlock(&pdev->modlock);
589
590 /*
591 * Take the udev-lock to protect against the disconnect handler
592 * completing and setting dev->udev to NULL underneath us. Other code
593 * does not need to do this since it is protected by the modlock.
594 */
595 mutex_lock(&pdev->udevlock);
596
597 if (!pdev->udev) {
598 ret = -ENODEV;
599 goto leave;
600 }
Hans de Goedeb824bb42011-06-25 17:39:19 -0300601
Hans de Goede6c9cac82011-06-26 12:52:01 -0300602 switch (ctrl->id) {
Hans Verkuilafa38522011-01-22 06:34:55 -0300603 case V4L2_CID_AUTO_WHITE_BALANCE:
Hans Verkuil43d23f32011-08-26 08:40:43 -0300604 if (pdev->color_bal_valid &&
605 (pdev->auto_white_balance->val != awb_auto ||
606 time_before(jiffies,
607 pdev->last_color_bal_update + HZ / 4))) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300608 pdev->red_balance->val = pdev->last_red_balance;
609 pdev->blue_balance->val = pdev->last_blue_balance;
610 break;
611 }
612 ret = pwc_get_u8_ctrl(pdev, GET_STATUS_CTL,
613 READ_RED_GAIN_FORMATTER,
614 &pdev->red_balance->val);
615 if (ret)
616 break;
617 ret = pwc_get_u8_ctrl(pdev, GET_STATUS_CTL,
618 READ_BLUE_GAIN_FORMATTER,
619 &pdev->blue_balance->val);
620 if (ret)
621 break;
622 pdev->last_red_balance = pdev->red_balance->val;
623 pdev->last_blue_balance = pdev->blue_balance->val;
624 pdev->last_color_bal_update = jiffies;
625 pdev->color_bal_valid = true;
626 break;
Hans Verkuilafa38522011-01-22 06:34:55 -0300627 case V4L2_CID_AUTOGAIN:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300628 if (pdev->gain_valid && time_before(jiffies,
629 pdev->last_gain_update + HZ / 4)) {
630 pdev->gain->val = pdev->last_gain;
631 break;
632 }
633 ret = pwc_get_u8_ctrl(pdev, GET_STATUS_CTL,
634 READ_AGC_FORMATTER, &pdev->gain->val);
635 if (ret)
636 break;
637 pdev->last_gain = pdev->gain->val;
638 pdev->last_gain_update = jiffies;
639 pdev->gain_valid = true;
640 if (!DEVICE_USE_CODEC3(pdev->type))
641 break;
642 /* Fall through for CODEC3 where autogain also controls expo */
643 case V4L2_CID_EXPOSURE_AUTO:
644 if (pdev->exposure_valid && time_before(jiffies,
645 pdev->last_exposure_update + HZ / 4)) {
646 pdev->exposure->val = pdev->last_exposure;
647 break;
648 }
649 ret = pwc_get_u16_ctrl(pdev, GET_STATUS_CTL,
650 READ_SHUTTER_FORMATTER,
651 &pdev->exposure->val);
652 if (ret)
653 break;
654 pdev->last_exposure = pdev->exposure->val;
655 pdev->last_exposure_update = jiffies;
656 pdev->exposure_valid = true;
657 break;
658 default:
659 ret = -EINVAL;
Hans Verkuilafa38522011-01-22 06:34:55 -0300660 }
Hans de Goede6c9cac82011-06-26 12:52:01 -0300661
662 if (ret)
663 PWC_ERROR("g_ctrl %s error %d\n", ctrl->name, ret);
664
Hans de Goedec1127132011-07-03 11:50:51 -0300665leave:
666 mutex_unlock(&pdev->udevlock);
667 mutex_lock(&pdev->modlock);
Hans de Goede6c9cac82011-06-26 12:52:01 -0300668 return ret;
Hans Verkuilafa38522011-01-22 06:34:55 -0300669}
670
Hans de Goede6c9cac82011-06-26 12:52:01 -0300671static int pwc_set_awb(struct pwc_device *pdev)
Hans Verkuilafa38522011-01-22 06:34:55 -0300672{
Hans Verkuil43d23f32011-08-26 08:40:43 -0300673 int ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300674
675 if (pdev->auto_white_balance->is_new) {
676 ret = pwc_set_u8_ctrl(pdev, SET_CHROM_CTL,
677 WB_MODE_FORMATTER,
678 pdev->auto_white_balance->val);
679 if (ret)
680 return ret;
681
Hans de Goede6c9cac82011-06-26 12:52:01 -0300682 if (pdev->auto_white_balance->val != awb_manual)
Hans Verkuil43d23f32011-08-26 08:40:43 -0300683 pdev->color_bal_valid = false; /* Force cache update */
684 }
685 if (pdev->auto_white_balance->val != awb_manual)
686 return 0;
687
688 if (pdev->red_balance->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300689 ret = pwc_set_u8_ctrl(pdev, SET_CHROM_CTL,
690 PRESET_MANUAL_RED_GAIN_FORMATTER,
691 pdev->red_balance->val);
Hans Verkuil43d23f32011-08-26 08:40:43 -0300692 if (ret)
693 return ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300694 }
695
Hans Verkuil43d23f32011-08-26 08:40:43 -0300696 if (pdev->blue_balance->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300697 ret = pwc_set_u8_ctrl(pdev, SET_CHROM_CTL,
698 PRESET_MANUAL_BLUE_GAIN_FORMATTER,
699 pdev->blue_balance->val);
Hans Verkuil43d23f32011-08-26 08:40:43 -0300700 if (ret)
701 return ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300702 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300703 return 0;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300704}
705
706/* For CODEC2 models which have separate autogain and auto exposure */
707static int pwc_set_autogain(struct pwc_device *pdev)
708{
Hans Verkuil43d23f32011-08-26 08:40:43 -0300709 int ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300710
711 if (pdev->autogain->is_new) {
712 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
713 AGC_MODE_FORMATTER,
714 pdev->autogain->val ? 0 : 0xff);
715 if (ret)
716 return ret;
Hans Verkuil43d23f32011-08-26 08:40:43 -0300717
Hans de Goede6c9cac82011-06-26 12:52:01 -0300718 if (pdev->autogain->val)
719 pdev->gain_valid = false; /* Force cache update */
Hans de Goede6c9cac82011-06-26 12:52:01 -0300720 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300721
722 if (pdev->autogain->val)
723 return 0;
724
725 if (pdev->gain->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300726 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
727 PRESET_AGC_FORMATTER,
728 pdev->gain->val);
Hans Verkuil43d23f32011-08-26 08:40:43 -0300729 if (ret)
730 return ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300731 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300732 return 0;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300733}
734
735/* For CODEC2 models which have separate autogain and auto exposure */
736static int pwc_set_exposure_auto(struct pwc_device *pdev)
737{
Hans Verkuil43d23f32011-08-26 08:40:43 -0300738 int ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300739 int is_auto = pdev->exposure_auto->val == V4L2_EXPOSURE_AUTO;
740
741 if (pdev->exposure_auto->is_new) {
742 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
743 SHUTTER_MODE_FORMATTER,
744 is_auto ? 0 : 0xff);
745 if (ret)
746 return ret;
Hans Verkuil43d23f32011-08-26 08:40:43 -0300747
Hans de Goede6c9cac82011-06-26 12:52:01 -0300748 if (is_auto)
749 pdev->exposure_valid = false; /* Force cache update */
Hans de Goede6c9cac82011-06-26 12:52:01 -0300750 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300751
752 if (is_auto)
753 return 0;
754
755 if (pdev->exposure->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300756 ret = pwc_set_u16_ctrl(pdev, SET_LUM_CTL,
757 PRESET_SHUTTER_FORMATTER,
758 pdev->exposure->val);
Hans Verkuil43d23f32011-08-26 08:40:43 -0300759 if (ret)
760 return ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300761 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300762 return 0;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300763}
764
765/* For CODEC3 models which have autogain controlling both gain and exposure */
766static int pwc_set_autogain_expo(struct pwc_device *pdev)
767{
Hans Verkuil43d23f32011-08-26 08:40:43 -0300768 int ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300769
770 if (pdev->autogain->is_new) {
771 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
772 AGC_MODE_FORMATTER,
773 pdev->autogain->val ? 0 : 0xff);
774 if (ret)
775 return ret;
Hans Verkuil43d23f32011-08-26 08:40:43 -0300776
Hans de Goede6c9cac82011-06-26 12:52:01 -0300777 if (pdev->autogain->val) {
778 pdev->gain_valid = false; /* Force cache update */
779 pdev->exposure_valid = false; /* Force cache update */
Hans de Goede6c9cac82011-06-26 12:52:01 -0300780 }
781 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300782
783 if (pdev->autogain->val)
784 return 0;
785
786 if (pdev->gain->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300787 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
788 PRESET_AGC_FORMATTER,
789 pdev->gain->val);
Hans Verkuil43d23f32011-08-26 08:40:43 -0300790 if (ret)
791 return ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300792 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300793
794 if (pdev->exposure->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300795 ret = pwc_set_u16_ctrl(pdev, SET_LUM_CTL,
796 PRESET_SHUTTER_FORMATTER,
797 pdev->exposure->val);
Hans Verkuil43d23f32011-08-26 08:40:43 -0300798 if (ret)
799 return ret;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300800 }
Hans Verkuil43d23f32011-08-26 08:40:43 -0300801 return 0;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300802}
803
Hans de Goede294e2892011-07-03 12:23:24 -0300804static int pwc_set_motor(struct pwc_device *pdev)
805{
806 int ret;
807 u8 buf[4];
808
809 buf[0] = 0;
810 if (pdev->motor_pan_reset->is_new)
811 buf[0] |= 0x01;
812 if (pdev->motor_tilt_reset->is_new)
813 buf[0] |= 0x02;
814 if (pdev->motor_pan_reset->is_new || pdev->motor_tilt_reset->is_new) {
815 ret = send_control_msg(pdev, SET_MPT_CTL,
816 PT_RESET_CONTROL_FORMATTER, buf, 1);
817 if (ret < 0)
818 return ret;
819 }
820
821 memset(buf, 0, sizeof(buf));
822 if (pdev->motor_pan->is_new) {
823 buf[0] = pdev->motor_pan->val & 0xFF;
824 buf[1] = (pdev->motor_pan->val >> 8);
825 }
826 if (pdev->motor_tilt->is_new) {
827 buf[2] = pdev->motor_tilt->val & 0xFF;
828 buf[3] = (pdev->motor_tilt->val >> 8);
829 }
830 if (pdev->motor_pan->is_new || pdev->motor_tilt->is_new) {
831 ret = send_control_msg(pdev, SET_MPT_CTL,
832 PT_RELATIVE_CONTROL_FORMATTER,
833 buf, sizeof(buf));
834 if (ret < 0)
835 return ret;
836 }
837
838 return 0;
839}
840
Hans de Goede6c9cac82011-06-26 12:52:01 -0300841static int pwc_s_ctrl(struct v4l2_ctrl *ctrl)
842{
843 struct pwc_device *pdev =
844 container_of(ctrl->handler, struct pwc_device, ctrl_handler);
845 int ret = 0;
Hans Verkuilafa38522011-01-22 06:34:55 -0300846
Hans de Goedec1127132011-07-03 11:50:51 -0300847 /* See the comments on locking in pwc_g_volatile_ctrl */
848 mutex_unlock(&pdev->modlock);
849 mutex_lock(&pdev->udevlock);
850
851 if (!pdev->udev) {
852 ret = -ENODEV;
853 goto leave;
854 }
Hans de Goedeb824bb42011-06-25 17:39:19 -0300855
Hans de Goede6c9cac82011-06-26 12:52:01 -0300856 switch (ctrl->id) {
Hans Verkuilafa38522011-01-22 06:34:55 -0300857 case V4L2_CID_BRIGHTNESS:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300858 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
859 BRIGHTNESS_FORMATTER, ctrl->val);
860 break;
Hans Verkuilafa38522011-01-22 06:34:55 -0300861 case V4L2_CID_CONTRAST:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300862 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
863 CONTRAST_FORMATTER, ctrl->val);
864 break;
Hans Verkuilafa38522011-01-22 06:34:55 -0300865 case V4L2_CID_SATURATION:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300866 ret = pwc_set_s8_ctrl(pdev, SET_CHROM_CTL,
867 pdev->saturation_fmt, ctrl->val);
868 break;
Hans Verkuilafa38522011-01-22 06:34:55 -0300869 case V4L2_CID_GAMMA:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300870 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
871 GAMMA_FORMATTER, ctrl->val);
872 break;
Hans Verkuilafa38522011-01-22 06:34:55 -0300873 case V4L2_CID_AUTO_WHITE_BALANCE:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300874 ret = pwc_set_awb(pdev);
875 break;
Hans Verkuilafa38522011-01-22 06:34:55 -0300876 case V4L2_CID_AUTOGAIN:
Hans de Goede6c9cac82011-06-26 12:52:01 -0300877 if (DEVICE_USE_CODEC2(pdev->type))
878 ret = pwc_set_autogain(pdev);
879 else if (DEVICE_USE_CODEC3(pdev->type))
880 ret = pwc_set_autogain_expo(pdev);
881 else
882 ret = -EINVAL;
883 break;
884 case V4L2_CID_EXPOSURE_AUTO:
885 if (DEVICE_USE_CODEC2(pdev->type))
886 ret = pwc_set_exposure_auto(pdev);
887 else
888 ret = -EINVAL;
889 break;
890 case V4L2_CID_COLORFX:
891 ret = pwc_set_u8_ctrl(pdev, SET_CHROM_CTL,
892 COLOUR_MODE_FORMATTER,
893 ctrl->val ? 0 : 0xff);
894 break;
895 case PWC_CID_CUSTOM(autocontour):
896 if (pdev->autocontour->is_new) {
897 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
898 AUTO_CONTOUR_FORMATTER,
899 pdev->autocontour->val ? 0 : 0xff);
900 }
901 if (ret == 0 && pdev->contour->is_new) {
Hans de Goede6c9cac82011-06-26 12:52:01 -0300902 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
903 PRESET_CONTOUR_FORMATTER,
904 pdev->contour->val);
905 }
906 break;
907 case V4L2_CID_BACKLIGHT_COMPENSATION:
908 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
909 BACK_LIGHT_COMPENSATION_FORMATTER,
910 ctrl->val ? 0 : 0xff);
911 break;
912 case V4L2_CID_BAND_STOP_FILTER:
913 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
914 FLICKERLESS_MODE_FORMATTER,
915 ctrl->val ? 0 : 0xff);
916 break;
917 case PWC_CID_CUSTOM(noise_reduction):
918 ret = pwc_set_u8_ctrl(pdev, SET_LUM_CTL,
919 DYNAMIC_NOISE_CONTROL_FORMATTER,
920 ctrl->val);
921 break;
922 case PWC_CID_CUSTOM(save_user):
923 ret = pwc_button_ctrl(pdev, SAVE_USER_DEFAULTS_FORMATTER);
924 break;
925 case PWC_CID_CUSTOM(restore_user):
926 ret = pwc_button_ctrl(pdev, RESTORE_USER_DEFAULTS_FORMATTER);
927 break;
928 case PWC_CID_CUSTOM(restore_factory):
929 ret = pwc_button_ctrl(pdev,
930 RESTORE_FACTORY_DEFAULTS_FORMATTER);
931 break;
Hans de Goedef4af65952011-10-09 09:56:23 -0300932 case PWC_CID_CUSTOM(awb_speed):
933 ret = pwc_set_u8_ctrl(pdev, SET_CHROM_CTL,
934 AWB_CONTROL_SPEED_FORMATTER,
935 ctrl->val);
936 break;
937 case PWC_CID_CUSTOM(awb_delay):
938 ret = pwc_set_u8_ctrl(pdev, SET_CHROM_CTL,
939 AWB_CONTROL_DELAY_FORMATTER,
940 ctrl->val);
941 break;
Hans de Goede294e2892011-07-03 12:23:24 -0300942 case V4L2_CID_PAN_RELATIVE:
943 ret = pwc_set_motor(pdev);
944 break;
Hans de Goede6c9cac82011-06-26 12:52:01 -0300945 default:
946 ret = -EINVAL;
Hans Verkuilafa38522011-01-22 06:34:55 -0300947 }
Hans de Goede6c9cac82011-06-26 12:52:01 -0300948
949 if (ret)
950 PWC_ERROR("s_ctrl %s error %d\n", ctrl->name, ret);
951
Hans de Goedec1127132011-07-03 11:50:51 -0300952leave:
953 mutex_unlock(&pdev->udevlock);
954 mutex_lock(&pdev->modlock);
Hans de Goede6c9cac82011-06-26 12:52:01 -0300955 return ret;
Hans Verkuilafa38522011-01-22 06:34:55 -0300956}
957
958static int pwc_enum_fmt_vid_cap(struct file *file, void *fh, struct v4l2_fmtdesc *f)
959{
960 struct pwc_device *pdev = video_drvdata(file);
961
962 /* We only support two format: the raw format, and YUV */
963 switch (f->index) {
964 case 0:
965 /* RAW format */
966 f->pixelformat = pdev->type <= 646 ? V4L2_PIX_FMT_PWC1 : V4L2_PIX_FMT_PWC2;
967 f->flags = V4L2_FMT_FLAG_COMPRESSED;
968 strlcpy(f->description, "Raw Philips Webcam", sizeof(f->description));
969 break;
970 case 1:
971 f->pixelformat = V4L2_PIX_FMT_YUV420;
972 strlcpy(f->description, "4:2:0, planar, Y-Cb-Cr", sizeof(f->description));
973 break;
974 default:
975 return -EINVAL;
976 }
977 return 0;
978}
979
980static int pwc_g_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *f)
981{
982 struct pwc_device *pdev = video_drvdata(file);
983
984 PWC_DEBUG_IOCTL("ioctl(VIDIOC_G_FMT) return size %dx%d\n",
985 pdev->image.x, pdev->image.y);
986 pwc_vidioc_fill_fmt(pdev, f);
987 return 0;
988}
989
990static int pwc_try_fmt_vid_cap(struct file *file, void *fh, struct v4l2_format *f)
991{
992 struct pwc_device *pdev = video_drvdata(file);
993
994 return pwc_vidioc_try_fmt(pdev, f);
995}
996
Hans de Goede885fe182011-06-06 15:33:44 -0300997static int pwc_reqbufs(struct file *file, void *fh,
998 struct v4l2_requestbuffers *rb)
Hans Verkuilafa38522011-01-22 06:34:55 -0300999{
Hans de Goede885fe182011-06-06 15:33:44 -03001000 struct pwc_device *pdev = video_drvdata(file);
Hans Verkuilafa38522011-01-22 06:34:55 -03001001
Hans de Goede4fba4712011-06-26 12:13:44 -03001002 if (pdev->capt_file != NULL &&
1003 pdev->capt_file != file)
1004 return -EBUSY;
1005
1006 pdev->capt_file = file;
1007
Hans de Goede885fe182011-06-06 15:33:44 -03001008 return vb2_reqbufs(&pdev->vb_queue, rb);
Hans Verkuilafa38522011-01-22 06:34:55 -03001009}
1010
1011static int pwc_querybuf(struct file *file, void *fh, struct v4l2_buffer *buf)
1012{
1013 struct pwc_device *pdev = video_drvdata(file);
Hans Verkuilafa38522011-01-22 06:34:55 -03001014
Hans de Goede885fe182011-06-06 15:33:44 -03001015 return vb2_querybuf(&pdev->vb_queue, buf);
Hans Verkuilafa38522011-01-22 06:34:55 -03001016}
1017
1018static int pwc_qbuf(struct file *file, void *fh, struct v4l2_buffer *buf)
1019{
Hans de Goede885fe182011-06-06 15:33:44 -03001020 struct pwc_device *pdev = video_drvdata(file);
Hans Verkuilafa38522011-01-22 06:34:55 -03001021
Hans de Goedeb824bb42011-06-25 17:39:19 -03001022 if (!pdev->udev)
1023 return -ENODEV;
1024
Hans de Goede4fba4712011-06-26 12:13:44 -03001025 if (pdev->capt_file != file)
1026 return -EBUSY;
1027
Hans de Goede885fe182011-06-06 15:33:44 -03001028 return vb2_qbuf(&pdev->vb_queue, buf);
Hans Verkuilafa38522011-01-22 06:34:55 -03001029}
1030
1031static int pwc_dqbuf(struct file *file, void *fh, struct v4l2_buffer *buf)
1032{
Hans Verkuilafa38522011-01-22 06:34:55 -03001033 struct pwc_device *pdev = video_drvdata(file);
Hans Verkuilafa38522011-01-22 06:34:55 -03001034
Hans de Goedeb824bb42011-06-25 17:39:19 -03001035 if (!pdev->udev)
1036 return -ENODEV;
1037
Hans de Goede4fba4712011-06-26 12:13:44 -03001038 if (pdev->capt_file != file)
1039 return -EBUSY;
1040
Hans de Goede885fe182011-06-06 15:33:44 -03001041 return vb2_dqbuf(&pdev->vb_queue, buf, file->f_flags & O_NONBLOCK);
Hans Verkuilafa38522011-01-22 06:34:55 -03001042}
1043
1044static int pwc_streamon(struct file *file, void *fh, enum v4l2_buf_type i)
1045{
1046 struct pwc_device *pdev = video_drvdata(file);
1047
Hans de Goedeb824bb42011-06-25 17:39:19 -03001048 if (!pdev->udev)
1049 return -ENODEV;
1050
Hans de Goede4fba4712011-06-26 12:13:44 -03001051 if (pdev->capt_file != file)
1052 return -EBUSY;
1053
Hans de Goede885fe182011-06-06 15:33:44 -03001054 return vb2_streamon(&pdev->vb_queue, i);
Hans Verkuilafa38522011-01-22 06:34:55 -03001055}
1056
1057static int pwc_streamoff(struct file *file, void *fh, enum v4l2_buf_type i)
1058{
1059 struct pwc_device *pdev = video_drvdata(file);
1060
Hans de Goedeb824bb42011-06-25 17:39:19 -03001061 if (!pdev->udev)
1062 return -ENODEV;
1063
Hans de Goede4fba4712011-06-26 12:13:44 -03001064 if (pdev->capt_file != file)
1065 return -EBUSY;
1066
Hans de Goede885fe182011-06-06 15:33:44 -03001067 return vb2_streamoff(&pdev->vb_queue, i);
Hans Verkuilafa38522011-01-22 06:34:55 -03001068}
1069
1070static int pwc_enum_framesizes(struct file *file, void *fh,
1071 struct v4l2_frmsizeenum *fsize)
1072{
1073 struct pwc_device *pdev = video_drvdata(file);
1074 unsigned int i = 0, index = fsize->index;
1075
1076 if (fsize->pixel_format == V4L2_PIX_FMT_YUV420) {
1077 for (i = 0; i < PSZ_MAX; i++) {
1078 if (pdev->image_mask & (1UL << i)) {
1079 if (!index--) {
1080 fsize->type = V4L2_FRMSIZE_TYPE_DISCRETE;
1081 fsize->discrete.width = pwc_image_sizes[i].x;
1082 fsize->discrete.height = pwc_image_sizes[i].y;
1083 return 0;
1084 }
1085 }
1086 }
1087 } else if (fsize->index == 0 &&
1088 ((fsize->pixel_format == V4L2_PIX_FMT_PWC1 && DEVICE_USE_CODEC1(pdev->type)) ||
1089 (fsize->pixel_format == V4L2_PIX_FMT_PWC2 && DEVICE_USE_CODEC23(pdev->type)))) {
1090
1091 fsize->type = V4L2_FRMSIZE_TYPE_DISCRETE;
1092 fsize->discrete.width = pdev->abs_max.x;
1093 fsize->discrete.height = pdev->abs_max.y;
1094 return 0;
1095 }
1096 return -EINVAL;
1097}
1098
1099static int pwc_enum_frameintervals(struct file *file, void *fh,
1100 struct v4l2_frmivalenum *fival)
1101{
1102 struct pwc_device *pdev = video_drvdata(file);
1103 int size = -1;
1104 unsigned int i;
1105
1106 for (i = 0; i < PSZ_MAX; i++) {
1107 if (pwc_image_sizes[i].x == fival->width &&
1108 pwc_image_sizes[i].y == fival->height) {
1109 size = i;
1110 break;
1111 }
1112 }
1113
1114 /* TODO: Support raw format */
1115 if (size < 0 || fival->pixel_format != V4L2_PIX_FMT_YUV420)
1116 return -EINVAL;
1117
1118 i = pwc_get_fps(pdev, fival->index, size);
1119 if (!i)
1120 return -EINVAL;
1121
1122 fival->type = V4L2_FRMIVAL_TYPE_DISCRETE;
1123 fival->discrete.numerator = 1;
1124 fival->discrete.denominator = i;
1125
1126 return 0;
1127}
1128
Hans Verkuil34ebdc92011-08-26 08:46:13 -03001129static int pwc_log_status(struct file *file, void *priv)
1130{
1131 struct pwc_device *pdev = video_drvdata(file);
1132
1133 v4l2_ctrl_handler_log_status(&pdev->ctrl_handler, PWC_NAME);
1134 return 0;
1135}
1136
Hans Verkuil99cd47bc2011-03-11 19:00:56 -03001137static long pwc_default(struct file *file, void *fh, bool valid_prio,
1138 int cmd, void *arg)
Hans Verkuilafa38522011-01-22 06:34:55 -03001139{
1140 struct pwc_device *pdev = video_drvdata(file);
1141
1142 return pwc_ioctl(pdev, cmd, arg);
1143}
1144
1145const struct v4l2_ioctl_ops pwc_ioctl_ops = {
1146 .vidioc_querycap = pwc_querycap,
1147 .vidioc_enum_input = pwc_enum_input,
1148 .vidioc_g_input = pwc_g_input,
1149 .vidioc_s_input = pwc_s_input,
1150 .vidioc_enum_fmt_vid_cap = pwc_enum_fmt_vid_cap,
1151 .vidioc_g_fmt_vid_cap = pwc_g_fmt_vid_cap,
1152 .vidioc_s_fmt_vid_cap = pwc_s_fmt_vid_cap,
1153 .vidioc_try_fmt_vid_cap = pwc_try_fmt_vid_cap,
Hans Verkuilafa38522011-01-22 06:34:55 -03001154 .vidioc_reqbufs = pwc_reqbufs,
1155 .vidioc_querybuf = pwc_querybuf,
1156 .vidioc_qbuf = pwc_qbuf,
1157 .vidioc_dqbuf = pwc_dqbuf,
1158 .vidioc_streamon = pwc_streamon,
1159 .vidioc_streamoff = pwc_streamoff,
Hans Verkuil34ebdc92011-08-26 08:46:13 -03001160 .vidioc_log_status = pwc_log_status,
Hans Verkuilafa38522011-01-22 06:34:55 -03001161 .vidioc_enum_framesizes = pwc_enum_framesizes,
1162 .vidioc_enum_frameintervals = pwc_enum_frameintervals,
1163 .vidioc_default = pwc_default,
1164};
1165
1166
Luc Saillard2b455db2006-04-24 10:29:46 -03001167/* vim: set cino= formatoptions=croql cindent shiftwidth=8 tabstop=8: */