V4L/DVB (4927): Enhancements on usbvision driver

Enhance the buffer management of this driver + some corrections
- linux list.h usage for buffer management
- VIDIOC_ENUMSTD/VIDIOC_G_STD/VIDIOC_S_STD simplification (use of
v4l2_video_std_construct)
- create_sysfs : remove of warnings for video_device_create_file return code
- make the driver compatible with 2.6.19 kernel version (remove
slave_send and slave_recv in usbvision-i2c, change ctrlUrb_complete
function prototype)
- deactivated v4l2_read because this code was not the priority but
working on it :)

Signed-off-by: Thierry MERLE <thierry.merle@free.fr>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
Thierry MERLE 2006-12-04 08:31:14 -03:00 committed by Mauro Carvalho Chehab
parent 18d8a4540c
commit f2242ee547
3 changed files with 416 additions and 330 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
/* /*
* I2C_ALGO_USB.C * I2C_ALGO_USB.C
* i2c algorithm for USB-I2C Bridges * i2c algorithm for USB-I2C Bridges
* *
@ -39,7 +39,7 @@
#include <linux/i2c.h> #include <linux/i2c.h>
#include "usbvision-i2c.h" #include "usbvision-i2c.h"
static int debug_i2c_usb = 0; static int debug_i2c_usb = 0;
#if defined(module_param) // Showing parameters under SYSFS #if defined(module_param) // Showing parameters under SYSFS
module_param (debug_i2c_usb, int, 0444); // debug_i2c_usb mode of the device driver module_param (debug_i2c_usb, int, 0444); // debug_i2c_usb mode of the device driver
@ -108,7 +108,7 @@ static inline int usb_find_address(struct i2c_adapter *i2c_adap,
unsigned char *add) unsigned char *add)
{ {
unsigned short flags = msg->flags; unsigned short flags = msg->flags;
unsigned char addr; unsigned char addr;
int ret; int ret;
if ((flags & I2C_M_TEN)) { if ((flags & I2C_M_TEN)) {
@ -205,8 +205,6 @@ static u32 usb_func(struct i2c_adapter *adap)
static struct i2c_algorithm i2c_usb_algo = { static struct i2c_algorithm i2c_usb_algo = {
.master_xfer = usb_xfer, .master_xfer = usb_xfer,
.smbus_xfer = NULL, .smbus_xfer = NULL,
.slave_send = NULL,
.slave_recv = NULL,
.algo_control = algo_control, .algo_control = algo_control,
.functionality = usb_func, .functionality = usb_func,
}; };

View File

@ -1,4 +1,4 @@
/* /*
* USBVISION.H * USBVISION.H
* usbvision header file * usbvision header file
* *
@ -38,7 +38,7 @@
#define USBVISION_SSPND_EN (1 << 1) #define USBVISION_SSPND_EN (1 << 1)
#define USBVISION_RES2 (1 << 2) #define USBVISION_RES2 (1 << 2)
#define USBVISION_PWR_VID (1 << 5) #define USBVISION_PWR_VID (1 << 5)
#define USBVISION_E2_EN (1 << 7) #define USBVISION_E2_EN (1 << 7)
#define USBVISION_CONFIG_REG 0x01 #define USBVISION_CONFIG_REG 0x01
#define USBVISION_ADRS_REG 0x02 #define USBVISION_ADRS_REG 0x02
#define USBVISION_ALTER_REG 0x03 #define USBVISION_ALTER_REG 0x03
@ -139,7 +139,7 @@
#define USBVISION_MAX_ISOC_PACKET_SIZE 959 // NT1003 Specs Document says 1023 #define USBVISION_MAX_ISOC_PACKET_SIZE 959 // NT1003 Specs Document says 1023
#define USBVISION_NUM_HEADERMARKER 20 #define USBVISION_NUM_HEADERMARKER 20
#define USBVISION_NUMFRAMES 2 #define USBVISION_NUMFRAMES 3
#define USBVISION_NUMSBUF 2 #define USBVISION_NUMSBUF 2
#define USBVISION_POWEROFF_TIME 3 * (HZ) // 3 seconds #define USBVISION_POWEROFF_TIME 3 * (HZ) // 3 seconds
@ -225,6 +225,13 @@ enum FrameState {
FrameState_Error, /* Something bad happened while processing */ FrameState_Error, /* Something bad happened while processing */
}; };
/* stream states */
enum StreamState {
Stream_Off,
Stream_Interrupt,
Stream_On,
};
enum IsocState { enum IsocState {
IsocState_InFrame, /* Isoc packet is member of frame */ IsocState_InFrame, /* Isoc packet is member of frame */
IsocState_NoFrame, /* Isoc packet is not member of any frame */ IsocState_NoFrame, /* Isoc packet is not member of any frame */
@ -272,27 +279,36 @@ struct usbvision_frame_header {
__u16 frameHeight; /* 10 - 11 after endian correction*/ __u16 frameHeight; /* 10 - 11 after endian correction*/
}; };
/* tvnorms */
struct usbvision_tvnorm {
char *name;
v4l2_std_id id;
/* mode for saa7113h */
int mode;
};
struct usbvision_frame { struct usbvision_frame {
char *data; /* Frame buffer */ char *data; /* Frame buffer */
struct usbvision_frame_header isocHeader; /* Header from stream */ struct usbvision_frame_header isocHeader; /* Header from stream */
int width; /* Width application is expecting */ int width; /* Width application is expecting */
int height; /* Height */ int height; /* Height */
int index; /* Frame index */
int frmwidth; /* Width the frame actually is */ int frmwidth; /* Width the frame actually is */
int frmheight; /* Height */ int frmheight; /* Height */
volatile int grabstate; /* State of grabbing */ volatile int grabstate; /* State of grabbing */
int scanstate; /* State of scanning */ int scanstate; /* State of scanning */
struct list_head frame;
int curline; /* Line of frame we're working on */ int curline; /* Line of frame we're working on */
long scanlength; /* uncompressed, raw data length of frame */ long scanlength; /* uncompressed, raw data length of frame */
long bytes_read; /* amount of scanlength that has been read from data */ long bytes_read; /* amount of scanlength that has been read from data */
struct usbvision_v4l2_format_st v4l2_format; /* format the user needs*/ struct usbvision_v4l2_format_st v4l2_format; /* format the user needs*/
int v4l2_linesize; /* bytes for one videoline*/ int v4l2_linesize; /* bytes for one videoline*/
struct timeval timestamp; struct timeval timestamp;
wait_queue_head_t wq; /* Processes waiting */
int sequence; // How many video frames we send to user int sequence; // How many video frames we send to user
}; };
@ -305,23 +321,23 @@ struct usbvision_frame {
#define USBVISION_I2C_CLIENTS_MAX 8 #define USBVISION_I2C_CLIENTS_MAX 8
struct usbvision_device_data_st { struct usbvision_device_data_st {
int idVendor; int idVendor;
int idProduct; int idProduct;
int Interface; /* to handle special interface number like BELKIN and Hauppauge WinTV-USB II */ int Interface; /* to handle special interface number like BELKIN and Hauppauge WinTV-USB II */
int Codec; int Codec;
int VideoChannels; int VideoChannels;
__u64 VideoNorm; __u64 VideoNorm;
int AudioChannels; int AudioChannels;
int Radio; int Radio;
int vbi; int vbi;
int Tuner; int Tuner;
int TunerType; int TunerType;
int Vin_Reg1; int Vin_Reg1;
int Vin_Reg2; int Vin_Reg2;
int X_Offset; int X_Offset;
int Y_Offset; int Y_Offset;
int Dvi_yuv; int Dvi_yuv;
char *ModelString; char *ModelString;
}; };
/* Declared on usbvision-cards.c */ /* Declared on usbvision-cards.c */
@ -332,7 +348,7 @@ struct usb_usbvision {
struct video_device *vdev; /* Video Device */ struct video_device *vdev; /* Video Device */
struct video_device *rdev; /* Radio Device */ struct video_device *rdev; /* Radio Device */
struct video_device *vbi; /* VBI Device */ struct video_device *vbi; /* VBI Device */
struct video_audio audio_dev; /* Current audio params */ struct video_audio audio_dev; /* Current audio params */
/* i2c Declaration Section*/ /* i2c Declaration Section*/
struct i2c_adapter i2c_adap; struct i2c_adapter i2c_adap;
@ -373,7 +389,7 @@ struct usb_usbvision {
int usbvision_used; /* Is this structure in use? */ int usbvision_used; /* Is this structure in use? */
int initialized; /* Had we already sent init sequence? */ int initialized; /* Had we already sent init sequence? */
int DevModel; /* What type of USBVISION device we got? */ int DevModel; /* What type of USBVISION device we got? */
int streaming; /* Are we streaming Isochronous? */ enum StreamState streaming; /* Are we streaming Isochronous? */
int last_error; /* What calamity struck us? */ int last_error; /* What calamity struck us? */
int curwidth; /* width of the frame the device is currently set to*/ int curwidth; /* width of the frame the device is currently set to*/
int curheight; /* height of the frame the device is currently set to*/ int curheight; /* height of the frame the device is currently set to*/
@ -382,7 +398,10 @@ struct usb_usbvision {
char *fbuf; /* Videodev buffer area for mmap*/ char *fbuf; /* Videodev buffer area for mmap*/
int max_frame_size; /* Bytes in one video frame */ int max_frame_size; /* Bytes in one video frame */
int fbuf_size; /* Videodev buffer size */ int fbuf_size; /* Videodev buffer size */
int curFrameNum; // number of current frame in frame buffer mode spinlock_t queue_lock; /* spinlock for protecting mods on inqueue and outqueue */
struct list_head inqueue, outqueue; /* queued frame list and ready to dequeue frame list */
wait_queue_head_t wait_frame; /* Processes waiting */
wait_queue_head_t wait_stream; /* Processes waiting */
struct usbvision_frame *curFrame; // pointer to current frame, set by usbvision_find_header struct usbvision_frame *curFrame; // pointer to current frame, set by usbvision_find_header
struct usbvision_frame frame[USBVISION_NUMFRAMES]; // frame buffer struct usbvision_frame frame[USBVISION_NUMFRAMES]; // frame buffer
int curSbufNum; // number of current receiving sbuf int curSbufNum; // number of current receiving sbuf
@ -397,20 +416,21 @@ struct usb_usbvision {
int scratch_headermarker_read_ptr; int scratch_headermarker_read_ptr;
int scratch_headermarker_write_ptr; int scratch_headermarker_write_ptr;
int isocstate; int isocstate;
/* color controls */ /* color controls */
int saturation; int saturation;
int hue; int hue;
int brightness; int brightness;
int contrast; int contrast;
int depth; int depth;
struct usbvision_v4l2_format_st palette; struct usbvision_v4l2_format_st palette;
struct v4l2_capability vcap; /* Video capabilities */ struct v4l2_capability vcap; /* Video capabilities */
struct v4l2_input input; /* May be used for tuner support */ unsigned int ctl_input; /* selected input */
struct usbvision_tvnorm *tvnorm; /* selected tv norm */
unsigned char video_endp; /* 0x82 for USBVISION devices based */ unsigned char video_endp; /* 0x82 for USBVISION devices based */
// Overlay stuff: // Overlay stuff:
struct v4l2_framebuffer vid_buf; struct v4l2_framebuffer vid_buf;
struct v4l2_format vid_win; struct v4l2_format vid_win;
int vid_buf_valid; // Status: video buffer is valid (set) int vid_buf_valid; // Status: video buffer is valid (set)
int vid_win_valid; // Status: video window is valid (set) int vid_win_valid; // Status: video window is valid (set)
@ -435,8 +455,8 @@ struct usb_usbvision {
struct proc_dir_entry *proc_devdir; /* Per-device proc directory */ struct proc_dir_entry *proc_devdir; /* Per-device proc directory */
struct proc_dir_entry *proc_info; /* <minor#>/info entry */ struct proc_dir_entry *proc_info; /* <minor#>/info entry */
struct proc_dir_entry *proc_register; /* <minor#>/register entry */ struct proc_dir_entry *proc_register; /* <minor#>/register entry */
struct proc_dir_entry *proc_freq; /* <minor#>/freq entry */ struct proc_dir_entry *proc_freq; /* <minor#>/freq entry */
struct proc_dir_entry *proc_input; /* <minor#>/input entry */ struct proc_dir_entry *proc_input; /* <minor#>/input entry */
struct proc_dir_entry *proc_frame; /* <minor#>/frame entry */ struct proc_dir_entry *proc_frame; /* <minor#>/frame entry */
struct proc_dir_entry *proc_button; /* <minor#>/button entry */ struct proc_dir_entry *proc_button; /* <minor#>/button entry */
struct proc_dir_entry *proc_control; /* <minor#>/control entry */ struct proc_dir_entry *proc_control; /* <minor#>/control entry */
@ -463,3 +483,10 @@ struct usb_usbvision {
#endif /* __LINUX_USBVISION_H */ #endif /* __LINUX_USBVISION_H */
/*
* Overrides for Emacs so that we follow Linus's tabbing style.
* ---------------------------------------------------------------------------
* Local variables:
* c-basic-offset: 8
* End:
*/