blob: 40b0810a595a0d398b9c59a5a3bd2e8b77793236 [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 */
Hans Verkuil7fa8e6f2008-06-21 13:23:27 -030043extern const char *v4l2_norm_to_name(v4l2_std_id id);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030044extern int v4l2_video_std_construct(struct v4l2_standard *vs,
Hans Verkuil7fa8e6f2008-06-21 13:23:27 -030045 int id, const char *name);
Mauro Carvalho Chehab057596e2008-02-02 11:25:31 -030046/* Prints the ioctl in a human-readable format */
47extern void v4l_printk_ioctl(unsigned int cmd);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030048
49/* prority handling */
50struct v4l2_prio_state {
51 atomic_t prios[4];
52};
53int v4l2_prio_init(struct v4l2_prio_state *global);
54int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local,
55 enum v4l2_priority new);
56int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local);
57int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local);
58enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global);
59int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local);
60
61/* names for fancy debug output */
62extern char *v4l2_field_names[];
63extern char *v4l2_type_names[];
64
65/* Compatibility layer interface -- v4l1-compat module */
66typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file,
67 unsigned int cmd, void *arg);
68#ifdef CONFIG_VIDEO_V4L1_COMPAT
69int v4l_compat_translate_ioctl(struct inode *inode, struct file *file,
70 int cmd, void *arg, v4l2_kioctl driver_ioctl);
71#else
72#define v4l_compat_translate_ioctl(inode,file,cmd,arg,ioctl) -EINVAL
73#endif
74
75/* 32 Bits compatibility layer for 64 bits processors */
76extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd,
77 unsigned long arg);
78
79/*
80 * Newer version of video_device, handled by videodev2.c
81 * This version moves redundant code from video device code to
82 * the common handler
83 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030084
85struct video_device
86{
87 /* device ops */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030088 const struct file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030089
Kay Sievers54bd5b62007-10-08 16:26:13 -030090 /* sysfs */
91 struct device class_dev; /* v4l device */
92 struct device *dev; /* device parent */
93
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030094 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030095 char name[32];
96 int type; /* v4l1 */
97 int type2; /* v4l2 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030098 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 */
Hans Verkuil78b526a2008-05-28 12:16:41 -0300121 int (*vidioc_enum_fmt_vid_cap) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300122 struct v4l2_fmtdesc *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300123 int (*vidioc_enum_fmt_vid_overlay) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300124 struct v4l2_fmtdesc *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300125 int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300126 struct v4l2_fmtdesc *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300127#if 1
128 /* deprecated, will be removed in 2.6.28 */
129 int (*vidioc_enum_fmt_vbi_cap) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300130 struct v4l2_fmtdesc *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300131#endif
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300132 int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh,
133 struct v4l2_fmtdesc *f);
134
135 /* VIDIOC_G_FMT handlers */
Hans Verkuil78b526a2008-05-28 12:16:41 -0300136 int (*vidioc_g_fmt_vid_cap) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300137 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300138 int (*vidioc_g_fmt_vid_overlay)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300139 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300140 int (*vidioc_g_fmt_vid_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300141 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300142 int (*vidioc_g_fmt_vid_out_overlay)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300143 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300144 int (*vidioc_g_fmt_vbi_cap) (struct file *file, void *fh,
Hans Verkuil0e3bd2b2008-05-27 22:31:43 -0300145 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300146 int (*vidioc_g_fmt_vbi_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300147 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300148 int (*vidioc_g_fmt_sliced_vbi_cap)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300149 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300150 int (*vidioc_g_fmt_sliced_vbi_out)(struct file *file, void *fh,
Hans Verkuilb2787842007-04-27 12:31:02 -0300151 struct v4l2_format *f);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300152 int (*vidioc_g_fmt_type_private)(struct file *file, void *fh,
153 struct v4l2_format *f);
154
155 /* VIDIOC_S_FMT handlers */
Hans Verkuil78b526a2008-05-28 12:16:41 -0300156 int (*vidioc_s_fmt_vid_cap) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300157 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300158 int (*vidioc_s_fmt_vid_overlay)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300159 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300160 int (*vidioc_s_fmt_vid_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300161 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300162 int (*vidioc_s_fmt_vid_out_overlay)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300163 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300164 int (*vidioc_s_fmt_vbi_cap) (struct file *file, void *fh,
Hans Verkuil0e3bd2b2008-05-27 22:31:43 -0300165 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300166 int (*vidioc_s_fmt_vbi_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300167 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300168 int (*vidioc_s_fmt_sliced_vbi_cap)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300169 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300170 int (*vidioc_s_fmt_sliced_vbi_out)(struct file *file, void *fh,
Hans Verkuilb2787842007-04-27 12:31:02 -0300171 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 */
Hans Verkuil78b526a2008-05-28 12:16:41 -0300176 int (*vidioc_try_fmt_vid_cap) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300177 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300178 int (*vidioc_try_fmt_vid_overlay)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300179 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300180 int (*vidioc_try_fmt_vid_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300181 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300182 int (*vidioc_try_fmt_vid_out_overlay)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300183 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300184 int (*vidioc_try_fmt_vbi_cap) (struct file *file, void *fh,
Hans Verkuil0e3bd2b2008-05-27 22:31:43 -0300185 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300186 int (*vidioc_try_fmt_vbi_out) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300187 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300188 int (*vidioc_try_fmt_sliced_vbi_cap)(struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300189 struct v4l2_format *f);
Hans Verkuil78b526a2008-05-28 12:16:41 -0300190 int (*vidioc_try_fmt_sliced_vbi_out)(struct file *file, void *fh,
Hans Verkuilb2787842007-04-27 12:31:02 -0300191 struct v4l2_format *f);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300192 int (*vidioc_try_fmt_type_private)(struct file *file, void *fh,
193 struct v4l2_format *f);
194
195 /* Buffer handlers */
196 int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b);
197 int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b);
198 int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
199 int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b);
200
201
202 int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i);
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -0300203#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300204 /* buffer type is struct vidio_mbuf * */
205 int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p);
206#endif
207 int (*vidioc_g_fbuf) (struct file *file, void *fh,
208 struct v4l2_framebuffer *a);
209 int (*vidioc_s_fbuf) (struct file *file, void *fh,
210 struct v4l2_framebuffer *a);
211
212 /* Stream on/off */
213 int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i);
214 int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i);
215
216 /* Standard handling
Hans Verkuilb2de2312008-05-28 08:27:00 -0300217 ENUMSTD is handled by videodev.c
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300218 */
Hans Verkuilb2de2312008-05-28 08:27:00 -0300219 int (*vidioc_g_std) (struct file *file, void *fh, v4l2_std_id *norm);
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -0300220 int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300221 int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a);
222
223 /* Input handling */
224 int (*vidioc_enum_input)(struct file *file, void *fh,
225 struct v4l2_input *inp);
226 int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i);
227 int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i);
228
229 /* Output handling */
Hans Verkuil0e3bd2b2008-05-27 22:31:43 -0300230 int (*vidioc_enum_output) (struct file *file, void *fh,
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300231 struct v4l2_output *a);
232 int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i);
233 int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i);
234
235 /* Control handling */
236 int (*vidioc_queryctrl) (struct file *file, void *fh,
237 struct v4l2_queryctrl *a);
238 int (*vidioc_g_ctrl) (struct file *file, void *fh,
239 struct v4l2_control *a);
240 int (*vidioc_s_ctrl) (struct file *file, void *fh,
241 struct v4l2_control *a);
Hans Verkuil05976912006-06-18 13:43:28 -0300242 int (*vidioc_g_ext_ctrls) (struct file *file, void *fh,
243 struct v4l2_ext_controls *a);
244 int (*vidioc_s_ext_ctrls) (struct file *file, void *fh,
245 struct v4l2_ext_controls *a);
246 int (*vidioc_try_ext_ctrls) (struct file *file, void *fh,
247 struct v4l2_ext_controls *a);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300248 int (*vidioc_querymenu) (struct file *file, void *fh,
249 struct v4l2_querymenu *a);
250
251 /* Audio ioctls */
252 int (*vidioc_enumaudio) (struct file *file, void *fh,
253 struct v4l2_audio *a);
254 int (*vidioc_g_audio) (struct file *file, void *fh,
255 struct v4l2_audio *a);
256 int (*vidioc_s_audio) (struct file *file, void *fh,
257 struct v4l2_audio *a);
258
259 /* Audio out ioctls */
260 int (*vidioc_enumaudout) (struct file *file, void *fh,
261 struct v4l2_audioout *a);
262 int (*vidioc_g_audout) (struct file *file, void *fh,
263 struct v4l2_audioout *a);
264 int (*vidioc_s_audout) (struct file *file, void *fh,
265 struct v4l2_audioout *a);
266 int (*vidioc_g_modulator) (struct file *file, void *fh,
267 struct v4l2_modulator *a);
268 int (*vidioc_s_modulator) (struct file *file, void *fh,
269 struct v4l2_modulator *a);
270 /* Crop ioctls */
271 int (*vidioc_cropcap) (struct file *file, void *fh,
272 struct v4l2_cropcap *a);
273 int (*vidioc_g_crop) (struct file *file, void *fh,
274 struct v4l2_crop *a);
275 int (*vidioc_s_crop) (struct file *file, void *fh,
276 struct v4l2_crop *a);
277 /* Compression ioctls */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300278 int (*vidioc_g_jpegcomp) (struct file *file, void *fh,
279 struct v4l2_jpegcompression *a);
280 int (*vidioc_s_jpegcomp) (struct file *file, void *fh,
281 struct v4l2_jpegcompression *a);
Hans Verkuildb6eb5b2007-02-18 14:05:02 -0300282 int (*vidioc_g_enc_index) (struct file *file, void *fh,
283 struct v4l2_enc_idx *a);
Hans Verkuilada6ecd2007-02-18 14:56:22 -0300284 int (*vidioc_encoder_cmd) (struct file *file, void *fh,
285 struct v4l2_encoder_cmd *a);
286 int (*vidioc_try_encoder_cmd) (struct file *file, void *fh,
287 struct v4l2_encoder_cmd *a);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300288
289 /* Stream type-dependent parameter ioctls */
290 int (*vidioc_g_parm) (struct file *file, void *fh,
291 struct v4l2_streamparm *a);
292 int (*vidioc_s_parm) (struct file *file, void *fh,
293 struct v4l2_streamparm *a);
294
295 /* Tuner ioctls */
296 int (*vidioc_g_tuner) (struct file *file, void *fh,
297 struct v4l2_tuner *a);
298 int (*vidioc_s_tuner) (struct file *file, void *fh,
299 struct v4l2_tuner *a);
300 int (*vidioc_g_frequency) (struct file *file, void *fh,
301 struct v4l2_frequency *a);
302 int (*vidioc_s_frequency) (struct file *file, void *fh,
303 struct v4l2_frequency *a);
304
305 /* Sliced VBI cap */
306 int (*vidioc_g_sliced_vbi_cap) (struct file *file, void *fh,
307 struct v4l2_sliced_vbi_cap *a);
308
309 /* Log status ioctl */
310 int (*vidioc_log_status) (struct file *file, void *fh);
311
Tobias Lorenz1d0ba5f2008-05-26 18:40:46 -0300312 int (*vidioc_s_hw_freq_seek) (struct file *file, void *fh,
313 struct v4l2_hw_freq_seek *a);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300314
Trent Piephodbbff482007-01-22 23:31:53 -0300315 /* Debugging ioctls */
316#ifdef CONFIG_VIDEO_ADV_DEBUG
317 int (*vidioc_g_register) (struct file *file, void *fh,
318 struct v4l2_register *reg);
319 int (*vidioc_s_register) (struct file *file, void *fh,
320 struct v4l2_register *reg);
321#endif
Hans Verkuil3434eb72007-04-27 12:31:08 -0300322 int (*vidioc_g_chip_ident) (struct file *file, void *fh,
323 struct v4l2_chip_ident *chip);
Trent Piephodbbff482007-01-22 23:31:53 -0300324
Douglas Schilling Landgraf130ca942008-04-10 01:18:56 -0300325 /* For other private ioctls */
326 int (*vidioc_default) (struct file *file, void *fh,
327 int cmd, void *arg);
328
Trent Piephodbbff482007-01-22 23:31:53 -0300329
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -0300330#ifdef OBSOLETE_OWNER /* to be removed soon */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300331/* obsolete -- fops->owner is used instead */
332struct module *owner;
333/* dev->driver_data will be used instead some day.
334 * Use the video_{get|set}_drvdata() helper functions,
335 * so the switch over will be transparent for you.
336 * Or use {pci|usb}_{get|set}_drvdata() directly. */
337void *priv;
338#endif
339
340 /* for videodev.c intenal usage -- please don't touch */
341 int users; /* video_exclusive_{open|close} ... */
342 struct mutex lock; /* ... helper function uses these */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300343};
344
Linus Torvaldse90ff922007-09-13 21:09:01 -0300345/* Class-dev to video-device */
346#define to_video_device(cd) container_of(cd, struct video_device, class_dev)
347
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300348/* Version 2 functions */
349extern int video_register_device(struct video_device *vfd, int type, int nr);
350void video_unregister_device(struct video_device *);
351extern int video_ioctl2(struct inode *inode, struct file *file,
352 unsigned int cmd, unsigned long arg);
353
354/* helper functions to alloc / release struct video_device, the
355 later can be used for video_device->release() */
356struct video_device *video_device_alloc(void);
357void video_device_release(struct video_device *vfd);
358
359/* Include support for obsoleted stuff */
360extern int video_usercopy(struct inode *inode, struct file *file,
361 unsigned int cmd, unsigned long arg,
362 int (*func)(struct inode *inode, struct file *file,
363 unsigned int cmd, void *arg));
364
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -0300365#ifdef CONFIG_VIDEO_V4L1_COMPAT
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300366#include <linux/mm.h>
367
Andrew Morton8a6914a2006-08-14 22:43:19 -0700368static inline int __must_check
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300369video_device_create_file(struct video_device *vfd,
Kay Sievers54bd5b62007-10-08 16:26:13 -0300370 struct device_attribute *attr)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300371{
Kay Sievers54bd5b62007-10-08 16:26:13 -0300372 int ret = device_create_file(&vfd->class_dev, attr);
Michael Krufky3117bee2006-07-19 13:23:38 -0300373 if (ret < 0)
374 printk(KERN_WARNING "%s error: %d\n", __FUNCTION__, ret);
375 return ret;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300376}
377static inline void
378video_device_remove_file(struct video_device *vfd,
Kay Sievers54bd5b62007-10-08 16:26:13 -0300379 struct device_attribute *attr)
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300380{
Kay Sievers54bd5b62007-10-08 16:26:13 -0300381 device_remove_file(&vfd->class_dev, attr);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300382}
383
Mauro Carvalho Chehab8a905162006-09-10 12:01:19 -0300384#endif /* CONFIG_VIDEO_V4L1_COMPAT */
385
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -0300386#ifdef OBSOLETE_OWNER /* to be removed soon */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300387/* helper functions to access driver private data. */
388static inline void *video_get_drvdata(struct video_device *dev)
389{
390 return dev->priv;
391}
392
393static inline void video_set_drvdata(struct video_device *dev, void *data)
394{
395 dev->priv = data;
396}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300397
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300398#endif
399
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300400#ifdef OBSOLETE_DEVDATA /* to be removed soon */
401/* Obsolete stuff - Still needed for radio devices and obsolete drivers */
402extern struct video_device* video_devdata(struct file*);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300403extern int video_exclusive_open(struct inode *inode, struct file *file);
404extern int video_exclusive_release(struct inode *inode, struct file *file);
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300405#endif
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300406
407#endif /* _V4L2_DEV_H */