blob: 8b963dfae8610fd857cce31acf1ee0e6649671f0 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030011
Jean-Francois Moine335b3f82008-07-30 04:53:02 -030012/* compilation option */
13#define GSPCA_DEBUG 1
14
15#ifdef GSPCA_DEBUG
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030016/* GSPCA our debug messages */
17extern int gspca_debug;
18#define PDEBUG(level, fmt, args...) \
19 do {\
20 if (gspca_debug & (level)) \
21 printk(KERN_INFO MODULE_NAME ": " fmt "\n", ## args); \
22 } while (0)
23#define D_ERR 0x01
24#define D_PROBE 0x02
25#define D_CONF 0x04
26#define D_STREAM 0x08
27#define D_FRAM 0x10
28#define D_PACK 0x20
29#define D_USBI 0x40
30#define D_USBO 0x80
Jean-Francois Moined43fa322008-06-12 10:58:58 -030031#define D_V4L2 0x0100
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030032#else
33#define PDEBUG(level, fmt, args...)
34#endif
35#undef err
36#define err(fmt, args...) \
Jean-Francois Moine11fb06b2009-01-01 13:20:42 -030037 printk(KERN_ERR MODULE_NAME ": " fmt "\n", ## args)
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030038#undef info
39#define info(fmt, args...) \
Jean-Francois Moine11fb06b2009-01-01 13:20:42 -030040 printk(KERN_INFO MODULE_NAME ": " fmt "\n", ## args)
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030041#undef warn
42#define warn(fmt, args...) \
Jean-Francois Moine11fb06b2009-01-01 13:20:42 -030043 printk(KERN_WARNING MODULE_NAME ": " fmt "\n", ## args)
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030044
45#define GSPCA_MAX_FRAMES 16 /* maximum number of video frame buffers */
Jean-Francois Moine0be01002008-09-04 07:01:50 -030046/* image transfers */
47#define MAX_NURBS 4 /* max number of URBs */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030048
Antonio Ospite28ffe772009-12-02 06:18:46 -030049
50/* used to list framerates supported by a camera mode (resolution) */
51struct framerates {
Antonio Ospite29b87f02010-01-17 03:27:04 -030052 const u8 *rates;
Antonio Ospite28ffe772009-12-02 06:18:46 -030053 int nrates;
54};
55
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030056/* device information - set at probe time */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030057struct cam {
Jean-Francois Moinecc611b82008-12-29 07:49:41 -030058 const struct v4l2_pix_format *cam_mode; /* size nmodes */
Antonio Ospite28ffe772009-12-02 06:18:46 -030059 const struct framerates *mode_framerates; /* must have size nmode,
60 * just like cam_mode */
Jean-Francois Moine47aaca92009-12-15 05:23:04 -030061 u32 bulk_size; /* buffer size when image transfer by bulk */
62 u32 input_flags; /* value for ENUM_INPUT status flags */
63 u8 nmodes; /* size of cam_mode */
64 u8 no_urb_create; /* don't create transfer URBs */
65 u8 bulk_nurbs; /* number of URBs in bulk mode
Antonio Ospitedff369a2008-11-14 07:53:32 -030066 * - cannot be > MAX_NURBS
67 * - when 0 and bulk_size != 0 means
68 * 1 URB and submit done by subdriver */
Jean-Francois Moine6929dc62009-04-21 13:45:56 -030069 u8 bulk; /* image transfer by 0:isoc / 1:bulk */
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -030070 u8 npkt; /* number of packets in an ISOC message
71 * 0 is the default value: 32 packets */
Jean-Francois Moine47aaca92009-12-15 05:23:04 -030072 u8 reverse_alts; /* Alt settings are in high to low order */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030073};
74
75struct gspca_dev;
76struct gspca_frame;
77
78/* subdriver operations */
79typedef int (*cam_op) (struct gspca_dev *);
80typedef void (*cam_v_op) (struct gspca_dev *);
81typedef int (*cam_cf_op) (struct gspca_dev *, const struct usb_device_id *);
82typedef int (*cam_jpg_op) (struct gspca_dev *,
83 struct v4l2_jpegcompression *);
Brian Johnsonaf1d9af2009-07-19 05:29:20 -030084typedef int (*cam_reg_op) (struct gspca_dev *,
85 struct v4l2_dbg_register *);
86typedef int (*cam_ident_op) (struct gspca_dev *,
87 struct v4l2_dbg_chip_ident *);
Jim Paris627a5ef2008-12-10 06:02:42 -030088typedef int (*cam_streamparm_op) (struct gspca_dev *,
89 struct v4l2_streamparm *);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030090typedef int (*cam_qmnu_op) (struct gspca_dev *,
91 struct v4l2_querymenu *);
92typedef void (*cam_pkt_op) (struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -030093 u8 *data,
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030094 int len);
Márton Németh0274d422010-01-28 06:39:49 -030095typedef int (*cam_int_pkt_op) (struct gspca_dev *gspca_dev,
96 u8 *data,
97 int len);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030098
99struct ctrl {
100 struct v4l2_queryctrl qctrl;
101 int (*set)(struct gspca_dev *, __s32);
102 int (*get)(struct gspca_dev *, __s32 *);
103};
104
105/* subdriver description */
106struct sd_desc {
107/* information */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300108 const char *name; /* sub-driver name */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300109/* controls */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300110 const struct ctrl *ctrls;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300111 int nctrls;
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300112/* mandatory operations */
Hans de Goedee2997a72008-04-23 08:09:12 -0300113 cam_cf_op config; /* called on probe */
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300114 cam_op init; /* called on probe and resume */
Jean-Francois Moine1f53b0b2009-06-30 07:07:01 -0300115 cam_op start; /* called on stream on after URBs creation */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300116 cam_pkt_op pkt_scan;
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300117/* optional operations */
Jean-Francois Moine1f53b0b2009-06-30 07:07:01 -0300118 cam_op isoc_init; /* called on stream on before getting the EP */
119 cam_op isoc_nego; /* called when URB submit failed with NOSPC */
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300120 cam_v_op stopN; /* called on stream off - main alt */
Jean-Francois Moine98522a72008-11-18 06:33:08 -0300121 cam_v_op stop0; /* called on stream off & disconnect - alt 0 */
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300122 cam_v_op dq_callback; /* called when a frame has been dequeued */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300123 cam_jpg_op get_jcomp;
124 cam_jpg_op set_jcomp;
125 cam_qmnu_op querymenu;
Jim Paris627a5ef2008-12-10 06:02:42 -0300126 cam_streamparm_op get_streamparm;
127 cam_streamparm_op set_streamparm;
Brian Johnsonaf1d9af2009-07-19 05:29:20 -0300128#ifdef CONFIG_VIDEO_ADV_DEBUG
129 cam_reg_op set_register;
130 cam_reg_op get_register;
131#endif
132 cam_ident_op get_chip_ident;
Randy Dunlapf7628012010-03-30 14:32:04 -0300133#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Márton Németh0274d422010-01-28 06:39:49 -0300134 cam_int_pkt_op int_pkt_scan;
Hans de Goedeac82f592010-02-19 04:28:39 -0300135 /* other_input makes the gspca core create gspca_dev->input even when
136 int_pkt_scan is NULL, for cams with non interrupt driven buttons */
137 u8 other_input;
Márton Németh0274d422010-01-28 06:39:49 -0300138#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300139};
140
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300141/* packet types when moving from iso buf to frame buf */
Erik Andrene293e592008-10-03 08:46:50 -0300142enum gspca_packet_type {
143 DISCARD_PACKET,
144 FIRST_PACKET,
145 INTER_PACKET,
146 LAST_PACKET
147};
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300148
149struct gspca_frame {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300150 __u8 *data; /* frame buffer */
151 __u8 *data_end; /* end of frame while filling */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300152 int vma_use_count;
153 struct v4l2_buffer v4l2_buf;
154};
155
156struct gspca_dev {
Jean-Francois Moinea12ca6a2008-11-19 06:37:53 -0300157 struct video_device vdev; /* !! must be the first item */
Jean-Francois Moine5c4fa002008-11-18 15:52:31 -0300158 struct module *module; /* subdriver handling the device */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300159 struct usb_device *dev;
Jean-Francois Moine4aa0d032008-05-04 06:46:21 -0300160 struct file *capt_file; /* file doing video capture */
Randy Dunlapf7628012010-03-30 14:32:04 -0300161#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Márton Németh0274d422010-01-28 06:39:49 -0300162 struct input_dev *input_dev;
163 char phys[64]; /* physical device path */
164#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300165
166 struct cam cam; /* device information */
167 const struct sd_desc *sd_desc; /* subdriver description */
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -0300168 unsigned ctrl_dis; /* disabled controls (bit map) */
Jean-Francois Moine4af85662009-11-12 15:59:27 -0300169 unsigned ctrl_inac; /* inactive controls (bit map) */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300170
Jean-Francois Moine8295d992008-09-03 17:12:19 -0300171#define USB_BUF_SZ 64
172 __u8 *usb_buf; /* buffer for USB exchanges */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300173 struct urb *urb[MAX_NURBS];
Randy Dunlapf7628012010-03-30 14:32:04 -0300174#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Márton Németh0274d422010-01-28 06:39:49 -0300175 struct urb *int_urb;
176#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300177
178 __u8 *frbuf; /* buffer for nframes */
179 struct gspca_frame frame[GSPCA_MAX_FRAMES];
Jean-Francois Moine3ec342f2009-11-13 07:38:16 -0300180 struct gspca_frame *cur_frame; /* frame beeing filled */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300181 __u32 frsz; /* frame size */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300182 char nframes; /* number of frames */
183 char fr_i; /* frame being filled */
184 char fr_q; /* next frame to queue */
185 char fr_o; /* next frame to dequeue */
186 signed char fr_queue[GSPCA_MAX_FRAMES]; /* frame queue */
Jean-Francois Moineff374742008-10-23 07:29:51 -0300187 __u8 last_packet_type;
188 __s8 empty_packet; /* if (-1) don't check empty packets */
189 __u8 streaming;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300190
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300191 __u8 curr_mode; /* current camera mode */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300192 __u32 pixfmt; /* current mode parameters */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300193 __u16 width;
194 __u16 height;
Jean-Francois Moineff374742008-10-23 07:29:51 -0300195 __u32 sequence; /* frame sequence number */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300196
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300197 wait_queue_head_t wq; /* wait queue */
198 struct mutex usb_lock; /* usb exchange protection */
199 struct mutex read_lock; /* read protection */
200 struct mutex queue_lock; /* ISOC queue protection */
Jean-Francois Moine8c4ebae2009-12-02 07:14:33 -0300201 int usb_err; /* USB error - protected by usb_lock */
Jean-Francois Moine6a709742008-09-03 16:48:10 -0300202#ifdef CONFIG_PM
203 char frozen; /* suspend - resume */
204#endif
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300205 char users; /* number of opens */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300206 char present; /* device connected */
207 char nbufread; /* number of buffers for read() */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300208 char memory; /* memory type (V4L2_MEMORY_xxx) */
Jean-Francois Moineff374742008-10-23 07:29:51 -0300209 __u8 iface; /* USB interface number */
210 __u8 alt; /* USB alternate setting */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300211 __u8 nbalt; /* number of USB alternate settings */
Jean-Francois Moine1f53b0b2009-06-30 07:07:01 -0300212 u16 pkt_size; /* ISOC packet size */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300213};
214
215int gspca_dev_probe(struct usb_interface *intf,
216 const struct usb_device_id *id,
217 const struct sd_desc *sd_desc,
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300218 int dev_size,
219 struct module *module);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300220void gspca_disconnect(struct usb_interface *intf);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300221void gspca_frame_add(struct gspca_dev *gspca_dev,
222 enum gspca_packet_type packet_type,
223 const u8 *data,
224 int len);
Jean-Francois Moine1b60e1a2008-09-20 05:44:21 -0300225struct gspca_frame *gspca_get_i_frame(struct gspca_dev *gspca_dev);
Jean-Francois Moine6a709742008-09-03 16:48:10 -0300226#ifdef CONFIG_PM
227int gspca_suspend(struct usb_interface *intf, pm_message_t message);
228int gspca_resume(struct usb_interface *intf);
229#endif
Hans de Goededcef3232008-07-10 10:40:53 -0300230int gspca_auto_gain_n_exposure(struct gspca_dev *gspca_dev, int avg_lum,
231 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300232#endif /* GSPCAV2_H */