V4L/DVB (4742): Drivers/media/video: handle sysfs errors
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / media / video / et61x251 / et61x251_core.c
1 /***************************************************************************
2 * V4L2 driver for ET61X[12]51 PC Camera Controllers *
3 * *
4 * Copyright (C) 2006 by Luca Risolia <luca.risolia@studio.unibo.it> *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
19 ***************************************************************************/
20
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/kernel.h>
24 #include <linux/param.h>
25 #include <linux/moduleparam.h>
26 #include <linux/errno.h>
27 #include <linux/slab.h>
28 #include <linux/device.h>
29 #include <linux/fs.h>
30 #include <linux/delay.h>
31 #include <linux/compiler.h>
32 #include <linux/ioctl.h>
33 #include <linux/poll.h>
34 #include <linux/stat.h>
35 #include <linux/mm.h>
36 #include <linux/vmalloc.h>
37 #include <linux/page-flags.h>
38 #include <linux/byteorder/generic.h>
39 #include <asm/page.h>
40 #include <asm/uaccess.h>
41
42 #include "et61x251.h"
43
44 /*****************************************************************************/
45
46 #define ET61X251_MODULE_NAME "V4L2 driver for ET61X[12]51 " \
47 "PC Camera Controllers"
48 #define ET61X251_MODULE_AUTHOR "(C) 2006 Luca Risolia"
49 #define ET61X251_AUTHOR_EMAIL "<luca.risolia@studio.unibo.it>"
50 #define ET61X251_MODULE_LICENSE "GPL"
51 #define ET61X251_MODULE_VERSION "1:1.02"
52 #define ET61X251_MODULE_VERSION_CODE KERNEL_VERSION(1, 0, 2)
53
54 /*****************************************************************************/
55
56 MODULE_DEVICE_TABLE(usb, et61x251_id_table);
57
58 MODULE_AUTHOR(ET61X251_MODULE_AUTHOR " " ET61X251_AUTHOR_EMAIL);
59 MODULE_DESCRIPTION(ET61X251_MODULE_NAME);
60 MODULE_VERSION(ET61X251_MODULE_VERSION);
61 MODULE_LICENSE(ET61X251_MODULE_LICENSE);
62
63 static short video_nr[] = {[0 ... ET61X251_MAX_DEVICES-1] = -1};
64 module_param_array(video_nr, short, NULL, 0444);
65 MODULE_PARM_DESC(video_nr,
66 "\n<-1|n[,...]> Specify V4L2 minor mode number."
67 "\n -1 = use next available (default)"
68 "\n n = use minor number n (integer >= 0)"
69 "\nYou can specify up to "
70 __MODULE_STRING(ET61X251_MAX_DEVICES) " cameras this way."
71 "\nFor example:"
72 "\nvideo_nr=-1,2,-1 would assign minor number 2 to"
73 "\nthe second registered camera and use auto for the first"
74 "\none and for every other camera."
75 "\n");
76
77 static short force_munmap[] = {[0 ... ET61X251_MAX_DEVICES-1] =
78 ET61X251_FORCE_MUNMAP};
79 module_param_array(force_munmap, bool, NULL, 0444);
80 MODULE_PARM_DESC(force_munmap,
81 "\n<0|1[,...]> Force the application to unmap previously"
82 "\nmapped buffer memory before calling any VIDIOC_S_CROP or"
83 "\nVIDIOC_S_FMT ioctl's. Not all the applications support"
84 "\nthis feature. This parameter is specific for each"
85 "\ndetected camera."
86 "\n 0 = do not force memory unmapping"
87 "\n 1 = force memory unmapping (save memory)"
88 "\nDefault value is "__MODULE_STRING(SN9C102_FORCE_MUNMAP)"."
89 "\n");
90
91 static unsigned int frame_timeout[] = {[0 ... ET61X251_MAX_DEVICES-1] =
92 ET61X251_FRAME_TIMEOUT};
93 module_param_array(frame_timeout, uint, NULL, 0644);
94 MODULE_PARM_DESC(frame_timeout,
95 "\n<n[,...]> Timeout for a video frame in seconds."
96 "\nThis parameter is specific for each detected camera."
97 "\nDefault value is "
98 __MODULE_STRING(ET61X251_FRAME_TIMEOUT)"."
99 "\n");
100
101 #ifdef ET61X251_DEBUG
102 static unsigned short debug = ET61X251_DEBUG_LEVEL;
103 module_param(debug, ushort, 0644);
104 MODULE_PARM_DESC(debug,
105 "\n<n> Debugging information level, from 0 to 3:"
106 "\n0 = none (use carefully)"
107 "\n1 = critical errors"
108 "\n2 = significant informations"
109 "\n3 = more verbose messages"
110 "\nLevel 3 is useful for testing only, when only "
111 "one device is used."
112 "\nDefault value is "__MODULE_STRING(ET61X251_DEBUG_LEVEL)"."
113 "\n");
114 #endif
115
116 /*****************************************************************************/
117
118 static u32
119 et61x251_request_buffers(struct et61x251_device* cam, u32 count,
120 enum et61x251_io_method io)
121 {
122 struct v4l2_pix_format* p = &(cam->sensor.pix_format);
123 struct v4l2_rect* r = &(cam->sensor.cropcap.bounds);
124 const size_t imagesize = cam->module_param.force_munmap ||
125 io == IO_READ ?
126 (p->width * p->height * p->priv) / 8 :
127 (r->width * r->height * p->priv) / 8;
128 void* buff = NULL;
129 u32 i;
130
131 if (count > ET61X251_MAX_FRAMES)
132 count = ET61X251_MAX_FRAMES;
133
134 cam->nbuffers = count;
135 while (cam->nbuffers > 0) {
136 if ((buff = vmalloc_32(cam->nbuffers * PAGE_ALIGN(imagesize))))
137 break;
138 cam->nbuffers--;
139 }
140
141 for (i = 0; i < cam->nbuffers; i++) {
142 cam->frame[i].bufmem = buff + i*PAGE_ALIGN(imagesize);
143 cam->frame[i].buf.index = i;
144 cam->frame[i].buf.m.offset = i*PAGE_ALIGN(imagesize);
145 cam->frame[i].buf.length = imagesize;
146 cam->frame[i].buf.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
147 cam->frame[i].buf.sequence = 0;
148 cam->frame[i].buf.field = V4L2_FIELD_NONE;
149 cam->frame[i].buf.memory = V4L2_MEMORY_MMAP;
150 cam->frame[i].buf.flags = 0;
151 }
152
153 return cam->nbuffers;
154 }
155
156
157 static void et61x251_release_buffers(struct et61x251_device* cam)
158 {
159 if (cam->nbuffers) {
160 vfree(cam->frame[0].bufmem);
161 cam->nbuffers = 0;
162 }
163 cam->frame_current = NULL;
164 }
165
166
167 static void et61x251_empty_framequeues(struct et61x251_device* cam)
168 {
169 u32 i;
170
171 INIT_LIST_HEAD(&cam->inqueue);
172 INIT_LIST_HEAD(&cam->outqueue);
173
174 for (i = 0; i < ET61X251_MAX_FRAMES; i++) {
175 cam->frame[i].state = F_UNUSED;
176 cam->frame[i].buf.bytesused = 0;
177 }
178 }
179
180
181 static void et61x251_requeue_outqueue(struct et61x251_device* cam)
182 {
183 struct et61x251_frame_t *i;
184
185 list_for_each_entry(i, &cam->outqueue, frame) {
186 i->state = F_QUEUED;
187 list_add(&i->frame, &cam->inqueue);
188 }
189
190 INIT_LIST_HEAD(&cam->outqueue);
191 }
192
193
194 static void et61x251_queue_unusedframes(struct et61x251_device* cam)
195 {
196 unsigned long lock_flags;
197 u32 i;
198
199 for (i = 0; i < cam->nbuffers; i++)
200 if (cam->frame[i].state == F_UNUSED) {
201 cam->frame[i].state = F_QUEUED;
202 spin_lock_irqsave(&cam->queue_lock, lock_flags);
203 list_add_tail(&cam->frame[i].frame, &cam->inqueue);
204 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
205 }
206 }
207
208 /*****************************************************************************/
209
210 int et61x251_write_reg(struct et61x251_device* cam, u8 value, u16 index)
211 {
212 struct usb_device* udev = cam->usbdev;
213 u8* buff = cam->control_buffer;
214 int res;
215
216 *buff = value;
217
218 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
219 0, index, buff, 1, ET61X251_CTRL_TIMEOUT);
220 if (res < 0) {
221 DBG(3, "Failed to write a register (value 0x%02X, index "
222 "0x%02X, error %d)", value, index, res);
223 return -1;
224 }
225
226 return 0;
227 }
228
229
230 int et61x251_read_reg(struct et61x251_device* cam, u16 index)
231 {
232 struct usb_device* udev = cam->usbdev;
233 u8* buff = cam->control_buffer;
234 int res;
235
236 res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x00, 0xc1,
237 0, index, buff, 1, ET61X251_CTRL_TIMEOUT);
238 if (res < 0)
239 DBG(3, "Failed to read a register (index 0x%02X, error %d)",
240 index, res);
241
242 return (res >= 0) ? (int)(*buff) : -1;
243 }
244
245
246 static int
247 et61x251_i2c_wait(struct et61x251_device* cam, struct et61x251_sensor* sensor)
248 {
249 int i, r;
250
251 for (i = 1; i <= 8; i++) {
252 if (sensor->interface == ET61X251_I2C_3WIRES) {
253 r = et61x251_read_reg(cam, 0x8e);
254 if (!(r & 0x02) && (r >= 0))
255 return 0;
256 } else {
257 r = et61x251_read_reg(cam, 0x8b);
258 if (!(r & 0x01) && (r >= 0))
259 return 0;
260 }
261 if (r < 0)
262 return -EIO;
263 udelay(8*8); /* minimum for sensors at 400kHz */
264 }
265
266 return -EBUSY;
267 }
268
269
270 int
271 et61x251_i2c_try_read(struct et61x251_device* cam,
272 struct et61x251_sensor* sensor, u8 address)
273 {
274 struct usb_device* udev = cam->usbdev;
275 u8* data = cam->control_buffer;
276 int err = 0, res;
277
278 data[0] = address;
279 data[1] = cam->sensor.i2c_slave_id;
280 data[2] = cam->sensor.rsta | 0x10;
281 data[3] = !(et61x251_read_reg(cam, 0x8b) & 0x02);
282 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
283 0, 0x88, data, 4, ET61X251_CTRL_TIMEOUT);
284 if (res < 0)
285 err += res;
286
287 err += et61x251_i2c_wait(cam, sensor);
288
289 res = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0), 0x00, 0xc1,
290 0, 0x80, data, 8, ET61X251_CTRL_TIMEOUT);
291 if (res < 0)
292 err += res;
293
294 if (err)
295 DBG(3, "I2C read failed for %s image sensor", sensor->name);
296
297 PDBGG("I2C read: address 0x%02X, value: 0x%02X", address, data[0]);
298
299 return err ? -1 : (int)data[0];
300 }
301
302
303 int
304 et61x251_i2c_try_write(struct et61x251_device* cam,
305 struct et61x251_sensor* sensor, u8 address, u8 value)
306 {
307 struct usb_device* udev = cam->usbdev;
308 u8* data = cam->control_buffer;
309 int err = 0, res;
310
311 data[0] = address;
312 data[1] = cam->sensor.i2c_slave_id;
313 data[2] = cam->sensor.rsta | 0x12;
314 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
315 0, 0x88, data, 3, ET61X251_CTRL_TIMEOUT);
316 if (res < 0)
317 err += res;
318
319 data[0] = value;
320 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
321 0, 0x80, data, 1, ET61X251_CTRL_TIMEOUT);
322 if (res < 0)
323 err += res;
324
325 err += et61x251_i2c_wait(cam, sensor);
326
327 if (err)
328 DBG(3, "I2C write failed for %s image sensor", sensor->name);
329
330 PDBGG("I2C write: address 0x%02X, value: 0x%02X", address, value);
331
332 return err ? -1 : 0;
333 }
334
335
336 int
337 et61x251_i2c_raw_write(struct et61x251_device* cam, u8 n, u8 data1, u8 data2,
338 u8 data3, u8 data4, u8 data5, u8 data6, u8 data7,
339 u8 data8, u8 address)
340 {
341 struct usb_device* udev = cam->usbdev;
342 u8* data = cam->control_buffer;
343 int err = 0, res;
344
345 data[0] = data2;
346 data[1] = data3;
347 data[2] = data4;
348 data[3] = data5;
349 data[4] = data6;
350 data[5] = data7;
351 data[6] = data8;
352 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
353 0, 0x81, data, n-1, ET61X251_CTRL_TIMEOUT);
354 if (res < 0)
355 err += res;
356
357 data[0] = address;
358 data[1] = cam->sensor.i2c_slave_id;
359 data[2] = cam->sensor.rsta | 0x02 | (n << 4);
360 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
361 0, 0x88, data, 3, ET61X251_CTRL_TIMEOUT);
362 if (res < 0)
363 err += res;
364
365 /* Start writing through the serial interface */
366 data[0] = data1;
367 res = usb_control_msg(udev, usb_sndctrlpipe(udev, 0), 0x00, 0x41,
368 0, 0x80, data, 1, ET61X251_CTRL_TIMEOUT);
369 if (res < 0)
370 err += res;
371
372 err += et61x251_i2c_wait(cam, &cam->sensor);
373
374 if (err)
375 DBG(3, "I2C raw write failed for %s image sensor",
376 cam->sensor.name);
377
378 PDBGG("I2C raw write: %u bytes, address = 0x%02X, data1 = 0x%02X, "
379 "data2 = 0x%02X, data3 = 0x%02X, data4 = 0x%02X, data5 = 0x%02X,"
380 " data6 = 0x%02X, data7 = 0x%02X, data8 = 0x%02X", n, address,
381 data1, data2, data3, data4, data5, data6, data7, data8);
382
383 return err ? -1 : 0;
384
385 }
386
387
388 int et61x251_i2c_read(struct et61x251_device* cam, u8 address)
389 {
390 return et61x251_i2c_try_read(cam, &cam->sensor, address);
391 }
392
393
394 int et61x251_i2c_write(struct et61x251_device* cam, u8 address, u8 value)
395 {
396 return et61x251_i2c_try_write(cam, &cam->sensor, address, value);
397 }
398
399 /*****************************************************************************/
400
401 static void et61x251_urb_complete(struct urb *urb)
402 {
403 struct et61x251_device* cam = urb->context;
404 struct et61x251_frame_t** f;
405 size_t imagesize;
406 u8 i;
407 int err = 0;
408
409 if (urb->status == -ENOENT)
410 return;
411
412 f = &cam->frame_current;
413
414 if (cam->stream == STREAM_INTERRUPT) {
415 cam->stream = STREAM_OFF;
416 if ((*f))
417 (*f)->state = F_QUEUED;
418 DBG(3, "Stream interrupted");
419 wake_up(&cam->wait_stream);
420 }
421
422 if (cam->state & DEV_DISCONNECTED)
423 return;
424
425 if (cam->state & DEV_MISCONFIGURED) {
426 wake_up_interruptible(&cam->wait_frame);
427 return;
428 }
429
430 if (cam->stream == STREAM_OFF || list_empty(&cam->inqueue))
431 goto resubmit_urb;
432
433 if (!(*f))
434 (*f) = list_entry(cam->inqueue.next, struct et61x251_frame_t,
435 frame);
436
437 imagesize = (cam->sensor.pix_format.width *
438 cam->sensor.pix_format.height *
439 cam->sensor.pix_format.priv) / 8;
440
441 for (i = 0; i < urb->number_of_packets; i++) {
442 unsigned int len, status;
443 void *pos;
444 u8* b1, * b2, sof;
445 const u8 VOID_BYTES = 6;
446 size_t imglen;
447
448 len = urb->iso_frame_desc[i].actual_length;
449 status = urb->iso_frame_desc[i].status;
450 pos = urb->iso_frame_desc[i].offset + urb->transfer_buffer;
451
452 if (status) {
453 DBG(3, "Error in isochronous frame");
454 (*f)->state = F_ERROR;
455 continue;
456 }
457
458 b1 = pos++;
459 b2 = pos++;
460 sof = ((*b1 & 0x3f) == 63);
461 imglen = ((*b1 & 0xc0) << 2) | *b2;
462
463 PDBGG("Isochrnous frame: length %u, #%u i, image length %zu",
464 len, i, imglen);
465
466 if ((*f)->state == F_QUEUED || (*f)->state == F_ERROR)
467 start_of_frame:
468 if (sof) {
469 (*f)->state = F_GRABBING;
470 (*f)->buf.bytesused = 0;
471 do_gettimeofday(&(*f)->buf.timestamp);
472 pos += 22;
473 DBG(3, "SOF detected: new video frame");
474 }
475
476 if ((*f)->state == F_GRABBING) {
477 if (sof && (*f)->buf.bytesused) {
478 if (cam->sensor.pix_format.pixelformat ==
479 V4L2_PIX_FMT_ET61X251)
480 goto end_of_frame;
481 else {
482 DBG(3, "Not expected SOF detected "
483 "after %lu bytes",
484 (unsigned long)(*f)->buf.bytesused);
485 (*f)->state = F_ERROR;
486 continue;
487 }
488 }
489
490 if ((*f)->buf.bytesused + imglen > imagesize) {
491 DBG(3, "Video frame size exceeded");
492 (*f)->state = F_ERROR;
493 continue;
494 }
495
496 pos += VOID_BYTES;
497
498 memcpy((*f)->bufmem+(*f)->buf.bytesused, pos, imglen);
499 (*f)->buf.bytesused += imglen;
500
501 if ((*f)->buf.bytesused == imagesize) {
502 u32 b;
503 end_of_frame:
504 b = (*f)->buf.bytesused;
505 (*f)->state = F_DONE;
506 (*f)->buf.sequence= ++cam->frame_count;
507 spin_lock(&cam->queue_lock);
508 list_move_tail(&(*f)->frame, &cam->outqueue);
509 if (!list_empty(&cam->inqueue))
510 (*f) = list_entry(cam->inqueue.next,
511 struct et61x251_frame_t,
512 frame);
513 else
514 (*f) = NULL;
515 spin_unlock(&cam->queue_lock);
516 DBG(3, "Video frame captured: : %lu bytes",
517 (unsigned long)(b));
518
519 if (!(*f))
520 goto resubmit_urb;
521
522 if (sof &&
523 cam->sensor.pix_format.pixelformat ==
524 V4L2_PIX_FMT_ET61X251)
525 goto start_of_frame;
526 }
527 }
528 }
529
530 resubmit_urb:
531 urb->dev = cam->usbdev;
532 err = usb_submit_urb(urb, GFP_ATOMIC);
533 if (err < 0 && err != -EPERM) {
534 cam->state |= DEV_MISCONFIGURED;
535 DBG(1, "usb_submit_urb() failed");
536 }
537
538 wake_up_interruptible(&cam->wait_frame);
539 }
540
541
542 static int et61x251_start_transfer(struct et61x251_device* cam)
543 {
544 struct usb_device *udev = cam->usbdev;
545 struct urb* urb;
546 const unsigned int wMaxPacketSize[] = {0, 256, 384, 512, 640, 768, 832,
547 864, 896, 920, 956, 980, 1000,
548 1022};
549 const unsigned int psz = wMaxPacketSize[ET61X251_ALTERNATE_SETTING];
550 s8 i, j;
551 int err = 0;
552
553 for (i = 0; i < ET61X251_URBS; i++) {
554 cam->transfer_buffer[i] = kzalloc(ET61X251_ISO_PACKETS * psz,
555 GFP_KERNEL);
556 if (!cam->transfer_buffer[i]) {
557 err = -ENOMEM;
558 DBG(1, "Not enough memory");
559 goto free_buffers;
560 }
561 }
562
563 for (i = 0; i < ET61X251_URBS; i++) {
564 urb = usb_alloc_urb(ET61X251_ISO_PACKETS, GFP_KERNEL);
565 cam->urb[i] = urb;
566 if (!urb) {
567 err = -ENOMEM;
568 DBG(1, "usb_alloc_urb() failed");
569 goto free_urbs;
570 }
571 urb->dev = udev;
572 urb->context = cam;
573 urb->pipe = usb_rcvisocpipe(udev, 1);
574 urb->transfer_flags = URB_ISO_ASAP;
575 urb->number_of_packets = ET61X251_ISO_PACKETS;
576 urb->complete = et61x251_urb_complete;
577 urb->transfer_buffer = cam->transfer_buffer[i];
578 urb->transfer_buffer_length = psz * ET61X251_ISO_PACKETS;
579 urb->interval = 1;
580 for (j = 0; j < ET61X251_ISO_PACKETS; j++) {
581 urb->iso_frame_desc[j].offset = psz * j;
582 urb->iso_frame_desc[j].length = psz;
583 }
584 }
585
586 err = et61x251_write_reg(cam, 0x01, 0x03);
587 err = et61x251_write_reg(cam, 0x00, 0x03);
588 err = et61x251_write_reg(cam, 0x08, 0x03);
589 if (err) {
590 err = -EIO;
591 DBG(1, "I/O hardware error");
592 goto free_urbs;
593 }
594
595 err = usb_set_interface(udev, 0, ET61X251_ALTERNATE_SETTING);
596 if (err) {
597 DBG(1, "usb_set_interface() failed");
598 goto free_urbs;
599 }
600
601 cam->frame_current = NULL;
602
603 for (i = 0; i < ET61X251_URBS; i++) {
604 err = usb_submit_urb(cam->urb[i], GFP_KERNEL);
605 if (err) {
606 for (j = i-1; j >= 0; j--)
607 usb_kill_urb(cam->urb[j]);
608 DBG(1, "usb_submit_urb() failed, error %d", err);
609 goto free_urbs;
610 }
611 }
612
613 return 0;
614
615 free_urbs:
616 for (i = 0; (i < ET61X251_URBS) && cam->urb[i]; i++)
617 usb_free_urb(cam->urb[i]);
618
619 free_buffers:
620 for (i = 0; (i < ET61X251_URBS) && cam->transfer_buffer[i]; i++)
621 kfree(cam->transfer_buffer[i]);
622
623 return err;
624 }
625
626
627 static int et61x251_stop_transfer(struct et61x251_device* cam)
628 {
629 struct usb_device *udev = cam->usbdev;
630 s8 i;
631 int err = 0;
632
633 if (cam->state & DEV_DISCONNECTED)
634 return 0;
635
636 for (i = ET61X251_URBS-1; i >= 0; i--) {
637 usb_kill_urb(cam->urb[i]);
638 usb_free_urb(cam->urb[i]);
639 kfree(cam->transfer_buffer[i]);
640 }
641
642 err = usb_set_interface(udev, 0, 0); /* 0 Mb/s */
643 if (err)
644 DBG(3, "usb_set_interface() failed");
645
646 return err;
647 }
648
649
650 static int et61x251_stream_interrupt(struct et61x251_device* cam)
651 {
652 long timeout;
653
654 cam->stream = STREAM_INTERRUPT;
655 timeout = wait_event_timeout(cam->wait_stream,
656 (cam->stream == STREAM_OFF) ||
657 (cam->state & DEV_DISCONNECTED),
658 ET61X251_URB_TIMEOUT);
659 if (cam->state & DEV_DISCONNECTED)
660 return -ENODEV;
661 else if (cam->stream != STREAM_OFF) {
662 cam->state |= DEV_MISCONFIGURED;
663 DBG(1, "URB timeout reached. The camera is misconfigured. To "
664 "use it, close and open /dev/video%d again.",
665 cam->v4ldev->minor);
666 return -EIO;
667 }
668
669 return 0;
670 }
671
672 /*****************************************************************************/
673
674 #ifdef CONFIG_VIDEO_ADV_DEBUG
675 static u8 et61x251_strtou8(const char* buff, size_t len, ssize_t* count)
676 {
677 char str[5];
678 char* endp;
679 unsigned long val;
680
681 if (len < 4) {
682 strncpy(str, buff, len);
683 str[len+1] = '\0';
684 } else {
685 strncpy(str, buff, 4);
686 str[4] = '\0';
687 }
688
689 val = simple_strtoul(str, &endp, 0);
690
691 *count = 0;
692 if (val <= 0xff)
693 *count = (ssize_t)(endp - str);
694 if ((*count) && (len == *count+1) && (buff[*count] == '\n'))
695 *count += 1;
696
697 return (u8)val;
698 }
699
700 /*
701 NOTE 1: being inside one of the following methods implies that the v4l
702 device exists for sure (see kobjects and reference counters)
703 NOTE 2: buffers are PAGE_SIZE long
704 */
705
706 static ssize_t et61x251_show_reg(struct class_device* cd, char* buf)
707 {
708 struct et61x251_device* cam;
709 ssize_t count;
710
711 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
712 return -ERESTARTSYS;
713
714 cam = video_get_drvdata(to_video_device(cd));
715 if (!cam) {
716 mutex_unlock(&et61x251_sysfs_lock);
717 return -ENODEV;
718 }
719
720 count = sprintf(buf, "%u\n", cam->sysfs.reg);
721
722 mutex_unlock(&et61x251_sysfs_lock);
723
724 return count;
725 }
726
727
728 static ssize_t
729 et61x251_store_reg(struct class_device* cd, const char* buf, size_t len)
730 {
731 struct et61x251_device* cam;
732 u8 index;
733 ssize_t count;
734
735 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
736 return -ERESTARTSYS;
737
738 cam = video_get_drvdata(to_video_device(cd));
739 if (!cam) {
740 mutex_unlock(&et61x251_sysfs_lock);
741 return -ENODEV;
742 }
743
744 index = et61x251_strtou8(buf, len, &count);
745 if (index > 0x8e || !count) {
746 mutex_unlock(&et61x251_sysfs_lock);
747 return -EINVAL;
748 }
749
750 cam->sysfs.reg = index;
751
752 DBG(2, "Moved ET61X[12]51 register index to 0x%02X", cam->sysfs.reg);
753 DBG(3, "Written bytes: %zd", count);
754
755 mutex_unlock(&et61x251_sysfs_lock);
756
757 return count;
758 }
759
760
761 static ssize_t et61x251_show_val(struct class_device* cd, char* buf)
762 {
763 struct et61x251_device* cam;
764 ssize_t count;
765 int val;
766
767 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
768 return -ERESTARTSYS;
769
770 cam = video_get_drvdata(to_video_device(cd));
771 if (!cam) {
772 mutex_unlock(&et61x251_sysfs_lock);
773 return -ENODEV;
774 }
775
776 if ((val = et61x251_read_reg(cam, cam->sysfs.reg)) < 0) {
777 mutex_unlock(&et61x251_sysfs_lock);
778 return -EIO;
779 }
780
781 count = sprintf(buf, "%d\n", val);
782
783 DBG(3, "Read bytes: %zd", count);
784
785 mutex_unlock(&et61x251_sysfs_lock);
786
787 return count;
788 }
789
790
791 static ssize_t
792 et61x251_store_val(struct class_device* cd, const char* buf, size_t len)
793 {
794 struct et61x251_device* cam;
795 u8 value;
796 ssize_t count;
797 int err;
798
799 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
800 return -ERESTARTSYS;
801
802 cam = video_get_drvdata(to_video_device(cd));
803 if (!cam) {
804 mutex_unlock(&et61x251_sysfs_lock);
805 return -ENODEV;
806 }
807
808 value = et61x251_strtou8(buf, len, &count);
809 if (!count) {
810 mutex_unlock(&et61x251_sysfs_lock);
811 return -EINVAL;
812 }
813
814 err = et61x251_write_reg(cam, value, cam->sysfs.reg);
815 if (err) {
816 mutex_unlock(&et61x251_sysfs_lock);
817 return -EIO;
818 }
819
820 DBG(2, "Written ET61X[12]51 reg. 0x%02X, val. 0x%02X",
821 cam->sysfs.reg, value);
822 DBG(3, "Written bytes: %zd", count);
823
824 mutex_unlock(&et61x251_sysfs_lock);
825
826 return count;
827 }
828
829
830 static ssize_t et61x251_show_i2c_reg(struct class_device* cd, char* buf)
831 {
832 struct et61x251_device* cam;
833 ssize_t count;
834
835 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
836 return -ERESTARTSYS;
837
838 cam = video_get_drvdata(to_video_device(cd));
839 if (!cam) {
840 mutex_unlock(&et61x251_sysfs_lock);
841 return -ENODEV;
842 }
843
844 count = sprintf(buf, "%u\n", cam->sysfs.i2c_reg);
845
846 DBG(3, "Read bytes: %zd", count);
847
848 mutex_unlock(&et61x251_sysfs_lock);
849
850 return count;
851 }
852
853
854 static ssize_t
855 et61x251_store_i2c_reg(struct class_device* cd, const char* buf, size_t len)
856 {
857 struct et61x251_device* cam;
858 u8 index;
859 ssize_t count;
860
861 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
862 return -ERESTARTSYS;
863
864 cam = video_get_drvdata(to_video_device(cd));
865 if (!cam) {
866 mutex_unlock(&et61x251_sysfs_lock);
867 return -ENODEV;
868 }
869
870 index = et61x251_strtou8(buf, len, &count);
871 if (!count) {
872 mutex_unlock(&et61x251_sysfs_lock);
873 return -EINVAL;
874 }
875
876 cam->sysfs.i2c_reg = index;
877
878 DBG(2, "Moved sensor register index to 0x%02X", cam->sysfs.i2c_reg);
879 DBG(3, "Written bytes: %zd", count);
880
881 mutex_unlock(&et61x251_sysfs_lock);
882
883 return count;
884 }
885
886
887 static ssize_t et61x251_show_i2c_val(struct class_device* cd, char* buf)
888 {
889 struct et61x251_device* cam;
890 ssize_t count;
891 int val;
892
893 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
894 return -ERESTARTSYS;
895
896 cam = video_get_drvdata(to_video_device(cd));
897 if (!cam) {
898 mutex_unlock(&et61x251_sysfs_lock);
899 return -ENODEV;
900 }
901
902 if (!(cam->sensor.sysfs_ops & ET61X251_I2C_READ)) {
903 mutex_unlock(&et61x251_sysfs_lock);
904 return -ENOSYS;
905 }
906
907 if ((val = et61x251_i2c_read(cam, cam->sysfs.i2c_reg)) < 0) {
908 mutex_unlock(&et61x251_sysfs_lock);
909 return -EIO;
910 }
911
912 count = sprintf(buf, "%d\n", val);
913
914 DBG(3, "Read bytes: %zd", count);
915
916 mutex_unlock(&et61x251_sysfs_lock);
917
918 return count;
919 }
920
921
922 static ssize_t
923 et61x251_store_i2c_val(struct class_device* cd, const char* buf, size_t len)
924 {
925 struct et61x251_device* cam;
926 u8 value;
927 ssize_t count;
928 int err;
929
930 if (mutex_lock_interruptible(&et61x251_sysfs_lock))
931 return -ERESTARTSYS;
932
933 cam = video_get_drvdata(to_video_device(cd));
934 if (!cam) {
935 mutex_unlock(&et61x251_sysfs_lock);
936 return -ENODEV;
937 }
938
939 if (!(cam->sensor.sysfs_ops & ET61X251_I2C_READ)) {
940 mutex_unlock(&et61x251_sysfs_lock);
941 return -ENOSYS;
942 }
943
944 value = et61x251_strtou8(buf, len, &count);
945 if (!count) {
946 mutex_unlock(&et61x251_sysfs_lock);
947 return -EINVAL;
948 }
949
950 err = et61x251_i2c_write(cam, cam->sysfs.i2c_reg, value);
951 if (err) {
952 mutex_unlock(&et61x251_sysfs_lock);
953 return -EIO;
954 }
955
956 DBG(2, "Written sensor reg. 0x%02X, val. 0x%02X",
957 cam->sysfs.i2c_reg, value);
958 DBG(3, "Written bytes: %zd", count);
959
960 mutex_unlock(&et61x251_sysfs_lock);
961
962 return count;
963 }
964
965
966 static CLASS_DEVICE_ATTR(reg, S_IRUGO | S_IWUSR,
967 et61x251_show_reg, et61x251_store_reg);
968 static CLASS_DEVICE_ATTR(val, S_IRUGO | S_IWUSR,
969 et61x251_show_val, et61x251_store_val);
970 static CLASS_DEVICE_ATTR(i2c_reg, S_IRUGO | S_IWUSR,
971 et61x251_show_i2c_reg, et61x251_store_i2c_reg);
972 static CLASS_DEVICE_ATTR(i2c_val, S_IRUGO | S_IWUSR,
973 et61x251_show_i2c_val, et61x251_store_i2c_val);
974
975
976 static int et61x251_create_sysfs(struct et61x251_device* cam)
977 {
978 struct video_device *v4ldev = cam->v4ldev;
979 int rc;
980
981 rc = video_device_create_file(v4ldev, &class_device_attr_reg);
982 if (rc) goto err;
983 rc = video_device_create_file(v4ldev, &class_device_attr_val);
984 if (rc) goto err_reg;
985 if (cam->sensor.sysfs_ops) {
986 rc = video_device_create_file(v4ldev, &class_device_attr_i2c_reg);
987 if (rc) goto err_val;
988 rc = video_device_create_file(v4ldev, &class_device_attr_i2c_val);
989 if (rc) goto err_i2c_reg;
990 }
991
992 return 0;
993
994 err_i2c_reg:
995 video_device_remove_file(v4ldev, &class_device_attr_i2c_reg);
996 err_val:
997 video_device_remove_file(v4ldev, &class_device_attr_val);
998 err_reg:
999 video_device_remove_file(v4ldev, &class_device_attr_reg);
1000 err:
1001 return rc;
1002 }
1003 #endif /* CONFIG_VIDEO_ADV_DEBUG */
1004
1005 /*****************************************************************************/
1006
1007 static int
1008 et61x251_set_pix_format(struct et61x251_device* cam,
1009 struct v4l2_pix_format* pix)
1010 {
1011 int r, err = 0;
1012
1013 if ((r = et61x251_read_reg(cam, 0x12)) < 0)
1014 err += r;
1015 if (pix->pixelformat == V4L2_PIX_FMT_ET61X251)
1016 err += et61x251_write_reg(cam, r & 0xfd, 0x12);
1017 else
1018 err += et61x251_write_reg(cam, r | 0x02, 0x12);
1019
1020 return err ? -EIO : 0;
1021 }
1022
1023
1024 static int
1025 et61x251_set_compression(struct et61x251_device* cam,
1026 struct v4l2_jpegcompression* compression)
1027 {
1028 int r, err = 0;
1029
1030 if ((r = et61x251_read_reg(cam, 0x12)) < 0)
1031 err += r;
1032 if (compression->quality == 0)
1033 err += et61x251_write_reg(cam, r & 0xfb, 0x12);
1034 else
1035 err += et61x251_write_reg(cam, r | 0x04, 0x12);
1036
1037 return err ? -EIO : 0;
1038 }
1039
1040
1041 static int et61x251_set_scale(struct et61x251_device* cam, u8 scale)
1042 {
1043 int r = 0, err = 0;
1044
1045 r = et61x251_read_reg(cam, 0x12);
1046 if (r < 0)
1047 err += r;
1048
1049 if (scale == 1)
1050 err += et61x251_write_reg(cam, r & ~0x01, 0x12);
1051 else if (scale == 2)
1052 err += et61x251_write_reg(cam, r | 0x01, 0x12);
1053
1054 if (err)
1055 return -EIO;
1056
1057 PDBGG("Scaling factor: %u", scale);
1058
1059 return 0;
1060 }
1061
1062
1063 static int
1064 et61x251_set_crop(struct et61x251_device* cam, struct v4l2_rect* rect)
1065 {
1066 struct et61x251_sensor* s = &cam->sensor;
1067 u16 fmw_sx = (u16)(rect->left - s->cropcap.bounds.left +
1068 s->active_pixel.left),
1069 fmw_sy = (u16)(rect->top - s->cropcap.bounds.top +
1070 s->active_pixel.top),
1071 fmw_length = (u16)(rect->width),
1072 fmw_height = (u16)(rect->height);
1073 int err = 0;
1074
1075 err += et61x251_write_reg(cam, fmw_sx & 0xff, 0x69);
1076 err += et61x251_write_reg(cam, fmw_sy & 0xff, 0x6a);
1077 err += et61x251_write_reg(cam, fmw_length & 0xff, 0x6b);
1078 err += et61x251_write_reg(cam, fmw_height & 0xff, 0x6c);
1079 err += et61x251_write_reg(cam, (fmw_sx >> 8) | ((fmw_sy & 0x300) >> 6)
1080 | ((fmw_length & 0x300) >> 4)
1081 | ((fmw_height & 0x300) >> 2), 0x6d);
1082 if (err)
1083 return -EIO;
1084
1085 PDBGG("fmw_sx, fmw_sy, fmw_length, fmw_height: %u %u %u %u",
1086 fmw_sx, fmw_sy, fmw_length, fmw_height);
1087
1088 return 0;
1089 }
1090
1091
1092 static int et61x251_init(struct et61x251_device* cam)
1093 {
1094 struct et61x251_sensor* s = &cam->sensor;
1095 struct v4l2_control ctrl;
1096 struct v4l2_queryctrl *qctrl;
1097 struct v4l2_rect* rect;
1098 u8 i = 0;
1099 int err = 0;
1100
1101 if (!(cam->state & DEV_INITIALIZED)) {
1102 init_waitqueue_head(&cam->open);
1103 qctrl = s->qctrl;
1104 rect = &(s->cropcap.defrect);
1105 cam->compression.quality = ET61X251_COMPRESSION_QUALITY;
1106 } else { /* use current values */
1107 qctrl = s->_qctrl;
1108 rect = &(s->_rect);
1109 }
1110
1111 err += et61x251_set_scale(cam, rect->width / s->pix_format.width);
1112 err += et61x251_set_crop(cam, rect);
1113 if (err)
1114 return err;
1115
1116 if (s->init) {
1117 err = s->init(cam);
1118 if (err) {
1119 DBG(3, "Sensor initialization failed");
1120 return err;
1121 }
1122 }
1123
1124 err += et61x251_set_compression(cam, &cam->compression);
1125 err += et61x251_set_pix_format(cam, &s->pix_format);
1126 if (s->set_pix_format)
1127 err += s->set_pix_format(cam, &s->pix_format);
1128 if (err)
1129 return err;
1130
1131 if (s->pix_format.pixelformat == V4L2_PIX_FMT_ET61X251)
1132 DBG(3, "Compressed video format is active, quality %d",
1133 cam->compression.quality);
1134 else
1135 DBG(3, "Uncompressed video format is active");
1136
1137 if (s->set_crop)
1138 if ((err = s->set_crop(cam, rect))) {
1139 DBG(3, "set_crop() failed");
1140 return err;
1141 }
1142
1143 if (s->set_ctrl) {
1144 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1145 if (s->qctrl[i].id != 0 &&
1146 !(s->qctrl[i].flags & V4L2_CTRL_FLAG_DISABLED)) {
1147 ctrl.id = s->qctrl[i].id;
1148 ctrl.value = qctrl[i].default_value;
1149 err = s->set_ctrl(cam, &ctrl);
1150 if (err) {
1151 DBG(3, "Set %s control failed",
1152 s->qctrl[i].name);
1153 return err;
1154 }
1155 DBG(3, "Image sensor supports '%s' control",
1156 s->qctrl[i].name);
1157 }
1158 }
1159
1160 if (!(cam->state & DEV_INITIALIZED)) {
1161 mutex_init(&cam->fileop_mutex);
1162 spin_lock_init(&cam->queue_lock);
1163 init_waitqueue_head(&cam->wait_frame);
1164 init_waitqueue_head(&cam->wait_stream);
1165 cam->nreadbuffers = 2;
1166 memcpy(s->_qctrl, s->qctrl, sizeof(s->qctrl));
1167 memcpy(&(s->_rect), &(s->cropcap.defrect),
1168 sizeof(struct v4l2_rect));
1169 cam->state |= DEV_INITIALIZED;
1170 }
1171
1172 DBG(2, "Initialization succeeded");
1173 return 0;
1174 }
1175
1176
1177 static void et61x251_release_resources(struct et61x251_device* cam)
1178 {
1179 mutex_lock(&et61x251_sysfs_lock);
1180
1181 DBG(2, "V4L2 device /dev/video%d deregistered", cam->v4ldev->minor);
1182 video_set_drvdata(cam->v4ldev, NULL);
1183 video_unregister_device(cam->v4ldev);
1184
1185 usb_put_dev(cam->usbdev);
1186
1187 mutex_unlock(&et61x251_sysfs_lock);
1188
1189 kfree(cam->control_buffer);
1190 }
1191
1192 /*****************************************************************************/
1193
1194 static int et61x251_open(struct inode* inode, struct file* filp)
1195 {
1196 struct et61x251_device* cam;
1197 int err = 0;
1198
1199 /*
1200 This is the only safe way to prevent race conditions with
1201 disconnect
1202 */
1203 if (!down_read_trylock(&et61x251_disconnect))
1204 return -ERESTARTSYS;
1205
1206 cam = video_get_drvdata(video_devdata(filp));
1207
1208 if (mutex_lock_interruptible(&cam->dev_mutex)) {
1209 up_read(&et61x251_disconnect);
1210 return -ERESTARTSYS;
1211 }
1212
1213 if (cam->users) {
1214 DBG(2, "Device /dev/video%d is busy...", cam->v4ldev->minor);
1215 if ((filp->f_flags & O_NONBLOCK) ||
1216 (filp->f_flags & O_NDELAY)) {
1217 err = -EWOULDBLOCK;
1218 goto out;
1219 }
1220 mutex_unlock(&cam->dev_mutex);
1221 err = wait_event_interruptible_exclusive(cam->open,
1222 cam->state & DEV_DISCONNECTED
1223 || !cam->users);
1224 if (err) {
1225 up_read(&et61x251_disconnect);
1226 return err;
1227 }
1228 if (cam->state & DEV_DISCONNECTED) {
1229 up_read(&et61x251_disconnect);
1230 return -ENODEV;
1231 }
1232 mutex_lock(&cam->dev_mutex);
1233 }
1234
1235
1236 if (cam->state & DEV_MISCONFIGURED) {
1237 err = et61x251_init(cam);
1238 if (err) {
1239 DBG(1, "Initialization failed again. "
1240 "I will retry on next open().");
1241 goto out;
1242 }
1243 cam->state &= ~DEV_MISCONFIGURED;
1244 }
1245
1246 if ((err = et61x251_start_transfer(cam)))
1247 goto out;
1248
1249 filp->private_data = cam;
1250 cam->users++;
1251 cam->io = IO_NONE;
1252 cam->stream = STREAM_OFF;
1253 cam->nbuffers = 0;
1254 cam->frame_count = 0;
1255 et61x251_empty_framequeues(cam);
1256
1257 DBG(3, "Video device /dev/video%d is open", cam->v4ldev->minor);
1258
1259 out:
1260 mutex_unlock(&cam->dev_mutex);
1261 up_read(&et61x251_disconnect);
1262 return err;
1263 }
1264
1265
1266 static int et61x251_release(struct inode* inode, struct file* filp)
1267 {
1268 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1269
1270 mutex_lock(&cam->dev_mutex); /* prevent disconnect() to be called */
1271
1272 et61x251_stop_transfer(cam);
1273
1274 et61x251_release_buffers(cam);
1275
1276 if (cam->state & DEV_DISCONNECTED) {
1277 et61x251_release_resources(cam);
1278 mutex_unlock(&cam->dev_mutex);
1279 kfree(cam);
1280 return 0;
1281 }
1282
1283 cam->users--;
1284 wake_up_interruptible_nr(&cam->open, 1);
1285
1286 DBG(3, "Video device /dev/video%d closed", cam->v4ldev->minor);
1287
1288 mutex_unlock(&cam->dev_mutex);
1289
1290 return 0;
1291 }
1292
1293
1294 static ssize_t
1295 et61x251_read(struct file* filp, char __user * buf,
1296 size_t count, loff_t* f_pos)
1297 {
1298 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1299 struct et61x251_frame_t* f, * i;
1300 unsigned long lock_flags;
1301 long timeout;
1302 int err = 0;
1303
1304 if (mutex_lock_interruptible(&cam->fileop_mutex))
1305 return -ERESTARTSYS;
1306
1307 if (cam->state & DEV_DISCONNECTED) {
1308 DBG(1, "Device not present");
1309 mutex_unlock(&cam->fileop_mutex);
1310 return -ENODEV;
1311 }
1312
1313 if (cam->state & DEV_MISCONFIGURED) {
1314 DBG(1, "The camera is misconfigured. Close and open it "
1315 "again.");
1316 mutex_unlock(&cam->fileop_mutex);
1317 return -EIO;
1318 }
1319
1320 if (cam->io == IO_MMAP) {
1321 DBG(3, "Close and open the device again to choose the read "
1322 "method");
1323 mutex_unlock(&cam->fileop_mutex);
1324 return -EINVAL;
1325 }
1326
1327 if (cam->io == IO_NONE) {
1328 if (!et61x251_request_buffers(cam, cam->nreadbuffers,
1329 IO_READ)) {
1330 DBG(1, "read() failed, not enough memory");
1331 mutex_unlock(&cam->fileop_mutex);
1332 return -ENOMEM;
1333 }
1334 cam->io = IO_READ;
1335 cam->stream = STREAM_ON;
1336 }
1337
1338 if (list_empty(&cam->inqueue)) {
1339 if (!list_empty(&cam->outqueue))
1340 et61x251_empty_framequeues(cam);
1341 et61x251_queue_unusedframes(cam);
1342 }
1343
1344 if (!count) {
1345 mutex_unlock(&cam->fileop_mutex);
1346 return 0;
1347 }
1348
1349 if (list_empty(&cam->outqueue)) {
1350 if (filp->f_flags & O_NONBLOCK) {
1351 mutex_unlock(&cam->fileop_mutex);
1352 return -EAGAIN;
1353 }
1354 timeout = wait_event_interruptible_timeout
1355 ( cam->wait_frame,
1356 (!list_empty(&cam->outqueue)) ||
1357 (cam->state & DEV_DISCONNECTED) ||
1358 (cam->state & DEV_MISCONFIGURED),
1359 cam->module_param.frame_timeout *
1360 1000 * msecs_to_jiffies(1) );
1361 if (timeout < 0) {
1362 mutex_unlock(&cam->fileop_mutex);
1363 return timeout;
1364 }
1365 if (cam->state & DEV_DISCONNECTED) {
1366 mutex_unlock(&cam->fileop_mutex);
1367 return -ENODEV;
1368 }
1369 if (!timeout || (cam->state & DEV_MISCONFIGURED)) {
1370 mutex_unlock(&cam->fileop_mutex);
1371 return -EIO;
1372 }
1373 }
1374
1375 f = list_entry(cam->outqueue.prev, struct et61x251_frame_t, frame);
1376
1377 if (count > f->buf.bytesused)
1378 count = f->buf.bytesused;
1379
1380 if (copy_to_user(buf, f->bufmem, count)) {
1381 err = -EFAULT;
1382 goto exit;
1383 }
1384 *f_pos += count;
1385
1386 exit:
1387 spin_lock_irqsave(&cam->queue_lock, lock_flags);
1388 list_for_each_entry(i, &cam->outqueue, frame)
1389 i->state = F_UNUSED;
1390 INIT_LIST_HEAD(&cam->outqueue);
1391 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
1392
1393 et61x251_queue_unusedframes(cam);
1394
1395 PDBGG("Frame #%lu, bytes read: %zu",
1396 (unsigned long)f->buf.index, count);
1397
1398 mutex_unlock(&cam->fileop_mutex);
1399
1400 return err ? err : count;
1401 }
1402
1403
1404 static unsigned int et61x251_poll(struct file *filp, poll_table *wait)
1405 {
1406 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1407 struct et61x251_frame_t* f;
1408 unsigned long lock_flags;
1409 unsigned int mask = 0;
1410
1411 if (mutex_lock_interruptible(&cam->fileop_mutex))
1412 return POLLERR;
1413
1414 if (cam->state & DEV_DISCONNECTED) {
1415 DBG(1, "Device not present");
1416 goto error;
1417 }
1418
1419 if (cam->state & DEV_MISCONFIGURED) {
1420 DBG(1, "The camera is misconfigured. Close and open it "
1421 "again.");
1422 goto error;
1423 }
1424
1425 if (cam->io == IO_NONE) {
1426 if (!et61x251_request_buffers(cam, cam->nreadbuffers,
1427 IO_READ)) {
1428 DBG(1, "poll() failed, not enough memory");
1429 goto error;
1430 }
1431 cam->io = IO_READ;
1432 cam->stream = STREAM_ON;
1433 }
1434
1435 if (cam->io == IO_READ) {
1436 spin_lock_irqsave(&cam->queue_lock, lock_flags);
1437 list_for_each_entry(f, &cam->outqueue, frame)
1438 f->state = F_UNUSED;
1439 INIT_LIST_HEAD(&cam->outqueue);
1440 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
1441 et61x251_queue_unusedframes(cam);
1442 }
1443
1444 poll_wait(filp, &cam->wait_frame, wait);
1445
1446 if (!list_empty(&cam->outqueue))
1447 mask |= POLLIN | POLLRDNORM;
1448
1449 mutex_unlock(&cam->fileop_mutex);
1450
1451 return mask;
1452
1453 error:
1454 mutex_unlock(&cam->fileop_mutex);
1455 return POLLERR;
1456 }
1457
1458
1459 static void et61x251_vm_open(struct vm_area_struct* vma)
1460 {
1461 struct et61x251_frame_t* f = vma->vm_private_data;
1462 f->vma_use_count++;
1463 }
1464
1465
1466 static void et61x251_vm_close(struct vm_area_struct* vma)
1467 {
1468 /* NOTE: buffers are not freed here */
1469 struct et61x251_frame_t* f = vma->vm_private_data;
1470 f->vma_use_count--;
1471 }
1472
1473
1474 static struct vm_operations_struct et61x251_vm_ops = {
1475 .open = et61x251_vm_open,
1476 .close = et61x251_vm_close,
1477 };
1478
1479
1480 static int et61x251_mmap(struct file* filp, struct vm_area_struct *vma)
1481 {
1482 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
1483 unsigned long size = vma->vm_end - vma->vm_start,
1484 start = vma->vm_start;
1485 void *pos;
1486 u32 i;
1487
1488 if (mutex_lock_interruptible(&cam->fileop_mutex))
1489 return -ERESTARTSYS;
1490
1491 if (cam->state & DEV_DISCONNECTED) {
1492 DBG(1, "Device not present");
1493 mutex_unlock(&cam->fileop_mutex);
1494 return -ENODEV;
1495 }
1496
1497 if (cam->state & DEV_MISCONFIGURED) {
1498 DBG(1, "The camera is misconfigured. Close and open it "
1499 "again.");
1500 mutex_unlock(&cam->fileop_mutex);
1501 return -EIO;
1502 }
1503
1504 if (cam->io != IO_MMAP || !(vma->vm_flags & VM_WRITE) ||
1505 size != PAGE_ALIGN(cam->frame[0].buf.length)) {
1506 mutex_unlock(&cam->fileop_mutex);
1507 return -EINVAL;
1508 }
1509
1510 for (i = 0; i < cam->nbuffers; i++) {
1511 if ((cam->frame[i].buf.m.offset>>PAGE_SHIFT) == vma->vm_pgoff)
1512 break;
1513 }
1514 if (i == cam->nbuffers) {
1515 mutex_unlock(&cam->fileop_mutex);
1516 return -EINVAL;
1517 }
1518
1519 vma->vm_flags |= VM_IO;
1520 vma->vm_flags |= VM_RESERVED;
1521
1522 pos = cam->frame[i].bufmem;
1523 while (size > 0) { /* size is page-aligned */
1524 if (vm_insert_page(vma, start, vmalloc_to_page(pos))) {
1525 mutex_unlock(&cam->fileop_mutex);
1526 return -EAGAIN;
1527 }
1528 start += PAGE_SIZE;
1529 pos += PAGE_SIZE;
1530 size -= PAGE_SIZE;
1531 }
1532
1533 vma->vm_ops = &et61x251_vm_ops;
1534 vma->vm_private_data = &cam->frame[i];
1535
1536 et61x251_vm_open(vma);
1537
1538 mutex_unlock(&cam->fileop_mutex);
1539
1540 return 0;
1541 }
1542
1543 /*****************************************************************************/
1544
1545 static int
1546 et61x251_vidioc_querycap(struct et61x251_device* cam, void __user * arg)
1547 {
1548 struct v4l2_capability cap = {
1549 .driver = "et61x251",
1550 .version = ET61X251_MODULE_VERSION_CODE,
1551 .capabilities = V4L2_CAP_VIDEO_CAPTURE | V4L2_CAP_READWRITE |
1552 V4L2_CAP_STREAMING,
1553 };
1554
1555 strlcpy(cap.card, cam->v4ldev->name, sizeof(cap.card));
1556 if (usb_make_path(cam->usbdev, cap.bus_info, sizeof(cap.bus_info)) < 0)
1557 strlcpy(cap.bus_info, cam->usbdev->dev.bus_id,
1558 sizeof(cap.bus_info));
1559
1560 if (copy_to_user(arg, &cap, sizeof(cap)))
1561 return -EFAULT;
1562
1563 return 0;
1564 }
1565
1566
1567 static int
1568 et61x251_vidioc_enuminput(struct et61x251_device* cam, void __user * arg)
1569 {
1570 struct v4l2_input i;
1571
1572 if (copy_from_user(&i, arg, sizeof(i)))
1573 return -EFAULT;
1574
1575 if (i.index)
1576 return -EINVAL;
1577
1578 memset(&i, 0, sizeof(i));
1579 strcpy(i.name, "Camera");
1580 i.type = V4L2_INPUT_TYPE_CAMERA;
1581
1582 if (copy_to_user(arg, &i, sizeof(i)))
1583 return -EFAULT;
1584
1585 return 0;
1586 }
1587
1588
1589 static int
1590 et61x251_vidioc_g_input(struct et61x251_device* cam, void __user * arg)
1591 {
1592 int index = 0;
1593
1594 if (copy_to_user(arg, &index, sizeof(index)))
1595 return -EFAULT;
1596
1597 return 0;
1598 }
1599
1600
1601 static int
1602 et61x251_vidioc_s_input(struct et61x251_device* cam, void __user * arg)
1603 {
1604 int index;
1605
1606 if (copy_from_user(&index, arg, sizeof(index)))
1607 return -EFAULT;
1608
1609 if (index != 0)
1610 return -EINVAL;
1611
1612 return 0;
1613 }
1614
1615
1616 static int
1617 et61x251_vidioc_query_ctrl(struct et61x251_device* cam, void __user * arg)
1618 {
1619 struct et61x251_sensor* s = &cam->sensor;
1620 struct v4l2_queryctrl qc;
1621 u8 i;
1622
1623 if (copy_from_user(&qc, arg, sizeof(qc)))
1624 return -EFAULT;
1625
1626 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1627 if (qc.id && qc.id == s->qctrl[i].id) {
1628 memcpy(&qc, &(s->qctrl[i]), sizeof(qc));
1629 if (copy_to_user(arg, &qc, sizeof(qc)))
1630 return -EFAULT;
1631 return 0;
1632 }
1633
1634 return -EINVAL;
1635 }
1636
1637
1638 static int
1639 et61x251_vidioc_g_ctrl(struct et61x251_device* cam, void __user * arg)
1640 {
1641 struct et61x251_sensor* s = &cam->sensor;
1642 struct v4l2_control ctrl;
1643 int err = 0;
1644 u8 i;
1645
1646 if (!s->get_ctrl && !s->set_ctrl)
1647 return -EINVAL;
1648
1649 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1650 return -EFAULT;
1651
1652 if (!s->get_ctrl) {
1653 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1654 if (ctrl.id == s->qctrl[i].id) {
1655 ctrl.value = s->_qctrl[i].default_value;
1656 goto exit;
1657 }
1658 return -EINVAL;
1659 } else
1660 err = s->get_ctrl(cam, &ctrl);
1661
1662 exit:
1663 if (copy_to_user(arg, &ctrl, sizeof(ctrl)))
1664 return -EFAULT;
1665
1666 return err;
1667 }
1668
1669
1670 static int
1671 et61x251_vidioc_s_ctrl(struct et61x251_device* cam, void __user * arg)
1672 {
1673 struct et61x251_sensor* s = &cam->sensor;
1674 struct v4l2_control ctrl;
1675 u8 i;
1676 int err = 0;
1677
1678 if (!s->set_ctrl)
1679 return -EINVAL;
1680
1681 if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
1682 return -EFAULT;
1683
1684 for (i = 0; i < ARRAY_SIZE(s->qctrl); i++)
1685 if (ctrl.id == s->qctrl[i].id) {
1686 if (s->qctrl[i].flags & V4L2_CTRL_FLAG_DISABLED)
1687 return -EINVAL;
1688 if (ctrl.value < s->qctrl[i].minimum ||
1689 ctrl.value > s->qctrl[i].maximum)
1690 return -ERANGE;
1691 ctrl.value -= ctrl.value % s->qctrl[i].step;
1692 break;
1693 }
1694
1695 if ((err = s->set_ctrl(cam, &ctrl)))
1696 return err;
1697
1698 s->_qctrl[i].default_value = ctrl.value;
1699
1700 return 0;
1701 }
1702
1703
1704 static int
1705 et61x251_vidioc_cropcap(struct et61x251_device* cam, void __user * arg)
1706 {
1707 struct v4l2_cropcap* cc = &(cam->sensor.cropcap);
1708
1709 cc->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1710 cc->pixelaspect.numerator = 1;
1711 cc->pixelaspect.denominator = 1;
1712
1713 if (copy_to_user(arg, cc, sizeof(*cc)))
1714 return -EFAULT;
1715
1716 return 0;
1717 }
1718
1719
1720 static int
1721 et61x251_vidioc_g_crop(struct et61x251_device* cam, void __user * arg)
1722 {
1723 struct et61x251_sensor* s = &cam->sensor;
1724 struct v4l2_crop crop = {
1725 .type = V4L2_BUF_TYPE_VIDEO_CAPTURE,
1726 };
1727
1728 memcpy(&(crop.c), &(s->_rect), sizeof(struct v4l2_rect));
1729
1730 if (copy_to_user(arg, &crop, sizeof(crop)))
1731 return -EFAULT;
1732
1733 return 0;
1734 }
1735
1736
1737 static int
1738 et61x251_vidioc_s_crop(struct et61x251_device* cam, void __user * arg)
1739 {
1740 struct et61x251_sensor* s = &cam->sensor;
1741 struct v4l2_crop crop;
1742 struct v4l2_rect* rect;
1743 struct v4l2_rect* bounds = &(s->cropcap.bounds);
1744 struct v4l2_pix_format* pix_format = &(s->pix_format);
1745 u8 scale;
1746 const enum et61x251_stream_state stream = cam->stream;
1747 const u32 nbuffers = cam->nbuffers;
1748 u32 i;
1749 int err = 0;
1750
1751 if (copy_from_user(&crop, arg, sizeof(crop)))
1752 return -EFAULT;
1753
1754 rect = &(crop.c);
1755
1756 if (crop.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1757 return -EINVAL;
1758
1759 if (cam->module_param.force_munmap)
1760 for (i = 0; i < cam->nbuffers; i++)
1761 if (cam->frame[i].vma_use_count) {
1762 DBG(3, "VIDIOC_S_CROP failed. "
1763 "Unmap the buffers first.");
1764 return -EINVAL;
1765 }
1766
1767 /* Preserve R,G or B origin */
1768 rect->left = (s->_rect.left & 1L) ? rect->left | 1L : rect->left & ~1L;
1769 rect->top = (s->_rect.top & 1L) ? rect->top | 1L : rect->top & ~1L;
1770
1771 if (rect->width < 4)
1772 rect->width = 4;
1773 if (rect->height < 4)
1774 rect->height = 4;
1775 if (rect->width > bounds->width)
1776 rect->width = bounds->width;
1777 if (rect->height > bounds->height)
1778 rect->height = bounds->height;
1779 if (rect->left < bounds->left)
1780 rect->left = bounds->left;
1781 if (rect->top < bounds->top)
1782 rect->top = bounds->top;
1783 if (rect->left + rect->width > bounds->left + bounds->width)
1784 rect->left = bounds->left+bounds->width - rect->width;
1785 if (rect->top + rect->height > bounds->top + bounds->height)
1786 rect->top = bounds->top+bounds->height - rect->height;
1787
1788 rect->width &= ~3L;
1789 rect->height &= ~3L;
1790
1791 if (ET61X251_PRESERVE_IMGSCALE) {
1792 /* Calculate the actual scaling factor */
1793 u32 a, b;
1794 a = rect->width * rect->height;
1795 b = pix_format->width * pix_format->height;
1796 scale = b ? (u8)((a / b) < 4 ? 1 : 2) : 1;
1797 } else
1798 scale = 1;
1799
1800 if (cam->stream == STREAM_ON)
1801 if ((err = et61x251_stream_interrupt(cam)))
1802 return err;
1803
1804 if (copy_to_user(arg, &crop, sizeof(crop))) {
1805 cam->stream = stream;
1806 return -EFAULT;
1807 }
1808
1809 if (cam->module_param.force_munmap || cam->io == IO_READ)
1810 et61x251_release_buffers(cam);
1811
1812 err = et61x251_set_crop(cam, rect);
1813 if (s->set_crop)
1814 err += s->set_crop(cam, rect);
1815 err += et61x251_set_scale(cam, scale);
1816
1817 if (err) { /* atomic, no rollback in ioctl() */
1818 cam->state |= DEV_MISCONFIGURED;
1819 DBG(1, "VIDIOC_S_CROP failed because of hardware problems. To "
1820 "use the camera, close and open /dev/video%d again.",
1821 cam->v4ldev->minor);
1822 return -EIO;
1823 }
1824
1825 s->pix_format.width = rect->width/scale;
1826 s->pix_format.height = rect->height/scale;
1827 memcpy(&(s->_rect), rect, sizeof(*rect));
1828
1829 if ((cam->module_param.force_munmap || cam->io == IO_READ) &&
1830 nbuffers != et61x251_request_buffers(cam, nbuffers, cam->io)) {
1831 cam->state |= DEV_MISCONFIGURED;
1832 DBG(1, "VIDIOC_S_CROP failed because of not enough memory. To "
1833 "use the camera, close and open /dev/video%d again.",
1834 cam->v4ldev->minor);
1835 return -ENOMEM;
1836 }
1837
1838 if (cam->io == IO_READ)
1839 et61x251_empty_framequeues(cam);
1840 else if (cam->module_param.force_munmap)
1841 et61x251_requeue_outqueue(cam);
1842
1843 cam->stream = stream;
1844
1845 return 0;
1846 }
1847
1848
1849 static int
1850 et61x251_vidioc_enum_fmt(struct et61x251_device* cam, void __user * arg)
1851 {
1852 struct v4l2_fmtdesc fmtd;
1853
1854 if (copy_from_user(&fmtd, arg, sizeof(fmtd)))
1855 return -EFAULT;
1856
1857 if (fmtd.index == 0) {
1858 strcpy(fmtd.description, "bayer rgb");
1859 fmtd.pixelformat = V4L2_PIX_FMT_SBGGR8;
1860 } else if (fmtd.index == 1) {
1861 strcpy(fmtd.description, "compressed");
1862 fmtd.pixelformat = V4L2_PIX_FMT_ET61X251;
1863 fmtd.flags = V4L2_FMT_FLAG_COMPRESSED;
1864 } else
1865 return -EINVAL;
1866
1867 fmtd.type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
1868 memset(&fmtd.reserved, 0, sizeof(fmtd.reserved));
1869
1870 if (copy_to_user(arg, &fmtd, sizeof(fmtd)))
1871 return -EFAULT;
1872
1873 return 0;
1874 }
1875
1876
1877 static int
1878 et61x251_vidioc_g_fmt(struct et61x251_device* cam, void __user * arg)
1879 {
1880 struct v4l2_format format;
1881 struct v4l2_pix_format* pfmt = &(cam->sensor.pix_format);
1882
1883 if (copy_from_user(&format, arg, sizeof(format)))
1884 return -EFAULT;
1885
1886 if (format.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1887 return -EINVAL;
1888
1889 pfmt->bytesperline = (pfmt->pixelformat==V4L2_PIX_FMT_ET61X251)
1890 ? 0 : (pfmt->width * pfmt->priv) / 8;
1891 pfmt->sizeimage = pfmt->height * ((pfmt->width*pfmt->priv)/8);
1892 pfmt->field = V4L2_FIELD_NONE;
1893 memcpy(&(format.fmt.pix), pfmt, sizeof(*pfmt));
1894
1895 if (copy_to_user(arg, &format, sizeof(format)))
1896 return -EFAULT;
1897
1898 return 0;
1899 }
1900
1901
1902 static int
1903 et61x251_vidioc_try_s_fmt(struct et61x251_device* cam, unsigned int cmd,
1904 void __user * arg)
1905 {
1906 struct et61x251_sensor* s = &cam->sensor;
1907 struct v4l2_format format;
1908 struct v4l2_pix_format* pix;
1909 struct v4l2_pix_format* pfmt = &(s->pix_format);
1910 struct v4l2_rect* bounds = &(s->cropcap.bounds);
1911 struct v4l2_rect rect;
1912 u8 scale;
1913 const enum et61x251_stream_state stream = cam->stream;
1914 const u32 nbuffers = cam->nbuffers;
1915 u32 i;
1916 int err = 0;
1917
1918 if (copy_from_user(&format, arg, sizeof(format)))
1919 return -EFAULT;
1920
1921 pix = &(format.fmt.pix);
1922
1923 if (format.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
1924 return -EINVAL;
1925
1926 memcpy(&rect, &(s->_rect), sizeof(rect));
1927
1928 { /* calculate the actual scaling factor */
1929 u32 a, b;
1930 a = rect.width * rect.height;
1931 b = pix->width * pix->height;
1932 scale = b ? (u8)((a / b) < 4 ? 1 : 2) : 1;
1933 }
1934
1935 rect.width = scale * pix->width;
1936 rect.height = scale * pix->height;
1937
1938 if (rect.width < 4)
1939 rect.width = 4;
1940 if (rect.height < 4)
1941 rect.height = 4;
1942 if (rect.width > bounds->left + bounds->width - rect.left)
1943 rect.width = bounds->left + bounds->width - rect.left;
1944 if (rect.height > bounds->top + bounds->height - rect.top)
1945 rect.height = bounds->top + bounds->height - rect.top;
1946
1947 rect.width &= ~3L;
1948 rect.height &= ~3L;
1949
1950 { /* adjust the scaling factor */
1951 u32 a, b;
1952 a = rect.width * rect.height;
1953 b = pix->width * pix->height;
1954 scale = b ? (u8)((a / b) < 4 ? 1 : 2) : 1;
1955 }
1956
1957 pix->width = rect.width / scale;
1958 pix->height = rect.height / scale;
1959
1960 if (pix->pixelformat != V4L2_PIX_FMT_ET61X251 &&
1961 pix->pixelformat != V4L2_PIX_FMT_SBGGR8)
1962 pix->pixelformat = pfmt->pixelformat;
1963 pix->priv = pfmt->priv; /* bpp */
1964 pix->colorspace = pfmt->colorspace;
1965 pix->bytesperline = (pix->pixelformat == V4L2_PIX_FMT_ET61X251)
1966 ? 0 : (pix->width * pix->priv) / 8;
1967 pix->sizeimage = pix->height * ((pix->width * pix->priv) / 8);
1968 pix->field = V4L2_FIELD_NONE;
1969
1970 if (cmd == VIDIOC_TRY_FMT) {
1971 if (copy_to_user(arg, &format, sizeof(format)))
1972 return -EFAULT;
1973 return 0;
1974 }
1975
1976 if (cam->module_param.force_munmap)
1977 for (i = 0; i < cam->nbuffers; i++)
1978 if (cam->frame[i].vma_use_count) {
1979 DBG(3, "VIDIOC_S_FMT failed. "
1980 "Unmap the buffers first.");
1981 return -EINVAL;
1982 }
1983
1984 if (cam->stream == STREAM_ON)
1985 if ((err = et61x251_stream_interrupt(cam)))
1986 return err;
1987
1988 if (copy_to_user(arg, &format, sizeof(format))) {
1989 cam->stream = stream;
1990 return -EFAULT;
1991 }
1992
1993 if (cam->module_param.force_munmap || cam->io == IO_READ)
1994 et61x251_release_buffers(cam);
1995
1996 err += et61x251_set_pix_format(cam, pix);
1997 err += et61x251_set_crop(cam, &rect);
1998 if (s->set_pix_format)
1999 err += s->set_pix_format(cam, pix);
2000 if (s->set_crop)
2001 err += s->set_crop(cam, &rect);
2002 err += et61x251_set_scale(cam, scale);
2003
2004 if (err) { /* atomic, no rollback in ioctl() */
2005 cam->state |= DEV_MISCONFIGURED;
2006 DBG(1, "VIDIOC_S_FMT failed because of hardware problems. To "
2007 "use the camera, close and open /dev/video%d again.",
2008 cam->v4ldev->minor);
2009 return -EIO;
2010 }
2011
2012 memcpy(pfmt, pix, sizeof(*pix));
2013 memcpy(&(s->_rect), &rect, sizeof(rect));
2014
2015 if ((cam->module_param.force_munmap || cam->io == IO_READ) &&
2016 nbuffers != et61x251_request_buffers(cam, nbuffers, cam->io)) {
2017 cam->state |= DEV_MISCONFIGURED;
2018 DBG(1, "VIDIOC_S_FMT failed because of not enough memory. To "
2019 "use the camera, close and open /dev/video%d again.",
2020 cam->v4ldev->minor);
2021 return -ENOMEM;
2022 }
2023
2024 if (cam->io == IO_READ)
2025 et61x251_empty_framequeues(cam);
2026 else if (cam->module_param.force_munmap)
2027 et61x251_requeue_outqueue(cam);
2028
2029 cam->stream = stream;
2030
2031 return 0;
2032 }
2033
2034
2035 static int
2036 et61x251_vidioc_g_jpegcomp(struct et61x251_device* cam, void __user * arg)
2037 {
2038 if (copy_to_user(arg, &cam->compression,
2039 sizeof(cam->compression)))
2040 return -EFAULT;
2041
2042 return 0;
2043 }
2044
2045
2046 static int
2047 et61x251_vidioc_s_jpegcomp(struct et61x251_device* cam, void __user * arg)
2048 {
2049 struct v4l2_jpegcompression jc;
2050 const enum et61x251_stream_state stream = cam->stream;
2051 int err = 0;
2052
2053 if (copy_from_user(&jc, arg, sizeof(jc)))
2054 return -EFAULT;
2055
2056 if (jc.quality != 0 && jc.quality != 1)
2057 return -EINVAL;
2058
2059 if (cam->stream == STREAM_ON)
2060 if ((err = et61x251_stream_interrupt(cam)))
2061 return err;
2062
2063 err += et61x251_set_compression(cam, &jc);
2064 if (err) { /* atomic, no rollback in ioctl() */
2065 cam->state |= DEV_MISCONFIGURED;
2066 DBG(1, "VIDIOC_S_JPEGCOMP failed because of hardware "
2067 "problems. To use the camera, close and open "
2068 "/dev/video%d again.", cam->v4ldev->minor);
2069 return -EIO;
2070 }
2071
2072 cam->compression.quality = jc.quality;
2073
2074 cam->stream = stream;
2075
2076 return 0;
2077 }
2078
2079
2080 static int
2081 et61x251_vidioc_reqbufs(struct et61x251_device* cam, void __user * arg)
2082 {
2083 struct v4l2_requestbuffers rb;
2084 u32 i;
2085 int err;
2086
2087 if (copy_from_user(&rb, arg, sizeof(rb)))
2088 return -EFAULT;
2089
2090 if (rb.type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2091 rb.memory != V4L2_MEMORY_MMAP)
2092 return -EINVAL;
2093
2094 if (cam->io == IO_READ) {
2095 DBG(3, "Close and open the device again to choose the mmap "
2096 "I/O method");
2097 return -EINVAL;
2098 }
2099
2100 for (i = 0; i < cam->nbuffers; i++)
2101 if (cam->frame[i].vma_use_count) {
2102 DBG(3, "VIDIOC_REQBUFS failed. "
2103 "Previous buffers are still mapped.");
2104 return -EINVAL;
2105 }
2106
2107 if (cam->stream == STREAM_ON)
2108 if ((err = et61x251_stream_interrupt(cam)))
2109 return err;
2110
2111 et61x251_empty_framequeues(cam);
2112
2113 et61x251_release_buffers(cam);
2114 if (rb.count)
2115 rb.count = et61x251_request_buffers(cam, rb.count, IO_MMAP);
2116
2117 if (copy_to_user(arg, &rb, sizeof(rb))) {
2118 et61x251_release_buffers(cam);
2119 cam->io = IO_NONE;
2120 return -EFAULT;
2121 }
2122
2123 cam->io = rb.count ? IO_MMAP : IO_NONE;
2124
2125 return 0;
2126 }
2127
2128
2129 static int
2130 et61x251_vidioc_querybuf(struct et61x251_device* cam, void __user * arg)
2131 {
2132 struct v4l2_buffer b;
2133
2134 if (copy_from_user(&b, arg, sizeof(b)))
2135 return -EFAULT;
2136
2137 if (b.type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2138 b.index >= cam->nbuffers || cam->io != IO_MMAP)
2139 return -EINVAL;
2140
2141 memcpy(&b, &cam->frame[b.index].buf, sizeof(b));
2142
2143 if (cam->frame[b.index].vma_use_count)
2144 b.flags |= V4L2_BUF_FLAG_MAPPED;
2145
2146 if (cam->frame[b.index].state == F_DONE)
2147 b.flags |= V4L2_BUF_FLAG_DONE;
2148 else if (cam->frame[b.index].state != F_UNUSED)
2149 b.flags |= V4L2_BUF_FLAG_QUEUED;
2150
2151 if (copy_to_user(arg, &b, sizeof(b)))
2152 return -EFAULT;
2153
2154 return 0;
2155 }
2156
2157
2158 static int
2159 et61x251_vidioc_qbuf(struct et61x251_device* cam, void __user * arg)
2160 {
2161 struct v4l2_buffer b;
2162 unsigned long lock_flags;
2163
2164 if (copy_from_user(&b, arg, sizeof(b)))
2165 return -EFAULT;
2166
2167 if (b.type != V4L2_BUF_TYPE_VIDEO_CAPTURE ||
2168 b.index >= cam->nbuffers || cam->io != IO_MMAP)
2169 return -EINVAL;
2170
2171 if (cam->frame[b.index].state != F_UNUSED)
2172 return -EINVAL;
2173
2174 cam->frame[b.index].state = F_QUEUED;
2175
2176 spin_lock_irqsave(&cam->queue_lock, lock_flags);
2177 list_add_tail(&cam->frame[b.index].frame, &cam->inqueue);
2178 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
2179
2180 PDBGG("Frame #%lu queued", (unsigned long)b.index);
2181
2182 return 0;
2183 }
2184
2185
2186 static int
2187 et61x251_vidioc_dqbuf(struct et61x251_device* cam, struct file* filp,
2188 void __user * arg)
2189 {
2190 struct v4l2_buffer b;
2191 struct et61x251_frame_t *f;
2192 unsigned long lock_flags;
2193 long timeout;
2194
2195 if (copy_from_user(&b, arg, sizeof(b)))
2196 return -EFAULT;
2197
2198 if (b.type != V4L2_BUF_TYPE_VIDEO_CAPTURE || cam->io!= IO_MMAP)
2199 return -EINVAL;
2200
2201 if (list_empty(&cam->outqueue)) {
2202 if (cam->stream == STREAM_OFF)
2203 return -EINVAL;
2204 if (filp->f_flags & O_NONBLOCK)
2205 return -EAGAIN;
2206 timeout = wait_event_interruptible_timeout
2207 ( cam->wait_frame,
2208 (!list_empty(&cam->outqueue)) ||
2209 (cam->state & DEV_DISCONNECTED) ||
2210 (cam->state & DEV_MISCONFIGURED),
2211 cam->module_param.frame_timeout *
2212 1000 * msecs_to_jiffies(1) );
2213 if (timeout < 0)
2214 return timeout;
2215 if (cam->state & DEV_DISCONNECTED)
2216 return -ENODEV;
2217 if (!timeout || (cam->state & DEV_MISCONFIGURED))
2218 return -EIO;
2219 }
2220
2221 spin_lock_irqsave(&cam->queue_lock, lock_flags);
2222 f = list_entry(cam->outqueue.next, struct et61x251_frame_t, frame);
2223 list_del(cam->outqueue.next);
2224 spin_unlock_irqrestore(&cam->queue_lock, lock_flags);
2225
2226 f->state = F_UNUSED;
2227
2228 memcpy(&b, &f->buf, sizeof(b));
2229 if (f->vma_use_count)
2230 b.flags |= V4L2_BUF_FLAG_MAPPED;
2231
2232 if (copy_to_user(arg, &b, sizeof(b)))
2233 return -EFAULT;
2234
2235 PDBGG("Frame #%lu dequeued", (unsigned long)f->buf.index);
2236
2237 return 0;
2238 }
2239
2240
2241 static int
2242 et61x251_vidioc_streamon(struct et61x251_device* cam, void __user * arg)
2243 {
2244 int type;
2245
2246 if (copy_from_user(&type, arg, sizeof(type)))
2247 return -EFAULT;
2248
2249 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE || cam->io != IO_MMAP)
2250 return -EINVAL;
2251
2252 if (list_empty(&cam->inqueue))
2253 return -EINVAL;
2254
2255 cam->stream = STREAM_ON;
2256
2257 DBG(3, "Stream on");
2258
2259 return 0;
2260 }
2261
2262
2263 static int
2264 et61x251_vidioc_streamoff(struct et61x251_device* cam, void __user * arg)
2265 {
2266 int type, err;
2267
2268 if (copy_from_user(&type, arg, sizeof(type)))
2269 return -EFAULT;
2270
2271 if (type != V4L2_BUF_TYPE_VIDEO_CAPTURE || cam->io != IO_MMAP)
2272 return -EINVAL;
2273
2274 if (cam->stream == STREAM_ON)
2275 if ((err = et61x251_stream_interrupt(cam)))
2276 return err;
2277
2278 et61x251_empty_framequeues(cam);
2279
2280 DBG(3, "Stream off");
2281
2282 return 0;
2283 }
2284
2285
2286 static int
2287 et61x251_vidioc_g_parm(struct et61x251_device* cam, void __user * arg)
2288 {
2289 struct v4l2_streamparm sp;
2290
2291 if (copy_from_user(&sp, arg, sizeof(sp)))
2292 return -EFAULT;
2293
2294 if (sp.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2295 return -EINVAL;
2296
2297 sp.parm.capture.extendedmode = 0;
2298 sp.parm.capture.readbuffers = cam->nreadbuffers;
2299
2300 if (copy_to_user(arg, &sp, sizeof(sp)))
2301 return -EFAULT;
2302
2303 return 0;
2304 }
2305
2306
2307 static int
2308 et61x251_vidioc_s_parm(struct et61x251_device* cam, void __user * arg)
2309 {
2310 struct v4l2_streamparm sp;
2311
2312 if (copy_from_user(&sp, arg, sizeof(sp)))
2313 return -EFAULT;
2314
2315 if (sp.type != V4L2_BUF_TYPE_VIDEO_CAPTURE)
2316 return -EINVAL;
2317
2318 sp.parm.capture.extendedmode = 0;
2319
2320 if (sp.parm.capture.readbuffers == 0)
2321 sp.parm.capture.readbuffers = cam->nreadbuffers;
2322
2323 if (sp.parm.capture.readbuffers > ET61X251_MAX_FRAMES)
2324 sp.parm.capture.readbuffers = ET61X251_MAX_FRAMES;
2325
2326 if (copy_to_user(arg, &sp, sizeof(sp)))
2327 return -EFAULT;
2328
2329 cam->nreadbuffers = sp.parm.capture.readbuffers;
2330
2331 return 0;
2332 }
2333
2334
2335 static int et61x251_ioctl_v4l2(struct inode* inode, struct file* filp,
2336 unsigned int cmd, void __user * arg)
2337 {
2338 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
2339
2340 switch (cmd) {
2341
2342 case VIDIOC_QUERYCAP:
2343 return et61x251_vidioc_querycap(cam, arg);
2344
2345 case VIDIOC_ENUMINPUT:
2346 return et61x251_vidioc_enuminput(cam, arg);
2347
2348 case VIDIOC_G_INPUT:
2349 return et61x251_vidioc_g_input(cam, arg);
2350
2351 case VIDIOC_S_INPUT:
2352 return et61x251_vidioc_s_input(cam, arg);
2353
2354 case VIDIOC_QUERYCTRL:
2355 return et61x251_vidioc_query_ctrl(cam, arg);
2356
2357 case VIDIOC_G_CTRL:
2358 return et61x251_vidioc_g_ctrl(cam, arg);
2359
2360 case VIDIOC_S_CTRL:
2361 return et61x251_vidioc_s_ctrl(cam, arg);
2362
2363 case VIDIOC_CROPCAP:
2364 return et61x251_vidioc_cropcap(cam, arg);
2365
2366 case VIDIOC_G_CROP:
2367 return et61x251_vidioc_g_crop(cam, arg);
2368
2369 case VIDIOC_S_CROP:
2370 return et61x251_vidioc_s_crop(cam, arg);
2371
2372 case VIDIOC_ENUM_FMT:
2373 return et61x251_vidioc_enum_fmt(cam, arg);
2374
2375 case VIDIOC_G_FMT:
2376 return et61x251_vidioc_g_fmt(cam, arg);
2377
2378 case VIDIOC_TRY_FMT:
2379 case VIDIOC_S_FMT:
2380 return et61x251_vidioc_try_s_fmt(cam, cmd, arg);
2381
2382 case VIDIOC_G_JPEGCOMP:
2383 return et61x251_vidioc_g_jpegcomp(cam, arg);
2384
2385 case VIDIOC_S_JPEGCOMP:
2386 return et61x251_vidioc_s_jpegcomp(cam, arg);
2387
2388 case VIDIOC_REQBUFS:
2389 return et61x251_vidioc_reqbufs(cam, arg);
2390
2391 case VIDIOC_QUERYBUF:
2392 return et61x251_vidioc_querybuf(cam, arg);
2393
2394 case VIDIOC_QBUF:
2395 return et61x251_vidioc_qbuf(cam, arg);
2396
2397 case VIDIOC_DQBUF:
2398 return et61x251_vidioc_dqbuf(cam, filp, arg);
2399
2400 case VIDIOC_STREAMON:
2401 return et61x251_vidioc_streamon(cam, arg);
2402
2403 case VIDIOC_STREAMOFF:
2404 return et61x251_vidioc_streamoff(cam, arg);
2405
2406 case VIDIOC_G_PARM:
2407 return et61x251_vidioc_g_parm(cam, arg);
2408
2409 case VIDIOC_S_PARM:
2410 return et61x251_vidioc_s_parm(cam, arg);
2411
2412 case VIDIOC_G_STD:
2413 case VIDIOC_S_STD:
2414 case VIDIOC_QUERYSTD:
2415 case VIDIOC_ENUMSTD:
2416 case VIDIOC_QUERYMENU:
2417 return -EINVAL;
2418
2419 default:
2420 return -EINVAL;
2421
2422 }
2423 }
2424
2425
2426 static int et61x251_ioctl(struct inode* inode, struct file* filp,
2427 unsigned int cmd, unsigned long arg)
2428 {
2429 struct et61x251_device* cam = video_get_drvdata(video_devdata(filp));
2430 int err = 0;
2431
2432 if (mutex_lock_interruptible(&cam->fileop_mutex))
2433 return -ERESTARTSYS;
2434
2435 if (cam->state & DEV_DISCONNECTED) {
2436 DBG(1, "Device not present");
2437 mutex_unlock(&cam->fileop_mutex);
2438 return -ENODEV;
2439 }
2440
2441 if (cam->state & DEV_MISCONFIGURED) {
2442 DBG(1, "The camera is misconfigured. Close and open it "
2443 "again.");
2444 mutex_unlock(&cam->fileop_mutex);
2445 return -EIO;
2446 }
2447
2448 V4LDBG(3, "et61x251", cmd);
2449
2450 err = et61x251_ioctl_v4l2(inode, filp, cmd, (void __user *)arg);
2451
2452 mutex_unlock(&cam->fileop_mutex);
2453
2454 return err;
2455 }
2456
2457
2458 static struct file_operations et61x251_fops = {
2459 .owner = THIS_MODULE,
2460 .open = et61x251_open,
2461 .release = et61x251_release,
2462 .ioctl = et61x251_ioctl,
2463 .read = et61x251_read,
2464 .poll = et61x251_poll,
2465 .mmap = et61x251_mmap,
2466 .llseek = no_llseek,
2467 };
2468
2469 /*****************************************************************************/
2470
2471 /* It exists a single interface only. We do not need to validate anything. */
2472 static int
2473 et61x251_usb_probe(struct usb_interface* intf, const struct usb_device_id* id)
2474 {
2475 struct usb_device *udev = interface_to_usbdev(intf);
2476 struct et61x251_device* cam;
2477 static unsigned int dev_nr = 0;
2478 unsigned int i;
2479 int err = 0;
2480
2481 if (!(cam = kzalloc(sizeof(struct et61x251_device), GFP_KERNEL)))
2482 return -ENOMEM;
2483
2484 cam->usbdev = udev;
2485
2486 if (!(cam->control_buffer = kzalloc(8, GFP_KERNEL))) {
2487 DBG(1, "kmalloc() failed");
2488 err = -ENOMEM;
2489 goto fail;
2490 }
2491
2492 if (!(cam->v4ldev = video_device_alloc())) {
2493 DBG(1, "video_device_alloc() failed");
2494 err = -ENOMEM;
2495 goto fail;
2496 }
2497
2498 mutex_init(&cam->dev_mutex);
2499
2500 DBG(2, "ET61X[12]51 PC Camera Controller detected "
2501 "(vid/pid 0x%04X/0x%04X)",id->idVendor, id->idProduct);
2502
2503 for (i = 0; et61x251_sensor_table[i]; i++) {
2504 err = et61x251_sensor_table[i](cam);
2505 if (!err)
2506 break;
2507 }
2508
2509 if (!err)
2510 DBG(2, "%s image sensor detected", cam->sensor.name);
2511 else {
2512 DBG(1, "No supported image sensor detected");
2513 err = -ENODEV;
2514 goto fail;
2515 }
2516
2517 if (et61x251_init(cam)) {
2518 DBG(1, "Initialization failed. I will retry on open().");
2519 cam->state |= DEV_MISCONFIGURED;
2520 }
2521
2522 strcpy(cam->v4ldev->name, "ET61X[12]51 PC Camera");
2523 cam->v4ldev->owner = THIS_MODULE;
2524 cam->v4ldev->type = VID_TYPE_CAPTURE | VID_TYPE_SCALES;
2525 cam->v4ldev->hardware = 0;
2526 cam->v4ldev->fops = &et61x251_fops;
2527 cam->v4ldev->minor = video_nr[dev_nr];
2528 cam->v4ldev->release = video_device_release;
2529 video_set_drvdata(cam->v4ldev, cam);
2530
2531 mutex_lock(&cam->dev_mutex);
2532
2533 err = video_register_device(cam->v4ldev, VFL_TYPE_GRABBER,
2534 video_nr[dev_nr]);
2535 if (err) {
2536 DBG(1, "V4L2 device registration failed");
2537 if (err == -ENFILE && video_nr[dev_nr] == -1)
2538 DBG(1, "Free /dev/videoX node not found");
2539 video_nr[dev_nr] = -1;
2540 dev_nr = (dev_nr < ET61X251_MAX_DEVICES-1) ? dev_nr+1 : 0;
2541 mutex_unlock(&cam->dev_mutex);
2542 goto fail;
2543 }
2544
2545 DBG(2, "V4L2 device registered as /dev/video%d", cam->v4ldev->minor);
2546
2547 cam->module_param.force_munmap = force_munmap[dev_nr];
2548 cam->module_param.frame_timeout = frame_timeout[dev_nr];
2549
2550 dev_nr = (dev_nr < ET61X251_MAX_DEVICES-1) ? dev_nr+1 : 0;
2551
2552 #ifdef CONFIG_VIDEO_ADV_DEBUG
2553 err = et61x251_create_sysfs(cam);
2554 if (err)
2555 goto fail2;
2556 DBG(2, "Optional device control through 'sysfs' interface ready");
2557 #endif
2558
2559 usb_set_intfdata(intf, cam);
2560
2561 mutex_unlock(&cam->dev_mutex);
2562
2563 return 0;
2564
2565 #ifdef CONFIG_VIDEO_ADV_DEBUG
2566 fail2:
2567 video_nr[dev_nr] = -1;
2568 dev_nr = (dev_nr < ET61X251_MAX_DEVICES-1) ? dev_nr+1 : 0;
2569 mutex_unlock(&cam->dev_mutex);
2570 video_unregister_device(cam->v4ldev);
2571 #endif
2572 fail:
2573 if (cam) {
2574 kfree(cam->control_buffer);
2575 if (cam->v4ldev)
2576 video_device_release(cam->v4ldev);
2577 kfree(cam);
2578 }
2579 return err;
2580 }
2581
2582
2583 static void et61x251_usb_disconnect(struct usb_interface* intf)
2584 {
2585 struct et61x251_device* cam = usb_get_intfdata(intf);
2586
2587 if (!cam)
2588 return;
2589
2590 down_write(&et61x251_disconnect);
2591
2592 mutex_lock(&cam->dev_mutex);
2593
2594 DBG(2, "Disconnecting %s...", cam->v4ldev->name);
2595
2596 wake_up_interruptible_all(&cam->open);
2597
2598 if (cam->users) {
2599 DBG(2, "Device /dev/video%d is open! Deregistration and "
2600 "memory deallocation are deferred on close.",
2601 cam->v4ldev->minor);
2602 cam->state |= DEV_MISCONFIGURED;
2603 et61x251_stop_transfer(cam);
2604 cam->state |= DEV_DISCONNECTED;
2605 wake_up_interruptible(&cam->wait_frame);
2606 wake_up(&cam->wait_stream);
2607 usb_get_dev(cam->usbdev);
2608 } else {
2609 cam->state |= DEV_DISCONNECTED;
2610 et61x251_release_resources(cam);
2611 }
2612
2613 mutex_unlock(&cam->dev_mutex);
2614
2615 if (!cam->users)
2616 kfree(cam);
2617
2618 up_write(&et61x251_disconnect);
2619 }
2620
2621
2622 static struct usb_driver et61x251_usb_driver = {
2623 .name = "et61x251",
2624 .id_table = et61x251_id_table,
2625 .probe = et61x251_usb_probe,
2626 .disconnect = et61x251_usb_disconnect,
2627 };
2628
2629 /*****************************************************************************/
2630
2631 static int __init et61x251_module_init(void)
2632 {
2633 int err = 0;
2634
2635 KDBG(2, ET61X251_MODULE_NAME " v" ET61X251_MODULE_VERSION);
2636 KDBG(3, ET61X251_MODULE_AUTHOR);
2637
2638 if ((err = usb_register(&et61x251_usb_driver)))
2639 KDBG(1, "usb_register() failed");
2640
2641 return err;
2642 }
2643
2644
2645 static void __exit et61x251_module_exit(void)
2646 {
2647 usb_deregister(&et61x251_usb_driver);
2648 }
2649
2650
2651 module_init(et61x251_module_init);
2652 module_exit(et61x251_module_exit);