2 * s2255drv.c - a driver for the Sensoray 2255 USB video capture device
4 * Copyright (C) 2007-2013 by Sensoray Company Inc.
7 * Some video buffer code based on vivi driver:
9 * Sensoray 2255 device supports 4 simultaneous channels.
10 * The channels are not "crossbar" inputs, they are physically
11 * attached to separate video decoders.
13 * Because of USB2.0 bandwidth limitations. There is only a
14 * certain amount of data which may be transferred at one time.
16 * Example maximum bandwidth utilization:
18 * -full size, color mode YUYV or YUV422P: 2 channels at once
19 * -full or half size Grey scale: all 4 channels at once
20 * -half size, color mode YUYV or YUV422P: all 4 channels at once
21 * -full size, color mode YUYV or YUV422P 1/2 frame rate: all 4 channels
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
39 #include <linux/module.h>
40 #include <linux/firmware.h>
41 #include <linux/kernel.h>
42 #include <linux/mutex.h>
43 #include <linux/slab.h>
44 #include <linux/videodev2.h>
46 #include <linux/vmalloc.h>
47 #include <linux/usb.h>
48 #include <media/videobuf-vmalloc.h>
49 #include <media/v4l2-common.h>
50 #include <media/v4l2-device.h>
51 #include <media/v4l2-ioctl.h>
52 #include <media/v4l2-ctrls.h>
53 #include <media/v4l2-event.h>
55 #define S2255_VERSION "1.23.1"
56 #define FIRMWARE_FILE_NAME "f2255usb.bin"
58 /* default JPEG quality */
59 #define S2255_DEF_JPEG_QUAL 50
60 /* vendor request in */
62 /* vendor request out */
63 #define S2255_VR_OUT 1
65 #define S2255_VR_FW 0x30
66 /* USB endpoint number for configuring the device */
67 #define S2255_CONFIG_EP 2
68 /* maximum time for DSP to start responding after last FW word loaded(ms) */
69 #define S2255_DSP_BOOTTIME 800
70 /* maximum time to wait for firmware to load (ms) */
71 #define S2255_LOAD_TIMEOUT (5000 + S2255_DSP_BOOTTIME)
72 #define S2255_DEF_BUFS 16
73 #define S2255_SETMODE_TIMEOUT 500
74 #define S2255_VIDSTATUS_TIMEOUT 350
75 #define S2255_MARKER_FRAME cpu_to_le32(0x2255DA4AL)
76 #define S2255_MARKER_RESPONSE cpu_to_le32(0x2255ACACL)
77 #define S2255_RESPONSE_SETMODE cpu_to_le32(0x01)
78 #define S2255_RESPONSE_FW cpu_to_le32(0x10)
79 #define S2255_RESPONSE_STATUS cpu_to_le32(0x20)
80 #define S2255_USB_XFER_SIZE (16 * 1024)
81 #define MAX_CHANNELS 4
83 /* maximum size is PAL full size plus room for the marker header(s) */
84 #define SYS_FRAMES_MAXSIZE (720*288*2*2 + 4096)
85 #define DEF_USB_BLOCK S2255_USB_XFER_SIZE
86 #define LINE_SZ_4CIFS_NTSC 640
87 #define LINE_SZ_2CIFS_NTSC 640
88 #define LINE_SZ_1CIFS_NTSC 320
89 #define LINE_SZ_4CIFS_PAL 704
90 #define LINE_SZ_2CIFS_PAL 704
91 #define LINE_SZ_1CIFS_PAL 352
92 #define NUM_LINES_4CIFS_NTSC 240
93 #define NUM_LINES_2CIFS_NTSC 240
94 #define NUM_LINES_1CIFS_NTSC 240
95 #define NUM_LINES_4CIFS_PAL 288
96 #define NUM_LINES_2CIFS_PAL 288
97 #define NUM_LINES_1CIFS_PAL 288
98 #define LINE_SZ_DEF 640
99 #define NUM_LINES_DEF 240
102 /* predefined settings */
103 #define FORMAT_NTSC 1
106 #define SCALE_4CIFS 1 /* 640x480(NTSC) or 704x576(PAL) */
107 #define SCALE_2CIFS 2 /* 640x240(NTSC) or 704x288(PAL) */
108 #define SCALE_1CIFS 3 /* 320x240(NTSC) or 352x288(PAL) */
109 /* SCALE_4CIFSI is the 2 fields interpolated into one */
110 #define SCALE_4CIFSI 4 /* 640x480(NTSC) or 704x576(PAL) high quality */
112 #define COLOR_YUVPL 1 /* YUV planar */
113 #define COLOR_YUVPK 2 /* YUV packed */
114 #define COLOR_Y8 4 /* monochrome */
115 #define COLOR_JPG 5 /* JPEG */
117 #define MASK_COLOR 0x000000ff
118 #define MASK_JPG_QUALITY 0x0000ff00
119 #define MASK_INPUT_TYPE 0x000f0000
120 /* frame decimation. */
121 #define FDEC_1 1 /* capture every frame. default */
122 #define FDEC_2 2 /* capture every 2nd frame */
123 #define FDEC_3 3 /* capture every 3rd frame */
124 #define FDEC_5 5 /* capture every 5th frame */
126 /*-------------------------------------------------------
127 * Default mode parameters.
128 *-------------------------------------------------------*/
129 #define DEF_SCALE SCALE_4CIFS
130 #define DEF_COLOR COLOR_YUVPL
131 #define DEF_FDEC FDEC_1
133 #define DEF_CONTRAST 0x5c
134 #define DEF_SATURATION 0x80
137 /* usb config commands */
138 #define IN_DATA_TOKEN cpu_to_le32(0x2255c0de)
139 #define CMD_2255 0xc2255000
140 #define CMD_SET_MODE cpu_to_le32((CMD_2255 | 0x10))
141 #define CMD_START cpu_to_le32((CMD_2255 | 0x20))
142 #define CMD_STOP cpu_to_le32((CMD_2255 | 0x30))
143 #define CMD_STATUS cpu_to_le32((CMD_2255 | 0x40))
146 u32 format
; /* input video format (NTSC, PAL) */
147 u32 scale
; /* output video scale */
148 u32 color
; /* output video color format */
149 u32 fdec
; /* frame decimation */
150 u32 bright
; /* brightness */
151 u32 contrast
; /* contrast */
152 u32 saturation
; /* saturation */
153 u32 hue
; /* hue (NTSC only)*/
154 u32 single
; /* capture 1 frame at a time (!=0), continuously (==0)*/
155 u32 usb_block
; /* block size. should be 4096 of DEF_USB_BLOCK */
156 u32 restart
; /* if DSP requires restart */
160 #define S2255_READ_IDLE 0
161 #define S2255_READ_FRAME 1
163 /* frame structure */
164 struct s2255_framei
{
166 unsigned long ulState
; /* ulState:S2255_READ_IDLE, S2255_READ_FRAME*/
167 void *lpvbits
; /* image data */
168 unsigned long cur_size
; /* current data copied to it */
171 /* image buffer structure */
172 struct s2255_bufferi
{
173 unsigned long dwFrames
; /* number of frames in buffer */
174 struct s2255_framei frame
[SYS_FRAMES
]; /* array of FRAME structures */
177 #define DEF_MODEI_NTSC_CONT {FORMAT_NTSC, DEF_SCALE, DEF_COLOR, \
178 DEF_FDEC, DEF_BRIGHT, DEF_CONTRAST, DEF_SATURATION, \
179 DEF_HUE, 0, DEF_USB_BLOCK, 0}
181 struct s2255_dmaqueue
{
182 struct list_head active
;
183 struct s2255_dev
*dev
;
186 /* for firmware loading, fw_state */
187 #define S2255_FW_NOTLOADED 0
188 #define S2255_FW_LOADED_DSPWAIT 1
189 #define S2255_FW_SUCCESS 2
190 #define S2255_FW_FAILED 3
191 #define S2255_FW_DISCONNECTING 4
192 #define S2255_FW_MARKER cpu_to_le32(0x22552f2f)
193 /* 2255 read states */
194 #define S2255_READ_IDLE 0
195 #define S2255_READ_FRAME 1
202 wait_queue_head_t wait_fw
;
203 const struct firmware
*fw
;
206 struct s2255_pipeinfo
{
207 u32 max_transfer_size
;
208 u32 cur_transfer_size
;
212 void *dev
; /* back pointer to s2255_dev struct*/
217 struct s2255_fmt
; /*forward declaration */
220 struct s2255_channel
{
221 struct video_device vdev
;
222 struct v4l2_ctrl_handler hdl
;
223 struct v4l2_ctrl
*jpegqual_ctrl
;
225 struct s2255_dmaqueue vidq
;
226 struct s2255_bufferi buffer
;
227 struct s2255_mode mode
;
229 /* jpeg compression */
231 /* capture parameters (for high quality mode full size) */
232 struct v4l2_captureparm cap_parm
;
237 /* allocated image size */
238 unsigned long req_image_size
;
239 /* received packet size */
240 unsigned long pkt_size
;
242 unsigned long frame_count
;
245 /* if channel configured to default state */
247 wait_queue_head_t wait_setmode
;
249 /* video status items */
251 wait_queue_head_t wait_vidstatus
;
255 const struct s2255_fmt
*fmt
;
256 int idx
; /* channel number on device, 0-3 */
261 struct s2255_channel channel
[MAX_CHANNELS
];
262 struct v4l2_device v4l2_dev
;
263 atomic_t num_channels
;
265 struct mutex lock
; /* channels[].vdev.lock */
266 struct usb_device
*udev
;
267 struct usb_interface
*interface
;
269 struct timer_list timer
;
270 struct s2255_fw
*fw_data
;
271 struct s2255_pipeinfo pipe
;
272 u32 cc
; /* current channel */
276 /* dsp firmware version (f2255usb.bin) */
278 u16 pid
; /* product id */
281 static inline struct s2255_dev
*to_s2255_dev(struct v4l2_device
*v4l2_dev
)
283 return container_of(v4l2_dev
, struct s2255_dev
, v4l2_dev
);
292 /* buffer for one video frame */
293 struct s2255_buffer
{
294 /* common v4l buffer stuff -- must be first */
295 struct videobuf_buffer vb
;
296 const struct s2255_fmt
*fmt
;
300 /* this must be the first field in this struct */
302 struct s2255_dev
*dev
;
303 struct videobuf_queue vb_vidq
;
304 enum v4l2_buf_type type
;
305 struct s2255_channel
*channel
;
309 /* current cypress EEPROM firmware version */
310 #define S2255_CUR_USB_FWVER ((3 << 8) | 12)
311 /* current DSP FW version */
312 #define S2255_CUR_DSP_FWVER 10104
313 /* Need DSP version 5+ for video status feature */
314 #define S2255_MIN_DSP_STATUS 5
315 #define S2255_MIN_DSP_COLORFILTER 8
316 #define S2255_NORMS (V4L2_STD_ALL)
318 /* private V4L2 controls */
321 * The following chart displays how COLORFILTER should be set
322 * =========================================================
323 * = fourcc = COLORFILTER =
324 * = ===============================
326 * =========================================================
327 * = V4L2_PIX_FMT_GREY(Y8) = monochrome from = monochrome=
328 * = = s-video or = composite =
329 * = = B/W camera = input =
330 * =========================================================
331 * = other = color, svideo = color, =
333 * =========================================================
336 * channels 0-3 on 2255 are composite
337 * channels 0-1 on 2257 are composite, 2-3 are s-video
338 * If COLORFILTER is 0 with a composite color camera connected,
339 * the output will appear monochrome but hatching
341 * COLORFILTER is different from "color killer" and "color effects"
344 #define S2255_V4L2_YC_ON 1
345 #define S2255_V4L2_YC_OFF 0
346 #define V4L2_CID_S2255_COLORFILTER (V4L2_CID_USER_S2255_BASE + 0)
348 /* frame prefix size (sent once every frame) */
349 #define PREFIX_SIZE 512
351 /* Channels on box are in reverse order */
352 static unsigned long G_chnmap
[MAX_CHANNELS
] = {3, 2, 1, 0};
355 static int *s2255_debug
= &debug
;
357 static int s2255_start_readpipe(struct s2255_dev
*dev
);
358 static void s2255_stop_readpipe(struct s2255_dev
*dev
);
359 static int s2255_start_acquire(struct s2255_channel
*channel
);
360 static int s2255_stop_acquire(struct s2255_channel
*channel
);
361 static void s2255_fillbuff(struct s2255_channel
*chn
, struct s2255_buffer
*buf
,
363 static int s2255_set_mode(struct s2255_channel
*chan
, struct s2255_mode
*mode
);
364 static int s2255_board_shutdown(struct s2255_dev
*dev
);
365 static void s2255_fwload_start(struct s2255_dev
*dev
, int reset
);
366 static void s2255_destroy(struct s2255_dev
*dev
);
367 static long s2255_vendor_req(struct s2255_dev
*dev
, unsigned char req
,
368 u16 index
, u16 value
, void *buf
,
369 s32 buf_len
, int bOut
);
371 /* dev_err macro with driver name */
372 #define S2255_DRIVER_NAME "s2255"
373 #define s2255_dev_err(dev, fmt, arg...) \
374 dev_err(dev, S2255_DRIVER_NAME " - " fmt, ##arg)
376 #define dprintk(level, fmt, arg...) \
378 if (*s2255_debug >= (level)) { \
379 printk(KERN_DEBUG S2255_DRIVER_NAME \
384 static struct usb_driver s2255_driver
;
386 /* Declare static vars that will be used as parameters */
387 static unsigned int vid_limit
= 16; /* Video memory limit, in Mb */
389 /* start video number */
390 static int video_nr
= -1; /* /dev/videoN, -1 for autodetect */
392 /* Enable jpeg capture. */
393 static int jpeg_enable
= 1;
395 module_param(debug
, int, 0644);
396 MODULE_PARM_DESC(debug
, "Debug level(0-100) default 0");
397 module_param(vid_limit
, int, 0644);
398 MODULE_PARM_DESC(vid_limit
, "video memory limit(Mb)");
399 module_param(video_nr
, int, 0644);
400 MODULE_PARM_DESC(video_nr
, "start video minor(-1 default autodetect)");
401 module_param(jpeg_enable
, int, 0644);
402 MODULE_PARM_DESC(jpeg_enable
, "Jpeg enable(1-on 0-off) default 1");
404 /* USB device table */
405 #define USB_SENSORAY_VID 0x1943
406 static struct usb_device_id s2255_table
[] = {
407 {USB_DEVICE(USB_SENSORAY_VID
, 0x2255)},
408 {USB_DEVICE(USB_SENSORAY_VID
, 0x2257)}, /*same family as 2255*/
409 { } /* Terminating entry */
411 MODULE_DEVICE_TABLE(usb
, s2255_table
);
413 #define BUFFER_TIMEOUT msecs_to_jiffies(400)
416 /* JPEG formats must be defined last to support jpeg_enable parameter */
417 static const struct s2255_fmt formats
[] = {
419 .name
= "4:2:2, packed, YUYV",
420 .fourcc
= V4L2_PIX_FMT_YUYV
,
424 .name
= "4:2:2, packed, UYVY",
425 .fourcc
= V4L2_PIX_FMT_UYVY
,
428 .name
= "4:2:2, planar, YUV422P",
429 .fourcc
= V4L2_PIX_FMT_YUV422P
,
434 .fourcc
= V4L2_PIX_FMT_GREY
,
438 .fourcc
= V4L2_PIX_FMT_JPEG
,
442 .fourcc
= V4L2_PIX_FMT_MJPEG
,
447 static int norm_maxw(struct s2255_channel
*channel
)
449 return (channel
->std
& V4L2_STD_525_60
) ?
450 LINE_SZ_4CIFS_NTSC
: LINE_SZ_4CIFS_PAL
;
453 static int norm_maxh(struct s2255_channel
*channel
)
455 return (channel
->std
& V4L2_STD_525_60
) ?
456 (NUM_LINES_1CIFS_NTSC
* 2) : (NUM_LINES_1CIFS_PAL
* 2);
459 static int norm_minw(struct s2255_channel
*channel
)
461 return (channel
->std
& V4L2_STD_525_60
) ?
462 LINE_SZ_1CIFS_NTSC
: LINE_SZ_1CIFS_PAL
;
465 static int norm_minh(struct s2255_channel
*channel
)
467 return (channel
->std
& V4L2_STD_525_60
) ?
468 (NUM_LINES_1CIFS_NTSC
) : (NUM_LINES_1CIFS_PAL
);
473 * TODO: fixme: move YUV reordering to hardware
474 * converts 2255 planar format to yuyv or uyvy
476 static void planar422p_to_yuv_packed(const unsigned char *in
,
478 int width
, int height
,
484 unsigned long size
= height
* width
;
486 pY
= (unsigned char *)in
;
487 pCr
= (unsigned char *)in
+ height
* width
;
488 pCb
= (unsigned char *)in
+ height
* width
+ (height
* width
/ 2);
489 for (i
= 0; i
< size
* 2; i
+= 4) {
490 out
[i
] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pY
++ : *pCr
++;
491 out
[i
+ 1] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pCr
++ : *pY
++;
492 out
[i
+ 2] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pY
++ : *pCb
++;
493 out
[i
+ 3] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pCb
++ : *pY
++;
498 static void s2255_reset_dsppower(struct s2255_dev
*dev
)
500 s2255_vendor_req(dev
, 0x40, 0x0000, 0x0001, NULL
, 0, 1);
502 s2255_vendor_req(dev
, 0x50, 0x0000, 0x0000, NULL
, 0, 1);
504 s2255_vendor_req(dev
, 0x10, 0x0000, 0x0000, NULL
, 0, 1);
508 /* kickstarts the firmware loading. from probe
510 static void s2255_timer(unsigned long user_data
)
512 struct s2255_fw
*data
= (struct s2255_fw
*)user_data
;
513 dprintk(100, "%s\n", __func__
);
514 if (usb_submit_urb(data
->fw_urb
, GFP_ATOMIC
) < 0) {
515 printk(KERN_ERR
"s2255: can't submit urb\n");
516 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
517 /* wake up anything waiting for the firmware */
518 wake_up(&data
->wait_fw
);
524 /* this loads the firmware asynchronously.
525 Originally this was done synchronously in probe.
526 But it is better to load it asynchronously here than block
527 inside the probe function. Blocking inside probe affects boot time.
528 FW loading is triggered by the timer in the probe function
530 static void s2255_fwchunk_complete(struct urb
*urb
)
532 struct s2255_fw
*data
= urb
->context
;
533 struct usb_device
*udev
= urb
->dev
;
535 dprintk(100, "%s: udev %p urb %p", __func__
, udev
, urb
);
537 dev_err(&udev
->dev
, "URB failed with status %d\n", urb
->status
);
538 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
539 /* wake up anything waiting for the firmware */
540 wake_up(&data
->wait_fw
);
543 if (data
->fw_urb
== NULL
) {
544 s2255_dev_err(&udev
->dev
, "disconnected\n");
545 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
546 /* wake up anything waiting for the firmware */
547 wake_up(&data
->wait_fw
);
550 #define CHUNK_SIZE 512
551 /* all USB transfers must be done with continuous kernel memory.
552 can't allocate more than 128k in current linux kernel, so
553 upload the firmware in chunks
555 if (data
->fw_loaded
< data
->fw_size
) {
556 len
= (data
->fw_loaded
+ CHUNK_SIZE
) > data
->fw_size
?
557 data
->fw_size
% CHUNK_SIZE
: CHUNK_SIZE
;
559 if (len
< CHUNK_SIZE
)
560 memset(data
->pfw_data
, 0, CHUNK_SIZE
);
562 dprintk(100, "completed len %d, loaded %d \n", len
,
565 memcpy(data
->pfw_data
,
566 (char *) data
->fw
->data
+ data
->fw_loaded
, len
);
568 usb_fill_bulk_urb(data
->fw_urb
, udev
, usb_sndbulkpipe(udev
, 2),
569 data
->pfw_data
, CHUNK_SIZE
,
570 s2255_fwchunk_complete
, data
);
571 if (usb_submit_urb(data
->fw_urb
, GFP_ATOMIC
) < 0) {
572 dev_err(&udev
->dev
, "failed submit URB\n");
573 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
574 /* wake up anything waiting for the firmware */
575 wake_up(&data
->wait_fw
);
578 data
->fw_loaded
+= len
;
580 atomic_set(&data
->fw_state
, S2255_FW_LOADED_DSPWAIT
);
581 dprintk(100, "%s: firmware upload complete\n", __func__
);
587 static int s2255_got_frame(struct s2255_channel
*channel
, int jpgsize
)
589 struct s2255_dmaqueue
*dma_q
= &channel
->vidq
;
590 struct s2255_buffer
*buf
;
591 struct s2255_dev
*dev
= to_s2255_dev(channel
->vdev
.v4l2_dev
);
592 unsigned long flags
= 0;
594 spin_lock_irqsave(&dev
->slock
, flags
);
595 if (list_empty(&dma_q
->active
)) {
596 dprintk(1, "No active queue to serve\n");
600 buf
= list_entry(dma_q
->active
.next
,
601 struct s2255_buffer
, vb
.queue
);
602 list_del(&buf
->vb
.queue
);
603 v4l2_get_timestamp(&buf
->vb
.ts
);
604 s2255_fillbuff(channel
, buf
, jpgsize
);
605 wake_up(&buf
->vb
.done
);
606 dprintk(2, "%s: [buf/i] [%p/%d]\n", __func__
, buf
, buf
->vb
.i
);
608 spin_unlock_irqrestore(&dev
->slock
, flags
);
612 static const struct s2255_fmt
*format_by_fourcc(int fourcc
)
615 for (i
= 0; i
< ARRAY_SIZE(formats
); i
++) {
616 if (-1 == formats
[i
].fourcc
)
618 if (!jpeg_enable
&& ((formats
[i
].fourcc
== V4L2_PIX_FMT_JPEG
) ||
619 (formats
[i
].fourcc
== V4L2_PIX_FMT_MJPEG
)))
621 if (formats
[i
].fourcc
== fourcc
)
627 /* video buffer vmalloc implementation based partly on VIVI driver which is
628 * Copyright (c) 2006 by
629 * Mauro Carvalho Chehab <mchehab--a.t--infradead.org>
630 * Ted Walther <ted--a.t--enumera.com>
631 * John Sokol <sokol--a.t--videotechnology.com>
632 * http://v4l.videotechnology.com/
635 static void s2255_fillbuff(struct s2255_channel
*channel
,
636 struct s2255_buffer
*buf
, int jpgsize
)
640 char *vbuf
= videobuf_to_vmalloc(&buf
->vb
);
641 unsigned long last_frame
;
645 last_frame
= channel
->last_frame
;
646 if (last_frame
!= -1) {
648 (const char *)channel
->buffer
.frame
[last_frame
].lpvbits
;
649 switch (buf
->fmt
->fourcc
) {
650 case V4L2_PIX_FMT_YUYV
:
651 case V4L2_PIX_FMT_UYVY
:
652 planar422p_to_yuv_packed((const unsigned char *)tmpbuf
,
657 case V4L2_PIX_FMT_GREY
:
658 memcpy(vbuf
, tmpbuf
, buf
->vb
.width
* buf
->vb
.height
);
660 case V4L2_PIX_FMT_JPEG
:
661 case V4L2_PIX_FMT_MJPEG
:
662 buf
->vb
.size
= jpgsize
;
663 memcpy(vbuf
, tmpbuf
, buf
->vb
.size
);
665 case V4L2_PIX_FMT_YUV422P
:
667 buf
->vb
.width
* buf
->vb
.height
* 2);
670 printk(KERN_DEBUG
"s2255: unknown format?\n");
672 channel
->last_frame
= -1;
674 printk(KERN_ERR
"s2255: =======no frame\n");
678 dprintk(2, "s2255fill at : Buffer 0x%08lx size= %d\n",
679 (unsigned long)vbuf
, pos
);
680 /* tell v4l buffer was filled */
682 buf
->vb
.field_count
= channel
->frame_count
* 2;
683 v4l2_get_timestamp(&buf
->vb
.ts
);
684 buf
->vb
.state
= VIDEOBUF_DONE
;
688 /* ------------------------------------------------------------------
690 ------------------------------------------------------------------*/
692 static int buffer_setup(struct videobuf_queue
*vq
, unsigned int *count
,
695 struct s2255_fh
*fh
= vq
->priv_data
;
696 struct s2255_channel
*channel
= fh
->channel
;
697 *size
= channel
->width
* channel
->height
* (channel
->fmt
->depth
>> 3);
700 *count
= S2255_DEF_BUFS
;
702 if (*size
* *count
> vid_limit
* 1024 * 1024)
703 *count
= (vid_limit
* 1024 * 1024) / *size
;
708 static void free_buffer(struct videobuf_queue
*vq
, struct s2255_buffer
*buf
)
710 dprintk(4, "%s\n", __func__
);
712 videobuf_vmalloc_free(&buf
->vb
);
713 buf
->vb
.state
= VIDEOBUF_NEEDS_INIT
;
716 static int buffer_prepare(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
,
717 enum v4l2_field field
)
719 struct s2255_fh
*fh
= vq
->priv_data
;
720 struct s2255_channel
*channel
= fh
->channel
;
721 struct s2255_buffer
*buf
= container_of(vb
, struct s2255_buffer
, vb
);
723 int w
= channel
->width
;
724 int h
= channel
->height
;
725 dprintk(4, "%s, field=%d\n", __func__
, field
);
726 if (channel
->fmt
== NULL
)
729 if ((w
< norm_minw(channel
)) ||
730 (w
> norm_maxw(channel
)) ||
731 (h
< norm_minh(channel
)) ||
732 (h
> norm_maxh(channel
))) {
733 dprintk(4, "invalid buffer prepare\n");
736 buf
->vb
.size
= w
* h
* (channel
->fmt
->depth
>> 3);
737 if (0 != buf
->vb
.baddr
&& buf
->vb
.bsize
< buf
->vb
.size
) {
738 dprintk(4, "invalid buffer prepare\n");
742 buf
->fmt
= channel
->fmt
;
745 buf
->vb
.field
= field
;
747 if (VIDEOBUF_NEEDS_INIT
== buf
->vb
.state
) {
748 rc
= videobuf_iolock(vq
, &buf
->vb
, NULL
);
753 buf
->vb
.state
= VIDEOBUF_PREPARED
;
756 free_buffer(vq
, buf
);
760 static void buffer_queue(struct videobuf_queue
*vq
, struct videobuf_buffer
*vb
)
762 struct s2255_buffer
*buf
= container_of(vb
, struct s2255_buffer
, vb
);
763 struct s2255_fh
*fh
= vq
->priv_data
;
764 struct s2255_channel
*channel
= fh
->channel
;
765 struct s2255_dmaqueue
*vidq
= &channel
->vidq
;
766 dprintk(1, "%s\n", __func__
);
767 buf
->vb
.state
= VIDEOBUF_QUEUED
;
768 list_add_tail(&buf
->vb
.queue
, &vidq
->active
);
771 static void buffer_release(struct videobuf_queue
*vq
,
772 struct videobuf_buffer
*vb
)
774 struct s2255_buffer
*buf
= container_of(vb
, struct s2255_buffer
, vb
);
775 struct s2255_fh
*fh
= vq
->priv_data
;
776 dprintk(4, "%s %d\n", __func__
, fh
->channel
->idx
);
777 free_buffer(vq
, buf
);
780 static struct videobuf_queue_ops s2255_video_qops
= {
781 .buf_setup
= buffer_setup
,
782 .buf_prepare
= buffer_prepare
,
783 .buf_queue
= buffer_queue
,
784 .buf_release
= buffer_release
,
788 static int res_get(struct s2255_fh
*fh
)
790 struct s2255_channel
*channel
= fh
->channel
;
792 if (channel
->resources
)
793 return 0; /* no, someone else uses it */
794 /* it's free, grab it */
795 channel
->resources
= 1;
797 dprintk(1, "s2255: res: get\n");
801 static int res_locked(struct s2255_fh
*fh
)
803 return fh
->channel
->resources
;
806 static int res_check(struct s2255_fh
*fh
)
808 return fh
->resources
;
812 static void res_free(struct s2255_fh
*fh
)
814 struct s2255_channel
*channel
= fh
->channel
;
815 channel
->resources
= 0;
817 dprintk(1, "res: put\n");
820 static int vidioc_querycap(struct file
*file
, void *priv
,
821 struct v4l2_capability
*cap
)
823 struct s2255_fh
*fh
= file
->private_data
;
824 struct s2255_dev
*dev
= fh
->dev
;
826 strlcpy(cap
->driver
, "s2255", sizeof(cap
->driver
));
827 strlcpy(cap
->card
, "s2255", sizeof(cap
->card
));
828 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
829 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
;
830 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
834 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
835 struct v4l2_fmtdesc
*f
)
837 int index
= f
->index
;
839 if (index
>= ARRAY_SIZE(formats
))
841 if (!jpeg_enable
&& ((formats
[index
].fourcc
== V4L2_PIX_FMT_JPEG
) ||
842 (formats
[index
].fourcc
== V4L2_PIX_FMT_MJPEG
)))
844 dprintk(4, "name %s\n", formats
[index
].name
);
845 strlcpy(f
->description
, formats
[index
].name
, sizeof(f
->description
));
846 f
->pixelformat
= formats
[index
].fourcc
;
850 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
851 struct v4l2_format
*f
)
853 struct s2255_fh
*fh
= priv
;
854 struct s2255_channel
*channel
= fh
->channel
;
855 int is_ntsc
= channel
->std
& V4L2_STD_525_60
;
857 f
->fmt
.pix
.width
= channel
->width
;
858 f
->fmt
.pix
.height
= channel
->height
;
859 if (f
->fmt
.pix
.height
>=
860 (is_ntsc
? NUM_LINES_1CIFS_NTSC
: NUM_LINES_1CIFS_PAL
) * 2)
861 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
863 f
->fmt
.pix
.field
= V4L2_FIELD_TOP
;
864 f
->fmt
.pix
.pixelformat
= channel
->fmt
->fourcc
;
865 f
->fmt
.pix
.bytesperline
= f
->fmt
.pix
.width
* (channel
->fmt
->depth
>> 3);
866 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
867 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
872 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
873 struct v4l2_format
*f
)
875 const struct s2255_fmt
*fmt
;
876 enum v4l2_field field
;
877 struct s2255_fh
*fh
= priv
;
878 struct s2255_channel
*channel
= fh
->channel
;
879 int is_ntsc
= channel
->std
& V4L2_STD_525_60
;
881 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
886 field
= f
->fmt
.pix
.field
;
888 dprintk(50, "%s NTSC: %d suggested width: %d, height: %d\n",
889 __func__
, is_ntsc
, f
->fmt
.pix
.width
, f
->fmt
.pix
.height
);
892 if (f
->fmt
.pix
.height
>= NUM_LINES_1CIFS_NTSC
* 2) {
893 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_NTSC
* 2;
894 field
= V4L2_FIELD_INTERLACED
;
896 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_NTSC
;
897 field
= V4L2_FIELD_TOP
;
899 if (f
->fmt
.pix
.width
>= LINE_SZ_4CIFS_NTSC
)
900 f
->fmt
.pix
.width
= LINE_SZ_4CIFS_NTSC
;
901 else if (f
->fmt
.pix
.width
>= LINE_SZ_2CIFS_NTSC
)
902 f
->fmt
.pix
.width
= LINE_SZ_2CIFS_NTSC
;
903 else if (f
->fmt
.pix
.width
>= LINE_SZ_1CIFS_NTSC
)
904 f
->fmt
.pix
.width
= LINE_SZ_1CIFS_NTSC
;
906 f
->fmt
.pix
.width
= LINE_SZ_1CIFS_NTSC
;
909 if (f
->fmt
.pix
.height
>= NUM_LINES_1CIFS_PAL
* 2) {
910 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_PAL
* 2;
911 field
= V4L2_FIELD_INTERLACED
;
913 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_PAL
;
914 field
= V4L2_FIELD_TOP
;
916 if (f
->fmt
.pix
.width
>= LINE_SZ_4CIFS_PAL
)
917 f
->fmt
.pix
.width
= LINE_SZ_4CIFS_PAL
;
918 else if (f
->fmt
.pix
.width
>= LINE_SZ_2CIFS_PAL
)
919 f
->fmt
.pix
.width
= LINE_SZ_2CIFS_PAL
;
920 else if (f
->fmt
.pix
.width
>= LINE_SZ_1CIFS_PAL
)
921 f
->fmt
.pix
.width
= LINE_SZ_1CIFS_PAL
;
923 f
->fmt
.pix
.width
= LINE_SZ_1CIFS_PAL
;
925 f
->fmt
.pix
.field
= field
;
926 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
927 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
928 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
930 dprintk(50, "%s: set width %d height %d field %d\n", __func__
,
931 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
, f
->fmt
.pix
.field
);
935 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
936 struct v4l2_format
*f
)
938 struct s2255_fh
*fh
= priv
;
939 struct s2255_channel
*channel
= fh
->channel
;
940 const struct s2255_fmt
*fmt
;
941 struct videobuf_queue
*q
= &fh
->vb_vidq
;
942 struct s2255_mode mode
;
945 ret
= vidioc_try_fmt_vid_cap(file
, fh
, f
);
950 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
955 mutex_lock(&q
->vb_lock
);
957 if (videobuf_queue_is_busy(&fh
->vb_vidq
)) {
958 dprintk(1, "queue busy\n");
963 if (res_locked(fh
)) {
964 dprintk(1, "%s: channel busy\n", __func__
);
968 mode
= channel
->mode
;
970 channel
->width
= f
->fmt
.pix
.width
;
971 channel
->height
= f
->fmt
.pix
.height
;
972 fh
->vb_vidq
.field
= f
->fmt
.pix
.field
;
974 if (channel
->width
> norm_minw(channel
)) {
975 if (channel
->height
> norm_minh(channel
)) {
976 if (channel
->cap_parm
.capturemode
&
977 V4L2_MODE_HIGHQUALITY
)
978 mode
.scale
= SCALE_4CIFSI
;
980 mode
.scale
= SCALE_4CIFS
;
982 mode
.scale
= SCALE_2CIFS
;
985 mode
.scale
= SCALE_1CIFS
;
988 switch (channel
->fmt
->fourcc
) {
989 case V4L2_PIX_FMT_GREY
:
990 mode
.color
&= ~MASK_COLOR
;
991 mode
.color
|= COLOR_Y8
;
993 case V4L2_PIX_FMT_JPEG
:
994 case V4L2_PIX_FMT_MJPEG
:
995 mode
.color
&= ~MASK_COLOR
;
996 mode
.color
|= COLOR_JPG
;
997 mode
.color
|= (channel
->jpegqual
<< 8);
999 case V4L2_PIX_FMT_YUV422P
:
1000 mode
.color
&= ~MASK_COLOR
;
1001 mode
.color
|= COLOR_YUVPL
;
1003 case V4L2_PIX_FMT_YUYV
:
1004 case V4L2_PIX_FMT_UYVY
:
1006 mode
.color
&= ~MASK_COLOR
;
1007 mode
.color
|= COLOR_YUVPK
;
1010 if ((mode
.color
& MASK_COLOR
) != (channel
->mode
.color
& MASK_COLOR
))
1012 else if (mode
.scale
!= channel
->mode
.scale
)
1014 else if (mode
.format
!= channel
->mode
.format
)
1016 channel
->mode
= mode
;
1017 (void) s2255_set_mode(channel
, &mode
);
1020 mutex_unlock(&q
->vb_lock
);
1024 static int vidioc_reqbufs(struct file
*file
, void *priv
,
1025 struct v4l2_requestbuffers
*p
)
1028 struct s2255_fh
*fh
= priv
;
1029 rc
= videobuf_reqbufs(&fh
->vb_vidq
, p
);
1033 static int vidioc_querybuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1036 struct s2255_fh
*fh
= priv
;
1037 rc
= videobuf_querybuf(&fh
->vb_vidq
, p
);
1041 static int vidioc_qbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1044 struct s2255_fh
*fh
= priv
;
1045 rc
= videobuf_qbuf(&fh
->vb_vidq
, p
);
1049 static int vidioc_dqbuf(struct file
*file
, void *priv
, struct v4l2_buffer
*p
)
1052 struct s2255_fh
*fh
= priv
;
1053 rc
= videobuf_dqbuf(&fh
->vb_vidq
, p
, file
->f_flags
& O_NONBLOCK
);
1057 /* write to the configuration pipe, synchronously */
1058 static int s2255_write_config(struct usb_device
*udev
, unsigned char *pbuf
,
1065 pipe
= usb_sndbulkpipe(udev
, S2255_CONFIG_EP
);
1066 retval
= usb_bulk_msg(udev
, pipe
, pbuf
, size
, &done
, 500);
1071 static u32
get_transfer_size(struct s2255_mode
*mode
)
1073 int linesPerFrame
= LINE_SZ_DEF
;
1074 int pixelsPerLine
= NUM_LINES_DEF
;
1077 unsigned int mask_mult
;
1082 if (mode
->format
== FORMAT_NTSC
) {
1083 switch (mode
->scale
) {
1086 linesPerFrame
= NUM_LINES_4CIFS_NTSC
* 2;
1087 pixelsPerLine
= LINE_SZ_4CIFS_NTSC
;
1090 linesPerFrame
= NUM_LINES_2CIFS_NTSC
;
1091 pixelsPerLine
= LINE_SZ_2CIFS_NTSC
;
1094 linesPerFrame
= NUM_LINES_1CIFS_NTSC
;
1095 pixelsPerLine
= LINE_SZ_1CIFS_NTSC
;
1100 } else if (mode
->format
== FORMAT_PAL
) {
1101 switch (mode
->scale
) {
1104 linesPerFrame
= NUM_LINES_4CIFS_PAL
* 2;
1105 pixelsPerLine
= LINE_SZ_4CIFS_PAL
;
1108 linesPerFrame
= NUM_LINES_2CIFS_PAL
;
1109 pixelsPerLine
= LINE_SZ_2CIFS_PAL
;
1112 linesPerFrame
= NUM_LINES_1CIFS_PAL
;
1113 pixelsPerLine
= LINE_SZ_1CIFS_PAL
;
1119 outImageSize
= linesPerFrame
* pixelsPerLine
;
1120 if ((mode
->color
& MASK_COLOR
) != COLOR_Y8
) {
1121 /* 2 bytes/pixel if not monochrome */
1125 /* total bytes to send including prefix and 4K padding;
1126 must be a multiple of USB_READ_SIZE */
1127 usbInSize
= outImageSize
+ PREFIX_SIZE
; /* always send prefix */
1128 mask_mult
= 0xffffffffUL
- DEF_USB_BLOCK
+ 1;
1129 /* if size not a multiple of USB_READ_SIZE */
1130 if (usbInSize
& ~mask_mult
)
1131 usbInSize
= (usbInSize
& mask_mult
) + (DEF_USB_BLOCK
);
1135 static void s2255_print_cfg(struct s2255_dev
*sdev
, struct s2255_mode
*mode
)
1137 struct device
*dev
= &sdev
->udev
->dev
;
1138 dev_info(dev
, "------------------------------------------------\n");
1139 dev_info(dev
, "format: %d\nscale %d\n", mode
->format
, mode
->scale
);
1140 dev_info(dev
, "fdec: %d\ncolor %d\n", mode
->fdec
, mode
->color
);
1141 dev_info(dev
, "bright: 0x%x\n", mode
->bright
);
1142 dev_info(dev
, "------------------------------------------------\n");
1146 * set mode is the function which controls the DSP.
1147 * the restart parameter in struct s2255_mode should be set whenever
1148 * the image size could change via color format, video system or image
1150 * When the restart parameter is set, we sleep for ONE frame to allow the
1151 * DSP time to get the new frame
1153 static int s2255_set_mode(struct s2255_channel
*channel
,
1154 struct s2255_mode
*mode
)
1158 unsigned long chn_rev
;
1159 struct s2255_dev
*dev
= to_s2255_dev(channel
->vdev
.v4l2_dev
);
1162 chn_rev
= G_chnmap
[channel
->idx
];
1163 dprintk(3, "%s channel: %d\n", __func__
, channel
->idx
);
1164 /* if JPEG, set the quality */
1165 if ((mode
->color
& MASK_COLOR
) == COLOR_JPG
) {
1166 mode
->color
&= ~MASK_COLOR
;
1167 mode
->color
|= COLOR_JPG
;
1168 mode
->color
&= ~MASK_JPG_QUALITY
;
1169 mode
->color
|= (channel
->jpegqual
<< 8);
1172 channel
->mode
= *mode
;
1173 channel
->req_image_size
= get_transfer_size(mode
);
1174 dprintk(1, "%s: reqsize %ld\n", __func__
, channel
->req_image_size
);
1175 buffer
= kzalloc(512, GFP_KERNEL
);
1176 if (buffer
== NULL
) {
1177 dev_err(&dev
->udev
->dev
, "out of mem\n");
1181 buffer
[0] = IN_DATA_TOKEN
;
1182 buffer
[1] = (__le32
) cpu_to_le32(chn_rev
);
1183 buffer
[2] = CMD_SET_MODE
;
1184 for (i
= 0; i
< sizeof(struct s2255_mode
) / sizeof(u32
); i
++)
1185 buffer
[3 + i
] = cpu_to_le32(((u32
*)&channel
->mode
)[i
]);
1186 channel
->setmode_ready
= 0;
1187 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
1189 s2255_print_cfg(dev
, mode
);
1191 /* wait at least 3 frames before continuing */
1192 if (mode
->restart
) {
1193 wait_event_timeout(channel
->wait_setmode
,
1194 (channel
->setmode_ready
!= 0),
1195 msecs_to_jiffies(S2255_SETMODE_TIMEOUT
));
1196 if (channel
->setmode_ready
!= 1) {
1197 printk(KERN_DEBUG
"s2255: no set mode response\n");
1201 /* clear the restart flag */
1202 channel
->mode
.restart
= 0;
1203 dprintk(1, "%s chn %d, result: %d\n", __func__
, channel
->idx
, res
);
1207 static int s2255_cmd_status(struct s2255_channel
*channel
, u32
*pstatus
)
1212 struct s2255_dev
*dev
= to_s2255_dev(channel
->vdev
.v4l2_dev
);
1213 chn_rev
= G_chnmap
[channel
->idx
];
1214 dprintk(4, "%s chan %d\n", __func__
, channel
->idx
);
1215 buffer
= kzalloc(512, GFP_KERNEL
);
1216 if (buffer
== NULL
) {
1217 dev_err(&dev
->udev
->dev
, "out of mem\n");
1220 /* form the get vid status command */
1221 buffer
[0] = IN_DATA_TOKEN
;
1222 buffer
[1] = (__le32
) cpu_to_le32(chn_rev
);
1223 buffer
[2] = CMD_STATUS
;
1225 channel
->vidstatus_ready
= 0;
1226 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
1228 wait_event_timeout(channel
->wait_vidstatus
,
1229 (channel
->vidstatus_ready
!= 0),
1230 msecs_to_jiffies(S2255_VIDSTATUS_TIMEOUT
));
1231 if (channel
->vidstatus_ready
!= 1) {
1232 printk(KERN_DEBUG
"s2255: no vidstatus response\n");
1235 *pstatus
= channel
->vidstatus
;
1236 dprintk(4, "%s, vid status %d\n", __func__
, *pstatus
);
1240 static int vidioc_streamon(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1243 struct s2255_fh
*fh
= priv
;
1244 struct s2255_dev
*dev
= fh
->dev
;
1245 struct s2255_channel
*channel
= fh
->channel
;
1247 dprintk(4, "%s\n", __func__
);
1248 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1249 dev_err(&dev
->udev
->dev
, "invalid fh type0\n");
1252 if (i
!= fh
->type
) {
1253 dev_err(&dev
->udev
->dev
, "invalid fh type1\n");
1258 s2255_dev_err(&dev
->udev
->dev
, "stream busy\n");
1261 channel
->last_frame
= -1;
1262 channel
->bad_payload
= 0;
1263 channel
->cur_frame
= 0;
1264 channel
->frame_count
= 0;
1265 for (j
= 0; j
< SYS_FRAMES
; j
++) {
1266 channel
->buffer
.frame
[j
].ulState
= S2255_READ_IDLE
;
1267 channel
->buffer
.frame
[j
].cur_size
= 0;
1269 res
= videobuf_streamon(&fh
->vb_vidq
);
1271 s2255_start_acquire(channel
);
1272 channel
->b_acquire
= 1;
1279 static int vidioc_streamoff(struct file
*file
, void *priv
, enum v4l2_buf_type i
)
1281 struct s2255_fh
*fh
= priv
;
1282 dprintk(4, "%s\n, channel: %d", __func__
, fh
->channel
->idx
);
1283 if (fh
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
) {
1284 printk(KERN_ERR
"invalid fh type0\n");
1287 if (i
!= fh
->type
) {
1288 printk(KERN_ERR
"invalid type i\n");
1291 s2255_stop_acquire(fh
->channel
);
1292 videobuf_streamoff(&fh
->vb_vidq
);
1297 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id i
)
1299 struct s2255_fh
*fh
= priv
;
1300 struct s2255_mode mode
;
1301 struct videobuf_queue
*q
= &fh
->vb_vidq
;
1302 struct s2255_channel
*channel
= fh
->channel
;
1305 mutex_lock(&q
->vb_lock
);
1306 if (res_locked(fh
)) {
1307 dprintk(1, "can't change standard after started\n");
1311 mode
= fh
->channel
->mode
;
1312 if (i
& V4L2_STD_525_60
) {
1313 dprintk(4, "%s 60 Hz\n", __func__
);
1314 /* if changing format, reset frame decimation/intervals */
1315 if (mode
.format
!= FORMAT_NTSC
) {
1317 mode
.format
= FORMAT_NTSC
;
1319 channel
->width
= LINE_SZ_4CIFS_NTSC
;
1320 channel
->height
= NUM_LINES_4CIFS_NTSC
* 2;
1322 } else if (i
& V4L2_STD_625_50
) {
1323 dprintk(4, "%s 50 Hz\n", __func__
);
1324 if (mode
.format
!= FORMAT_PAL
) {
1326 mode
.format
= FORMAT_PAL
;
1328 channel
->width
= LINE_SZ_4CIFS_PAL
;
1329 channel
->height
= NUM_LINES_4CIFS_PAL
* 2;
1335 fh
->channel
->std
= i
;
1337 s2255_set_mode(fh
->channel
, &mode
);
1339 mutex_unlock(&q
->vb_lock
);
1343 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*i
)
1345 struct s2255_fh
*fh
= priv
;
1347 *i
= fh
->channel
->std
;
1351 /* Sensoray 2255 is a multiple channel capture device.
1352 It does not have a "crossbar" of inputs.
1353 We use one V4L device per channel. The user must
1354 be aware that certain combinations are not allowed.
1355 For instance, you cannot do full FPS on more than 2 channels(2 videodevs)
1356 at once in color(you can do full fps on 4 channels with greyscale.
1358 static int vidioc_enum_input(struct file
*file
, void *priv
,
1359 struct v4l2_input
*inp
)
1361 struct s2255_fh
*fh
= priv
;
1362 struct s2255_dev
*dev
= fh
->dev
;
1363 struct s2255_channel
*channel
= fh
->channel
;
1365 if (inp
->index
!= 0)
1367 inp
->type
= V4L2_INPUT_TYPE_CAMERA
;
1368 inp
->std
= S2255_NORMS
;
1370 if (dev
->dsp_fw_ver
>= S2255_MIN_DSP_STATUS
) {
1372 rc
= s2255_cmd_status(fh
->channel
, &status
);
1373 dprintk(4, "s2255_cmd_status rc: %d status %x\n", rc
, status
);
1375 inp
->status
= (status
& 0x01) ? 0
1376 : V4L2_IN_ST_NO_SIGNAL
;
1381 strlcpy(inp
->name
, "Composite", sizeof(inp
->name
));
1384 strlcpy(inp
->name
, (channel
->idx
< 2) ? "Composite" : "S-Video",
1391 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1396 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
1403 static int s2255_s_ctrl(struct v4l2_ctrl
*ctrl
)
1405 struct s2255_channel
*channel
=
1406 container_of(ctrl
->handler
, struct s2255_channel
, hdl
);
1407 struct s2255_mode mode
;
1409 mode
= channel
->mode
;
1410 dprintk(4, "%s\n", __func__
);
1412 /* update the mode to the corresponding value */
1414 case V4L2_CID_BRIGHTNESS
:
1415 mode
.bright
= ctrl
->val
;
1417 case V4L2_CID_CONTRAST
:
1418 mode
.contrast
= ctrl
->val
;
1421 mode
.hue
= ctrl
->val
;
1423 case V4L2_CID_SATURATION
:
1424 mode
.saturation
= ctrl
->val
;
1426 case V4L2_CID_S2255_COLORFILTER
:
1427 mode
.color
&= ~MASK_INPUT_TYPE
;
1428 mode
.color
|= !ctrl
->val
<< 16;
1430 case V4L2_CID_JPEG_COMPRESSION_QUALITY
:
1431 channel
->jpegqual
= ctrl
->val
;
1437 /* set mode here. Note: stream does not need restarted.
1438 some V4L programs restart stream unnecessarily
1441 s2255_set_mode(channel
, &mode
);
1445 static int vidioc_g_jpegcomp(struct file
*file
, void *priv
,
1446 struct v4l2_jpegcompression
*jc
)
1448 struct s2255_fh
*fh
= priv
;
1449 struct s2255_channel
*channel
= fh
->channel
;
1451 memset(jc
, 0, sizeof(*jc
));
1452 jc
->quality
= channel
->jpegqual
;
1453 dprintk(2, "%s: quality %d\n", __func__
, jc
->quality
);
1457 static int vidioc_s_jpegcomp(struct file
*file
, void *priv
,
1458 const struct v4l2_jpegcompression
*jc
)
1460 struct s2255_fh
*fh
= priv
;
1461 struct s2255_channel
*channel
= fh
->channel
;
1462 if (jc
->quality
< 0 || jc
->quality
> 100)
1464 v4l2_ctrl_s_ctrl(channel
->jpegqual_ctrl
, jc
->quality
);
1465 dprintk(2, "%s: quality %d\n", __func__
, jc
->quality
);
1469 static int vidioc_g_parm(struct file
*file
, void *priv
,
1470 struct v4l2_streamparm
*sp
)
1472 struct s2255_fh
*fh
= priv
;
1473 __u32 def_num
, def_dem
;
1474 struct s2255_channel
*channel
= fh
->channel
;
1475 if (sp
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1477 sp
->parm
.capture
.capability
= V4L2_CAP_TIMEPERFRAME
;
1478 sp
->parm
.capture
.capturemode
= channel
->cap_parm
.capturemode
;
1479 def_num
= (channel
->mode
.format
== FORMAT_NTSC
) ? 1001 : 1000;
1480 def_dem
= (channel
->mode
.format
== FORMAT_NTSC
) ? 30000 : 25000;
1481 sp
->parm
.capture
.timeperframe
.denominator
= def_dem
;
1482 switch (channel
->mode
.fdec
) {
1485 sp
->parm
.capture
.timeperframe
.numerator
= def_num
;
1488 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 2;
1491 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 3;
1494 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 5;
1497 dprintk(4, "%s capture mode, %d timeperframe %d/%d\n", __func__
,
1498 sp
->parm
.capture
.capturemode
,
1499 sp
->parm
.capture
.timeperframe
.numerator
,
1500 sp
->parm
.capture
.timeperframe
.denominator
);
1504 static int vidioc_s_parm(struct file
*file
, void *priv
,
1505 struct v4l2_streamparm
*sp
)
1507 struct s2255_fh
*fh
= priv
;
1508 struct s2255_channel
*channel
= fh
->channel
;
1509 struct s2255_mode mode
;
1511 __u32 def_num
, def_dem
;
1512 if (sp
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1514 mode
= channel
->mode
;
1515 /* high quality capture mode requires a stream restart */
1516 if (channel
->cap_parm
.capturemode
1517 != sp
->parm
.capture
.capturemode
&& res_locked(fh
))
1519 def_num
= (mode
.format
== FORMAT_NTSC
) ? 1001 : 1000;
1520 def_dem
= (mode
.format
== FORMAT_NTSC
) ? 30000 : 25000;
1521 if (def_dem
!= sp
->parm
.capture
.timeperframe
.denominator
)
1522 sp
->parm
.capture
.timeperframe
.numerator
= def_num
;
1523 else if (sp
->parm
.capture
.timeperframe
.numerator
<= def_num
)
1524 sp
->parm
.capture
.timeperframe
.numerator
= def_num
;
1525 else if (sp
->parm
.capture
.timeperframe
.numerator
<= (def_num
* 2)) {
1526 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 2;
1528 } else if (sp
->parm
.capture
.timeperframe
.numerator
<= (def_num
* 3)) {
1529 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 3;
1532 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 5;
1536 sp
->parm
.capture
.timeperframe
.denominator
= def_dem
;
1537 s2255_set_mode(channel
, &mode
);
1538 dprintk(4, "%s capture mode, %d timeperframe %d/%d, fdec %d\n",
1540 sp
->parm
.capture
.capturemode
,
1541 sp
->parm
.capture
.timeperframe
.numerator
,
1542 sp
->parm
.capture
.timeperframe
.denominator
, fdec
);
1546 #define NUM_SIZE_ENUMS 3
1547 static const struct v4l2_frmsize_discrete ntsc_sizes
[] = {
1552 static const struct v4l2_frmsize_discrete pal_sizes
[] = {
1558 static int vidioc_enum_framesizes(struct file
*file
, void *priv
,
1559 struct v4l2_frmsizeenum
*fe
)
1561 struct s2255_fh
*fh
= priv
;
1562 struct s2255_channel
*channel
= fh
->channel
;
1563 int is_ntsc
= channel
->std
& V4L2_STD_525_60
;
1564 const struct s2255_fmt
*fmt
;
1566 if (fe
->index
>= NUM_SIZE_ENUMS
)
1569 fmt
= format_by_fourcc(fe
->pixel_format
);
1572 fe
->type
= V4L2_FRMSIZE_TYPE_DISCRETE
;
1573 fe
->discrete
= is_ntsc
? ntsc_sizes
[fe
->index
] : pal_sizes
[fe
->index
];
1577 static int vidioc_enum_frameintervals(struct file
*file
, void *priv
,
1578 struct v4l2_frmivalenum
*fe
)
1580 struct s2255_fh
*fh
= priv
;
1581 struct s2255_channel
*channel
= fh
->channel
;
1582 const struct s2255_fmt
*fmt
;
1583 const struct v4l2_frmsize_discrete
*sizes
;
1584 int is_ntsc
= channel
->std
& V4L2_STD_525_60
;
1585 #define NUM_FRAME_ENUMS 4
1586 int frm_dec
[NUM_FRAME_ENUMS
] = {1, 2, 3, 5};
1589 if (fe
->index
>= NUM_FRAME_ENUMS
)
1592 fmt
= format_by_fourcc(fe
->pixel_format
);
1596 sizes
= is_ntsc
? ntsc_sizes
: pal_sizes
;
1597 for (i
= 0; i
< NUM_SIZE_ENUMS
; i
++, sizes
++)
1598 if (fe
->width
== sizes
->width
&&
1599 fe
->height
== sizes
->height
)
1601 if (i
== NUM_SIZE_ENUMS
)
1604 fe
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
1605 fe
->discrete
.denominator
= is_ntsc
? 30000 : 25000;
1606 fe
->discrete
.numerator
= (is_ntsc
? 1001 : 1000) * frm_dec
[fe
->index
];
1607 dprintk(4, "%s discrete %d/%d\n", __func__
, fe
->discrete
.numerator
,
1608 fe
->discrete
.denominator
);
1612 static int __s2255_open(struct file
*file
)
1614 struct video_device
*vdev
= video_devdata(file
);
1615 struct s2255_channel
*channel
= video_drvdata(file
);
1616 struct s2255_dev
*dev
= to_s2255_dev(vdev
->v4l2_dev
);
1617 struct s2255_fh
*fh
;
1618 enum v4l2_buf_type type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1620 dprintk(1, "s2255: open called (dev=%s)\n",
1621 video_device_node_name(vdev
));
1622 state
= atomic_read(&dev
->fw_data
->fw_state
);
1624 case S2255_FW_DISCONNECTING
:
1626 case S2255_FW_FAILED
:
1627 s2255_dev_err(&dev
->udev
->dev
,
1628 "firmware load failed. retrying.\n");
1629 s2255_fwload_start(dev
, 1);
1630 wait_event_timeout(dev
->fw_data
->wait_fw
,
1631 ((atomic_read(&dev
->fw_data
->fw_state
)
1632 == S2255_FW_SUCCESS
) ||
1633 (atomic_read(&dev
->fw_data
->fw_state
)
1634 == S2255_FW_DISCONNECTING
)),
1635 msecs_to_jiffies(S2255_LOAD_TIMEOUT
));
1636 /* state may have changed, re-read */
1637 state
= atomic_read(&dev
->fw_data
->fw_state
);
1639 case S2255_FW_NOTLOADED
:
1640 case S2255_FW_LOADED_DSPWAIT
:
1641 /* give S2255_LOAD_TIMEOUT time for firmware to load in case
1642 driver loaded and then device immediately opened */
1643 printk(KERN_INFO
"%s waiting for firmware load\n", __func__
);
1644 wait_event_timeout(dev
->fw_data
->wait_fw
,
1645 ((atomic_read(&dev
->fw_data
->fw_state
)
1646 == S2255_FW_SUCCESS
) ||
1647 (atomic_read(&dev
->fw_data
->fw_state
)
1648 == S2255_FW_DISCONNECTING
)),
1649 msecs_to_jiffies(S2255_LOAD_TIMEOUT
));
1650 /* state may have changed, re-read */
1651 state
= atomic_read(&dev
->fw_data
->fw_state
);
1653 case S2255_FW_SUCCESS
:
1657 /* state may have changed in above switch statement */
1659 case S2255_FW_SUCCESS
:
1661 case S2255_FW_FAILED
:
1662 printk(KERN_INFO
"2255 firmware load failed.\n");
1664 case S2255_FW_DISCONNECTING
:
1665 printk(KERN_INFO
"%s: disconnecting\n", __func__
);
1667 case S2255_FW_LOADED_DSPWAIT
:
1668 case S2255_FW_NOTLOADED
:
1669 printk(KERN_INFO
"%s: firmware not loaded yet"
1670 "please try again later\n",
1673 * Timeout on firmware load means device unusable.
1674 * Set firmware failure state.
1675 * On next s2255_open the firmware will be reloaded.
1677 atomic_set(&dev
->fw_data
->fw_state
,
1681 printk(KERN_INFO
"%s: unknown state\n", __func__
);
1684 /* allocate + initialize per filehandle data */
1685 fh
= kzalloc(sizeof(*fh
), GFP_KERNEL
);
1688 v4l2_fh_init(&fh
->fh
, vdev
);
1689 v4l2_fh_add(&fh
->fh
);
1690 file
->private_data
= &fh
->fh
;
1692 fh
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1693 fh
->channel
= channel
;
1694 if (!channel
->configured
) {
1695 /* configure channel to default state */
1696 channel
->fmt
= &formats
[0];
1697 s2255_set_mode(channel
, &channel
->mode
);
1698 channel
->configured
= 1;
1700 dprintk(1, "%s: dev=%s type=%s\n", __func__
,
1701 video_device_node_name(vdev
), v4l2_type_names
[type
]);
1702 dprintk(2, "%s: fh=0x%08lx, dev=0x%08lx, vidq=0x%08lx\n", __func__
,
1703 (unsigned long)fh
, (unsigned long)dev
,
1704 (unsigned long)&channel
->vidq
);
1705 dprintk(4, "%s: list_empty active=%d\n", __func__
,
1706 list_empty(&channel
->vidq
.active
));
1707 videobuf_queue_vmalloc_init(&fh
->vb_vidq
, &s2255_video_qops
,
1710 V4L2_FIELD_INTERLACED
,
1711 sizeof(struct s2255_buffer
),
1716 static int s2255_open(struct file
*file
)
1718 struct video_device
*vdev
= video_devdata(file
);
1721 if (mutex_lock_interruptible(vdev
->lock
))
1722 return -ERESTARTSYS
;
1723 ret
= __s2255_open(file
);
1724 mutex_unlock(vdev
->lock
);
1728 static unsigned int s2255_poll(struct file
*file
,
1729 struct poll_table_struct
*wait
)
1731 struct s2255_fh
*fh
= file
->private_data
;
1732 struct s2255_dev
*dev
= fh
->dev
;
1733 int rc
= v4l2_ctrl_poll(file
, wait
);
1735 dprintk(100, "%s\n", __func__
);
1736 if (V4L2_BUF_TYPE_VIDEO_CAPTURE
!= fh
->type
)
1738 mutex_lock(&dev
->lock
);
1739 rc
|= videobuf_poll_stream(file
, &fh
->vb_vidq
, wait
);
1740 mutex_unlock(&dev
->lock
);
1744 static void s2255_destroy(struct s2255_dev
*dev
)
1746 /* board shutdown stops the read pipe if it is running */
1747 s2255_board_shutdown(dev
);
1748 /* make sure firmware still not trying to load */
1749 del_timer(&dev
->timer
); /* only started in .probe and .open */
1750 if (dev
->fw_data
->fw_urb
) {
1751 usb_kill_urb(dev
->fw_data
->fw_urb
);
1752 usb_free_urb(dev
->fw_data
->fw_urb
);
1753 dev
->fw_data
->fw_urb
= NULL
;
1755 release_firmware(dev
->fw_data
->fw
);
1756 kfree(dev
->fw_data
->pfw_data
);
1757 kfree(dev
->fw_data
);
1758 /* reset the DSP so firmware can be reloaded next time */
1759 s2255_reset_dsppower(dev
);
1760 mutex_destroy(&dev
->lock
);
1761 usb_put_dev(dev
->udev
);
1762 v4l2_device_unregister(&dev
->v4l2_dev
);
1763 dprintk(1, "%s", __func__
);
1767 static int s2255_release(struct file
*file
)
1769 struct s2255_fh
*fh
= file
->private_data
;
1770 struct s2255_dev
*dev
= fh
->dev
;
1771 struct video_device
*vdev
= video_devdata(file
);
1772 struct s2255_channel
*channel
= fh
->channel
;
1775 mutex_lock(&dev
->lock
);
1776 /* turn off stream */
1777 if (res_check(fh
)) {
1778 if (channel
->b_acquire
)
1779 s2255_stop_acquire(fh
->channel
);
1780 videobuf_streamoff(&fh
->vb_vidq
);
1783 videobuf_mmap_free(&fh
->vb_vidq
);
1784 mutex_unlock(&dev
->lock
);
1785 dprintk(1, "%s (dev=%s)\n", __func__
, video_device_node_name(vdev
));
1786 v4l2_fh_del(&fh
->fh
);
1787 v4l2_fh_exit(&fh
->fh
);
1792 static int s2255_mmap_v4l(struct file
*file
, struct vm_area_struct
*vma
)
1794 struct s2255_fh
*fh
= file
->private_data
;
1795 struct s2255_dev
*dev
;
1801 dprintk(4, "%s, vma=0x%08lx\n", __func__
, (unsigned long)vma
);
1802 if (mutex_lock_interruptible(&dev
->lock
))
1803 return -ERESTARTSYS
;
1804 ret
= videobuf_mmap_mapper(&fh
->vb_vidq
, vma
);
1805 mutex_unlock(&dev
->lock
);
1806 dprintk(4, "%s vma start=0x%08lx, size=%ld, ret=%d\n", __func__
,
1807 (unsigned long)vma
->vm_start
,
1808 (unsigned long)vma
->vm_end
- (unsigned long)vma
->vm_start
, ret
);
1812 static const struct v4l2_file_operations s2255_fops_v4l
= {
1813 .owner
= THIS_MODULE
,
1815 .release
= s2255_release
,
1817 .unlocked_ioctl
= video_ioctl2
, /* V4L2 ioctl handler */
1818 .mmap
= s2255_mmap_v4l
,
1821 static const struct v4l2_ioctl_ops s2255_ioctl_ops
= {
1822 .vidioc_querycap
= vidioc_querycap
,
1823 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1824 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1825 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1826 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1827 .vidioc_reqbufs
= vidioc_reqbufs
,
1828 .vidioc_querybuf
= vidioc_querybuf
,
1829 .vidioc_qbuf
= vidioc_qbuf
,
1830 .vidioc_dqbuf
= vidioc_dqbuf
,
1831 .vidioc_s_std
= vidioc_s_std
,
1832 .vidioc_g_std
= vidioc_g_std
,
1833 .vidioc_enum_input
= vidioc_enum_input
,
1834 .vidioc_g_input
= vidioc_g_input
,
1835 .vidioc_s_input
= vidioc_s_input
,
1836 .vidioc_streamon
= vidioc_streamon
,
1837 .vidioc_streamoff
= vidioc_streamoff
,
1838 .vidioc_s_jpegcomp
= vidioc_s_jpegcomp
,
1839 .vidioc_g_jpegcomp
= vidioc_g_jpegcomp
,
1840 .vidioc_s_parm
= vidioc_s_parm
,
1841 .vidioc_g_parm
= vidioc_g_parm
,
1842 .vidioc_enum_framesizes
= vidioc_enum_framesizes
,
1843 .vidioc_enum_frameintervals
= vidioc_enum_frameintervals
,
1844 .vidioc_log_status
= v4l2_ctrl_log_status
,
1845 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1846 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1849 static void s2255_video_device_release(struct video_device
*vdev
)
1851 struct s2255_dev
*dev
= to_s2255_dev(vdev
->v4l2_dev
);
1852 struct s2255_channel
*channel
=
1853 container_of(vdev
, struct s2255_channel
, vdev
);
1855 v4l2_ctrl_handler_free(&channel
->hdl
);
1856 dprintk(4, "%s, chnls: %d\n", __func__
,
1857 atomic_read(&dev
->num_channels
));
1859 if (atomic_dec_and_test(&dev
->num_channels
))
1864 static struct video_device
template = {
1866 .fops
= &s2255_fops_v4l
,
1867 .ioctl_ops
= &s2255_ioctl_ops
,
1868 .release
= s2255_video_device_release
,
1869 .tvnorms
= S2255_NORMS
,
1872 static const struct v4l2_ctrl_ops s2255_ctrl_ops
= {
1873 .s_ctrl
= s2255_s_ctrl
,
1876 static const struct v4l2_ctrl_config color_filter_ctrl
= {
1877 .ops
= &s2255_ctrl_ops
,
1878 .name
= "Color Filter",
1879 .id
= V4L2_CID_S2255_COLORFILTER
,
1880 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
1886 static int s2255_probe_v4l(struct s2255_dev
*dev
)
1890 int cur_nr
= video_nr
;
1891 struct s2255_channel
*channel
;
1892 ret
= v4l2_device_register(&dev
->interface
->dev
, &dev
->v4l2_dev
);
1895 /* initialize all video 4 linux */
1896 /* register 4 video devices */
1897 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
1898 channel
= &dev
->channel
[i
];
1899 INIT_LIST_HEAD(&channel
->vidq
.active
);
1901 v4l2_ctrl_handler_init(&channel
->hdl
, 6);
1902 v4l2_ctrl_new_std(&channel
->hdl
, &s2255_ctrl_ops
,
1903 V4L2_CID_BRIGHTNESS
, -127, 127, 1, DEF_BRIGHT
);
1904 v4l2_ctrl_new_std(&channel
->hdl
, &s2255_ctrl_ops
,
1905 V4L2_CID_CONTRAST
, 0, 255, 1, DEF_CONTRAST
);
1906 v4l2_ctrl_new_std(&channel
->hdl
, &s2255_ctrl_ops
,
1907 V4L2_CID_SATURATION
, 0, 255, 1, DEF_SATURATION
);
1908 v4l2_ctrl_new_std(&channel
->hdl
, &s2255_ctrl_ops
,
1909 V4L2_CID_HUE
, 0, 255, 1, DEF_HUE
);
1910 channel
->jpegqual_ctrl
= v4l2_ctrl_new_std(&channel
->hdl
,
1912 V4L2_CID_JPEG_COMPRESSION_QUALITY
,
1913 0, 100, 1, S2255_DEF_JPEG_QUAL
);
1914 if (dev
->dsp_fw_ver
>= S2255_MIN_DSP_COLORFILTER
&&
1915 (dev
->pid
!= 0x2257 || channel
->idx
<= 1))
1916 v4l2_ctrl_new_custom(&channel
->hdl
, &color_filter_ctrl
, NULL
);
1917 if (channel
->hdl
.error
) {
1918 ret
= channel
->hdl
.error
;
1919 v4l2_ctrl_handler_free(&channel
->hdl
);
1920 dev_err(&dev
->udev
->dev
, "couldn't register control\n");
1923 channel
->vidq
.dev
= dev
;
1924 /* register 4 video devices */
1925 channel
->vdev
= template;
1926 channel
->vdev
.ctrl_handler
= &channel
->hdl
;
1927 channel
->vdev
.lock
= &dev
->lock
;
1928 channel
->vdev
.v4l2_dev
= &dev
->v4l2_dev
;
1929 set_bit(V4L2_FL_USE_FH_PRIO
, &channel
->vdev
.flags
);
1930 video_set_drvdata(&channel
->vdev
, channel
);
1932 ret
= video_register_device(&channel
->vdev
,
1936 ret
= video_register_device(&channel
->vdev
,
1941 dev_err(&dev
->udev
->dev
,
1942 "failed to register video device!\n");
1945 atomic_inc(&dev
->num_channels
);
1946 v4l2_info(&dev
->v4l2_dev
, "V4L2 device registered as %s\n",
1947 video_device_node_name(&channel
->vdev
));
1950 printk(KERN_INFO
"Sensoray 2255 V4L driver Revision: %s\n",
1952 /* if no channels registered, return error and probe will fail*/
1953 if (atomic_read(&dev
->num_channels
) == 0) {
1954 v4l2_device_unregister(&dev
->v4l2_dev
);
1957 if (atomic_read(&dev
->num_channels
) != MAX_CHANNELS
)
1958 printk(KERN_WARNING
"s2255: Not all channels available.\n");
1962 /* this function moves the usb stream read pipe data
1963 * into the system buffers.
1964 * returns 0 on success, EAGAIN if more data to process( call this
1967 * Received frame structure:
1968 * bytes 0-3: marker : 0x2255DA4AL (S2255_MARKER_FRAME)
1969 * bytes 4-7: channel: 0-3
1970 * bytes 8-11: payload size: size of the frame
1971 * bytes 12-payloadsize+12: frame data
1973 static int save_frame(struct s2255_dev
*dev
, struct s2255_pipeinfo
*pipe_info
)
1979 unsigned long copy_size
;
1982 struct s2255_framei
*frm
;
1983 unsigned char *pdata
;
1984 struct s2255_channel
*channel
;
1985 dprintk(100, "buffer to user\n");
1986 channel
= &dev
->channel
[dev
->cc
];
1987 idx
= channel
->cur_frame
;
1988 frm
= &channel
->buffer
.frame
[idx
];
1989 if (frm
->ulState
== S2255_READ_IDLE
) {
1992 __le32
*pdword
; /*data from dsp is little endian */
1994 /* search for marker codes */
1995 pdata
= (unsigned char *)pipe_info
->transfer_buffer
;
1996 pdword
= (__le32
*)pdata
;
1997 for (jj
= 0; jj
< (pipe_info
->cur_transfer_size
- 12); jj
++) {
1999 case S2255_MARKER_FRAME
:
2000 dprintk(4, "found frame marker at offset:"
2001 " %d [%x %x]\n", jj
, pdata
[0],
2003 offset
= jj
+ PREFIX_SIZE
;
2005 cc
= le32_to_cpu(pdword
[1]);
2006 if (cc
>= MAX_CHANNELS
) {
2012 dev
->cc
= G_chnmap
[cc
];
2013 channel
= &dev
->channel
[dev
->cc
];
2014 payload
= le32_to_cpu(pdword
[3]);
2015 if (payload
> channel
->req_image_size
) {
2016 channel
->bad_payload
++;
2017 /* discard the bad frame */
2020 channel
->pkt_size
= payload
;
2021 channel
->jpg_size
= le32_to_cpu(pdword
[4]);
2023 case S2255_MARKER_RESPONSE
:
2025 pdata
+= DEF_USB_BLOCK
;
2026 jj
+= DEF_USB_BLOCK
;
2027 if (le32_to_cpu(pdword
[1]) >= MAX_CHANNELS
)
2029 cc
= G_chnmap
[le32_to_cpu(pdword
[1])];
2030 if (cc
>= MAX_CHANNELS
)
2032 channel
= &dev
->channel
[cc
];
2033 switch (pdword
[2]) {
2034 case S2255_RESPONSE_SETMODE
:
2035 /* check if channel valid */
2036 /* set mode ready */
2037 channel
->setmode_ready
= 1;
2038 wake_up(&channel
->wait_setmode
);
2039 dprintk(5, "setmode ready %d\n", cc
);
2041 case S2255_RESPONSE_FW
:
2042 dev
->chn_ready
|= (1 << cc
);
2043 if ((dev
->chn_ready
& 0x0f) != 0x0f)
2045 /* all channels ready */
2046 printk(KERN_INFO
"s2255: fw loaded\n");
2047 atomic_set(&dev
->fw_data
->fw_state
,
2049 wake_up(&dev
->fw_data
->wait_fw
);
2051 case S2255_RESPONSE_STATUS
:
2052 channel
->vidstatus
= le32_to_cpu(pdword
[3]);
2053 channel
->vidstatus_ready
= 1;
2054 wake_up(&channel
->wait_vidstatus
);
2055 dprintk(5, "got vidstatus %x chan %d\n",
2056 le32_to_cpu(pdword
[3]), cc
);
2059 printk(KERN_INFO
"s2255 unknown resp\n");
2071 channel
= &dev
->channel
[dev
->cc
];
2072 idx
= channel
->cur_frame
;
2073 frm
= &channel
->buffer
.frame
[idx
];
2074 /* search done. now find out if should be acquiring on this channel */
2075 if (!channel
->b_acquire
) {
2076 /* we found a frame, but this channel is turned off */
2077 frm
->ulState
= S2255_READ_IDLE
;
2081 if (frm
->ulState
== S2255_READ_IDLE
) {
2082 frm
->ulState
= S2255_READ_FRAME
;
2086 /* skip the marker 512 bytes (and offset if out of sync) */
2087 psrc
= (u8
*)pipe_info
->transfer_buffer
+ offset
;
2090 if (frm
->lpvbits
== NULL
) {
2091 dprintk(1, "s2255 frame buffer == NULL.%p %p %d %d",
2092 frm
, dev
, dev
->cc
, idx
);
2096 pdest
= frm
->lpvbits
+ frm
->cur_size
;
2098 copy_size
= (pipe_info
->cur_transfer_size
- offset
);
2100 size
= channel
->pkt_size
- PREFIX_SIZE
;
2102 /* sanity check on pdest */
2103 if ((copy_size
+ frm
->cur_size
) < channel
->req_image_size
)
2104 memcpy(pdest
, psrc
, copy_size
);
2106 frm
->cur_size
+= copy_size
;
2107 dprintk(4, "cur_size size %lu size %lu \n", frm
->cur_size
, size
);
2109 if (frm
->cur_size
>= size
) {
2110 dprintk(2, "****************[%d]Buffer[%d]full*************\n",
2112 channel
->last_frame
= channel
->cur_frame
;
2113 channel
->cur_frame
++;
2114 /* end of system frame ring buffer, start at zero */
2115 if ((channel
->cur_frame
== SYS_FRAMES
) ||
2116 (channel
->cur_frame
== channel
->buffer
.dwFrames
))
2117 channel
->cur_frame
= 0;
2119 if (channel
->b_acquire
)
2120 s2255_got_frame(channel
, channel
->jpg_size
);
2121 channel
->frame_count
++;
2122 frm
->ulState
= S2255_READ_IDLE
;
2126 /* done successfully */
2130 static void s2255_read_video_callback(struct s2255_dev
*dev
,
2131 struct s2255_pipeinfo
*pipe_info
)
2134 dprintk(50, "callback read video \n");
2136 if (dev
->cc
>= MAX_CHANNELS
) {
2138 dev_err(&dev
->udev
->dev
, "invalid channel\n");
2141 /* otherwise copy to the system buffers */
2142 res
= save_frame(dev
, pipe_info
);
2144 dprintk(4, "s2255: read callback failed\n");
2146 dprintk(50, "callback read video done\n");
2150 static long s2255_vendor_req(struct s2255_dev
*dev
, unsigned char Request
,
2151 u16 Index
, u16 Value
, void *TransferBuffer
,
2152 s32 TransferBufferLength
, int bOut
)
2156 r
= usb_control_msg(dev
->udev
, usb_rcvctrlpipe(dev
->udev
, 0),
2158 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
|
2160 Value
, Index
, TransferBuffer
,
2161 TransferBufferLength
, HZ
* 5);
2163 r
= usb_control_msg(dev
->udev
, usb_sndctrlpipe(dev
->udev
, 0),
2164 Request
, USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
2165 Value
, Index
, TransferBuffer
,
2166 TransferBufferLength
, HZ
* 5);
2172 * retrieve FX2 firmware version. future use.
2173 * @param dev pointer to device extension
2174 * @return -1 for fail, else returns firmware version as an int(16 bits)
2176 static int s2255_get_fx2fw(struct s2255_dev
*dev
)
2180 unsigned char transBuffer
[64];
2181 ret
= s2255_vendor_req(dev
, S2255_VR_FW
, 0, 0, transBuffer
, 2,
2184 dprintk(2, "get fw error: %x\n", ret
);
2185 fw
= transBuffer
[0] + (transBuffer
[1] << 8);
2186 dprintk(2, "Get FW %x %x\n", transBuffer
[0], transBuffer
[1]);
2191 * Create the system ring buffer to copy frames into from the
2194 static int s2255_create_sys_buffers(struct s2255_channel
*channel
)
2197 unsigned long reqsize
;
2198 dprintk(1, "create sys buffers\n");
2199 channel
->buffer
.dwFrames
= SYS_FRAMES
;
2200 /* always allocate maximum size(PAL) for system buffers */
2201 reqsize
= SYS_FRAMES_MAXSIZE
;
2203 if (reqsize
> SYS_FRAMES_MAXSIZE
)
2204 reqsize
= SYS_FRAMES_MAXSIZE
;
2206 for (i
= 0; i
< SYS_FRAMES
; i
++) {
2207 /* allocate the frames */
2208 channel
->buffer
.frame
[i
].lpvbits
= vmalloc(reqsize
);
2209 dprintk(1, "valloc %p chan %d, idx %lu, pdata %p\n",
2210 &channel
->buffer
.frame
[i
], channel
->idx
, i
,
2211 channel
->buffer
.frame
[i
].lpvbits
);
2212 channel
->buffer
.frame
[i
].size
= reqsize
;
2213 if (channel
->buffer
.frame
[i
].lpvbits
== NULL
) {
2214 printk(KERN_INFO
"out of memory. using less frames\n");
2215 channel
->buffer
.dwFrames
= i
;
2220 /* make sure internal states are set */
2221 for (i
= 0; i
< SYS_FRAMES
; i
++) {
2222 channel
->buffer
.frame
[i
].ulState
= 0;
2223 channel
->buffer
.frame
[i
].cur_size
= 0;
2226 channel
->cur_frame
= 0;
2227 channel
->last_frame
= -1;
2231 static int s2255_release_sys_buffers(struct s2255_channel
*channel
)
2234 dprintk(1, "release sys buffers\n");
2235 for (i
= 0; i
< SYS_FRAMES
; i
++) {
2236 if (channel
->buffer
.frame
[i
].lpvbits
) {
2237 dprintk(1, "vfree %p\n",
2238 channel
->buffer
.frame
[i
].lpvbits
);
2239 vfree(channel
->buffer
.frame
[i
].lpvbits
);
2241 channel
->buffer
.frame
[i
].lpvbits
= NULL
;
2246 static int s2255_board_init(struct s2255_dev
*dev
)
2248 struct s2255_mode mode_def
= DEF_MODEI_NTSC_CONT
;
2251 struct s2255_pipeinfo
*pipe
= &dev
->pipe
;
2252 dprintk(4, "board init: %p", dev
);
2253 memset(pipe
, 0, sizeof(*pipe
));
2255 pipe
->cur_transfer_size
= S2255_USB_XFER_SIZE
;
2256 pipe
->max_transfer_size
= S2255_USB_XFER_SIZE
;
2258 pipe
->transfer_buffer
= kzalloc(pipe
->max_transfer_size
,
2260 if (pipe
->transfer_buffer
== NULL
) {
2261 dprintk(1, "out of memory!\n");
2264 /* query the firmware */
2265 fw_ver
= s2255_get_fx2fw(dev
);
2267 printk(KERN_INFO
"s2255: usb firmware version %d.%d\n",
2268 (fw_ver
>> 8) & 0xff,
2271 if (fw_ver
< S2255_CUR_USB_FWVER
)
2272 printk(KERN_INFO
"s2255: newer USB firmware available\n");
2274 for (j
= 0; j
< MAX_CHANNELS
; j
++) {
2275 struct s2255_channel
*channel
= &dev
->channel
[j
];
2276 channel
->b_acquire
= 0;
2277 channel
->mode
= mode_def
;
2278 if (dev
->pid
== 0x2257 && j
> 1)
2279 channel
->mode
.color
|= (1 << 16);
2280 channel
->jpegqual
= S2255_DEF_JPEG_QUAL
;
2281 channel
->width
= LINE_SZ_4CIFS_NTSC
;
2282 channel
->height
= NUM_LINES_4CIFS_NTSC
* 2;
2283 channel
->std
= V4L2_STD_NTSC_M
;
2284 channel
->fmt
= &formats
[0];
2285 channel
->mode
.restart
= 1;
2286 channel
->req_image_size
= get_transfer_size(&mode_def
);
2287 channel
->frame_count
= 0;
2288 /* create the system buffers */
2289 s2255_create_sys_buffers(channel
);
2291 /* start read pipe */
2292 s2255_start_readpipe(dev
);
2293 dprintk(1, "%s: success\n", __func__
);
2297 static int s2255_board_shutdown(struct s2255_dev
*dev
)
2300 dprintk(1, "%s: dev: %p", __func__
, dev
);
2302 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
2303 if (dev
->channel
[i
].b_acquire
)
2304 s2255_stop_acquire(&dev
->channel
[i
]);
2306 s2255_stop_readpipe(dev
);
2307 for (i
= 0; i
< MAX_CHANNELS
; i
++)
2308 s2255_release_sys_buffers(&dev
->channel
[i
]);
2309 /* release transfer buffer */
2310 kfree(dev
->pipe
.transfer_buffer
);
2314 static void read_pipe_completion(struct urb
*purb
)
2316 struct s2255_pipeinfo
*pipe_info
;
2317 struct s2255_dev
*dev
;
2320 pipe_info
= purb
->context
;
2321 dprintk(100, "%s: urb:%p, status %d\n", __func__
, purb
,
2323 if (pipe_info
== NULL
) {
2324 dev_err(&purb
->dev
->dev
, "no context!\n");
2328 dev
= pipe_info
->dev
;
2330 dev_err(&purb
->dev
->dev
, "no context!\n");
2333 status
= purb
->status
;
2334 /* if shutting down, do not resubmit, exit immediately */
2335 if (status
== -ESHUTDOWN
) {
2336 dprintk(2, "%s: err shutdown\n", __func__
);
2337 pipe_info
->err_count
++;
2341 if (pipe_info
->state
== 0) {
2342 dprintk(2, "%s: exiting USB pipe", __func__
);
2347 s2255_read_video_callback(dev
, pipe_info
);
2349 pipe_info
->err_count
++;
2350 dprintk(1, "%s: failed URB %d\n", __func__
, status
);
2353 pipe
= usb_rcvbulkpipe(dev
->udev
, dev
->read_endpoint
);
2355 usb_fill_bulk_urb(pipe_info
->stream_urb
, dev
->udev
,
2357 pipe_info
->transfer_buffer
,
2358 pipe_info
->cur_transfer_size
,
2359 read_pipe_completion
, pipe_info
);
2361 if (pipe_info
->state
!= 0) {
2362 if (usb_submit_urb(pipe_info
->stream_urb
, GFP_ATOMIC
)) {
2363 dev_err(&dev
->udev
->dev
, "error submitting urb\n");
2366 dprintk(2, "%s :complete state 0\n", __func__
);
2371 static int s2255_start_readpipe(struct s2255_dev
*dev
)
2375 struct s2255_pipeinfo
*pipe_info
= &dev
->pipe
;
2376 pipe
= usb_rcvbulkpipe(dev
->udev
, dev
->read_endpoint
);
2377 dprintk(2, "%s: IN %d\n", __func__
, dev
->read_endpoint
);
2378 pipe_info
->state
= 1;
2379 pipe_info
->err_count
= 0;
2380 pipe_info
->stream_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2381 if (!pipe_info
->stream_urb
) {
2382 dev_err(&dev
->udev
->dev
,
2383 "ReadStream: Unable to alloc URB\n");
2386 /* transfer buffer allocated in board_init */
2387 usb_fill_bulk_urb(pipe_info
->stream_urb
, dev
->udev
,
2389 pipe_info
->transfer_buffer
,
2390 pipe_info
->cur_transfer_size
,
2391 read_pipe_completion
, pipe_info
);
2392 retval
= usb_submit_urb(pipe_info
->stream_urb
, GFP_KERNEL
);
2394 printk(KERN_ERR
"s2255: start read pipe failed\n");
2400 /* starts acquisition process */
2401 static int s2255_start_acquire(struct s2255_channel
*channel
)
2403 unsigned char *buffer
;
2405 unsigned long chn_rev
;
2407 struct s2255_dev
*dev
= to_s2255_dev(channel
->vdev
.v4l2_dev
);
2408 chn_rev
= G_chnmap
[channel
->idx
];
2409 buffer
= kzalloc(512, GFP_KERNEL
);
2410 if (buffer
== NULL
) {
2411 dev_err(&dev
->udev
->dev
, "out of mem\n");
2415 channel
->last_frame
= -1;
2416 channel
->bad_payload
= 0;
2417 channel
->cur_frame
= 0;
2418 for (j
= 0; j
< SYS_FRAMES
; j
++) {
2419 channel
->buffer
.frame
[j
].ulState
= 0;
2420 channel
->buffer
.frame
[j
].cur_size
= 0;
2423 /* send the start command */
2424 *(__le32
*) buffer
= IN_DATA_TOKEN
;
2425 *((__le32
*) buffer
+ 1) = (__le32
) cpu_to_le32(chn_rev
);
2426 *((__le32
*) buffer
+ 2) = CMD_START
;
2427 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
2429 dev_err(&dev
->udev
->dev
, "CMD_START error\n");
2431 dprintk(2, "start acquire exit[%d] %d \n", channel
->idx
, res
);
2436 static int s2255_stop_acquire(struct s2255_channel
*channel
)
2438 unsigned char *buffer
;
2440 unsigned long chn_rev
;
2441 struct s2255_dev
*dev
= to_s2255_dev(channel
->vdev
.v4l2_dev
);
2442 chn_rev
= G_chnmap
[channel
->idx
];
2443 buffer
= kzalloc(512, GFP_KERNEL
);
2444 if (buffer
== NULL
) {
2445 dev_err(&dev
->udev
->dev
, "out of mem\n");
2448 /* send the stop command */
2449 *(__le32
*) buffer
= IN_DATA_TOKEN
;
2450 *((__le32
*) buffer
+ 1) = (__le32
) cpu_to_le32(chn_rev
);
2451 *((__le32
*) buffer
+ 2) = CMD_STOP
;
2452 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
2454 dev_err(&dev
->udev
->dev
, "CMD_STOP error\n");
2456 channel
->b_acquire
= 0;
2457 dprintk(4, "%s: chn %d, res %d\n", __func__
, channel
->idx
, res
);
2461 static void s2255_stop_readpipe(struct s2255_dev
*dev
)
2463 struct s2255_pipeinfo
*pipe
= &dev
->pipe
;
2466 if (pipe
->stream_urb
) {
2468 usb_kill_urb(pipe
->stream_urb
);
2469 usb_free_urb(pipe
->stream_urb
);
2470 pipe
->stream_urb
= NULL
;
2472 dprintk(4, "%s", __func__
);
2476 static void s2255_fwload_start(struct s2255_dev
*dev
, int reset
)
2479 s2255_reset_dsppower(dev
);
2480 dev
->fw_data
->fw_size
= dev
->fw_data
->fw
->size
;
2481 atomic_set(&dev
->fw_data
->fw_state
, S2255_FW_NOTLOADED
);
2482 memcpy(dev
->fw_data
->pfw_data
,
2483 dev
->fw_data
->fw
->data
, CHUNK_SIZE
);
2484 dev
->fw_data
->fw_loaded
= CHUNK_SIZE
;
2485 usb_fill_bulk_urb(dev
->fw_data
->fw_urb
, dev
->udev
,
2486 usb_sndbulkpipe(dev
->udev
, 2),
2487 dev
->fw_data
->pfw_data
,
2488 CHUNK_SIZE
, s2255_fwchunk_complete
,
2490 mod_timer(&dev
->timer
, jiffies
+ HZ
);
2493 /* standard usb probe function */
2494 static int s2255_probe(struct usb_interface
*interface
,
2495 const struct usb_device_id
*id
)
2497 struct s2255_dev
*dev
= NULL
;
2498 struct usb_host_interface
*iface_desc
;
2499 struct usb_endpoint_descriptor
*endpoint
;
2501 int retval
= -ENOMEM
;
2504 dprintk(2, "%s\n", __func__
);
2505 /* allocate memory for our device state and initialize it to zero */
2506 dev
= kzalloc(sizeof(struct s2255_dev
), GFP_KERNEL
);
2508 s2255_dev_err(&interface
->dev
, "out of memory\n");
2511 atomic_set(&dev
->num_channels
, 0);
2512 dev
->pid
= le16_to_cpu(id
->idProduct
);
2513 dev
->fw_data
= kzalloc(sizeof(struct s2255_fw
), GFP_KERNEL
);
2516 mutex_init(&dev
->lock
);
2517 /* grab usb_device and save it */
2518 dev
->udev
= usb_get_dev(interface_to_usbdev(interface
));
2519 if (dev
->udev
== NULL
) {
2520 dev_err(&interface
->dev
, "null usb device\n");
2524 dprintk(1, "dev: %p, udev %p interface %p\n", dev
,
2525 dev
->udev
, interface
);
2526 dev
->interface
= interface
;
2527 /* set up the endpoint information */
2528 iface_desc
= interface
->cur_altsetting
;
2529 dprintk(1, "num endpoints %d\n", iface_desc
->desc
.bNumEndpoints
);
2530 for (i
= 0; i
< iface_desc
->desc
.bNumEndpoints
; ++i
) {
2531 endpoint
= &iface_desc
->endpoint
[i
].desc
;
2532 if (!dev
->read_endpoint
&& usb_endpoint_is_bulk_in(endpoint
)) {
2533 /* we found the bulk in endpoint */
2534 dev
->read_endpoint
= endpoint
->bEndpointAddress
;
2538 if (!dev
->read_endpoint
) {
2539 dev_err(&interface
->dev
, "Could not find bulk-in endpoint\n");
2542 init_timer(&dev
->timer
);
2543 dev
->timer
.function
= s2255_timer
;
2544 dev
->timer
.data
= (unsigned long)dev
->fw_data
;
2545 init_waitqueue_head(&dev
->fw_data
->wait_fw
);
2546 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
2547 struct s2255_channel
*channel
= &dev
->channel
[i
];
2548 dev
->channel
[i
].idx
= i
;
2549 init_waitqueue_head(&channel
->wait_setmode
);
2550 init_waitqueue_head(&channel
->wait_vidstatus
);
2553 dev
->fw_data
->fw_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2554 if (!dev
->fw_data
->fw_urb
) {
2555 dev_err(&interface
->dev
, "out of memory!\n");
2559 dev
->fw_data
->pfw_data
= kzalloc(CHUNK_SIZE
, GFP_KERNEL
);
2560 if (!dev
->fw_data
->pfw_data
) {
2561 dev_err(&interface
->dev
, "out of memory!\n");
2564 /* load the first chunk */
2565 if (request_firmware(&dev
->fw_data
->fw
,
2566 FIRMWARE_FILE_NAME
, &dev
->udev
->dev
)) {
2567 printk(KERN_ERR
"sensoray 2255 failed to get firmware\n");
2570 /* check the firmware is valid */
2571 fw_size
= dev
->fw_data
->fw
->size
;
2572 pdata
= (__le32
*) &dev
->fw_data
->fw
->data
[fw_size
- 8];
2574 if (*pdata
!= S2255_FW_MARKER
) {
2575 printk(KERN_INFO
"Firmware invalid.\n");
2579 /* make sure firmware is the latest */
2581 pRel
= (__le32
*) &dev
->fw_data
->fw
->data
[fw_size
- 4];
2582 printk(KERN_INFO
"s2255 dsp fw version %x\n", le32_to_cpu(*pRel
));
2583 dev
->dsp_fw_ver
= le32_to_cpu(*pRel
);
2584 if (dev
->dsp_fw_ver
< S2255_CUR_DSP_FWVER
)
2585 printk(KERN_INFO
"s2255: f2255usb.bin out of date.\n");
2586 if (dev
->pid
== 0x2257 &&
2587 dev
->dsp_fw_ver
< S2255_MIN_DSP_COLORFILTER
)
2588 printk(KERN_WARNING
"s2255: 2257 requires firmware %d"
2589 " or above.\n", S2255_MIN_DSP_COLORFILTER
);
2591 usb_reset_device(dev
->udev
);
2592 /* load 2255 board specific */
2593 retval
= s2255_board_init(dev
);
2595 goto errorBOARDINIT
;
2596 spin_lock_init(&dev
->slock
);
2597 s2255_fwload_start(dev
, 0);
2598 /* loads v4l specific */
2599 retval
= s2255_probe_v4l(dev
);
2601 goto errorBOARDINIT
;
2602 dev_info(&interface
->dev
, "Sensoray 2255 detected\n");
2605 s2255_board_shutdown(dev
);
2607 release_firmware(dev
->fw_data
->fw
);
2609 kfree(dev
->fw_data
->pfw_data
);
2611 usb_free_urb(dev
->fw_data
->fw_urb
);
2613 del_timer(&dev
->timer
);
2615 usb_put_dev(dev
->udev
);
2617 kfree(dev
->fw_data
);
2618 mutex_destroy(&dev
->lock
);
2621 printk(KERN_WARNING
"Sensoray 2255 driver load failed: 0x%x\n", retval
);
2625 /* disconnect routine. when board is removed physically or with rmmod */
2626 static void s2255_disconnect(struct usb_interface
*interface
)
2628 struct s2255_dev
*dev
= to_s2255_dev(usb_get_intfdata(interface
));
2630 int channels
= atomic_read(&dev
->num_channels
);
2631 mutex_lock(&dev
->lock
);
2632 v4l2_device_disconnect(&dev
->v4l2_dev
);
2633 mutex_unlock(&dev
->lock
);
2634 /*see comments in the uvc_driver.c usb disconnect function */
2635 atomic_inc(&dev
->num_channels
);
2636 /* unregister each video device. */
2637 for (i
= 0; i
< channels
; i
++)
2638 video_unregister_device(&dev
->channel
[i
].vdev
);
2639 /* wake up any of our timers */
2640 atomic_set(&dev
->fw_data
->fw_state
, S2255_FW_DISCONNECTING
);
2641 wake_up(&dev
->fw_data
->wait_fw
);
2642 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
2643 dev
->channel
[i
].setmode_ready
= 1;
2644 wake_up(&dev
->channel
[i
].wait_setmode
);
2645 dev
->channel
[i
].vidstatus_ready
= 1;
2646 wake_up(&dev
->channel
[i
].wait_vidstatus
);
2648 if (atomic_dec_and_test(&dev
->num_channels
))
2650 dev_info(&interface
->dev
, "%s\n", __func__
);
2653 static struct usb_driver s2255_driver
= {
2654 .name
= S2255_DRIVER_NAME
,
2655 .probe
= s2255_probe
,
2656 .disconnect
= s2255_disconnect
,
2657 .id_table
= s2255_table
,
2660 module_usb_driver(s2255_driver
);
2662 MODULE_DESCRIPTION("Sensoray 2255 Video for Linux driver");
2663 MODULE_AUTHOR("Dean Anderson (Sensoray Company Inc.)");
2664 MODULE_LICENSE("GPL");
2665 MODULE_VERSION(S2255_VERSION
);
2666 MODULE_FIRMWARE(FIRMWARE_FILE_NAME
);