blob: c90af9cb1e079b6c3aaa322c0ff739a2652207dc [file] [log] [blame]
Jean-Francois Moine63eb9542008-04-12 09:58:09 -03001#ifndef GSPCAV2_H
2#define GSPCAV2_H
3
4#include <linux/module.h>
Jean-Francois Moine63eb9542008-04-12 09:58:09 -03005#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
Jean-Francois Moine335b3f82008-07-30 04:53:02 -030011/* compilation option */
12#define GSPCA_DEBUG 1
13
14#ifdef GSPCA_DEBUG
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030015/* 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
Jean-Francois Moined43fa322008-06-12 10:58:58 -030030#define D_V4L2 0x0100
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030031#else
32#define PDEBUG(level, fmt, args...)
33#endif
34#undef err
35#define err(fmt, args...) \
36 do {\
37 printk(KERN_ERR MODULE_NAME ": " fmt "\n", ## args); \
38 } while (0)
39#undef info
40#define info(fmt, args...) \
41 do {\
42 printk(KERN_INFO MODULE_NAME ": " fmt "\n", ## args); \
43 } while (0)
44#undef warn
45#define warn(fmt, args...) \
46 do {\
47 printk(KERN_WARNING MODULE_NAME ": " fmt "\n", ## args); \
48 } while (0)
49
50#define GSPCA_MAX_FRAMES 16 /* maximum number of video frame buffers */
Jean-Francois Moine0be010042008-09-04 07:01:50 -030051/* image transfers */
52#define MAX_NURBS 4 /* max number of URBs */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030053#define ISO_MAX_PKT 32 /* max number of packets in an ISOC transfer */
Jean-Francois Moined43fa322008-06-12 10:58:58 -030054#define ISO_MAX_SIZE 0x8000 /* max size of one URB buffer (32 Kb) */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030055
56/* device information - set at probe time */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030057struct cam {
Jean-Francois Moine95d91422008-09-29 05:57:32 -030058 int bulk_size; /* buffer size when image transfer by bulk */
Jean-Francois Moinecc611b82008-12-29 07:49:41 -030059 const struct v4l2_pix_format *cam_mode; /* size nmodes */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030060 char nmodes;
Antonio Ospitedff369a2008-11-14 07:53:32 -030061 __u8 bulk_nurbs; /* number of URBs in bulk mode
62 * - cannot be > MAX_NURBS
63 * - when 0 and bulk_size != 0 means
64 * 1 URB and submit done by subdriver */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030065 __u8 epaddr;
66};
67
68struct gspca_dev;
69struct gspca_frame;
70
71/* subdriver operations */
72typedef int (*cam_op) (struct gspca_dev *);
73typedef void (*cam_v_op) (struct gspca_dev *);
74typedef int (*cam_cf_op) (struct gspca_dev *, const struct usb_device_id *);
75typedef int (*cam_jpg_op) (struct gspca_dev *,
76 struct v4l2_jpegcompression *);
Jim Paris627a5ef2008-12-10 06:02:42 -030077typedef int (*cam_streamparm_op) (struct gspca_dev *,
78 struct v4l2_streamparm *);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030079typedef int (*cam_qmnu_op) (struct gspca_dev *,
80 struct v4l2_querymenu *);
81typedef void (*cam_pkt_op) (struct gspca_dev *gspca_dev,
82 struct gspca_frame *frame,
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -030083 __u8 *data,
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030084 int len);
85
86struct ctrl {
87 struct v4l2_queryctrl qctrl;
88 int (*set)(struct gspca_dev *, __s32);
89 int (*get)(struct gspca_dev *, __s32 *);
90};
91
92/* subdriver description */
93struct sd_desc {
94/* information */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -030095 const char *name; /* sub-driver name */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030096/* controls */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -030097 const struct ctrl *ctrls;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030098 int nctrls;
Jean-Francois Moine012d6b02008-09-03 17:12:16 -030099/* mandatory operations */
Hans de Goedee2997a72008-04-23 08:09:12 -0300100 cam_cf_op config; /* called on probe */
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300101 cam_op init; /* called on probe and resume */
Jean-Francois Moine72ab97c2008-09-20 06:39:08 -0300102 cam_op start; /* called on stream on */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300103 cam_pkt_op pkt_scan;
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300104/* optional operations */
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300105 cam_v_op stopN; /* called on stream off - main alt */
Jean-Francois Moine98522a72008-11-18 06:33:08 -0300106 cam_v_op stop0; /* called on stream off & disconnect - alt 0 */
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300107 cam_v_op dq_callback; /* called when a frame has been dequeued */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300108 cam_jpg_op get_jcomp;
109 cam_jpg_op set_jcomp;
110 cam_qmnu_op querymenu;
Jim Paris627a5ef2008-12-10 06:02:42 -0300111 cam_streamparm_op get_streamparm;
112 cam_streamparm_op set_streamparm;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300113};
114
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300115/* packet types when moving from iso buf to frame buf */
Erik Andrene293e592008-10-03 08:46:50 -0300116enum gspca_packet_type {
117 DISCARD_PACKET,
118 FIRST_PACKET,
119 INTER_PACKET,
120 LAST_PACKET
121};
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300122
123struct gspca_frame {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300124 __u8 *data; /* frame buffer */
125 __u8 *data_end; /* end of frame while filling */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300126 int vma_use_count;
127 struct v4l2_buffer v4l2_buf;
128};
129
130struct gspca_dev {
Jean-Francois Moinea12ca6a2008-11-19 06:37:53 -0300131 struct video_device vdev; /* !! must be the first item */
Jean-Francois Moine5c4fa0022008-11-18 15:52:31 -0300132 struct module *module; /* subdriver handling the device */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300133 struct usb_device *dev;
Jean-Francois Moine4aa0d032008-05-04 06:46:21 -0300134 struct file *capt_file; /* file doing video capture */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300135
136 struct cam cam; /* device information */
137 const struct sd_desc *sd_desc; /* subdriver description */
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -0300138 unsigned ctrl_dis; /* disabled controls (bit map) */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300139
Jean-Francois Moine8295d992008-09-03 17:12:19 -0300140#define USB_BUF_SZ 64
141 __u8 *usb_buf; /* buffer for USB exchanges */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300142 struct urb *urb[MAX_NURBS];
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300143
144 __u8 *frbuf; /* buffer for nframes */
145 struct gspca_frame frame[GSPCA_MAX_FRAMES];
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300146 __u32 frsz; /* frame size */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300147 char nframes; /* number of frames */
148 char fr_i; /* frame being filled */
149 char fr_q; /* next frame to queue */
150 char fr_o; /* next frame to dequeue */
151 signed char fr_queue[GSPCA_MAX_FRAMES]; /* frame queue */
Jean-Francois Moineff374742008-10-23 07:29:51 -0300152 __u8 last_packet_type;
153 __s8 empty_packet; /* if (-1) don't check empty packets */
154 __u8 streaming;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300155
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300156 __u8 curr_mode; /* current camera mode */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300157 __u32 pixfmt; /* current mode parameters */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300158 __u16 width;
159 __u16 height;
Jean-Francois Moineff374742008-10-23 07:29:51 -0300160 __u32 sequence; /* frame sequence number */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300161
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300162 wait_queue_head_t wq; /* wait queue */
163 struct mutex usb_lock; /* usb exchange protection */
164 struct mutex read_lock; /* read protection */
165 struct mutex queue_lock; /* ISOC queue protection */
Jean-Francois Moine6a709742008-09-03 16:48:10 -0300166#ifdef CONFIG_PM
167 char frozen; /* suspend - resume */
168#endif
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300169 char users; /* number of opens */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300170 char present; /* device connected */
171 char nbufread; /* number of buffers for read() */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300172 char nurbs; /* number of allocated URBs */
173 char memory; /* memory type (V4L2_MEMORY_xxx) */
Jean-Francois Moineff374742008-10-23 07:29:51 -0300174 __u8 iface; /* USB interface number */
175 __u8 alt; /* USB alternate setting */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300176 __u8 nbalt; /* number of USB alternate settings */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300177};
178
179int gspca_dev_probe(struct usb_interface *intf,
180 const struct usb_device_id *id,
181 const struct sd_desc *sd_desc,
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300182 int dev_size,
183 struct module *module);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300184void gspca_disconnect(struct usb_interface *intf);
185struct gspca_frame *gspca_frame_add(struct gspca_dev *gspca_dev,
Erik Andrene293e592008-10-03 08:46:50 -0300186 enum gspca_packet_type packet_type,
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300187 struct gspca_frame *frame,
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300188 const __u8 *data,
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300189 int len);
Jean-Francois Moine1b60e1a2008-09-20 05:44:21 -0300190struct gspca_frame *gspca_get_i_frame(struct gspca_dev *gspca_dev);
Jean-Francois Moine6a709742008-09-03 16:48:10 -0300191#ifdef CONFIG_PM
192int gspca_suspend(struct usb_interface *intf, pm_message_t message);
193int gspca_resume(struct usb_interface *intf);
194#endif
Hans de Goededcef32372008-07-10 10:40:53 -0300195int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
196 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300197#endif /* GSPCAV2_H */