V4L/DVB: gspca - ov534: Allow enumerating supported framerates
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / media / video / gspca / gspca.h
blob53c034ea84adf8d66cb522ca6a2e25fcc43d708e
1 #ifndef GSPCAV2_H
2 #define GSPCAV2_H
4 #include <linux/module.h>
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>
11 /* compilation option */
12 #define GSPCA_DEBUG 1
14 #ifdef GSPCA_DEBUG
15 /* GSPCA our debug messages */
16 extern 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
30 #define D_V4L2 0x0100
31 #else
32 #define PDEBUG(level, fmt, args...)
33 #endif
34 #undef err
35 #define err(fmt, args...) \
36 printk(KERN_ERR MODULE_NAME ": " fmt "\n", ## args)
37 #undef info
38 #define info(fmt, args...) \
39 printk(KERN_INFO MODULE_NAME ": " fmt "\n", ## args)
40 #undef warn
41 #define warn(fmt, args...) \
42 printk(KERN_WARNING MODULE_NAME ": " fmt "\n", ## args)
44 #define GSPCA_MAX_FRAMES 16 /* maximum number of video frame buffers */
45 /* image transfers */
46 #define MAX_NURBS 4 /* max number of URBs */
49 /* used to list framerates supported by a camera mode (resolution) */
50 struct framerates {
51 const u8 *rates;
52 int nrates;
55 /* device information - set at probe time */
56 struct cam {
57 const struct v4l2_pix_format *cam_mode; /* size nmodes */
58 const struct framerates *mode_framerates; /* must have size nmode,
59 * just like cam_mode */
60 u32 bulk_size; /* buffer size when image transfer by bulk */
61 u32 input_flags; /* value for ENUM_INPUT status flags */
62 u8 nmodes; /* size of cam_mode */
63 u8 no_urb_create; /* don't create transfer URBs */
64 u8 bulk_nurbs; /* number of URBs in bulk mode
65 * - cannot be > MAX_NURBS
66 * - when 0 and bulk_size != 0 means
67 * 1 URB and submit done by subdriver */
68 u8 bulk; /* image transfer by 0:isoc / 1:bulk */
69 u8 npkt; /* number of packets in an ISOC message
70 * 0 is the default value: 32 packets */
71 u8 reverse_alts; /* Alt settings are in high to low order */
74 struct gspca_dev;
75 struct gspca_frame;
77 /* subdriver operations */
78 typedef int (*cam_op) (struct gspca_dev *);
79 typedef void (*cam_v_op) (struct gspca_dev *);
80 typedef int (*cam_cf_op) (struct gspca_dev *, const struct usb_device_id *);
81 typedef int (*cam_jpg_op) (struct gspca_dev *,
82 struct v4l2_jpegcompression *);
83 typedef int (*cam_reg_op) (struct gspca_dev *,
84 struct v4l2_dbg_register *);
85 typedef int (*cam_ident_op) (struct gspca_dev *,
86 struct v4l2_dbg_chip_ident *);
87 typedef int (*cam_streamparm_op) (struct gspca_dev *,
88 struct v4l2_streamparm *);
89 typedef int (*cam_qmnu_op) (struct gspca_dev *,
90 struct v4l2_querymenu *);
91 typedef void (*cam_pkt_op) (struct gspca_dev *gspca_dev,
92 u8 *data,
93 int len);
95 struct ctrl {
96 struct v4l2_queryctrl qctrl;
97 int (*set)(struct gspca_dev *, __s32);
98 int (*get)(struct gspca_dev *, __s32 *);
101 /* subdriver description */
102 struct sd_desc {
103 /* information */
104 const char *name; /* sub-driver name */
105 /* controls */
106 const struct ctrl *ctrls;
107 int nctrls;
108 /* mandatory operations */
109 cam_cf_op config; /* called on probe */
110 cam_op init; /* called on probe and resume */
111 cam_op start; /* called on stream on after URBs creation */
112 cam_pkt_op pkt_scan;
113 /* optional operations */
114 cam_op isoc_init; /* called on stream on before getting the EP */
115 cam_op isoc_nego; /* called when URB submit failed with NOSPC */
116 cam_v_op stopN; /* called on stream off - main alt */
117 cam_v_op stop0; /* called on stream off & disconnect - alt 0 */
118 cam_v_op dq_callback; /* called when a frame has been dequeued */
119 cam_jpg_op get_jcomp;
120 cam_jpg_op set_jcomp;
121 cam_qmnu_op querymenu;
122 cam_streamparm_op get_streamparm;
123 cam_streamparm_op set_streamparm;
124 #ifdef CONFIG_VIDEO_ADV_DEBUG
125 cam_reg_op set_register;
126 cam_reg_op get_register;
127 #endif
128 cam_ident_op get_chip_ident;
131 /* packet types when moving from iso buf to frame buf */
132 enum gspca_packet_type {
133 DISCARD_PACKET,
134 FIRST_PACKET,
135 INTER_PACKET,
136 LAST_PACKET
139 struct gspca_frame {
140 __u8 *data; /* frame buffer */
141 __u8 *data_end; /* end of frame while filling */
142 int vma_use_count;
143 struct v4l2_buffer v4l2_buf;
146 struct gspca_dev {
147 struct video_device vdev; /* !! must be the first item */
148 struct module *module; /* subdriver handling the device */
149 struct usb_device *dev;
150 struct file *capt_file; /* file doing video capture */
152 struct cam cam; /* device information */
153 const struct sd_desc *sd_desc; /* subdriver description */
154 unsigned ctrl_dis; /* disabled controls (bit map) */
155 unsigned ctrl_inac; /* inactive controls (bit map) */
157 #define USB_BUF_SZ 64
158 __u8 *usb_buf; /* buffer for USB exchanges */
159 struct urb *urb[MAX_NURBS];
161 __u8 *frbuf; /* buffer for nframes */
162 struct gspca_frame frame[GSPCA_MAX_FRAMES];
163 struct gspca_frame *cur_frame; /* frame beeing filled */
164 __u32 frsz; /* frame size */
165 char nframes; /* number of frames */
166 char fr_i; /* frame being filled */
167 char fr_q; /* next frame to queue */
168 char fr_o; /* next frame to dequeue */
169 signed char fr_queue[GSPCA_MAX_FRAMES]; /* frame queue */
170 __u8 last_packet_type;
171 __s8 empty_packet; /* if (-1) don't check empty packets */
172 __u8 streaming;
174 __u8 curr_mode; /* current camera mode */
175 __u32 pixfmt; /* current mode parameters */
176 __u16 width;
177 __u16 height;
178 __u32 sequence; /* frame sequence number */
180 wait_queue_head_t wq; /* wait queue */
181 struct mutex usb_lock; /* usb exchange protection */
182 struct mutex read_lock; /* read protection */
183 struct mutex queue_lock; /* ISOC queue protection */
184 int usb_err; /* USB error - protected by usb_lock */
185 #ifdef CONFIG_PM
186 char frozen; /* suspend - resume */
187 #endif
188 char users; /* number of opens */
189 char present; /* device connected */
190 char nbufread; /* number of buffers for read() */
191 char memory; /* memory type (V4L2_MEMORY_xxx) */
192 __u8 iface; /* USB interface number */
193 __u8 alt; /* USB alternate setting */
194 __u8 nbalt; /* number of USB alternate settings */
195 u16 pkt_size; /* ISOC packet size */
198 int gspca_dev_probe(struct usb_interface *intf,
199 const struct usb_device_id *id,
200 const struct sd_desc *sd_desc,
201 int dev_size,
202 struct module *module);
203 void gspca_disconnect(struct usb_interface *intf);
204 void gspca_frame_add(struct gspca_dev *gspca_dev,
205 enum gspca_packet_type packet_type,
206 const u8 *data,
207 int len);
208 struct gspca_frame *gspca_get_i_frame(struct gspca_dev *gspca_dev);
209 #ifdef CONFIG_PM
210 int gspca_suspend(struct usb_interface *intf, pm_message_t message);
211 int gspca_resume(struct usb_interface *intf);
212 #endif
213 int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
214 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee);
215 #endif /* GSPCAV2_H */