1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * s2255drv.c - a driver for the Sensoray 2255 USB video capture device
5 * Copyright (C) 2007-2014 by Sensoray Company Inc.
8 * Some video buffer code based on vivi driver:
10 * Sensoray 2255 device supports 4 simultaneous channels.
11 * The channels are not "crossbar" inputs, they are physically
12 * attached to separate video decoders.
14 * Because of USB2.0 bandwidth limitations. There is only a
15 * certain amount of data which may be transferred at one time.
17 * Example maximum bandwidth utilization:
19 * -full size, color mode YUYV or YUV422P: 2 channels at once
20 * -full or half size Grey scale: all 4 channels at once
21 * -half size, color mode YUYV or YUV422P: all 4 channels at once
22 * -full size, color mode YUYV or YUV422P 1/2 frame rate: all 4 channels
26 #include <linux/module.h>
27 #include <linux/firmware.h>
28 #include <linux/kernel.h>
29 #include <linux/mutex.h>
30 #include <linux/slab.h>
31 #include <linux/videodev2.h>
33 #include <linux/vmalloc.h>
34 #include <linux/usb.h>
35 #include <media/videobuf2-v4l2.h>
36 #include <media/videobuf2-vmalloc.h>
37 #include <media/v4l2-common.h>
38 #include <media/v4l2-device.h>
39 #include <media/v4l2-ioctl.h>
40 #include <media/v4l2-ctrls.h>
41 #include <media/v4l2-event.h>
43 #define S2255_VERSION "1.25.1"
44 #define FIRMWARE_FILE_NAME "f2255usb.bin"
46 /* default JPEG quality */
47 #define S2255_DEF_JPEG_QUAL 50
48 /* vendor request in */
50 /* vendor request out */
51 #define S2255_VR_OUT 1
53 #define S2255_VR_FW 0x30
54 /* USB endpoint number for configuring the device */
55 #define S2255_CONFIG_EP 2
56 /* maximum time for DSP to start responding after last FW word loaded(ms) */
57 #define S2255_DSP_BOOTTIME 800
58 /* maximum time to wait for firmware to load (ms) */
59 #define S2255_LOAD_TIMEOUT (5000 + S2255_DSP_BOOTTIME)
60 #define S2255_MIN_BUFS 2
61 #define S2255_SETMODE_TIMEOUT 500
62 #define S2255_VIDSTATUS_TIMEOUT 350
63 #define S2255_MARKER_FRAME cpu_to_le32(0x2255DA4AL)
64 #define S2255_MARKER_RESPONSE cpu_to_le32(0x2255ACACL)
65 #define S2255_RESPONSE_SETMODE cpu_to_le32(0x01)
66 #define S2255_RESPONSE_FW cpu_to_le32(0x10)
67 #define S2255_RESPONSE_STATUS cpu_to_le32(0x20)
68 #define S2255_USB_XFER_SIZE (16 * 1024)
69 #define MAX_CHANNELS 4
71 /* maximum size is PAL full size plus room for the marker header(s) */
72 #define SYS_FRAMES_MAXSIZE (720*288*2*2 + 4096)
73 #define DEF_USB_BLOCK S2255_USB_XFER_SIZE
74 #define LINE_SZ_4CIFS_NTSC 640
75 #define LINE_SZ_2CIFS_NTSC 640
76 #define LINE_SZ_1CIFS_NTSC 320
77 #define LINE_SZ_4CIFS_PAL 704
78 #define LINE_SZ_2CIFS_PAL 704
79 #define LINE_SZ_1CIFS_PAL 352
80 #define NUM_LINES_4CIFS_NTSC 240
81 #define NUM_LINES_2CIFS_NTSC 240
82 #define NUM_LINES_1CIFS_NTSC 240
83 #define NUM_LINES_4CIFS_PAL 288
84 #define NUM_LINES_2CIFS_PAL 288
85 #define NUM_LINES_1CIFS_PAL 288
86 #define LINE_SZ_DEF 640
87 #define NUM_LINES_DEF 240
90 /* predefined settings */
94 #define SCALE_4CIFS 1 /* 640x480(NTSC) or 704x576(PAL) */
95 #define SCALE_2CIFS 2 /* 640x240(NTSC) or 704x288(PAL) */
96 #define SCALE_1CIFS 3 /* 320x240(NTSC) or 352x288(PAL) */
97 /* SCALE_4CIFSI is the 2 fields interpolated into one */
98 #define SCALE_4CIFSI 4 /* 640x480(NTSC) or 704x576(PAL) high quality */
100 #define COLOR_YUVPL 1 /* YUV planar */
101 #define COLOR_YUVPK 2 /* YUV packed */
102 #define COLOR_Y8 4 /* monochrome */
103 #define COLOR_JPG 5 /* JPEG */
105 #define MASK_COLOR 0x000000ff
106 #define MASK_JPG_QUALITY 0x0000ff00
107 #define MASK_INPUT_TYPE 0x000f0000
108 /* frame decimation. */
109 #define FDEC_1 1 /* capture every frame. default */
110 #define FDEC_2 2 /* capture every 2nd frame */
111 #define FDEC_3 3 /* capture every 3rd frame */
112 #define FDEC_5 5 /* capture every 5th frame */
114 /*-------------------------------------------------------
115 * Default mode parameters.
116 *-------------------------------------------------------*/
117 #define DEF_SCALE SCALE_4CIFS
118 #define DEF_COLOR COLOR_YUVPL
119 #define DEF_FDEC FDEC_1
121 #define DEF_CONTRAST 0x5c
122 #define DEF_SATURATION 0x80
125 /* usb config commands */
126 #define IN_DATA_TOKEN cpu_to_le32(0x2255c0de)
127 #define CMD_2255 0xc2255000
128 #define CMD_SET_MODE cpu_to_le32((CMD_2255 | 0x10))
129 #define CMD_START cpu_to_le32((CMD_2255 | 0x20))
130 #define CMD_STOP cpu_to_le32((CMD_2255 | 0x30))
131 #define CMD_STATUS cpu_to_le32((CMD_2255 | 0x40))
134 u32 format
; /* input video format (NTSC, PAL) */
135 u32 scale
; /* output video scale */
136 u32 color
; /* output video color format */
137 u32 fdec
; /* frame decimation */
138 u32 bright
; /* brightness */
139 u32 contrast
; /* contrast */
140 u32 saturation
; /* saturation */
141 u32 hue
; /* hue (NTSC only)*/
142 u32 single
; /* capture 1 frame at a time (!=0), continuously (==0)*/
143 u32 usb_block
; /* block size. should be 4096 of DEF_USB_BLOCK */
144 u32 restart
; /* if DSP requires restart */
148 #define S2255_READ_IDLE 0
149 #define S2255_READ_FRAME 1
151 /* frame structure */
152 struct s2255_framei
{
154 unsigned long ulState
; /* ulState:S2255_READ_IDLE, S2255_READ_FRAME*/
155 void *lpvbits
; /* image data */
156 unsigned long cur_size
; /* current data copied to it */
159 /* image buffer structure */
160 struct s2255_bufferi
{
161 unsigned long dwFrames
; /* number of frames in buffer */
162 struct s2255_framei frame
[SYS_FRAMES
]; /* array of FRAME structures */
165 #define DEF_MODEI_NTSC_CONT {FORMAT_NTSC, DEF_SCALE, DEF_COLOR, \
166 DEF_FDEC, DEF_BRIGHT, DEF_CONTRAST, DEF_SATURATION, \
167 DEF_HUE, 0, DEF_USB_BLOCK, 0}
169 /* for firmware loading, fw_state */
170 #define S2255_FW_NOTLOADED 0
171 #define S2255_FW_LOADED_DSPWAIT 1
172 #define S2255_FW_SUCCESS 2
173 #define S2255_FW_FAILED 3
174 #define S2255_FW_DISCONNECTING 4
175 #define S2255_FW_MARKER cpu_to_le32(0x22552f2f)
176 /* 2255 read states */
177 #define S2255_READ_IDLE 0
178 #define S2255_READ_FRAME 1
185 wait_queue_head_t wait_fw
;
186 const struct firmware
*fw
;
189 struct s2255_pipeinfo
{
190 u32 max_transfer_size
;
191 u32 cur_transfer_size
;
195 void *dev
; /* back pointer to s2255_dev struct*/
200 struct s2255_fmt
; /*forward declaration */
203 /* 2255 video channel */
205 struct s2255_dev
*dev
;
206 struct video_device vdev
;
207 struct v4l2_ctrl_handler hdl
;
208 struct v4l2_ctrl
*jpegqual_ctrl
;
210 struct list_head buf_list
;
211 struct s2255_bufferi buffer
;
212 struct s2255_mode mode
;
214 /* jpeg compression */
216 /* capture parameters (for high quality mode full size) */
217 struct v4l2_captureparm cap_parm
;
220 /* allocated image size */
221 unsigned long req_image_size
;
222 /* received packet size */
223 unsigned long pkt_size
;
225 unsigned long frame_count
;
228 /* if channel configured to default state */
230 wait_queue_head_t wait_setmode
;
232 /* video status items */
234 wait_queue_head_t wait_vidstatus
;
238 enum v4l2_field field
;
239 const struct s2255_fmt
*fmt
;
240 int idx
; /* channel number on device, 0-3 */
241 struct vb2_queue vb_vidq
;
242 struct mutex vb_lock
; /* streaming lock */
248 struct s2255_vc vc
[MAX_CHANNELS
];
249 struct v4l2_device v4l2_dev
;
250 atomic_t num_channels
;
252 struct mutex lock
; /* channels[].vdev.lock */
253 struct mutex cmdlock
; /* protects cmdbuf */
254 struct usb_device
*udev
;
255 struct usb_interface
*interface
;
257 struct timer_list timer
;
258 struct s2255_fw
*fw_data
;
259 struct s2255_pipeinfo pipe
;
260 u32 cc
; /* current channel */
263 /* dsp firmware version (f2255usb.bin) */
265 u16 pid
; /* product id */
266 #define S2255_CMDBUF_SIZE 512
270 static inline struct s2255_dev
*to_s2255_dev(struct v4l2_device
*v4l2_dev
)
272 return container_of(v4l2_dev
, struct s2255_dev
, v4l2_dev
);
281 /* buffer for one video frame */
282 struct s2255_buffer
{
283 /* common v4l buffer stuff -- must be first */
284 struct vb2_v4l2_buffer vb
;
285 struct list_head list
;
289 /* current cypress EEPROM firmware version */
290 #define S2255_CUR_USB_FWVER ((3 << 8) | 12)
291 /* current DSP FW version */
292 #define S2255_CUR_DSP_FWVER 10104
293 /* Need DSP version 5+ for video status feature */
294 #define S2255_MIN_DSP_STATUS 5
295 #define S2255_MIN_DSP_COLORFILTER 8
296 #define S2255_NORMS (V4L2_STD_ALL)
298 /* private V4L2 controls */
301 * The following chart displays how COLORFILTER should be set
302 * =========================================================
303 * = fourcc = COLORFILTER =
304 * = ===============================
306 * =========================================================
307 * = V4L2_PIX_FMT_GREY(Y8) = monochrome from = monochrome=
308 * = = s-video or = composite =
309 * = = B/W camera = input =
310 * =========================================================
311 * = other = color, svideo = color, =
313 * =========================================================
316 * channels 0-3 on 2255 are composite
317 * channels 0-1 on 2257 are composite, 2-3 are s-video
318 * If COLORFILTER is 0 with a composite color camera connected,
319 * the output will appear monochrome but hatching
321 * COLORFILTER is different from "color killer" and "color effects"
324 #define S2255_V4L2_YC_ON 1
325 #define S2255_V4L2_YC_OFF 0
326 #define V4L2_CID_S2255_COLORFILTER (V4L2_CID_USER_S2255_BASE + 0)
328 /* frame prefix size (sent once every frame) */
329 #define PREFIX_SIZE 512
331 /* Channels on box are in reverse order */
332 static unsigned long G_chnmap
[MAX_CHANNELS
] = {3, 2, 1, 0};
336 static int s2255_start_readpipe(struct s2255_dev
*dev
);
337 static void s2255_stop_readpipe(struct s2255_dev
*dev
);
338 static int s2255_start_acquire(struct s2255_vc
*vc
);
339 static int s2255_stop_acquire(struct s2255_vc
*vc
);
340 static void s2255_fillbuff(struct s2255_vc
*vc
, struct s2255_buffer
*buf
,
342 static int s2255_set_mode(struct s2255_vc
*vc
, struct s2255_mode
*mode
);
343 static int s2255_board_shutdown(struct s2255_dev
*dev
);
344 static void s2255_fwload_start(struct s2255_dev
*dev
);
345 static void s2255_destroy(struct s2255_dev
*dev
);
346 static long s2255_vendor_req(struct s2255_dev
*dev
, unsigned char req
,
347 u16 index
, u16 value
, void *buf
,
348 s32 buf_len
, int bOut
);
350 /* dev_err macro with driver name */
351 #define S2255_DRIVER_NAME "s2255"
352 #define s2255_dev_err(dev, fmt, arg...) \
353 dev_err(dev, S2255_DRIVER_NAME " - " fmt, ##arg)
355 #define dprintk(dev, level, fmt, arg...) \
356 v4l2_dbg(level, debug, &dev->v4l2_dev, fmt, ## arg)
358 static struct usb_driver s2255_driver
;
360 /* start video number */
361 static int video_nr
= -1; /* /dev/videoN, -1 for autodetect */
363 /* Enable jpeg capture. */
364 static int jpeg_enable
= 1;
366 module_param(debug
, int, 0644);
367 MODULE_PARM_DESC(debug
, "Debug level(0-100) default 0");
368 module_param(video_nr
, int, 0644);
369 MODULE_PARM_DESC(video_nr
, "start video minor(-1 default autodetect)");
370 module_param(jpeg_enable
, int, 0644);
371 MODULE_PARM_DESC(jpeg_enable
, "Jpeg enable(1-on 0-off) default 1");
373 /* USB device table */
374 #define USB_SENSORAY_VID 0x1943
375 static const struct usb_device_id s2255_table
[] = {
376 {USB_DEVICE(USB_SENSORAY_VID
, 0x2255)},
377 {USB_DEVICE(USB_SENSORAY_VID
, 0x2257)}, /*same family as 2255*/
378 { } /* Terminating entry */
380 MODULE_DEVICE_TABLE(usb
, s2255_table
);
382 #define BUFFER_TIMEOUT msecs_to_jiffies(400)
385 /* JPEG formats must be defined last to support jpeg_enable parameter */
386 static const struct s2255_fmt formats
[] = {
388 .name
= "4:2:2, packed, YUYV",
389 .fourcc
= V4L2_PIX_FMT_YUYV
,
393 .name
= "4:2:2, packed, UYVY",
394 .fourcc
= V4L2_PIX_FMT_UYVY
,
397 .name
= "4:2:2, planar, YUV422P",
398 .fourcc
= V4L2_PIX_FMT_YUV422P
,
403 .fourcc
= V4L2_PIX_FMT_GREY
,
407 .fourcc
= V4L2_PIX_FMT_JPEG
,
411 .fourcc
= V4L2_PIX_FMT_MJPEG
,
416 static int norm_maxw(struct s2255_vc
*vc
)
418 return (vc
->std
& V4L2_STD_525_60
) ?
419 LINE_SZ_4CIFS_NTSC
: LINE_SZ_4CIFS_PAL
;
422 static int norm_maxh(struct s2255_vc
*vc
)
424 return (vc
->std
& V4L2_STD_525_60
) ?
425 (NUM_LINES_1CIFS_NTSC
* 2) : (NUM_LINES_1CIFS_PAL
* 2);
428 static int norm_minw(struct s2255_vc
*vc
)
430 return (vc
->std
& V4L2_STD_525_60
) ?
431 LINE_SZ_1CIFS_NTSC
: LINE_SZ_1CIFS_PAL
;
434 static int norm_minh(struct s2255_vc
*vc
)
436 return (vc
->std
& V4L2_STD_525_60
) ?
437 (NUM_LINES_1CIFS_NTSC
) : (NUM_LINES_1CIFS_PAL
);
442 * TODO: fixme: move YUV reordering to hardware
443 * converts 2255 planar format to yuyv or uyvy
445 static void planar422p_to_yuv_packed(const unsigned char *in
,
447 int width
, int height
,
453 unsigned long size
= height
* width
;
455 pY
= (unsigned char *)in
;
456 pCr
= (unsigned char *)in
+ height
* width
;
457 pCb
= (unsigned char *)in
+ height
* width
+ (height
* width
/ 2);
458 for (i
= 0; i
< size
* 2; i
+= 4) {
459 out
[i
] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pY
++ : *pCr
++;
460 out
[i
+ 1] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pCr
++ : *pY
++;
461 out
[i
+ 2] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pY
++ : *pCb
++;
462 out
[i
+ 3] = (fmt
== V4L2_PIX_FMT_YUYV
) ? *pCb
++ : *pY
++;
467 static void s2255_reset_dsppower(struct s2255_dev
*dev
)
469 s2255_vendor_req(dev
, 0x40, 0x0000, 0x0001, NULL
, 0, 1);
471 s2255_vendor_req(dev
, 0x50, 0x0000, 0x0000, NULL
, 0, 1);
473 s2255_vendor_req(dev
, 0x10, 0x0000, 0x0000, NULL
, 0, 1);
477 /* kickstarts the firmware loading. from probe
479 static void s2255_timer(struct timer_list
*t
)
481 struct s2255_dev
*dev
= from_timer(dev
, t
, timer
);
482 struct s2255_fw
*data
= dev
->fw_data
;
483 if (usb_submit_urb(data
->fw_urb
, GFP_ATOMIC
) < 0) {
484 pr_err("s2255: can't submit urb\n");
485 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
486 /* wake up anything waiting for the firmware */
487 wake_up(&data
->wait_fw
);
493 /* this loads the firmware asynchronously.
494 Originally this was done synchronously in probe.
495 But it is better to load it asynchronously here than block
496 inside the probe function. Blocking inside probe affects boot time.
497 FW loading is triggered by the timer in the probe function
499 static void s2255_fwchunk_complete(struct urb
*urb
)
501 struct s2255_fw
*data
= urb
->context
;
502 struct usb_device
*udev
= urb
->dev
;
505 dev_err(&udev
->dev
, "URB failed with status %d\n", urb
->status
);
506 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
507 /* wake up anything waiting for the firmware */
508 wake_up(&data
->wait_fw
);
511 if (data
->fw_urb
== NULL
) {
512 s2255_dev_err(&udev
->dev
, "disconnected\n");
513 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
514 /* wake up anything waiting for the firmware */
515 wake_up(&data
->wait_fw
);
518 #define CHUNK_SIZE 512
519 /* all USB transfers must be done with continuous kernel memory.
520 can't allocate more than 128k in current linux kernel, so
521 upload the firmware in chunks
523 if (data
->fw_loaded
< data
->fw_size
) {
524 len
= (data
->fw_loaded
+ CHUNK_SIZE
) > data
->fw_size
?
525 data
->fw_size
% CHUNK_SIZE
: CHUNK_SIZE
;
527 if (len
< CHUNK_SIZE
)
528 memset(data
->pfw_data
, 0, CHUNK_SIZE
);
530 memcpy(data
->pfw_data
,
531 (char *) data
->fw
->data
+ data
->fw_loaded
, len
);
533 usb_fill_bulk_urb(data
->fw_urb
, udev
, usb_sndbulkpipe(udev
, 2),
534 data
->pfw_data
, CHUNK_SIZE
,
535 s2255_fwchunk_complete
, data
);
536 if (usb_submit_urb(data
->fw_urb
, GFP_ATOMIC
) < 0) {
537 dev_err(&udev
->dev
, "failed submit URB\n");
538 atomic_set(&data
->fw_state
, S2255_FW_FAILED
);
539 /* wake up anything waiting for the firmware */
540 wake_up(&data
->wait_fw
);
543 data
->fw_loaded
+= len
;
545 atomic_set(&data
->fw_state
, S2255_FW_LOADED_DSPWAIT
);
550 static void s2255_got_frame(struct s2255_vc
*vc
, int jpgsize
)
552 struct s2255_buffer
*buf
;
553 struct s2255_dev
*dev
= to_s2255_dev(vc
->vdev
.v4l2_dev
);
554 unsigned long flags
= 0;
556 spin_lock_irqsave(&vc
->qlock
, flags
);
557 if (list_empty(&vc
->buf_list
)) {
558 dprintk(dev
, 1, "No active queue to serve\n");
559 spin_unlock_irqrestore(&vc
->qlock
, flags
);
562 buf
= list_entry(vc
->buf_list
.next
,
563 struct s2255_buffer
, list
);
564 list_del(&buf
->list
);
565 buf
->vb
.vb2_buf
.timestamp
= ktime_get_ns();
566 buf
->vb
.field
= vc
->field
;
567 buf
->vb
.sequence
= vc
->frame_count
;
568 spin_unlock_irqrestore(&vc
->qlock
, flags
);
570 s2255_fillbuff(vc
, buf
, jpgsize
);
571 /* tell v4l buffer was filled */
572 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_DONE
);
573 dprintk(dev
, 2, "%s: [buf] [%p]\n", __func__
, buf
);
576 static const struct s2255_fmt
*format_by_fourcc(int fourcc
)
579 for (i
= 0; i
< ARRAY_SIZE(formats
); i
++) {
580 if (-1 == formats
[i
].fourcc
)
582 if (!jpeg_enable
&& ((formats
[i
].fourcc
== V4L2_PIX_FMT_JPEG
) ||
583 (formats
[i
].fourcc
== V4L2_PIX_FMT_MJPEG
)))
585 if (formats
[i
].fourcc
== fourcc
)
591 /* video buffer vmalloc implementation based partly on VIVI driver which is
592 * Copyright (c) 2006 by
593 * Mauro Carvalho Chehab <mchehab--a.t--infradead.org>
594 * Ted Walther <ted--a.t--enumera.com>
595 * John Sokol <sokol--a.t--videotechnology.com>
596 * http://v4l.videotechnology.com/
599 static void s2255_fillbuff(struct s2255_vc
*vc
,
600 struct s2255_buffer
*buf
, int jpgsize
)
604 char *vbuf
= vb2_plane_vaddr(&buf
->vb
.vb2_buf
, 0);
605 unsigned long last_frame
;
606 struct s2255_dev
*dev
= vc
->dev
;
610 last_frame
= vc
->last_frame
;
611 if (last_frame
!= -1) {
613 (const char *)vc
->buffer
.frame
[last_frame
].lpvbits
;
614 switch (vc
->fmt
->fourcc
) {
615 case V4L2_PIX_FMT_YUYV
:
616 case V4L2_PIX_FMT_UYVY
:
617 planar422p_to_yuv_packed((const unsigned char *)tmpbuf
,
622 case V4L2_PIX_FMT_GREY
:
623 memcpy(vbuf
, tmpbuf
, vc
->width
* vc
->height
);
625 case V4L2_PIX_FMT_JPEG
:
626 case V4L2_PIX_FMT_MJPEG
:
627 vb2_set_plane_payload(&buf
->vb
.vb2_buf
, 0, jpgsize
);
628 memcpy(vbuf
, tmpbuf
, jpgsize
);
630 case V4L2_PIX_FMT_YUV422P
:
632 vc
->width
* vc
->height
* 2);
635 pr_info("s2255: unknown format?\n");
639 pr_err("s2255: =======no frame\n");
642 dprintk(dev
, 2, "s2255fill at : Buffer %p size= %d\n",
647 /* ------------------------------------------------------------------
649 ------------------------------------------------------------------*/
651 static int queue_setup(struct vb2_queue
*vq
,
652 unsigned int *nbuffers
, unsigned int *nplanes
,
653 unsigned int sizes
[], struct device
*alloc_devs
[])
655 struct s2255_vc
*vc
= vb2_get_drv_priv(vq
);
656 if (*nbuffers
< S2255_MIN_BUFS
)
657 *nbuffers
= S2255_MIN_BUFS
;
659 sizes
[0] = vc
->width
* vc
->height
* (vc
->fmt
->depth
>> 3);
663 static int buffer_prepare(struct vb2_buffer
*vb
)
665 struct s2255_vc
*vc
= vb2_get_drv_priv(vb
->vb2_queue
);
666 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
667 struct s2255_buffer
*buf
= container_of(vbuf
, struct s2255_buffer
, vb
);
672 dprintk(vc
->dev
, 4, "%s\n", __func__
);
676 if ((w
< norm_minw(vc
)) ||
677 (w
> norm_maxw(vc
)) ||
678 (h
< norm_minh(vc
)) ||
679 (h
> norm_maxh(vc
))) {
680 dprintk(vc
->dev
, 4, "invalid buffer prepare\n");
683 size
= w
* h
* (vc
->fmt
->depth
>> 3);
684 if (vb2_plane_size(vb
, 0) < size
) {
685 dprintk(vc
->dev
, 4, "invalid buffer prepare\n");
689 vb2_set_plane_payload(&buf
->vb
.vb2_buf
, 0, size
);
693 static void buffer_queue(struct vb2_buffer
*vb
)
695 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
696 struct s2255_buffer
*buf
= container_of(vbuf
, struct s2255_buffer
, vb
);
697 struct s2255_vc
*vc
= vb2_get_drv_priv(vb
->vb2_queue
);
698 unsigned long flags
= 0;
699 dprintk(vc
->dev
, 1, "%s\n", __func__
);
700 spin_lock_irqsave(&vc
->qlock
, flags
);
701 list_add_tail(&buf
->list
, &vc
->buf_list
);
702 spin_unlock_irqrestore(&vc
->qlock
, flags
);
705 static int start_streaming(struct vb2_queue
*vq
, unsigned int count
);
706 static void stop_streaming(struct vb2_queue
*vq
);
708 static const struct vb2_ops s2255_video_qops
= {
709 .queue_setup
= queue_setup
,
710 .buf_prepare
= buffer_prepare
,
711 .buf_queue
= buffer_queue
,
712 .start_streaming
= start_streaming
,
713 .stop_streaming
= stop_streaming
,
714 .wait_prepare
= vb2_ops_wait_prepare
,
715 .wait_finish
= vb2_ops_wait_finish
,
718 static int vidioc_querycap(struct file
*file
, void *priv
,
719 struct v4l2_capability
*cap
)
721 struct s2255_vc
*vc
= video_drvdata(file
);
722 struct s2255_dev
*dev
= vc
->dev
;
724 strscpy(cap
->driver
, "s2255", sizeof(cap
->driver
));
725 strscpy(cap
->card
, "s2255", sizeof(cap
->card
));
726 usb_make_path(dev
->udev
, cap
->bus_info
, sizeof(cap
->bus_info
));
727 cap
->device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_STREAMING
|
729 cap
->capabilities
= cap
->device_caps
| V4L2_CAP_DEVICE_CAPS
;
733 static int vidioc_enum_fmt_vid_cap(struct file
*file
, void *priv
,
734 struct v4l2_fmtdesc
*f
)
736 int index
= f
->index
;
738 if (index
>= ARRAY_SIZE(formats
))
740 if (!jpeg_enable
&& ((formats
[index
].fourcc
== V4L2_PIX_FMT_JPEG
) ||
741 (formats
[index
].fourcc
== V4L2_PIX_FMT_MJPEG
)))
743 strscpy(f
->description
, formats
[index
].name
, sizeof(f
->description
));
744 f
->pixelformat
= formats
[index
].fourcc
;
748 static int vidioc_g_fmt_vid_cap(struct file
*file
, void *priv
,
749 struct v4l2_format
*f
)
751 struct s2255_vc
*vc
= video_drvdata(file
);
752 int is_ntsc
= vc
->std
& V4L2_STD_525_60
;
754 f
->fmt
.pix
.width
= vc
->width
;
755 f
->fmt
.pix
.height
= vc
->height
;
756 if (f
->fmt
.pix
.height
>=
757 (is_ntsc
? NUM_LINES_1CIFS_NTSC
: NUM_LINES_1CIFS_PAL
) * 2)
758 f
->fmt
.pix
.field
= V4L2_FIELD_INTERLACED
;
760 f
->fmt
.pix
.field
= V4L2_FIELD_TOP
;
761 f
->fmt
.pix
.pixelformat
= vc
->fmt
->fourcc
;
762 f
->fmt
.pix
.bytesperline
= f
->fmt
.pix
.width
* (vc
->fmt
->depth
>> 3);
763 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
764 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
769 static int vidioc_try_fmt_vid_cap(struct file
*file
, void *priv
,
770 struct v4l2_format
*f
)
772 const struct s2255_fmt
*fmt
;
773 enum v4l2_field field
;
774 struct s2255_vc
*vc
= video_drvdata(file
);
775 int is_ntsc
= vc
->std
& V4L2_STD_525_60
;
777 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
782 field
= f
->fmt
.pix
.field
;
784 dprintk(vc
->dev
, 50, "%s NTSC: %d suggested width: %d, height: %d\n",
785 __func__
, is_ntsc
, f
->fmt
.pix
.width
, f
->fmt
.pix
.height
);
788 if (f
->fmt
.pix
.height
>= NUM_LINES_1CIFS_NTSC
* 2) {
789 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_NTSC
* 2;
790 field
= V4L2_FIELD_INTERLACED
;
792 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_NTSC
;
793 field
= V4L2_FIELD_TOP
;
795 if (f
->fmt
.pix
.width
>= LINE_SZ_4CIFS_NTSC
)
796 f
->fmt
.pix
.width
= LINE_SZ_4CIFS_NTSC
;
798 f
->fmt
.pix
.width
= LINE_SZ_1CIFS_NTSC
;
801 if (f
->fmt
.pix
.height
>= NUM_LINES_1CIFS_PAL
* 2) {
802 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_PAL
* 2;
803 field
= V4L2_FIELD_INTERLACED
;
805 f
->fmt
.pix
.height
= NUM_LINES_1CIFS_PAL
;
806 field
= V4L2_FIELD_TOP
;
808 if (f
->fmt
.pix
.width
>= LINE_SZ_4CIFS_PAL
)
809 f
->fmt
.pix
.width
= LINE_SZ_4CIFS_PAL
;
811 f
->fmt
.pix
.width
= LINE_SZ_1CIFS_PAL
;
813 f
->fmt
.pix
.field
= field
;
814 f
->fmt
.pix
.bytesperline
= (f
->fmt
.pix
.width
* fmt
->depth
) >> 3;
815 f
->fmt
.pix
.sizeimage
= f
->fmt
.pix
.height
* f
->fmt
.pix
.bytesperline
;
816 f
->fmt
.pix
.colorspace
= V4L2_COLORSPACE_SMPTE170M
;
818 dprintk(vc
->dev
, 50, "%s: set width %d height %d field %d\n", __func__
,
819 f
->fmt
.pix
.width
, f
->fmt
.pix
.height
, f
->fmt
.pix
.field
);
823 static int vidioc_s_fmt_vid_cap(struct file
*file
, void *priv
,
824 struct v4l2_format
*f
)
826 struct s2255_vc
*vc
= video_drvdata(file
);
827 const struct s2255_fmt
*fmt
;
828 struct vb2_queue
*q
= &vc
->vb_vidq
;
829 struct s2255_mode mode
;
832 ret
= vidioc_try_fmt_vid_cap(file
, vc
, f
);
837 fmt
= format_by_fourcc(f
->fmt
.pix
.pixelformat
);
842 if (vb2_is_busy(q
)) {
843 dprintk(vc
->dev
, 1, "queue busy\n");
849 vc
->width
= f
->fmt
.pix
.width
;
850 vc
->height
= f
->fmt
.pix
.height
;
851 vc
->field
= f
->fmt
.pix
.field
;
852 if (vc
->width
> norm_minw(vc
)) {
853 if (vc
->height
> norm_minh(vc
)) {
854 if (vc
->cap_parm
.capturemode
&
855 V4L2_MODE_HIGHQUALITY
)
856 mode
.scale
= SCALE_4CIFSI
;
858 mode
.scale
= SCALE_4CIFS
;
860 mode
.scale
= SCALE_2CIFS
;
863 mode
.scale
= SCALE_1CIFS
;
866 switch (vc
->fmt
->fourcc
) {
867 case V4L2_PIX_FMT_GREY
:
868 mode
.color
&= ~MASK_COLOR
;
869 mode
.color
|= COLOR_Y8
;
871 case V4L2_PIX_FMT_JPEG
:
872 case V4L2_PIX_FMT_MJPEG
:
873 mode
.color
&= ~MASK_COLOR
;
874 mode
.color
|= COLOR_JPG
;
875 mode
.color
|= (vc
->jpegqual
<< 8);
877 case V4L2_PIX_FMT_YUV422P
:
878 mode
.color
&= ~MASK_COLOR
;
879 mode
.color
|= COLOR_YUVPL
;
881 case V4L2_PIX_FMT_YUYV
:
882 case V4L2_PIX_FMT_UYVY
:
884 mode
.color
&= ~MASK_COLOR
;
885 mode
.color
|= COLOR_YUVPK
;
888 if ((mode
.color
& MASK_COLOR
) != (vc
->mode
.color
& MASK_COLOR
))
890 else if (mode
.scale
!= vc
->mode
.scale
)
892 else if (mode
.format
!= vc
->mode
.format
)
895 (void) s2255_set_mode(vc
, &mode
);
900 /* write to the configuration pipe, synchronously */
901 static int s2255_write_config(struct usb_device
*udev
, unsigned char *pbuf
,
908 pipe
= usb_sndbulkpipe(udev
, S2255_CONFIG_EP
);
909 retval
= usb_bulk_msg(udev
, pipe
, pbuf
, size
, &done
, 500);
914 static u32
get_transfer_size(struct s2255_mode
*mode
)
916 int linesPerFrame
= LINE_SZ_DEF
;
917 int pixelsPerLine
= NUM_LINES_DEF
;
920 unsigned int mask_mult
;
925 if (mode
->format
== FORMAT_NTSC
) {
926 switch (mode
->scale
) {
929 linesPerFrame
= NUM_LINES_4CIFS_NTSC
* 2;
930 pixelsPerLine
= LINE_SZ_4CIFS_NTSC
;
933 linesPerFrame
= NUM_LINES_2CIFS_NTSC
;
934 pixelsPerLine
= LINE_SZ_2CIFS_NTSC
;
937 linesPerFrame
= NUM_LINES_1CIFS_NTSC
;
938 pixelsPerLine
= LINE_SZ_1CIFS_NTSC
;
943 } else if (mode
->format
== FORMAT_PAL
) {
944 switch (mode
->scale
) {
947 linesPerFrame
= NUM_LINES_4CIFS_PAL
* 2;
948 pixelsPerLine
= LINE_SZ_4CIFS_PAL
;
951 linesPerFrame
= NUM_LINES_2CIFS_PAL
;
952 pixelsPerLine
= LINE_SZ_2CIFS_PAL
;
955 linesPerFrame
= NUM_LINES_1CIFS_PAL
;
956 pixelsPerLine
= LINE_SZ_1CIFS_PAL
;
962 outImageSize
= linesPerFrame
* pixelsPerLine
;
963 if ((mode
->color
& MASK_COLOR
) != COLOR_Y8
) {
964 /* 2 bytes/pixel if not monochrome */
968 /* total bytes to send including prefix and 4K padding;
969 must be a multiple of USB_READ_SIZE */
970 usbInSize
= outImageSize
+ PREFIX_SIZE
; /* always send prefix */
971 mask_mult
= 0xffffffffUL
- DEF_USB_BLOCK
+ 1;
972 /* if size not a multiple of USB_READ_SIZE */
973 if (usbInSize
& ~mask_mult
)
974 usbInSize
= (usbInSize
& mask_mult
) + (DEF_USB_BLOCK
);
978 static void s2255_print_cfg(struct s2255_dev
*sdev
, struct s2255_mode
*mode
)
980 struct device
*dev
= &sdev
->udev
->dev
;
981 dev_info(dev
, "------------------------------------------------\n");
982 dev_info(dev
, "format: %d\nscale %d\n", mode
->format
, mode
->scale
);
983 dev_info(dev
, "fdec: %d\ncolor %d\n", mode
->fdec
, mode
->color
);
984 dev_info(dev
, "bright: 0x%x\n", mode
->bright
);
985 dev_info(dev
, "------------------------------------------------\n");
989 * set mode is the function which controls the DSP.
990 * the restart parameter in struct s2255_mode should be set whenever
991 * the image size could change via color format, video system or image
993 * When the restart parameter is set, we sleep for ONE frame to allow the
994 * DSP time to get the new frame
996 static int s2255_set_mode(struct s2255_vc
*vc
,
997 struct s2255_mode
*mode
)
1000 unsigned long chn_rev
;
1001 struct s2255_dev
*dev
= to_s2255_dev(vc
->vdev
.v4l2_dev
);
1003 __le32
*buffer
= dev
->cmdbuf
;
1005 mutex_lock(&dev
->cmdlock
);
1006 chn_rev
= G_chnmap
[vc
->idx
];
1007 dprintk(dev
, 3, "%s channel: %d\n", __func__
, vc
->idx
);
1008 /* if JPEG, set the quality */
1009 if ((mode
->color
& MASK_COLOR
) == COLOR_JPG
) {
1010 mode
->color
&= ~MASK_COLOR
;
1011 mode
->color
|= COLOR_JPG
;
1012 mode
->color
&= ~MASK_JPG_QUALITY
;
1013 mode
->color
|= (vc
->jpegqual
<< 8);
1017 vc
->req_image_size
= get_transfer_size(mode
);
1018 dprintk(dev
, 1, "%s: reqsize %ld\n", __func__
, vc
->req_image_size
);
1020 buffer
[0] = IN_DATA_TOKEN
;
1021 buffer
[1] = (__le32
) cpu_to_le32(chn_rev
);
1022 buffer
[2] = CMD_SET_MODE
;
1023 for (i
= 0; i
< sizeof(struct s2255_mode
) / sizeof(u32
); i
++)
1024 buffer
[3 + i
] = cpu_to_le32(((u32
*)&vc
->mode
)[i
]);
1025 vc
->setmode_ready
= 0;
1026 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
1028 s2255_print_cfg(dev
, mode
);
1029 /* wait at least 3 frames before continuing */
1030 if (mode
->restart
) {
1031 wait_event_timeout(vc
->wait_setmode
,
1032 (vc
->setmode_ready
!= 0),
1033 msecs_to_jiffies(S2255_SETMODE_TIMEOUT
));
1034 if (vc
->setmode_ready
!= 1) {
1035 dprintk(dev
, 0, "s2255: no set mode response\n");
1039 /* clear the restart flag */
1040 vc
->mode
.restart
= 0;
1041 dprintk(dev
, 1, "%s chn %d, result: %d\n", __func__
, vc
->idx
, res
);
1042 mutex_unlock(&dev
->cmdlock
);
1046 static int s2255_cmd_status(struct s2255_vc
*vc
, u32
*pstatus
)
1050 struct s2255_dev
*dev
= to_s2255_dev(vc
->vdev
.v4l2_dev
);
1051 __le32
*buffer
= dev
->cmdbuf
;
1053 mutex_lock(&dev
->cmdlock
);
1054 chn_rev
= G_chnmap
[vc
->idx
];
1055 dprintk(dev
, 4, "%s chan %d\n", __func__
, vc
->idx
);
1056 /* form the get vid status command */
1057 buffer
[0] = IN_DATA_TOKEN
;
1058 buffer
[1] = (__le32
) cpu_to_le32(chn_rev
);
1059 buffer
[2] = CMD_STATUS
;
1061 vc
->vidstatus_ready
= 0;
1062 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
1063 wait_event_timeout(vc
->wait_vidstatus
,
1064 (vc
->vidstatus_ready
!= 0),
1065 msecs_to_jiffies(S2255_VIDSTATUS_TIMEOUT
));
1066 if (vc
->vidstatus_ready
!= 1) {
1067 dprintk(dev
, 0, "s2255: no vidstatus response\n");
1070 *pstatus
= vc
->vidstatus
;
1071 dprintk(dev
, 4, "%s, vid status %d\n", __func__
, *pstatus
);
1072 mutex_unlock(&dev
->cmdlock
);
1076 static int start_streaming(struct vb2_queue
*vq
, unsigned int count
)
1078 struct s2255_vc
*vc
= vb2_get_drv_priv(vq
);
1081 vc
->last_frame
= -1;
1082 vc
->bad_payload
= 0;
1084 vc
->frame_count
= 0;
1085 for (j
= 0; j
< SYS_FRAMES
; j
++) {
1086 vc
->buffer
.frame
[j
].ulState
= S2255_READ_IDLE
;
1087 vc
->buffer
.frame
[j
].cur_size
= 0;
1089 return s2255_start_acquire(vc
);
1092 /* abort streaming and wait for last buffer */
1093 static void stop_streaming(struct vb2_queue
*vq
)
1095 struct s2255_vc
*vc
= vb2_get_drv_priv(vq
);
1096 struct s2255_buffer
*buf
, *node
;
1097 unsigned long flags
;
1098 (void) s2255_stop_acquire(vc
);
1099 spin_lock_irqsave(&vc
->qlock
, flags
);
1100 list_for_each_entry_safe(buf
, node
, &vc
->buf_list
, list
) {
1101 list_del(&buf
->list
);
1102 vb2_buffer_done(&buf
->vb
.vb2_buf
, VB2_BUF_STATE_ERROR
);
1103 dprintk(vc
->dev
, 2, "[%p/%d] done\n",
1104 buf
, buf
->vb
.vb2_buf
.index
);
1106 spin_unlock_irqrestore(&vc
->qlock
, flags
);
1109 static int vidioc_s_std(struct file
*file
, void *priv
, v4l2_std_id i
)
1111 struct s2255_vc
*vc
= video_drvdata(file
);
1112 struct s2255_mode mode
;
1113 struct vb2_queue
*q
= &vc
->vb_vidq
;
1116 * Changing the standard implies a format change, which is not allowed
1117 * while buffers for use with streaming have already been allocated.
1123 if (i
& V4L2_STD_525_60
) {
1124 dprintk(vc
->dev
, 4, "%s 60 Hz\n", __func__
);
1125 /* if changing format, reset frame decimation/intervals */
1126 if (mode
.format
!= FORMAT_NTSC
) {
1128 mode
.format
= FORMAT_NTSC
;
1130 vc
->width
= LINE_SZ_4CIFS_NTSC
;
1131 vc
->height
= NUM_LINES_4CIFS_NTSC
* 2;
1133 } else if (i
& V4L2_STD_625_50
) {
1134 dprintk(vc
->dev
, 4, "%s 50 Hz\n", __func__
);
1135 if (mode
.format
!= FORMAT_PAL
) {
1137 mode
.format
= FORMAT_PAL
;
1139 vc
->width
= LINE_SZ_4CIFS_PAL
;
1140 vc
->height
= NUM_LINES_4CIFS_PAL
* 2;
1146 s2255_set_mode(vc
, &mode
);
1150 static int vidioc_g_std(struct file
*file
, void *priv
, v4l2_std_id
*i
)
1152 struct s2255_vc
*vc
= video_drvdata(file
);
1158 /* Sensoray 2255 is a multiple channel capture device.
1159 It does not have a "crossbar" of inputs.
1160 We use one V4L device per channel. The user must
1161 be aware that certain combinations are not allowed.
1162 For instance, you cannot do full FPS on more than 2 channels(2 videodevs)
1163 at once in color(you can do full fps on 4 channels with greyscale.
1165 static int vidioc_enum_input(struct file
*file
, void *priv
,
1166 struct v4l2_input
*inp
)
1168 struct s2255_vc
*vc
= video_drvdata(file
);
1169 struct s2255_dev
*dev
= vc
->dev
;
1172 if (inp
->index
!= 0)
1174 inp
->type
= V4L2_INPUT_TYPE_CAMERA
;
1175 inp
->std
= S2255_NORMS
;
1177 if (dev
->dsp_fw_ver
>= S2255_MIN_DSP_STATUS
) {
1179 rc
= s2255_cmd_status(vc
, &status
);
1180 dprintk(dev
, 4, "s2255_cmd_status rc: %d status %x\n",
1183 inp
->status
= (status
& 0x01) ? 0
1184 : V4L2_IN_ST_NO_SIGNAL
;
1189 strscpy(inp
->name
, "Composite", sizeof(inp
->name
));
1192 strscpy(inp
->name
, (vc
->idx
< 2) ? "Composite" : "S-Video",
1199 static int vidioc_g_input(struct file
*file
, void *priv
, unsigned int *i
)
1204 static int vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
1211 static int s2255_s_ctrl(struct v4l2_ctrl
*ctrl
)
1213 struct s2255_vc
*vc
=
1214 container_of(ctrl
->handler
, struct s2255_vc
, hdl
);
1215 struct s2255_mode mode
;
1217 /* update the mode to the corresponding value */
1219 case V4L2_CID_BRIGHTNESS
:
1220 mode
.bright
= ctrl
->val
;
1222 case V4L2_CID_CONTRAST
:
1223 mode
.contrast
= ctrl
->val
;
1226 mode
.hue
= ctrl
->val
;
1228 case V4L2_CID_SATURATION
:
1229 mode
.saturation
= ctrl
->val
;
1231 case V4L2_CID_S2255_COLORFILTER
:
1232 mode
.color
&= ~MASK_INPUT_TYPE
;
1233 mode
.color
|= !ctrl
->val
<< 16;
1235 case V4L2_CID_JPEG_COMPRESSION_QUALITY
:
1236 vc
->jpegqual
= ctrl
->val
;
1242 /* set mode here. Note: stream does not need restarted.
1243 some V4L programs restart stream unnecessarily
1246 s2255_set_mode(vc
, &mode
);
1250 static int vidioc_g_jpegcomp(struct file
*file
, void *priv
,
1251 struct v4l2_jpegcompression
*jc
)
1253 struct s2255_vc
*vc
= video_drvdata(file
);
1255 memset(jc
, 0, sizeof(*jc
));
1256 jc
->quality
= vc
->jpegqual
;
1257 dprintk(vc
->dev
, 2, "%s: quality %d\n", __func__
, jc
->quality
);
1261 static int vidioc_s_jpegcomp(struct file
*file
, void *priv
,
1262 const struct v4l2_jpegcompression
*jc
)
1264 struct s2255_vc
*vc
= video_drvdata(file
);
1266 if (jc
->quality
< 0 || jc
->quality
> 100)
1268 v4l2_ctrl_s_ctrl(vc
->jpegqual_ctrl
, jc
->quality
);
1269 dprintk(vc
->dev
, 2, "%s: quality %d\n", __func__
, jc
->quality
);
1273 static int vidioc_g_parm(struct file
*file
, void *priv
,
1274 struct v4l2_streamparm
*sp
)
1276 __u32 def_num
, def_dem
;
1277 struct s2255_vc
*vc
= video_drvdata(file
);
1279 if (sp
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1281 sp
->parm
.capture
.capability
= V4L2_CAP_TIMEPERFRAME
;
1282 sp
->parm
.capture
.capturemode
= vc
->cap_parm
.capturemode
;
1283 sp
->parm
.capture
.readbuffers
= S2255_MIN_BUFS
;
1284 def_num
= (vc
->mode
.format
== FORMAT_NTSC
) ? 1001 : 1000;
1285 def_dem
= (vc
->mode
.format
== FORMAT_NTSC
) ? 30000 : 25000;
1286 sp
->parm
.capture
.timeperframe
.denominator
= def_dem
;
1287 switch (vc
->mode
.fdec
) {
1290 sp
->parm
.capture
.timeperframe
.numerator
= def_num
;
1293 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 2;
1296 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 3;
1299 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 5;
1302 dprintk(vc
->dev
, 4, "%s capture mode, %d timeperframe %d/%d\n",
1304 sp
->parm
.capture
.capturemode
,
1305 sp
->parm
.capture
.timeperframe
.numerator
,
1306 sp
->parm
.capture
.timeperframe
.denominator
);
1310 static int vidioc_s_parm(struct file
*file
, void *priv
,
1311 struct v4l2_streamparm
*sp
)
1313 struct s2255_vc
*vc
= video_drvdata(file
);
1314 struct s2255_mode mode
;
1316 __u32 def_num
, def_dem
;
1317 if (sp
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
1320 /* high quality capture mode requires a stream restart */
1321 if ((vc
->cap_parm
.capturemode
!= sp
->parm
.capture
.capturemode
)
1322 && vb2_is_streaming(&vc
->vb_vidq
))
1324 def_num
= (mode
.format
== FORMAT_NTSC
) ? 1001 : 1000;
1325 def_dem
= (mode
.format
== FORMAT_NTSC
) ? 30000 : 25000;
1326 if (def_dem
!= sp
->parm
.capture
.timeperframe
.denominator
)
1327 sp
->parm
.capture
.timeperframe
.numerator
= def_num
;
1328 else if (sp
->parm
.capture
.timeperframe
.numerator
<= def_num
)
1329 sp
->parm
.capture
.timeperframe
.numerator
= def_num
;
1330 else if (sp
->parm
.capture
.timeperframe
.numerator
<= (def_num
* 2)) {
1331 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 2;
1333 } else if (sp
->parm
.capture
.timeperframe
.numerator
<= (def_num
* 3)) {
1334 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 3;
1337 sp
->parm
.capture
.timeperframe
.numerator
= def_num
* 5;
1341 sp
->parm
.capture
.timeperframe
.denominator
= def_dem
;
1342 sp
->parm
.capture
.readbuffers
= S2255_MIN_BUFS
;
1343 s2255_set_mode(vc
, &mode
);
1344 dprintk(vc
->dev
, 4, "%s capture mode, %d timeperframe %d/%d, fdec %d\n",
1346 sp
->parm
.capture
.capturemode
,
1347 sp
->parm
.capture
.timeperframe
.numerator
,
1348 sp
->parm
.capture
.timeperframe
.denominator
, fdec
);
1352 #define NUM_SIZE_ENUMS 3
1353 static const struct v4l2_frmsize_discrete ntsc_sizes
[] = {
1358 static const struct v4l2_frmsize_discrete pal_sizes
[] = {
1364 static int vidioc_enum_framesizes(struct file
*file
, void *priv
,
1365 struct v4l2_frmsizeenum
*fe
)
1367 struct s2255_vc
*vc
= video_drvdata(file
);
1368 int is_ntsc
= vc
->std
& V4L2_STD_525_60
;
1369 const struct s2255_fmt
*fmt
;
1371 if (fe
->index
>= NUM_SIZE_ENUMS
)
1374 fmt
= format_by_fourcc(fe
->pixel_format
);
1377 fe
->type
= V4L2_FRMSIZE_TYPE_DISCRETE
;
1378 fe
->discrete
= is_ntsc
? ntsc_sizes
[fe
->index
] : pal_sizes
[fe
->index
];
1382 static int vidioc_enum_frameintervals(struct file
*file
, void *priv
,
1383 struct v4l2_frmivalenum
*fe
)
1385 struct s2255_vc
*vc
= video_drvdata(file
);
1386 const struct s2255_fmt
*fmt
;
1387 const struct v4l2_frmsize_discrete
*sizes
;
1388 int is_ntsc
= vc
->std
& V4L2_STD_525_60
;
1389 #define NUM_FRAME_ENUMS 4
1390 int frm_dec
[NUM_FRAME_ENUMS
] = {1, 2, 3, 5};
1393 if (fe
->index
>= NUM_FRAME_ENUMS
)
1396 fmt
= format_by_fourcc(fe
->pixel_format
);
1400 sizes
= is_ntsc
? ntsc_sizes
: pal_sizes
;
1401 for (i
= 0; i
< NUM_SIZE_ENUMS
; i
++, sizes
++)
1402 if (fe
->width
== sizes
->width
&&
1403 fe
->height
== sizes
->height
)
1405 if (i
== NUM_SIZE_ENUMS
)
1408 fe
->type
= V4L2_FRMIVAL_TYPE_DISCRETE
;
1409 fe
->discrete
.denominator
= is_ntsc
? 30000 : 25000;
1410 fe
->discrete
.numerator
= (is_ntsc
? 1001 : 1000) * frm_dec
[fe
->index
];
1411 dprintk(vc
->dev
, 4, "%s discrete %d/%d\n", __func__
,
1412 fe
->discrete
.numerator
,
1413 fe
->discrete
.denominator
);
1417 static int s2255_open(struct file
*file
)
1419 struct s2255_vc
*vc
= video_drvdata(file
);
1420 struct s2255_dev
*dev
= vc
->dev
;
1424 rc
= v4l2_fh_open(file
);
1428 dprintk(dev
, 1, "s2255: %s\n", __func__
);
1429 state
= atomic_read(&dev
->fw_data
->fw_state
);
1431 case S2255_FW_DISCONNECTING
:
1433 case S2255_FW_FAILED
:
1434 s2255_dev_err(&dev
->udev
->dev
,
1435 "firmware load failed. retrying.\n");
1436 s2255_fwload_start(dev
);
1437 wait_event_timeout(dev
->fw_data
->wait_fw
,
1438 ((atomic_read(&dev
->fw_data
->fw_state
)
1439 == S2255_FW_SUCCESS
) ||
1440 (atomic_read(&dev
->fw_data
->fw_state
)
1441 == S2255_FW_DISCONNECTING
)),
1442 msecs_to_jiffies(S2255_LOAD_TIMEOUT
));
1443 /* state may have changed, re-read */
1444 state
= atomic_read(&dev
->fw_data
->fw_state
);
1446 case S2255_FW_NOTLOADED
:
1447 case S2255_FW_LOADED_DSPWAIT
:
1448 /* give S2255_LOAD_TIMEOUT time for firmware to load in case
1449 driver loaded and then device immediately opened */
1450 pr_info("%s waiting for firmware load\n", __func__
);
1451 wait_event_timeout(dev
->fw_data
->wait_fw
,
1452 ((atomic_read(&dev
->fw_data
->fw_state
)
1453 == S2255_FW_SUCCESS
) ||
1454 (atomic_read(&dev
->fw_data
->fw_state
)
1455 == S2255_FW_DISCONNECTING
)),
1456 msecs_to_jiffies(S2255_LOAD_TIMEOUT
));
1457 /* state may have changed, re-read */
1458 state
= atomic_read(&dev
->fw_data
->fw_state
);
1460 case S2255_FW_SUCCESS
:
1464 /* state may have changed in above switch statement */
1466 case S2255_FW_SUCCESS
:
1468 case S2255_FW_FAILED
:
1469 pr_info("2255 firmware load failed.\n");
1471 case S2255_FW_DISCONNECTING
:
1472 pr_info("%s: disconnecting\n", __func__
);
1474 case S2255_FW_LOADED_DSPWAIT
:
1475 case S2255_FW_NOTLOADED
:
1476 pr_info("%s: firmware not loaded, please retry\n",
1479 * Timeout on firmware load means device unusable.
1480 * Set firmware failure state.
1481 * On next s2255_open the firmware will be reloaded.
1483 atomic_set(&dev
->fw_data
->fw_state
,
1487 pr_info("%s: unknown state\n", __func__
);
1490 if (!vc
->configured
) {
1491 /* configure channel to default state */
1492 vc
->fmt
= &formats
[0];
1493 s2255_set_mode(vc
, &vc
->mode
);
1499 static void s2255_destroy(struct s2255_dev
*dev
)
1501 dprintk(dev
, 1, "%s", __func__
);
1502 /* board shutdown stops the read pipe if it is running */
1503 s2255_board_shutdown(dev
);
1504 /* make sure firmware still not trying to load */
1505 del_timer_sync(&dev
->timer
); /* only started in .probe and .open */
1506 if (dev
->fw_data
->fw_urb
) {
1507 usb_kill_urb(dev
->fw_data
->fw_urb
);
1508 usb_free_urb(dev
->fw_data
->fw_urb
);
1509 dev
->fw_data
->fw_urb
= NULL
;
1511 release_firmware(dev
->fw_data
->fw
);
1512 kfree(dev
->fw_data
->pfw_data
);
1513 kfree(dev
->fw_data
);
1514 /* reset the DSP so firmware can be reloaded next time */
1515 s2255_reset_dsppower(dev
);
1516 mutex_destroy(&dev
->lock
);
1517 usb_put_dev(dev
->udev
);
1518 v4l2_device_unregister(&dev
->v4l2_dev
);
1523 static const struct v4l2_file_operations s2255_fops_v4l
= {
1524 .owner
= THIS_MODULE
,
1526 .release
= vb2_fop_release
,
1527 .poll
= vb2_fop_poll
,
1528 .unlocked_ioctl
= video_ioctl2
, /* V4L2 ioctl handler */
1529 .mmap
= vb2_fop_mmap
,
1530 .read
= vb2_fop_read
,
1533 static const struct v4l2_ioctl_ops s2255_ioctl_ops
= {
1534 .vidioc_querycap
= vidioc_querycap
,
1535 .vidioc_enum_fmt_vid_cap
= vidioc_enum_fmt_vid_cap
,
1536 .vidioc_g_fmt_vid_cap
= vidioc_g_fmt_vid_cap
,
1537 .vidioc_try_fmt_vid_cap
= vidioc_try_fmt_vid_cap
,
1538 .vidioc_s_fmt_vid_cap
= vidioc_s_fmt_vid_cap
,
1539 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
1540 .vidioc_querybuf
= vb2_ioctl_querybuf
,
1541 .vidioc_qbuf
= vb2_ioctl_qbuf
,
1542 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
1543 .vidioc_s_std
= vidioc_s_std
,
1544 .vidioc_g_std
= vidioc_g_std
,
1545 .vidioc_enum_input
= vidioc_enum_input
,
1546 .vidioc_g_input
= vidioc_g_input
,
1547 .vidioc_s_input
= vidioc_s_input
,
1548 .vidioc_streamon
= vb2_ioctl_streamon
,
1549 .vidioc_streamoff
= vb2_ioctl_streamoff
,
1550 .vidioc_s_jpegcomp
= vidioc_s_jpegcomp
,
1551 .vidioc_g_jpegcomp
= vidioc_g_jpegcomp
,
1552 .vidioc_s_parm
= vidioc_s_parm
,
1553 .vidioc_g_parm
= vidioc_g_parm
,
1554 .vidioc_enum_framesizes
= vidioc_enum_framesizes
,
1555 .vidioc_enum_frameintervals
= vidioc_enum_frameintervals
,
1556 .vidioc_log_status
= v4l2_ctrl_log_status
,
1557 .vidioc_subscribe_event
= v4l2_ctrl_subscribe_event
,
1558 .vidioc_unsubscribe_event
= v4l2_event_unsubscribe
,
1561 static void s2255_video_device_release(struct video_device
*vdev
)
1563 struct s2255_dev
*dev
= to_s2255_dev(vdev
->v4l2_dev
);
1564 struct s2255_vc
*vc
=
1565 container_of(vdev
, struct s2255_vc
, vdev
);
1567 dprintk(dev
, 4, "%s, chnls: %d\n", __func__
,
1568 atomic_read(&dev
->num_channels
));
1570 v4l2_ctrl_handler_free(&vc
->hdl
);
1572 if (atomic_dec_and_test(&dev
->num_channels
))
1577 static const struct video_device
template = {
1579 .fops
= &s2255_fops_v4l
,
1580 .ioctl_ops
= &s2255_ioctl_ops
,
1581 .release
= s2255_video_device_release
,
1582 .tvnorms
= S2255_NORMS
,
1585 static const struct v4l2_ctrl_ops s2255_ctrl_ops
= {
1586 .s_ctrl
= s2255_s_ctrl
,
1589 static const struct v4l2_ctrl_config color_filter_ctrl
= {
1590 .ops
= &s2255_ctrl_ops
,
1591 .name
= "Color Filter",
1592 .id
= V4L2_CID_S2255_COLORFILTER
,
1593 .type
= V4L2_CTRL_TYPE_BOOLEAN
,
1599 static int s2255_probe_v4l(struct s2255_dev
*dev
)
1603 int cur_nr
= video_nr
;
1604 struct s2255_vc
*vc
;
1605 struct vb2_queue
*q
;
1607 ret
= v4l2_device_register(&dev
->interface
->dev
, &dev
->v4l2_dev
);
1610 /* initialize all video 4 linux */
1611 /* register 4 video devices */
1612 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
1614 INIT_LIST_HEAD(&vc
->buf_list
);
1616 v4l2_ctrl_handler_init(&vc
->hdl
, 6);
1617 v4l2_ctrl_new_std(&vc
->hdl
, &s2255_ctrl_ops
,
1618 V4L2_CID_BRIGHTNESS
, -127, 127, 1, DEF_BRIGHT
);
1619 v4l2_ctrl_new_std(&vc
->hdl
, &s2255_ctrl_ops
,
1620 V4L2_CID_CONTRAST
, 0, 255, 1, DEF_CONTRAST
);
1621 v4l2_ctrl_new_std(&vc
->hdl
, &s2255_ctrl_ops
,
1622 V4L2_CID_SATURATION
, 0, 255, 1, DEF_SATURATION
);
1623 v4l2_ctrl_new_std(&vc
->hdl
, &s2255_ctrl_ops
,
1624 V4L2_CID_HUE
, 0, 255, 1, DEF_HUE
);
1625 vc
->jpegqual_ctrl
= v4l2_ctrl_new_std(&vc
->hdl
,
1627 V4L2_CID_JPEG_COMPRESSION_QUALITY
,
1628 0, 100, 1, S2255_DEF_JPEG_QUAL
);
1629 if (dev
->dsp_fw_ver
>= S2255_MIN_DSP_COLORFILTER
&&
1630 (dev
->pid
!= 0x2257 || vc
->idx
<= 1))
1631 v4l2_ctrl_new_custom(&vc
->hdl
, &color_filter_ctrl
,
1633 if (vc
->hdl
.error
) {
1634 ret
= vc
->hdl
.error
;
1635 v4l2_ctrl_handler_free(&vc
->hdl
);
1636 dev_err(&dev
->udev
->dev
, "couldn't register control\n");
1640 q
->type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
;
1641 q
->io_modes
= VB2_MMAP
| VB2_READ
| VB2_USERPTR
;
1643 q
->lock
= &vc
->vb_lock
;
1644 q
->buf_struct_size
= sizeof(struct s2255_buffer
);
1645 q
->mem_ops
= &vb2_vmalloc_memops
;
1646 q
->ops
= &s2255_video_qops
;
1647 q
->timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
;
1648 ret
= vb2_queue_init(q
);
1650 dev_err(&dev
->udev
->dev
,
1651 "%s vb2_queue_init 0x%x\n", __func__
, ret
);
1654 /* register video devices */
1655 vc
->vdev
= template;
1657 vc
->vdev
.ctrl_handler
= &vc
->hdl
;
1658 vc
->vdev
.lock
= &dev
->lock
;
1659 vc
->vdev
.v4l2_dev
= &dev
->v4l2_dev
;
1660 video_set_drvdata(&vc
->vdev
, vc
);
1662 ret
= video_register_device(&vc
->vdev
,
1666 ret
= video_register_device(&vc
->vdev
,
1671 dev_err(&dev
->udev
->dev
,
1672 "failed to register video device!\n");
1675 atomic_inc(&dev
->num_channels
);
1676 v4l2_info(&dev
->v4l2_dev
, "V4L2 device registered as %s\n",
1677 video_device_node_name(&vc
->vdev
));
1680 pr_info("Sensoray 2255 V4L driver Revision: %s\n",
1682 /* if no channels registered, return error and probe will fail*/
1683 if (atomic_read(&dev
->num_channels
) == 0) {
1684 v4l2_device_unregister(&dev
->v4l2_dev
);
1687 if (atomic_read(&dev
->num_channels
) != MAX_CHANNELS
)
1688 pr_warn("s2255: Not all channels available.\n");
1692 /* this function moves the usb stream read pipe data
1693 * into the system buffers.
1694 * returns 0 on success, EAGAIN if more data to process( call this
1697 * Received frame structure:
1698 * bytes 0-3: marker : 0x2255DA4AL (S2255_MARKER_FRAME)
1699 * bytes 4-7: channel: 0-3
1700 * bytes 8-11: payload size: size of the frame
1701 * bytes 12-payloadsize+12: frame data
1703 static int save_frame(struct s2255_dev
*dev
, struct s2255_pipeinfo
*pipe_info
)
1709 unsigned long copy_size
;
1712 struct s2255_framei
*frm
;
1713 unsigned char *pdata
;
1714 struct s2255_vc
*vc
;
1715 dprintk(dev
, 100, "buffer to user\n");
1716 vc
= &dev
->vc
[dev
->cc
];
1717 idx
= vc
->cur_frame
;
1718 frm
= &vc
->buffer
.frame
[idx
];
1719 if (frm
->ulState
== S2255_READ_IDLE
) {
1722 __le32
*pdword
; /*data from dsp is little endian */
1724 /* search for marker codes */
1725 pdata
= (unsigned char *)pipe_info
->transfer_buffer
;
1726 pdword
= (__le32
*)pdata
;
1727 for (jj
= 0; jj
< (pipe_info
->cur_transfer_size
- 12); jj
++) {
1729 case S2255_MARKER_FRAME
:
1730 dprintk(dev
, 4, "marker @ offset: %d [%x %x]\n",
1731 jj
, pdata
[0], pdata
[1]);
1732 offset
= jj
+ PREFIX_SIZE
;
1734 cc
= le32_to_cpu(pdword
[1]);
1735 if (cc
>= MAX_CHANNELS
) {
1741 dev
->cc
= G_chnmap
[cc
];
1742 vc
= &dev
->vc
[dev
->cc
];
1743 payload
= le32_to_cpu(pdword
[3]);
1744 if (payload
> vc
->req_image_size
) {
1746 /* discard the bad frame */
1749 vc
->pkt_size
= payload
;
1750 vc
->jpg_size
= le32_to_cpu(pdword
[4]);
1752 case S2255_MARKER_RESPONSE
:
1754 pdata
+= DEF_USB_BLOCK
;
1755 jj
+= DEF_USB_BLOCK
;
1756 if (le32_to_cpu(pdword
[1]) >= MAX_CHANNELS
)
1758 cc
= G_chnmap
[le32_to_cpu(pdword
[1])];
1759 if (cc
>= MAX_CHANNELS
)
1762 switch (pdword
[2]) {
1763 case S2255_RESPONSE_SETMODE
:
1764 /* check if channel valid */
1765 /* set mode ready */
1766 vc
->setmode_ready
= 1;
1767 wake_up(&vc
->wait_setmode
);
1768 dprintk(dev
, 5, "setmode rdy %d\n", cc
);
1770 case S2255_RESPONSE_FW
:
1771 dev
->chn_ready
|= (1 << cc
);
1772 if ((dev
->chn_ready
& 0x0f) != 0x0f)
1774 /* all channels ready */
1775 pr_info("s2255: fw loaded\n");
1776 atomic_set(&dev
->fw_data
->fw_state
,
1778 wake_up(&dev
->fw_data
->wait_fw
);
1780 case S2255_RESPONSE_STATUS
:
1781 vc
->vidstatus
= le32_to_cpu(pdword
[3]);
1782 vc
->vidstatus_ready
= 1;
1783 wake_up(&vc
->wait_vidstatus
);
1784 dprintk(dev
, 5, "vstat %x chan %d\n",
1785 le32_to_cpu(pdword
[3]), cc
);
1788 pr_info("s2255 unknown resp\n");
1802 vc
= &dev
->vc
[dev
->cc
];
1803 idx
= vc
->cur_frame
;
1804 frm
= &vc
->buffer
.frame
[idx
];
1805 /* search done. now find out if should be acquiring on this channel */
1806 if (!vb2_is_streaming(&vc
->vb_vidq
)) {
1807 /* we found a frame, but this channel is turned off */
1808 frm
->ulState
= S2255_READ_IDLE
;
1812 if (frm
->ulState
== S2255_READ_IDLE
) {
1813 frm
->ulState
= S2255_READ_FRAME
;
1817 /* skip the marker 512 bytes (and offset if out of sync) */
1818 psrc
= (u8
*)pipe_info
->transfer_buffer
+ offset
;
1821 if (frm
->lpvbits
== NULL
) {
1822 dprintk(dev
, 1, "s2255 frame buffer == NULL.%p %p %d %d",
1823 frm
, dev
, dev
->cc
, idx
);
1827 pdest
= frm
->lpvbits
+ frm
->cur_size
;
1829 copy_size
= (pipe_info
->cur_transfer_size
- offset
);
1831 size
= vc
->pkt_size
- PREFIX_SIZE
;
1833 /* sanity check on pdest */
1834 if ((copy_size
+ frm
->cur_size
) < vc
->req_image_size
)
1835 memcpy(pdest
, psrc
, copy_size
);
1837 frm
->cur_size
+= copy_size
;
1838 dprintk(dev
, 4, "cur_size: %lu, size: %lu\n", frm
->cur_size
, size
);
1840 if (frm
->cur_size
>= size
) {
1841 dprintk(dev
, 2, "******[%d]Buffer[%d]full*******\n",
1843 vc
->last_frame
= vc
->cur_frame
;
1845 /* end of system frame ring buffer, start at zero */
1846 if ((vc
->cur_frame
== SYS_FRAMES
) ||
1847 (vc
->cur_frame
== vc
->buffer
.dwFrames
))
1850 if (vb2_is_streaming(&vc
->vb_vidq
))
1851 s2255_got_frame(vc
, vc
->jpg_size
);
1853 frm
->ulState
= S2255_READ_IDLE
;
1857 /* done successfully */
1861 static void s2255_read_video_callback(struct s2255_dev
*dev
,
1862 struct s2255_pipeinfo
*pipe_info
)
1865 dprintk(dev
, 50, "callback read video\n");
1867 if (dev
->cc
>= MAX_CHANNELS
) {
1869 dev_err(&dev
->udev
->dev
, "invalid channel\n");
1872 /* otherwise copy to the system buffers */
1873 res
= save_frame(dev
, pipe_info
);
1875 dprintk(dev
, 4, "s2255: read callback failed\n");
1877 dprintk(dev
, 50, "callback read video done\n");
1881 static long s2255_vendor_req(struct s2255_dev
*dev
, unsigned char Request
,
1882 u16 Index
, u16 Value
, void *TransferBuffer
,
1883 s32 TransferBufferLength
, int bOut
)
1888 buf
= kmalloc(TransferBufferLength
, GFP_KERNEL
);
1893 r
= usb_control_msg(dev
->udev
, usb_rcvctrlpipe(dev
->udev
, 0),
1895 USB_TYPE_VENDOR
| USB_RECIP_DEVICE
|
1898 TransferBufferLength
, HZ
* 5);
1901 memcpy(TransferBuffer
, buf
, TransferBufferLength
);
1903 memcpy(buf
, TransferBuffer
, TransferBufferLength
);
1904 r
= usb_control_msg(dev
->udev
, usb_sndctrlpipe(dev
->udev
, 0),
1905 Request
, USB_TYPE_VENDOR
| USB_RECIP_DEVICE
,
1907 TransferBufferLength
, HZ
* 5);
1914 * retrieve FX2 firmware version. future use.
1915 * @param dev pointer to device extension
1916 * @return -1 for fail, else returns firmware version as an int(16 bits)
1918 static int s2255_get_fx2fw(struct s2255_dev
*dev
)
1922 unsigned char transBuffer
[64];
1923 ret
= s2255_vendor_req(dev
, S2255_VR_FW
, 0, 0, transBuffer
, 2,
1926 dprintk(dev
, 2, "get fw error: %x\n", ret
);
1927 fw
= transBuffer
[0] + (transBuffer
[1] << 8);
1928 dprintk(dev
, 2, "Get FW %x %x\n", transBuffer
[0], transBuffer
[1]);
1933 * Create the system ring buffer to copy frames into from the
1936 static int s2255_create_sys_buffers(struct s2255_vc
*vc
)
1939 unsigned long reqsize
;
1940 vc
->buffer
.dwFrames
= SYS_FRAMES
;
1941 /* always allocate maximum size(PAL) for system buffers */
1942 reqsize
= SYS_FRAMES_MAXSIZE
;
1944 if (reqsize
> SYS_FRAMES_MAXSIZE
)
1945 reqsize
= SYS_FRAMES_MAXSIZE
;
1947 for (i
= 0; i
< SYS_FRAMES
; i
++) {
1948 /* allocate the frames */
1949 vc
->buffer
.frame
[i
].lpvbits
= vmalloc(reqsize
);
1950 vc
->buffer
.frame
[i
].size
= reqsize
;
1951 if (vc
->buffer
.frame
[i
].lpvbits
== NULL
) {
1952 pr_info("out of memory. using less frames\n");
1953 vc
->buffer
.dwFrames
= i
;
1958 /* make sure internal states are set */
1959 for (i
= 0; i
< SYS_FRAMES
; i
++) {
1960 vc
->buffer
.frame
[i
].ulState
= 0;
1961 vc
->buffer
.frame
[i
].cur_size
= 0;
1965 vc
->last_frame
= -1;
1969 static int s2255_release_sys_buffers(struct s2255_vc
*vc
)
1972 for (i
= 0; i
< SYS_FRAMES
; i
++) {
1973 vfree(vc
->buffer
.frame
[i
].lpvbits
);
1974 vc
->buffer
.frame
[i
].lpvbits
= NULL
;
1979 static int s2255_board_init(struct s2255_dev
*dev
)
1981 struct s2255_mode mode_def
= DEF_MODEI_NTSC_CONT
;
1984 struct s2255_pipeinfo
*pipe
= &dev
->pipe
;
1985 dprintk(dev
, 4, "board init: %p", dev
);
1986 memset(pipe
, 0, sizeof(*pipe
));
1988 pipe
->cur_transfer_size
= S2255_USB_XFER_SIZE
;
1989 pipe
->max_transfer_size
= S2255_USB_XFER_SIZE
;
1991 pipe
->transfer_buffer
= kzalloc(pipe
->max_transfer_size
,
1993 if (pipe
->transfer_buffer
== NULL
) {
1994 dprintk(dev
, 1, "out of memory!\n");
1997 /* query the firmware */
1998 fw_ver
= s2255_get_fx2fw(dev
);
2000 pr_info("s2255: usb firmware version %d.%d\n",
2001 (fw_ver
>> 8) & 0xff,
2004 if (fw_ver
< S2255_CUR_USB_FWVER
)
2005 pr_info("s2255: newer USB firmware available\n");
2007 for (j
= 0; j
< MAX_CHANNELS
; j
++) {
2008 struct s2255_vc
*vc
= &dev
->vc
[j
];
2009 vc
->mode
= mode_def
;
2010 if (dev
->pid
== 0x2257 && j
> 1)
2011 vc
->mode
.color
|= (1 << 16);
2012 vc
->jpegqual
= S2255_DEF_JPEG_QUAL
;
2013 vc
->width
= LINE_SZ_4CIFS_NTSC
;
2014 vc
->height
= NUM_LINES_4CIFS_NTSC
* 2;
2015 vc
->std
= V4L2_STD_NTSC_M
;
2016 vc
->fmt
= &formats
[0];
2017 vc
->mode
.restart
= 1;
2018 vc
->req_image_size
= get_transfer_size(&mode_def
);
2019 vc
->frame_count
= 0;
2020 /* create the system buffers */
2021 s2255_create_sys_buffers(vc
);
2023 /* start read pipe */
2024 s2255_start_readpipe(dev
);
2025 dprintk(dev
, 1, "%s: success\n", __func__
);
2029 static int s2255_board_shutdown(struct s2255_dev
*dev
)
2032 dprintk(dev
, 1, "%s: dev: %p", __func__
, dev
);
2034 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
2035 if (vb2_is_streaming(&dev
->vc
[i
].vb_vidq
))
2036 s2255_stop_acquire(&dev
->vc
[i
]);
2038 s2255_stop_readpipe(dev
);
2039 for (i
= 0; i
< MAX_CHANNELS
; i
++)
2040 s2255_release_sys_buffers(&dev
->vc
[i
]);
2041 /* release transfer buffer */
2042 kfree(dev
->pipe
.transfer_buffer
);
2046 static void read_pipe_completion(struct urb
*purb
)
2048 struct s2255_pipeinfo
*pipe_info
;
2049 struct s2255_dev
*dev
;
2052 pipe_info
= purb
->context
;
2053 if (pipe_info
== NULL
) {
2054 dev_err(&purb
->dev
->dev
, "no context!\n");
2057 dev
= pipe_info
->dev
;
2059 dev_err(&purb
->dev
->dev
, "no context!\n");
2062 status
= purb
->status
;
2063 /* if shutting down, do not resubmit, exit immediately */
2064 if (status
== -ESHUTDOWN
) {
2065 dprintk(dev
, 2, "%s: err shutdown\n", __func__
);
2066 pipe_info
->err_count
++;
2070 if (pipe_info
->state
== 0) {
2071 dprintk(dev
, 2, "%s: exiting USB pipe", __func__
);
2076 s2255_read_video_callback(dev
, pipe_info
);
2078 pipe_info
->err_count
++;
2079 dprintk(dev
, 1, "%s: failed URB %d\n", __func__
, status
);
2082 pipe
= usb_rcvbulkpipe(dev
->udev
, dev
->read_endpoint
);
2084 usb_fill_bulk_urb(pipe_info
->stream_urb
, dev
->udev
,
2086 pipe_info
->transfer_buffer
,
2087 pipe_info
->cur_transfer_size
,
2088 read_pipe_completion
, pipe_info
);
2090 if (pipe_info
->state
!= 0) {
2091 if (usb_submit_urb(pipe_info
->stream_urb
, GFP_ATOMIC
))
2092 dev_err(&dev
->udev
->dev
, "error submitting urb\n");
2094 dprintk(dev
, 2, "%s :complete state 0\n", __func__
);
2099 static int s2255_start_readpipe(struct s2255_dev
*dev
)
2103 struct s2255_pipeinfo
*pipe_info
= &dev
->pipe
;
2104 pipe
= usb_rcvbulkpipe(dev
->udev
, dev
->read_endpoint
);
2105 dprintk(dev
, 2, "%s: IN %d\n", __func__
, dev
->read_endpoint
);
2106 pipe_info
->state
= 1;
2107 pipe_info
->err_count
= 0;
2108 pipe_info
->stream_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2109 if (!pipe_info
->stream_urb
)
2111 /* transfer buffer allocated in board_init */
2112 usb_fill_bulk_urb(pipe_info
->stream_urb
, dev
->udev
,
2114 pipe_info
->transfer_buffer
,
2115 pipe_info
->cur_transfer_size
,
2116 read_pipe_completion
, pipe_info
);
2117 retval
= usb_submit_urb(pipe_info
->stream_urb
, GFP_KERNEL
);
2119 pr_err("s2255: start read pipe failed\n");
2125 /* starts acquisition process */
2126 static int s2255_start_acquire(struct s2255_vc
*vc
)
2129 unsigned long chn_rev
;
2131 struct s2255_dev
*dev
= to_s2255_dev(vc
->vdev
.v4l2_dev
);
2132 __le32
*buffer
= dev
->cmdbuf
;
2134 mutex_lock(&dev
->cmdlock
);
2135 chn_rev
= G_chnmap
[vc
->idx
];
2136 vc
->last_frame
= -1;
2137 vc
->bad_payload
= 0;
2139 for (j
= 0; j
< SYS_FRAMES
; j
++) {
2140 vc
->buffer
.frame
[j
].ulState
= 0;
2141 vc
->buffer
.frame
[j
].cur_size
= 0;
2144 /* send the start command */
2145 buffer
[0] = IN_DATA_TOKEN
;
2146 buffer
[1] = (__le32
) cpu_to_le32(chn_rev
);
2147 buffer
[2] = CMD_START
;
2148 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
2150 dev_err(&dev
->udev
->dev
, "CMD_START error\n");
2152 dprintk(dev
, 2, "start acquire exit[%d] %d\n", vc
->idx
, res
);
2153 mutex_unlock(&dev
->cmdlock
);
2157 static int s2255_stop_acquire(struct s2255_vc
*vc
)
2160 unsigned long chn_rev
;
2161 struct s2255_dev
*dev
= to_s2255_dev(vc
->vdev
.v4l2_dev
);
2162 __le32
*buffer
= dev
->cmdbuf
;
2164 mutex_lock(&dev
->cmdlock
);
2165 chn_rev
= G_chnmap
[vc
->idx
];
2166 /* send the stop command */
2167 buffer
[0] = IN_DATA_TOKEN
;
2168 buffer
[1] = (__le32
) cpu_to_le32(chn_rev
);
2169 buffer
[2] = CMD_STOP
;
2171 res
= s2255_write_config(dev
->udev
, (unsigned char *)buffer
, 512);
2173 dev_err(&dev
->udev
->dev
, "CMD_STOP error\n");
2175 dprintk(dev
, 4, "%s: chn %d, res %d\n", __func__
, vc
->idx
, res
);
2176 mutex_unlock(&dev
->cmdlock
);
2180 static void s2255_stop_readpipe(struct s2255_dev
*dev
)
2182 struct s2255_pipeinfo
*pipe
= &dev
->pipe
;
2185 if (pipe
->stream_urb
) {
2187 usb_kill_urb(pipe
->stream_urb
);
2188 usb_free_urb(pipe
->stream_urb
);
2189 pipe
->stream_urb
= NULL
;
2191 dprintk(dev
, 4, "%s", __func__
);
2195 static void s2255_fwload_start(struct s2255_dev
*dev
)
2197 s2255_reset_dsppower(dev
);
2198 dev
->fw_data
->fw_size
= dev
->fw_data
->fw
->size
;
2199 atomic_set(&dev
->fw_data
->fw_state
, S2255_FW_NOTLOADED
);
2200 memcpy(dev
->fw_data
->pfw_data
,
2201 dev
->fw_data
->fw
->data
, CHUNK_SIZE
);
2202 dev
->fw_data
->fw_loaded
= CHUNK_SIZE
;
2203 usb_fill_bulk_urb(dev
->fw_data
->fw_urb
, dev
->udev
,
2204 usb_sndbulkpipe(dev
->udev
, 2),
2205 dev
->fw_data
->pfw_data
,
2206 CHUNK_SIZE
, s2255_fwchunk_complete
,
2208 mod_timer(&dev
->timer
, jiffies
+ HZ
);
2211 /* standard usb probe function */
2212 static int s2255_probe(struct usb_interface
*interface
,
2213 const struct usb_device_id
*id
)
2215 struct s2255_dev
*dev
= NULL
;
2216 struct usb_host_interface
*iface_desc
;
2217 struct usb_endpoint_descriptor
*endpoint
;
2219 int retval
= -ENOMEM
;
2223 /* allocate memory for our device state and initialize it to zero */
2224 dev
= kzalloc(sizeof(struct s2255_dev
), GFP_KERNEL
);
2226 s2255_dev_err(&interface
->dev
, "out of memory\n");
2230 dev
->cmdbuf
= kzalloc(S2255_CMDBUF_SIZE
, GFP_KERNEL
);
2231 if (dev
->cmdbuf
== NULL
) {
2232 s2255_dev_err(&interface
->dev
, "out of memory\n");
2236 atomic_set(&dev
->num_channels
, 0);
2237 dev
->pid
= id
->idProduct
;
2238 dev
->fw_data
= kzalloc(sizeof(struct s2255_fw
), GFP_KERNEL
);
2241 mutex_init(&dev
->lock
);
2242 mutex_init(&dev
->cmdlock
);
2243 /* grab usb_device and save it */
2244 dev
->udev
= usb_get_dev(interface_to_usbdev(interface
));
2245 if (dev
->udev
== NULL
) {
2246 dev_err(&interface
->dev
, "null usb device\n");
2250 dev_dbg(&interface
->dev
, "dev: %p, udev %p interface %p\n",
2251 dev
, dev
->udev
, interface
);
2252 dev
->interface
= interface
;
2253 /* set up the endpoint information */
2254 iface_desc
= interface
->cur_altsetting
;
2255 dev_dbg(&interface
->dev
, "num EP: %d\n",
2256 iface_desc
->desc
.bNumEndpoints
);
2257 for (i
= 0; i
< iface_desc
->desc
.bNumEndpoints
; ++i
) {
2258 endpoint
= &iface_desc
->endpoint
[i
].desc
;
2259 if (!dev
->read_endpoint
&& usb_endpoint_is_bulk_in(endpoint
)) {
2260 /* we found the bulk in endpoint */
2261 dev
->read_endpoint
= endpoint
->bEndpointAddress
;
2265 if (!dev
->read_endpoint
) {
2266 dev_err(&interface
->dev
, "Could not find bulk-in endpoint\n");
2269 timer_setup(&dev
->timer
, s2255_timer
, 0);
2270 init_waitqueue_head(&dev
->fw_data
->wait_fw
);
2271 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
2272 struct s2255_vc
*vc
= &dev
->vc
[i
];
2275 init_waitqueue_head(&vc
->wait_setmode
);
2276 init_waitqueue_head(&vc
->wait_vidstatus
);
2277 spin_lock_init(&vc
->qlock
);
2278 mutex_init(&vc
->vb_lock
);
2281 dev
->fw_data
->fw_urb
= usb_alloc_urb(0, GFP_KERNEL
);
2282 if (!dev
->fw_data
->fw_urb
)
2285 dev
->fw_data
->pfw_data
= kzalloc(CHUNK_SIZE
, GFP_KERNEL
);
2286 if (!dev
->fw_data
->pfw_data
) {
2287 dev_err(&interface
->dev
, "out of memory!\n");
2290 /* load the first chunk */
2291 if (request_firmware(&dev
->fw_data
->fw
,
2292 FIRMWARE_FILE_NAME
, &dev
->udev
->dev
)) {
2293 dev_err(&interface
->dev
, "sensoray 2255 failed to get firmware\n");
2296 /* check the firmware is valid */
2297 fw_size
= dev
->fw_data
->fw
->size
;
2298 pdata
= (__le32
*) &dev
->fw_data
->fw
->data
[fw_size
- 8];
2300 if (*pdata
!= S2255_FW_MARKER
) {
2301 dev_err(&interface
->dev
, "Firmware invalid.\n");
2305 /* make sure firmware is the latest */
2307 pRel
= (__le32
*) &dev
->fw_data
->fw
->data
[fw_size
- 4];
2308 pr_info("s2255 dsp fw version %x\n", le32_to_cpu(*pRel
));
2309 dev
->dsp_fw_ver
= le32_to_cpu(*pRel
);
2310 if (dev
->dsp_fw_ver
< S2255_CUR_DSP_FWVER
)
2311 pr_info("s2255: f2255usb.bin out of date.\n");
2312 if (dev
->pid
== 0x2257 &&
2313 dev
->dsp_fw_ver
< S2255_MIN_DSP_COLORFILTER
)
2314 pr_warn("2257 needs firmware %d or above.\n",
2315 S2255_MIN_DSP_COLORFILTER
);
2317 usb_reset_device(dev
->udev
);
2318 /* load 2255 board specific */
2319 retval
= s2255_board_init(dev
);
2321 goto errorBOARDINIT
;
2322 s2255_fwload_start(dev
);
2323 /* loads v4l specific */
2324 retval
= s2255_probe_v4l(dev
);
2326 goto errorBOARDINIT
;
2327 dev_info(&interface
->dev
, "Sensoray 2255 detected\n");
2330 s2255_board_shutdown(dev
);
2332 release_firmware(dev
->fw_data
->fw
);
2334 kfree(dev
->fw_data
->pfw_data
);
2336 usb_free_urb(dev
->fw_data
->fw_urb
);
2338 del_timer_sync(&dev
->timer
);
2340 usb_put_dev(dev
->udev
);
2342 kfree(dev
->fw_data
);
2343 mutex_destroy(&dev
->lock
);
2347 pr_warn("Sensoray 2255 driver load failed: 0x%x\n", retval
);
2351 /* disconnect routine. when board is removed physically or with rmmod */
2352 static void s2255_disconnect(struct usb_interface
*interface
)
2354 struct s2255_dev
*dev
= to_s2255_dev(usb_get_intfdata(interface
));
2356 int channels
= atomic_read(&dev
->num_channels
);
2357 mutex_lock(&dev
->lock
);
2358 v4l2_device_disconnect(&dev
->v4l2_dev
);
2359 mutex_unlock(&dev
->lock
);
2360 /*see comments in the uvc_driver.c usb disconnect function */
2361 atomic_inc(&dev
->num_channels
);
2362 /* unregister each video device. */
2363 for (i
= 0; i
< channels
; i
++)
2364 video_unregister_device(&dev
->vc
[i
].vdev
);
2365 /* wake up any of our timers */
2366 atomic_set(&dev
->fw_data
->fw_state
, S2255_FW_DISCONNECTING
);
2367 wake_up(&dev
->fw_data
->wait_fw
);
2368 for (i
= 0; i
< MAX_CHANNELS
; i
++) {
2369 dev
->vc
[i
].setmode_ready
= 1;
2370 wake_up(&dev
->vc
[i
].wait_setmode
);
2371 dev
->vc
[i
].vidstatus_ready
= 1;
2372 wake_up(&dev
->vc
[i
].wait_vidstatus
);
2374 if (atomic_dec_and_test(&dev
->num_channels
))
2376 dev_info(&interface
->dev
, "%s\n", __func__
);
2379 static struct usb_driver s2255_driver
= {
2380 .name
= S2255_DRIVER_NAME
,
2381 .probe
= s2255_probe
,
2382 .disconnect
= s2255_disconnect
,
2383 .id_table
= s2255_table
,
2386 module_usb_driver(s2255_driver
);
2388 MODULE_DESCRIPTION("Sensoray 2255 Video for Linux driver");
2389 MODULE_AUTHOR("Dean Anderson (Sensoray Company Inc.)");
2390 MODULE_LICENSE("GPL");
2391 MODULE_VERSION(S2255_VERSION
);
2392 MODULE_FIRMWARE(FIRMWARE_FILE_NAME
);