blob: e3eab82cd4e5d31097b064e654e18a9079d8ee43 [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>
Hans de Goede8cd05842012-05-09 09:58:33 -03009#include <media/v4l2-ctrls.h>
Hans Verkuil23335652012-05-06 09:28:19 -030010#include <media/v4l2-device.h>
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030011#include <linux/mutex.h>
12
Jean-Francois Moine335b3f82008-07-30 04:53:02 -030013/* compilation option */
Jean-François Moinecf221762011-05-17 04:37:05 -030014/*#define GSPCA_DEBUG 1*/
Jean-Francois Moine335b3f82008-07-30 04:53:02 -030015
16#ifdef GSPCA_DEBUG
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030017/* GSPCA our debug messages */
18extern int gspca_debug;
Joe Perches133a9fe2011-08-21 19:56:57 -030019#define PDEBUG(level, fmt, ...) \
20do { \
21 if (gspca_debug & (level)) \
22 pr_info(fmt, ##__VA_ARGS__); \
23} while (0)
24
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030025#define D_ERR 0x01
26#define D_PROBE 0x02
27#define D_CONF 0x04
28#define D_STREAM 0x08
29#define D_FRAM 0x10
30#define D_PACK 0x20
Jean-François Moinef8e56772011-05-17 04:10:32 -030031#define D_USBI 0x00
32#define D_USBO 0x00
Jean-Francois Moined43fa322008-06-12 10:58:58 -030033#define D_V4L2 0x0100
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030034#else
Joe Perches133a9fe2011-08-21 19:56:57 -030035#define PDEBUG(level, fmt, ...)
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030036#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030037
38#define GSPCA_MAX_FRAMES 16 /* maximum number of video frame buffers */
Jean-Francois Moine0be01002008-09-04 07:01:50 -030039/* image transfers */
40#define MAX_NURBS 4 /* max number of URBs */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030041
Antonio Ospite28ffe772009-12-02 06:18:46 -030042
43/* used to list framerates supported by a camera mode (resolution) */
44struct framerates {
Antonio Ospite29b87f02010-01-17 03:27:04 -030045 const u8 *rates;
Antonio Ospite28ffe772009-12-02 06:18:46 -030046 int nrates;
47};
48
Jean-François Moine6a330912010-10-02 04:12:25 -030049/* control definition */
50struct gspca_ctrl {
51 s16 val; /* current value */
52 s16 def; /* default value */
53 s16 min, max; /* minimum and maximum values */
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 */
Jean-François Moine2bbf53b2010-12-28 07:01:04 -030059 const struct framerates *mode_framerates; /* must have size nmodes,
Antonio Ospite28ffe772009-12-02 06:18:46 -030060 * just like cam_mode */
Jean-François Moine6a330912010-10-02 04:12:25 -030061 struct gspca_ctrl *ctrls; /* control table - size nctrls */
62 /* may be NULL */
Jean-Francois Moine47aaca92009-12-15 05:23:04 -030063 u32 bulk_size; /* buffer size when image transfer by bulk */
64 u32 input_flags; /* value for ENUM_INPUT status flags */
65 u8 nmodes; /* size of cam_mode */
66 u8 no_urb_create; /* don't create transfer URBs */
67 u8 bulk_nurbs; /* number of URBs in bulk mode
Antonio Ospitedff369a2008-11-14 07:53:32 -030068 * - cannot be > MAX_NURBS
69 * - when 0 and bulk_size != 0 means
70 * 1 URB and submit done by subdriver */
Jean-Francois Moine6929dc62009-04-21 13:45:56 -030071 u8 bulk; /* image transfer by 0:isoc / 1:bulk */
Jean-Francois Moine49cb6b02009-04-25 13:29:01 -030072 u8 npkt; /* number of packets in an ISOC message
73 * 0 is the default value: 32 packets */
Hans de Goedeeb3fb7c2012-01-01 16:35:01 -030074 u8 needs_full_bandwidth;/* Set this flag to notify the bandwidth calc.
75 * code that the cam fills all image buffers to
76 * the max, even when using compression. */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030077};
78
79struct gspca_dev;
80struct gspca_frame;
81
82/* subdriver operations */
83typedef int (*cam_op) (struct gspca_dev *);
84typedef void (*cam_v_op) (struct gspca_dev *);
85typedef int (*cam_cf_op) (struct gspca_dev *, const struct usb_device_id *);
Hans Verkuild88aab52012-09-17 05:05:25 -030086typedef int (*cam_get_jpg_op) (struct gspca_dev *,
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030087 struct v4l2_jpegcompression *);
Hans Verkuild88aab52012-09-17 05:05:25 -030088typedef int (*cam_set_jpg_op) (struct gspca_dev *,
89 const struct v4l2_jpegcompression *);
Brian Johnsonaf1d9af2009-07-19 05:29:20 -030090typedef int (*cam_reg_op) (struct gspca_dev *,
91 struct v4l2_dbg_register *);
92typedef int (*cam_ident_op) (struct gspca_dev *,
93 struct v4l2_dbg_chip_ident *);
Jean-François Moine668f44a2010-12-25 13:46:14 -030094typedef void (*cam_streamparm_op) (struct gspca_dev *,
Jim Paris627a5ef2008-12-10 06:02:42 -030095 struct v4l2_streamparm *);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -030096typedef int (*cam_qmnu_op) (struct gspca_dev *,
97 struct v4l2_querymenu *);
98typedef void (*cam_pkt_op) (struct gspca_dev *gspca_dev,
Jean-Francois Moine76dd2722009-11-13 09:21:03 -030099 u8 *data,
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300100 int len);
Márton Németh0274d422010-01-28 06:39:49 -0300101typedef int (*cam_int_pkt_op) (struct gspca_dev *gspca_dev,
102 u8 *data,
103 int len);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300104
105struct ctrl {
106 struct v4l2_queryctrl qctrl;
107 int (*set)(struct gspca_dev *, __s32);
108 int (*get)(struct gspca_dev *, __s32 *);
Jean-François Moine6a330912010-10-02 04:12:25 -0300109 cam_v_op set_control;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300110};
111
112/* subdriver description */
113struct sd_desc {
114/* information */
Jean-Francois Moinea5ae2062008-07-04 11:16:16 -0300115 const char *name; /* sub-driver name */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300116/* controls */
Jean-François Moine6a330912010-10-02 04:12:25 -0300117 const struct ctrl *ctrls; /* static control definition */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300118 int nctrls;
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300119/* mandatory operations */
Hans de Goedee2997a72008-04-23 08:09:12 -0300120 cam_cf_op config; /* called on probe */
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300121 cam_op init; /* called on probe and resume */
Hans Verkuil62bba5d2012-05-06 09:28:17 -0300122 cam_op init_controls; /* called on probe */
Jean-Francois Moine1f53b0b2009-06-30 07:07:01 -0300123 cam_op start; /* called on stream on after URBs creation */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300124 cam_pkt_op pkt_scan;
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300125/* optional operations */
Jean-Francois Moine1f53b0b2009-06-30 07:07:01 -0300126 cam_op isoc_init; /* called on stream on before getting the EP */
127 cam_op isoc_nego; /* called when URB submit failed with NOSPC */
Jean-Francois Moine012d6b02008-09-03 17:12:16 -0300128 cam_v_op stopN; /* called on stream off - main alt */
Jean-Francois Moine98522a72008-11-18 06:33:08 -0300129 cam_v_op stop0; /* called on stream off & disconnect - alt 0 */
Jean-Francois Moinec2446b32008-07-05 11:49:20 -0300130 cam_v_op dq_callback; /* called when a frame has been dequeued */
Hans Verkuild88aab52012-09-17 05:05:25 -0300131 cam_get_jpg_op get_jcomp;
132 cam_set_jpg_op set_jcomp;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300133 cam_qmnu_op querymenu;
Jim Paris627a5ef2008-12-10 06:02:42 -0300134 cam_streamparm_op get_streamparm;
135 cam_streamparm_op set_streamparm;
Brian Johnsonaf1d9af2009-07-19 05:29:20 -0300136#ifdef CONFIG_VIDEO_ADV_DEBUG
137 cam_reg_op set_register;
138 cam_reg_op get_register;
139#endif
140 cam_ident_op get_chip_ident;
Randy Dunlapf7628012010-03-30 14:32:04 -0300141#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Márton Németh0274d422010-01-28 06:39:49 -0300142 cam_int_pkt_op int_pkt_scan;
Hans de Goedeac82f592010-02-19 04:28:39 -0300143 /* other_input makes the gspca core create gspca_dev->input even when
144 int_pkt_scan is NULL, for cams with non interrupt driven buttons */
145 u8 other_input;
Márton Németh0274d422010-01-28 06:39:49 -0300146#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300147};
148
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300149/* packet types when moving from iso buf to frame buf */
Erik Andrene293e592008-10-03 08:46:50 -0300150enum gspca_packet_type {
151 DISCARD_PACKET,
152 FIRST_PACKET,
153 INTER_PACKET,
154 LAST_PACKET
155};
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300156
157struct gspca_frame {
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300158 __u8 *data; /* frame buffer */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300159 int vma_use_count;
160 struct v4l2_buffer v4l2_buf;
161};
162
163struct gspca_dev {
Jean-Francois Moinea12ca6a2008-11-19 06:37:53 -0300164 struct video_device vdev; /* !! must be the first item */
Jean-Francois Moine5c4fa0022008-11-18 15:52:31 -0300165 struct module *module; /* subdriver handling the device */
Hans Verkuil23335652012-05-06 09:28:19 -0300166 struct v4l2_device v4l2_dev;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300167 struct usb_device *dev;
Jean-Francois Moine4aa0d032008-05-04 06:46:21 -0300168 struct file *capt_file; /* file doing video capture */
Hans Verkuila3d6e8c2012-05-06 09:28:27 -0300169 /* protected by queue_lock */
Randy Dunlapf7628012010-03-30 14:32:04 -0300170#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Márton Németh0274d422010-01-28 06:39:49 -0300171 struct input_dev *input_dev;
172 char phys[64]; /* physical device path */
173#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300174
175 struct cam cam; /* device information */
176 const struct sd_desc *sd_desc; /* subdriver description */
Jean-Francois Moinef50ba1b2008-09-03 17:12:14 -0300177 unsigned ctrl_dis; /* disabled controls (bit map) */
Jean-Francois Moine4af85662009-11-12 15:59:27 -0300178 unsigned ctrl_inac; /* inactive controls (bit map) */
Hans de Goedea8a47862012-05-09 11:19:00 -0300179 struct v4l2_ctrl_handler ctrl_handler;
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300180
Hans de Goede8cd05842012-05-09 09:58:33 -0300181 /* autogain and exposure or gain control cluster, these are global as
182 the autogain/exposure functions in autogain_functions.c use them */
183 struct {
184 struct v4l2_ctrl *autogain;
185 struct v4l2_ctrl *exposure;
186 struct v4l2_ctrl *gain;
187 int exp_too_low_cnt, exp_too_high_cnt;
188 };
189
Jean-Francois Moine8295d992008-09-03 17:12:19 -0300190#define USB_BUF_SZ 64
191 __u8 *usb_buf; /* buffer for USB exchanges */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300192 struct urb *urb[MAX_NURBS];
Randy Dunlapf7628012010-03-30 14:32:04 -0300193#if defined(CONFIG_INPUT) || defined(CONFIG_INPUT_MODULE)
Márton Németh0274d422010-01-28 06:39:49 -0300194 struct urb *int_urb;
195#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300196
197 __u8 *frbuf; /* buffer for nframes */
198 struct gspca_frame frame[GSPCA_MAX_FRAMES];
Jean-François Moineb192ca92010-06-27 03:08:19 -0300199 u8 *image; /* image beeing filled */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300200 __u32 frsz; /* frame size */
Jean-François Moineb192ca92010-06-27 03:08:19 -0300201 u32 image_len; /* current length of image */
Jean-François Moinef7059ea2010-07-06 04:32:27 -0300202 atomic_t fr_q; /* next frame to queue */
203 atomic_t fr_i; /* frame being filled */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300204 signed char fr_queue[GSPCA_MAX_FRAMES]; /* frame queue */
Jean-François Moinef7059ea2010-07-06 04:32:27 -0300205 char nframes; /* number of frames */
206 u8 fr_o; /* next frame to dequeue */
Jean-Francois Moineff374742008-10-23 07:29:51 -0300207 __u8 last_packet_type;
208 __s8 empty_packet; /* if (-1) don't check empty packets */
Hans Verkuila3d6e8c2012-05-06 09:28:27 -0300209 __u8 streaming; /* protected by both mutexes (*) */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300210
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300211 __u8 curr_mode; /* current camera mode */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300212 __u32 pixfmt; /* current mode parameters */
Jean-Francois Moine6a7eba22008-06-30 15:50:11 -0300213 __u16 width;
214 __u16 height;
Jean-Francois Moineff374742008-10-23 07:29:51 -0300215 __u32 sequence; /* frame sequence number */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300216
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300217 wait_queue_head_t wq; /* wait queue */
218 struct mutex usb_lock; /* usb exchange protection */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300219 struct mutex queue_lock; /* ISOC queue protection */
Jean-Francois Moine8c4ebae2009-12-02 07:14:33 -0300220 int usb_err; /* USB error - protected by usb_lock */
Jean-François Moine35680ba2010-07-14 06:30:18 -0300221 u16 pkt_size; /* ISOC packet size */
Jean-Francois Moine6a709742008-09-03 16:48:10 -0300222#ifdef CONFIG_PM
223 char frozen; /* suspend - resume */
224#endif
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300225 char present; /* device connected */
226 char nbufread; /* number of buffers for read() */
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300227 char memory; /* memory type (V4L2_MEMORY_xxx) */
Jean-Francois Moineff374742008-10-23 07:29:51 -0300228 __u8 iface; /* USB interface number */
229 __u8 alt; /* USB alternate setting */
Jean-François Moine35680ba2010-07-14 06:30:18 -0300230 u8 audio; /* presence of audio device */
Hans Verkuila3d6e8c2012-05-06 09:28:27 -0300231
232 /* (*) These variables are proteced by both usb_lock and queue_lock,
233 that is any code setting them is holding *both*, which means that
234 any code getting them needs to hold at least one of them */
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300235};
236
237int gspca_dev_probe(struct usb_interface *intf,
238 const struct usb_device_id *id,
239 const struct sd_desc *sd_desc,
Jean-Francois Moined43fa322008-06-12 10:58:58 -0300240 int dev_size,
241 struct module *module);
Jean-François Moine44628642010-06-05 07:47:36 -0300242int gspca_dev_probe2(struct usb_interface *intf,
243 const struct usb_device_id *id,
244 const struct sd_desc *sd_desc,
245 int dev_size,
246 struct module *module);
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300247void gspca_disconnect(struct usb_interface *intf);
Jean-Francois Moine76dd2722009-11-13 09:21:03 -0300248void gspca_frame_add(struct gspca_dev *gspca_dev,
249 enum gspca_packet_type packet_type,
250 const u8 *data,
251 int len);
Jean-Francois Moine6a709742008-09-03 16:48:10 -0300252#ifdef CONFIG_PM
253int gspca_suspend(struct usb_interface *intf, pm_message_t message);
254int gspca_resume(struct usb_interface *intf);
255#endif
Hans de Goede8cd05842012-05-09 09:58:33 -0300256int gspca_expo_autogain(struct gspca_dev *gspca_dev, int avg_lum,
257 int desired_avg_lum, int deadzone, int gain_knee, int exposure_knee);
258int gspca_coarse_grained_expo_autogain(struct gspca_dev *gspca_dev,
259 int avg_lum, int desired_avg_lum, int deadzone);
260
Jean-Francois Moine63eb9542008-04-12 09:58:09 -0300261#endif /* GSPCAV2_H */