blob: e75d5e6c4cea083ed8429b1fe1adaa09d6e63cd9 [file] [log] [blame]
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -03001/*
2 *
3 * V 4 L 2 D R I V E R H E L P E R A P I
4 *
5 * Moved from videodev2.h
6 *
7 * Some commonly needed functions for drivers (v4l2-common.o module)
8 */
9#ifndef _V4L2_DEV_H
10#define _V4L2_DEV_H
11
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -030012#define OBSOLETE_OWNER 1 /* to be removed soon */
13#define OBSOLETE_DEVDATA 1 /* to be removed soon */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030014
15#include <linux/poll.h>
16#include <linux/fs.h>
17#include <linux/device.h>
18#include <linux/mutex.h>
19#include <linux/compiler.h> /* need __user */
Mauro Carvalho Chehab487206f2006-08-08 09:10:01 -030020#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030021#include <linux/videodev.h>
22#else
23#include <linux/videodev2.h>
24#endif
25
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030026#define VIDEO_MAJOR 81
27/* Minor device allocation */
28#define MINOR_VFL_TYPE_GRABBER_MIN 0
29#define MINOR_VFL_TYPE_GRABBER_MAX 63
30#define MINOR_VFL_TYPE_RADIO_MIN 64
31#define MINOR_VFL_TYPE_RADIO_MAX 127
32#define MINOR_VFL_TYPE_VTX_MIN 192
33#define MINOR_VFL_TYPE_VTX_MAX 223
34#define MINOR_VFL_TYPE_VBI_MIN 224
35#define MINOR_VFL_TYPE_VBI_MAX 255
36
37#define VFL_TYPE_GRABBER 0
38#define VFL_TYPE_VBI 1
39#define VFL_TYPE_RADIO 2
40#define VFL_TYPE_VTX 3
41
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030042/* Video standard functions */
43extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs);
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -030044extern char *v4l2_norm_to_name(v4l2_std_id id);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030045extern int v4l2_video_std_construct(struct v4l2_standard *vs,
46 int id, char *name);
47
48/* prority handling */
49struct v4l2_prio_state {
50 atomic_t prios[4];
51};
52int v4l2_prio_init(struct v4l2_prio_state *global);
53int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
54 enum v4l2_priority new);
55int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
56int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local);
57enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
58int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local);
59
60/* names for fancy debug output */
61extern char *v4l2_field_names[];
62extern char *v4l2_type_names[];
63
64/* Compatibility layer interface -- v4l1-compat module */
65typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
66 unsigned int cmd, void *arg);
67#ifdef CONFIG_VIDEO_V4L1_COMPAT
68int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
69 int cmd, void *arg, v4l2_kioctl driver_ioctl);
70#else
71#define v4l_compat_translate_ioctl(inode,file,cmd,arg,ioctl) -EINVAL
72#endif
73
74/* 32 Bits compatibility layer for 64 bits processors */
75extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd,
76 unsigned long arg);
77
78/*
79 * Newer version of video_device, handled by videodev2.c
80 * This version moves redundant code from video device code to
81 * the common handler
82 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030083
84struct video_device
85{
86 /* device ops */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030087 const struct file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030088
Kay Sievers54bd5b62007-10-08 16:26:13 -030089 /* sysfs */
90 struct device class_dev; /* v4l device */
91 struct device *dev; /* device parent */
92
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030093 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030094 char name[32];
95 int type; /* v4l1 */
96 int type2; /* v4l2 */
97 int hardware;
98 int minor;
99
100 int debug; /* Activates debug level*/
101
102 /* Video standard vars */
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -0300103 v4l2_std_id tvnorms; /* Supported tv norms */
104 v4l2_std_id current_norm; /* Current tvnorm */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300105
106 /* callbacks */
107 void (*release)(struct video_device *vfd);
108
109 /* ioctl callbacks */
110
111 /* VIDIOC_QUERYCAP handler */
112 int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap);
113
114 /* Priority handling */
115 int (*vidioc_g_priority) (struct file *file, void *fh,
116 enum v4l2_priority *p);
117 int (*vidioc_s_priority) (struct file *file, void *fh,
118 enum v4l2_priority p);
119
120 /* VIDIOC_ENUM_FMT handlers */
121 int (*vidioc_enum_fmt_cap) (struct file *file, void *fh,
122 struct v4l2_fmtdesc *f);
123 int (*vidioc_enum_fmt_overlay) (struct file *file, void *fh,
124 struct v4l2_fmtdesc *f);
125 int (*vidioc_enum_fmt_vbi) (struct file *file, void *fh,
126 struct v4l2_fmtdesc *f);
127 int (*vidioc_enum_fmt_vbi_capture) (struct file *file, void *fh,
128 struct v4l2_fmtdesc *f);
129 int (*vidioc_enum_fmt_video_output)(struct file *file, void *fh,
130 struct v4l2_fmtdesc *f);
Hans Verkuilb2787842007-04-27 12:31:02 -0300131 int (*vidioc_enum_fmt_output_overlay) (struct file *file, void *fh,
132 struct v4l2_fmtdesc *f);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300133 int (*vidioc_enum_fmt_vbi_output) (struct file *file, void *fh,
134 struct v4l2_fmtdesc *f);
135 int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh,
136 struct v4l2_fmtdesc *f);
137
138 /* VIDIOC_G_FMT handlers */
139 int (*vidioc_g_fmt_cap) (struct file *file, void *fh,
140 struct v4l2_format *f);
141 int (*vidioc_g_fmt_overlay) (struct file *file, void *fh,
142 struct v4l2_format *f);
143 int (*vidioc_g_fmt_vbi) (struct file *file, void *fh,
144 struct v4l2_format *f);
145 int (*vidioc_g_fmt_vbi_output) (struct file *file, void *fh,
146 struct v4l2_format *f);
147 int (*vidioc_g_fmt_vbi_capture)(struct file *file, void *fh,
148 struct v4l2_format *f);
149 int (*vidioc_g_fmt_video_output)(struct file *file, void *fh,
150 struct v4l2_format *f);
Hans Verkuilb2787842007-04-27 12:31:02 -0300151 int (*vidioc_g_fmt_output_overlay) (struct file *file, void *fh,
152 struct v4l2_format *f);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300153 int (*vidioc_g_fmt_type_private)(struct file *file, void *fh,
154 struct v4l2_format *f);
155
156 /* VIDIOC_S_FMT handlers */
157 int (*vidioc_s_fmt_cap) (struct file *file, void *fh,
158 struct v4l2_format *f);
159
160 int (*vidioc_s_fmt_overlay) (struct file *file, void *fh,
161 struct v4l2_format *f);
162 int (*vidioc_s_fmt_vbi) (struct file *file, void *fh,
163 struct v4l2_format *f);
164 int (*vidioc_s_fmt_vbi_output) (struct file *file, void *fh,
165 struct v4l2_format *f);
166 int (*vidioc_s_fmt_vbi_capture)(struct file *file, void *fh,
167 struct v4l2_format *f);
168 int (*vidioc_s_fmt_video_output)(struct file *file, void *fh,
169 struct v4l2_format *f);
Hans Verkuilb2787842007-04-27 12:31:02 -0300170 int (*vidioc_s_fmt_output_overlay) (struct file *file, void *fh,
171 struct v4l2_format *f);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300172 int (*vidioc_s_fmt_type_private)(struct file *file, void *fh,
173 struct v4l2_format *f);
174
175 /* VIDIOC_TRY_FMT handlers */
176 int (*vidioc_try_fmt_cap) (struct file *file, void *fh,
177 struct v4l2_format *f);
178 int (*vidioc_try_fmt_overlay) (struct file *file, void *fh,
179 struct v4l2_format *f);
180 int (*vidioc_try_fmt_vbi) (struct file *file, void *fh,
181 struct v4l2_format *f);
182 int (*vidioc_try_fmt_vbi_output) (struct file *file, void *fh,
183 struct v4l2_format *f);
184 int (*vidioc_try_fmt_vbi_capture)(struct file *file, void *fh,
185 struct v4l2_format *f);
186 int (*vidioc_try_fmt_video_output)(struct file *file, void *fh,
187 struct v4l2_format *f);
Hans Verkuilb2787842007-04-27 12:31:02 -0300188 int (*vidioc_try_fmt_output_overlay)(struct file *file, void *fh,
189 struct v4l2_format *f);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300190 int (*vidioc_try_fmt_type_private)(struct file *file, void *fh,
191 struct v4l2_format *f);
192
193 /* Buffer handlers */
194 int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b);
195 int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b);
196 int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
197 int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
198
199
200 int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i);
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -0300201#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300202 /* buffer type is struct vidio_mbuf * */
203 int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p);
204#endif
205 int (*vidioc_g_fbuf) (struct file *file, void *fh,
206 struct v4l2_framebuffer *a);
207 int (*vidioc_s_fbuf) (struct file *file, void *fh,
208 struct v4l2_framebuffer *a);
209
210 /* Stream on/off */
211 int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i);
212 int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i);
213
214 /* Standard handling
215 G_STD and ENUMSTD are handled by videodev.c
216 */
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -0300217 int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300218 int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a);
219
220 /* Input handling */
221 int (*vidioc_enum_input)(struct file *file, void *fh,
222 struct v4l2_input *inp);
223 int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i);
224 int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i);
225
226 /* Output handling */
227 int (*vidioc_enumoutput) (struct file *file, void *fh,
228 struct v4l2_output *a);
229 int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i);
230 int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i);
231
232 /* Control handling */
233 int (*vidioc_queryctrl) (struct file *file, void *fh,
234 struct v4l2_queryctrl *a);
235 int (*vidioc_g_ctrl) (struct file *file, void *fh,
236 struct v4l2_control *a);
237 int (*vidioc_s_ctrl) (struct file *file, void *fh,
238 struct v4l2_control *a);
Hans Verkuil05976912006-06-18 13:43:28 -0300239 int (*vidioc_g_ext_ctrls) (struct file *file, void *fh,
240 struct v4l2_ext_controls *a);
241 int (*vidioc_s_ext_ctrls) (struct file *file, void *fh,
242 struct v4l2_ext_controls *a);
243 int (*vidioc_try_ext_ctrls) (struct file *file, void *fh,
244 struct v4l2_ext_controls *a);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300245 int (*vidioc_querymenu) (struct file *file, void *fh,
246 struct v4l2_querymenu *a);
247
248 /* Audio ioctls */
249 int (*vidioc_enumaudio) (struct file *file, void *fh,
250 struct v4l2_audio *a);
251 int (*vidioc_g_audio) (struct file *file, void *fh,
252 struct v4l2_audio *a);
253 int (*vidioc_s_audio) (struct file *file, void *fh,
254 struct v4l2_audio *a);
255
256 /* Audio out ioctls */
257 int (*vidioc_enumaudout) (struct file *file, void *fh,
258 struct v4l2_audioout *a);
259 int (*vidioc_g_audout) (struct file *file, void *fh,
260 struct v4l2_audioout *a);
261 int (*vidioc_s_audout) (struct file *file, void *fh,
262 struct v4l2_audioout *a);
263 int (*vidioc_g_modulator) (struct file *file, void *fh,
264 struct v4l2_modulator *a);
265 int (*vidioc_s_modulator) (struct file *file, void *fh,
266 struct v4l2_modulator *a);
267 /* Crop ioctls */
268 int (*vidioc_cropcap) (struct file *file, void *fh,
269 struct v4l2_cropcap *a);
270 int (*vidioc_g_crop) (struct file *file, void *fh,
271 struct v4l2_crop *a);
272 int (*vidioc_s_crop) (struct file *file, void *fh,
273 struct v4l2_crop *a);
274 /* Compression ioctls */
275 int (*vidioc_g_mpegcomp) (struct file *file, void *fh,
276 struct v4l2_mpeg_compression *a);
277 int (*vidioc_s_mpegcomp) (struct file *file, void *fh,
278 struct v4l2_mpeg_compression *a);
279 int (*vidioc_g_jpegcomp) (struct file *file, void *fh,
280 struct v4l2_jpegcompression *a);
281 int (*vidioc_s_jpegcomp) (struct file *file, void *fh,
282 struct v4l2_jpegcompression *a);
Hans Verkuildb6eb5b2007-02-18 14:05:02 -0300283 int (*vidioc_g_enc_index) (struct file *file, void *fh,
284 struct v4l2_enc_idx *a);
Hans Verkuilada6ecd2007-02-18 14:56:22 -0300285 int (*vidioc_encoder_cmd) (struct file *file, void *fh,
286 struct v4l2_encoder_cmd *a);
287 int (*vidioc_try_encoder_cmd) (struct file *file, void *fh,
288 struct v4l2_encoder_cmd *a);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300289
290 /* Stream type-dependent parameter ioctls */
291 int (*vidioc_g_parm) (struct file *file, void *fh,
292 struct v4l2_streamparm *a);
293 int (*vidioc_s_parm) (struct file *file, void *fh,
294 struct v4l2_streamparm *a);
295
296 /* Tuner ioctls */
297 int (*vidioc_g_tuner) (struct file *file, void *fh,
298 struct v4l2_tuner *a);
299 int (*vidioc_s_tuner) (struct file *file, void *fh,
300 struct v4l2_tuner *a);
301 int (*vidioc_g_frequency) (struct file *file, void *fh,
302 struct v4l2_frequency *a);
303 int (*vidioc_s_frequency) (struct file *file, void *fh,
304 struct v4l2_frequency *a);
305
306 /* Sliced VBI cap */
307 int (*vidioc_g_sliced_vbi_cap) (struct file *file, void *fh,
308 struct v4l2_sliced_vbi_cap *a);
309
310 /* Log status ioctl */
311 int (*vidioc_log_status) (struct file *file, void *fh);
312
313
Trent Piephodbbff482007-01-22 23:31:53 -0300314 /* Debugging ioctls */
315#ifdef CONFIG_VIDEO_ADV_DEBUG
316 int (*vidioc_g_register) (struct file *file, void *fh,
317 struct v4l2_register *reg);
318 int (*vidioc_s_register) (struct file *file, void *fh,
319 struct v4l2_register *reg);
320#endif
Hans Verkuil3434eb72007-04-27 12:31:08 -0300321 int (*vidioc_g_chip_ident) (struct file *file, void *fh,
322 struct v4l2_chip_ident *chip);
Trent Piephodbbff482007-01-22 23:31:53 -0300323
324
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -0300325#ifdef OBSOLETE_OWNER /* to be removed soon */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300326/* obsolete -- fops->owner is used instead */
327struct module *owner;
328/* dev->driver_data will be used instead some day.
329 * Use the video_{get|set}_drvdata() helper functions,
330 * so the switch over will be transparent for you.
331 * Or use {pci|usb}_{get|set}_drvdata() directly. */
332void *priv;
333#endif
334
335 /* for videodev.c intenal usage -- please don't touch */
336 int users; /* video_exclusive_{open|close} ... */
337 struct mutex lock; /* ... helper function uses these */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300338};
339
Linus Torvaldse90ff922007-09-13 21:09:01 -0300340/* Class-dev to video-device */
341#define to_video_device(cd) container_of(cd, struct video_device, class_dev)
342
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300343/* Version 2 functions */
344extern int video_register_device(struct video_device *vfd, int type, int nr);
345void video_unregister_device(struct video_device *);
346extern int video_ioctl2(struct inode *inode, struct file *file,
347 unsigned int cmd, unsigned long arg);
348
349/* helper functions to alloc / release struct video_device, the
350 later can be used for video_device->release() */
351struct video_device *video_device_alloc(void);
352void video_device_release(struct video_device *vfd);
353
354/* Include support for obsoleted stuff */
355extern int video_usercopy(struct inode *inode, struct file *file,
356 unsigned int cmd, unsigned long arg,
357 int (*func)(struct inode *inode, struct file *file,
358 unsigned int cmd, void *arg));
359
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -0300360#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300361#include <linux/mm.h>
362
Andrew Morton8a6914a2006-08-14 22:43:19 -0700363static inline int __must_check
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300364video_device_create_file(struct video_device *vfd,
Kay Sievers54bd5b62007-10-08 16:26:13 -0300365 struct device_attribute *attr)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300366{
Kay Sievers54bd5b62007-10-08 16:26:13 -0300367 int ret = device_create_file(&vfd->class_dev, attr);
Michael Krufky3117bee2006-07-19 13:23:38 -0300368 if (ret < 0)
369 printk(KERN_WARNING "%s error: %d\n", __FUNCTION__, ret);
370 return ret;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300371}
372static inline void
373video_device_remove_file(struct video_device *vfd,
Kay Sievers54bd5b62007-10-08 16:26:13 -0300374 struct device_attribute *attr)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300375{
Kay Sievers54bd5b62007-10-08 16:26:13 -0300376 device_remove_file(&vfd->class_dev, attr);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300377}
378
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -0300379#endif /* CONFIG_VIDEO_V4L1_COMPAT */
380
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -0300381#ifdef OBSOLETE_OWNER /* to be removed soon */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300382/* helper functions to access driver private data. */
383static inline void *video_get_drvdata(struct video_device *dev)
384{
385 return dev->priv;
386}
387
388static inline void video_set_drvdata(struct video_device *dev, void *data)
389{
390 dev->priv = data;
391}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300392
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300393#endif
394
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300395#ifdef OBSOLETE_DEVDATA /* to be removed soon */
396/* Obsolete stuff - Still needed for radio devices and obsolete drivers */
397extern struct video_device* video_devdata(struct file*);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300398extern int video_exclusive_open(struct inode *inode, struct file *file);
399extern int video_exclusive_release(struct inode *inode, struct file *file);
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300400#endif
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300401
402#endif /* _V4L2_DEV_H */