V4L/DVB (12090): gspca_sonixj: enable autogain control for the ov7620
[deliverable/linux.git] / drivers / media / video / gspca / gspca.h
CommitLineData
63eb9546
JFM
1#ifndef GSPCAV2_H
2#define GSPCAV2_H
3
4#include <linux/module.h>
63eb9546
JFM
5#include <linux/kernel.h>
6#include <linux/usb.h>
7#include <linux/videodev2.h>
8#include <media/v4l2-common.h>
9#include <linux/mutex.h>
10
335b3f88
JFM
11/* compilation option */
12#define GSPCA_DEBUG 1
13
14#ifdef GSPCA_DEBUG
63eb9546
JFM
15/* GSPCA our debug messages */
16extern int gspca_debug;
17#define PDEBUG(level, fmt, args...) \
18 do {\
19 if (gspca_debug & (level)) \
20 printk(KERN_INFO MODULE_NAME ": " fmt "\n", ## args); \
21 } while (0)
22#define D_ERR 0x01
23#define D_PROBE 0x02
24#define D_CONF 0x04
25#define D_STREAM 0x08
26#define D_FRAM 0x10
27#define D_PACK 0x20
28#define D_USBI 0x40
29#define D_USBO 0x80
d43fa32f 30#define D_V4L2 0x0100
63eb9546
JFM
31#else
32#define PDEBUG(level, fmt, args...)
33#endif
34#undef err
35#define err(fmt, args...) \
11fb06bd 36 printk(KERN_ERR MODULE_NAME ": " fmt "\n", ## args)
63eb9546
JFM
37#undef info
38#define info(fmt, args...) \
11fb06bd 39 printk(KERN_INFO MODULE_NAME ": " fmt "\n", ## args)
63eb9546
JFM
40#undef warn
41#define warn(fmt, args...) \
11fb06bd 42 printk(KERN_WARNING MODULE_NAME ": " fmt "\n", ## args)
63eb9546
JFM
43
44#define GSPCA_MAX_FRAMES 16 /* maximum number of video frame buffers */
0be01004
JFM
45/* image transfers */
46#define MAX_NURBS 4 /* max number of URBs */
63eb9546
JFM
47
48/* device information - set at probe time */
63eb9546 49struct cam {
95d9142c 50 int bulk_size; /* buffer size when image transfer by bulk */
cc611b8a 51 const struct v4l2_pix_format *cam_mode; /* size nmodes */
63eb9546 52 char nmodes;
dff369aa
AO
53 __u8 bulk_nurbs; /* number of URBs in bulk mode
54 * - cannot be > MAX_NURBS
55 * - when 0 and bulk_size != 0 means
56 * 1 URB and submit done by subdriver */
6929dc6b 57 u8 bulk; /* image transfer by 0:isoc / 1:bulk */
49cb6b04
JFM
58 u8 npkt; /* number of packets in an ISOC message
59 * 0 is the default value: 32 packets */
dfa76fa2 60 u32 input_flags; /* value for ENUM_INPUT status flags */
63eb9546
JFM
61};
62
63struct gspca_dev;
64struct gspca_frame;
65
66/* subdriver operations */
67typedef int (*cam_op) (struct gspca_dev *);
68typedef void (*cam_v_op) (struct gspca_dev *);
69typedef int (*cam_cf_op) (struct gspca_dev *, const struct usb_device_id *);
70typedef int (*cam_jpg_op) (struct gspca_dev *,
71 struct v4l2_jpegcompression *);
627a5ef7
JP
72typedef int (*cam_streamparm_op) (struct gspca_dev *,
73 struct v4l2_streamparm *);
63eb9546
JFM
74typedef int (*cam_qmnu_op) (struct gspca_dev *,
75 struct v4l2_querymenu *);
76typedef void (*cam_pkt_op) (struct gspca_dev *gspca_dev,
77 struct gspca_frame *frame,
6a7eba24 78 __u8 *data,
63eb9546
JFM
79 int len);
80
81struct ctrl {
82 struct v4l2_queryctrl qctrl;
83 int (*set)(struct gspca_dev *, __s32);
84 int (*get)(struct gspca_dev *, __s32 *);
85};
86
87/* subdriver description */
88struct sd_desc {
89/* information */
a5ae2062 90 const char *name; /* sub-driver name */
63eb9546 91/* controls */
a5ae2062 92 const struct ctrl *ctrls;
63eb9546 93 int nctrls;
012d6b02 94/* mandatory operations */
e2997a72 95 cam_cf_op config; /* called on probe */
012d6b02 96 cam_op init; /* called on probe and resume */
72ab97ce 97 cam_op start; /* called on stream on */
63eb9546 98 cam_pkt_op pkt_scan;
c2446b3e 99/* optional operations */
012d6b02 100 cam_v_op stopN; /* called on stream off - main alt */
98522a7b 101 cam_v_op stop0; /* called on stream off & disconnect - alt 0 */
c2446b3e 102 cam_v_op dq_callback; /* called when a frame has been dequeued */
63eb9546
JFM
103 cam_jpg_op get_jcomp;
104 cam_jpg_op set_jcomp;
105 cam_qmnu_op querymenu;
627a5ef7
JP
106 cam_streamparm_op get_streamparm;
107 cam_streamparm_op set_streamparm;
63eb9546
JFM
108};
109
63eb9546 110/* packet types when moving from iso buf to frame buf */
e293e599
EA
111enum gspca_packet_type {
112 DISCARD_PACKET,
113 FIRST_PACKET,
114 INTER_PACKET,
115 LAST_PACKET
116};
63eb9546
JFM
117
118struct gspca_frame {
6a7eba24
JFM
119 __u8 *data; /* frame buffer */
120 __u8 *data_end; /* end of frame while filling */
63eb9546
JFM
121 int vma_use_count;
122 struct v4l2_buffer v4l2_buf;
123};
124
125struct gspca_dev {
a12ca6a6 126 struct video_device vdev; /* !! must be the first item */
5c4fa002 127 struct module *module; /* subdriver handling the device */
63eb9546 128 struct usb_device *dev;
4aa0d037 129 struct file *capt_file; /* file doing video capture */
63eb9546
JFM
130
131 struct cam cam; /* device information */
132 const struct sd_desc *sd_desc; /* subdriver description */
f50ba1be 133 unsigned ctrl_dis; /* disabled controls (bit map) */
63eb9546 134
8295d99e
JFM
135#define USB_BUF_SZ 64
136 __u8 *usb_buf; /* buffer for USB exchanges */
d43fa32f 137 struct urb *urb[MAX_NURBS];
63eb9546
JFM
138
139 __u8 *frbuf; /* buffer for nframes */
140 struct gspca_frame frame[GSPCA_MAX_FRAMES];
6a7eba24 141 __u32 frsz; /* frame size */
63eb9546
JFM
142 char nframes; /* number of frames */
143 char fr_i; /* frame being filled */
144 char fr_q; /* next frame to queue */
145 char fr_o; /* next frame to dequeue */
146 signed char fr_queue[GSPCA_MAX_FRAMES]; /* frame queue */
ff374747
JFM
147 __u8 last_packet_type;
148 __s8 empty_packet; /* if (-1) don't check empty packets */
149 __u8 streaming;
63eb9546 150
6a7eba24 151 __u8 curr_mode; /* current camera mode */
63eb9546 152 __u32 pixfmt; /* current mode parameters */
6a7eba24
JFM
153 __u16 width;
154 __u16 height;
ff374747 155 __u32 sequence; /* frame sequence number */
63eb9546 156
63eb9546
JFM
157 wait_queue_head_t wq; /* wait queue */
158 struct mutex usb_lock; /* usb exchange protection */
159 struct mutex read_lock; /* read protection */
160 struct mutex queue_lock; /* ISOC queue protection */
6a709749
JFM
161#ifdef CONFIG_PM
162 char frozen; /* suspend - resume */
163#endif
d43fa32f 164 char users; /* number of opens */
63eb9546
JFM
165 char present; /* device connected */
166 char nbufread; /* number of buffers for read() */
d43fa32f
JFM
167 char nurbs; /* number of allocated URBs */
168 char memory; /* memory type (V4L2_MEMORY_xxx) */
ff374747
JFM
169 __u8 iface; /* USB interface number */
170 __u8 alt; /* USB alternate setting */
d43fa32f 171 __u8 nbalt; /* number of USB alternate settings */
63eb9546
JFM
172};
173
174int gspca_dev_probe(struct usb_interface *intf,
175 const struct usb_device_id *id,
176 const struct sd_desc *sd_desc,
d43fa32f
JFM
177 int dev_size,
178 struct module *module);
63eb9546
JFM
179void gspca_disconnect(struct usb_interface *intf);
180struct gspca_frame *gspca_frame_add(struct gspca_dev *gspca_dev,
e293e599 181 enum gspca_packet_type packet_type,
63eb9546 182 struct gspca_frame *frame,
a5ae2062 183 const __u8 *data,
63eb9546 184 int len);
1b60e1ad 185struct gspca_frame *gspca_get_i_frame(struct gspca_dev *gspca_dev);
6a709749
JFM
186#ifdef CONFIG_PM
187int gspca_suspend(struct usb_interface *intf, pm_message_t message);
188int gspca_resume(struct usb_interface *intf);
189#endif
dcef3237
HG
190int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
191 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee);
63eb9546 192#endif /* GSPCAV2_H */
This page took 0.181505 seconds and 5 git commands to generate.