Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 1 | /* |
| 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 Chehab | 38ee04f | 2006-08-08 09:10:01 -0300 | [diff] [blame] | 12 | #define OBSOLETE_OWNER 1 /* to be removed soon */ |
| 13 | #define OBSOLETE_DEVDATA 1 /* to be removed soon */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 14 | |
| 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 Chehab | 487206f | 2006-08-08 09:10:01 -0300 | [diff] [blame] | 20 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 21 | #include <linux/videodev.h> |
| 22 | #else |
| 23 | #include <linux/videodev2.h> |
| 24 | #endif |
| 25 | |
| 26 | #include <linux/fs.h> |
| 27 | |
| 28 | #define VIDEO_MAJOR 81 |
| 29 | /* Minor device allocation */ |
| 30 | #define MINOR_VFL_TYPE_GRABBER_MIN 0 |
| 31 | #define MINOR_VFL_TYPE_GRABBER_MAX 63 |
| 32 | #define MINOR_VFL_TYPE_RADIO_MIN 64 |
| 33 | #define MINOR_VFL_TYPE_RADIO_MAX 127 |
| 34 | #define MINOR_VFL_TYPE_VTX_MIN 192 |
| 35 | #define MINOR_VFL_TYPE_VTX_MAX 223 |
| 36 | #define MINOR_VFL_TYPE_VBI_MIN 224 |
| 37 | #define MINOR_VFL_TYPE_VBI_MAX 255 |
| 38 | |
| 39 | #define VFL_TYPE_GRABBER 0 |
| 40 | #define VFL_TYPE_VBI 1 |
| 41 | #define VFL_TYPE_RADIO 2 |
| 42 | #define VFL_TYPE_VTX 3 |
| 43 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 44 | /* Video standard functions */ |
| 45 | extern unsigned int v4l2_video_std_fps(struct v4l2_standard *vs); |
Mauro Carvalho Chehab | e75f9ce | 2006-11-20 13:19:20 -0300 | [diff] [blame] | 46 | extern char *v4l2_norm_to_name(v4l2_std_id id); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 47 | extern int v4l2_video_std_construct(struct v4l2_standard *vs, |
| 48 | int id, char *name); |
| 49 | |
| 50 | /* prority handling */ |
| 51 | struct v4l2_prio_state { |
| 52 | atomic_t prios[4]; |
| 53 | }; |
| 54 | int v4l2_prio_init(struct v4l2_prio_state *global); |
| 55 | int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local, |
| 56 | enum v4l2_priority new); |
| 57 | int v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local); |
| 58 | int v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority *local); |
| 59 | enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global); |
| 60 | int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority *local); |
| 61 | |
| 62 | /* names for fancy debug output */ |
| 63 | extern char *v4l2_field_names[]; |
| 64 | extern char *v4l2_type_names[]; |
| 65 | |
| 66 | /* Compatibility layer interface -- v4l1-compat module */ |
| 67 | typedef int (*v4l2_kioctl)(struct inode *inode, struct file *file, |
| 68 | unsigned int cmd, void *arg); |
| 69 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
| 70 | int v4l_compat_translate_ioctl(struct inode *inode, struct file *file, |
| 71 | int cmd, void *arg, v4l2_kioctl driver_ioctl); |
| 72 | #else |
| 73 | #define v4l_compat_translate_ioctl(inode,file,cmd,arg,ioctl) -EINVAL |
| 74 | #endif |
| 75 | |
| 76 | /* 32 Bits compatibility layer for 64 bits processors */ |
| 77 | extern long v4l_compat_ioctl32(struct file *file, unsigned int cmd, |
| 78 | unsigned long arg); |
| 79 | |
| 80 | /* |
| 81 | * Newer version of video_device, handled by videodev2.c |
| 82 | * This version moves redundant code from video device code to |
| 83 | * the common handler |
| 84 | */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 85 | |
| 86 | struct video_device |
| 87 | { |
| 88 | /* device ops */ |
Mauro Carvalho Chehab | 5e87efa | 2006-06-05 10:26:32 -0300 | [diff] [blame] | 89 | const struct file_operations *fops; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 90 | |
| 91 | /* device info */ |
| 92 | struct device *dev; |
| 93 | char name[32]; |
| 94 | int type; /* v4l1 */ |
| 95 | int type2; /* v4l2 */ |
| 96 | int hardware; |
| 97 | int minor; |
| 98 | |
| 99 | int debug; /* Activates debug level*/ |
| 100 | |
| 101 | /* Video standard vars */ |
Mauro Carvalho Chehab | e75f9ce | 2006-11-20 13:19:20 -0300 | [diff] [blame] | 102 | v4l2_std_id tvnorms; /* Supported tv norms */ |
| 103 | v4l2_std_id current_norm; /* Current tvnorm */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 104 | |
| 105 | /* callbacks */ |
| 106 | void (*release)(struct video_device *vfd); |
| 107 | |
| 108 | /* ioctl callbacks */ |
| 109 | |
| 110 | /* VIDIOC_QUERYCAP handler */ |
| 111 | int (*vidioc_querycap)(struct file *file, void *fh, struct v4l2_capability *cap); |
| 112 | |
| 113 | /* Priority handling */ |
| 114 | int (*vidioc_g_priority) (struct file *file, void *fh, |
| 115 | enum v4l2_priority *p); |
| 116 | int (*vidioc_s_priority) (struct file *file, void *fh, |
| 117 | enum v4l2_priority p); |
| 118 | |
| 119 | /* VIDIOC_ENUM_FMT handlers */ |
| 120 | int (*vidioc_enum_fmt_cap) (struct file *file, void *fh, |
| 121 | struct v4l2_fmtdesc *f); |
| 122 | int (*vidioc_enum_fmt_overlay) (struct file *file, void *fh, |
| 123 | struct v4l2_fmtdesc *f); |
| 124 | int (*vidioc_enum_fmt_vbi) (struct file *file, void *fh, |
| 125 | struct v4l2_fmtdesc *f); |
| 126 | int (*vidioc_enum_fmt_vbi_capture) (struct file *file, void *fh, |
| 127 | struct v4l2_fmtdesc *f); |
| 128 | int (*vidioc_enum_fmt_video_output)(struct file *file, void *fh, |
| 129 | struct v4l2_fmtdesc *f); |
Hans Verkuil | b278784 | 2007-04-27 12:31:02 -0300 | [diff] [blame] | 130 | int (*vidioc_enum_fmt_output_overlay) (struct file *file, void *fh, |
| 131 | struct v4l2_fmtdesc *f); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 132 | int (*vidioc_enum_fmt_vbi_output) (struct file *file, void *fh, |
| 133 | struct v4l2_fmtdesc *f); |
| 134 | int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh, |
| 135 | struct v4l2_fmtdesc *f); |
| 136 | |
| 137 | /* VIDIOC_G_FMT handlers */ |
| 138 | int (*vidioc_g_fmt_cap) (struct file *file, void *fh, |
| 139 | struct v4l2_format *f); |
| 140 | int (*vidioc_g_fmt_overlay) (struct file *file, void *fh, |
| 141 | struct v4l2_format *f); |
| 142 | int (*vidioc_g_fmt_vbi) (struct file *file, void *fh, |
| 143 | struct v4l2_format *f); |
| 144 | int (*vidioc_g_fmt_vbi_output) (struct file *file, void *fh, |
| 145 | struct v4l2_format *f); |
| 146 | int (*vidioc_g_fmt_vbi_capture)(struct file *file, void *fh, |
| 147 | struct v4l2_format *f); |
| 148 | int (*vidioc_g_fmt_video_output)(struct file *file, void *fh, |
| 149 | struct v4l2_format *f); |
Hans Verkuil | b278784 | 2007-04-27 12:31:02 -0300 | [diff] [blame] | 150 | int (*vidioc_g_fmt_output_overlay) (struct file *file, void *fh, |
| 151 | struct v4l2_format *f); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 152 | int (*vidioc_g_fmt_type_private)(struct file *file, void *fh, |
| 153 | struct v4l2_format *f); |
| 154 | |
| 155 | /* VIDIOC_S_FMT handlers */ |
| 156 | int (*vidioc_s_fmt_cap) (struct file *file, void *fh, |
| 157 | struct v4l2_format *f); |
| 158 | |
| 159 | int (*vidioc_s_fmt_overlay) (struct file *file, void *fh, |
| 160 | struct v4l2_format *f); |
| 161 | int (*vidioc_s_fmt_vbi) (struct file *file, void *fh, |
| 162 | struct v4l2_format *f); |
| 163 | int (*vidioc_s_fmt_vbi_output) (struct file *file, void *fh, |
| 164 | struct v4l2_format *f); |
| 165 | int (*vidioc_s_fmt_vbi_capture)(struct file *file, void *fh, |
| 166 | struct v4l2_format *f); |
| 167 | int (*vidioc_s_fmt_video_output)(struct file *file, void *fh, |
| 168 | struct v4l2_format *f); |
Hans Verkuil | b278784 | 2007-04-27 12:31:02 -0300 | [diff] [blame] | 169 | int (*vidioc_s_fmt_output_overlay) (struct file *file, void *fh, |
| 170 | struct v4l2_format *f); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 171 | int (*vidioc_s_fmt_type_private)(struct file *file, void *fh, |
| 172 | struct v4l2_format *f); |
| 173 | |
| 174 | /* VIDIOC_TRY_FMT handlers */ |
| 175 | int (*vidioc_try_fmt_cap) (struct file *file, void *fh, |
| 176 | struct v4l2_format *f); |
| 177 | int (*vidioc_try_fmt_overlay) (struct file *file, void *fh, |
| 178 | struct v4l2_format *f); |
| 179 | int (*vidioc_try_fmt_vbi) (struct file *file, void *fh, |
| 180 | struct v4l2_format *f); |
| 181 | int (*vidioc_try_fmt_vbi_output) (struct file *file, void *fh, |
| 182 | struct v4l2_format *f); |
| 183 | int (*vidioc_try_fmt_vbi_capture)(struct file *file, void *fh, |
| 184 | struct v4l2_format *f); |
| 185 | int (*vidioc_try_fmt_video_output)(struct file *file, void *fh, |
| 186 | struct v4l2_format *f); |
Hans Verkuil | b278784 | 2007-04-27 12:31:02 -0300 | [diff] [blame] | 187 | int (*vidioc_try_fmt_output_overlay)(struct file *file, void *fh, |
| 188 | struct v4l2_format *f); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 189 | int (*vidioc_try_fmt_type_private)(struct file *file, void *fh, |
| 190 | struct v4l2_format *f); |
| 191 | |
| 192 | /* Buffer handlers */ |
| 193 | int (*vidioc_reqbufs) (struct file *file, void *fh, struct v4l2_requestbuffers *b); |
| 194 | int (*vidioc_querybuf)(struct file *file, void *fh, struct v4l2_buffer *b); |
| 195 | int (*vidioc_qbuf) (struct file *file, void *fh, struct v4l2_buffer *b); |
| 196 | int (*vidioc_dqbuf) (struct file *file, void *fh, struct v4l2_buffer *b); |
| 197 | |
| 198 | |
| 199 | int (*vidioc_overlay) (struct file *file, void *fh, unsigned int i); |
Mauro Carvalho Chehab | 8a90516 | 2006-09-10 12:01:19 -0300 | [diff] [blame] | 200 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 201 | /* buffer type is struct vidio_mbuf * */ |
| 202 | int (*vidiocgmbuf) (struct file *file, void *fh, struct video_mbuf *p); |
| 203 | #endif |
| 204 | int (*vidioc_g_fbuf) (struct file *file, void *fh, |
| 205 | struct v4l2_framebuffer *a); |
| 206 | int (*vidioc_s_fbuf) (struct file *file, void *fh, |
| 207 | struct v4l2_framebuffer *a); |
| 208 | |
| 209 | /* Stream on/off */ |
| 210 | int (*vidioc_streamon) (struct file *file, void *fh, enum v4l2_buf_type i); |
| 211 | int (*vidioc_streamoff)(struct file *file, void *fh, enum v4l2_buf_type i); |
| 212 | |
| 213 | /* Standard handling |
| 214 | G_STD and ENUMSTD are handled by videodev.c |
| 215 | */ |
Mauro Carvalho Chehab | e75f9ce | 2006-11-20 13:19:20 -0300 | [diff] [blame] | 216 | int (*vidioc_s_std) (struct file *file, void *fh, v4l2_std_id *norm); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 217 | int (*vidioc_querystd) (struct file *file, void *fh, v4l2_std_id *a); |
| 218 | |
| 219 | /* Input handling */ |
| 220 | int (*vidioc_enum_input)(struct file *file, void *fh, |
| 221 | struct v4l2_input *inp); |
| 222 | int (*vidioc_g_input) (struct file *file, void *fh, unsigned int *i); |
| 223 | int (*vidioc_s_input) (struct file *file, void *fh, unsigned int i); |
| 224 | |
| 225 | /* Output handling */ |
| 226 | int (*vidioc_enumoutput) (struct file *file, void *fh, |
| 227 | struct v4l2_output *a); |
| 228 | int (*vidioc_g_output) (struct file *file, void *fh, unsigned int *i); |
| 229 | int (*vidioc_s_output) (struct file *file, void *fh, unsigned int i); |
| 230 | |
| 231 | /* Control handling */ |
| 232 | int (*vidioc_queryctrl) (struct file *file, void *fh, |
| 233 | struct v4l2_queryctrl *a); |
| 234 | int (*vidioc_g_ctrl) (struct file *file, void *fh, |
| 235 | struct v4l2_control *a); |
| 236 | int (*vidioc_s_ctrl) (struct file *file, void *fh, |
| 237 | struct v4l2_control *a); |
Hans Verkuil | 0597691 | 2006-06-18 13:43:28 -0300 | [diff] [blame] | 238 | int (*vidioc_g_ext_ctrls) (struct file *file, void *fh, |
| 239 | struct v4l2_ext_controls *a); |
| 240 | int (*vidioc_s_ext_ctrls) (struct file *file, void *fh, |
| 241 | struct v4l2_ext_controls *a); |
| 242 | int (*vidioc_try_ext_ctrls) (struct file *file, void *fh, |
| 243 | struct v4l2_ext_controls *a); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 244 | int (*vidioc_querymenu) (struct file *file, void *fh, |
| 245 | struct v4l2_querymenu *a); |
| 246 | |
| 247 | /* Audio ioctls */ |
| 248 | int (*vidioc_enumaudio) (struct file *file, void *fh, |
| 249 | struct v4l2_audio *a); |
| 250 | int (*vidioc_g_audio) (struct file *file, void *fh, |
| 251 | struct v4l2_audio *a); |
| 252 | int (*vidioc_s_audio) (struct file *file, void *fh, |
| 253 | struct v4l2_audio *a); |
| 254 | |
| 255 | /* Audio out ioctls */ |
| 256 | int (*vidioc_enumaudout) (struct file *file, void *fh, |
| 257 | struct v4l2_audioout *a); |
| 258 | int (*vidioc_g_audout) (struct file *file, void *fh, |
| 259 | struct v4l2_audioout *a); |
| 260 | int (*vidioc_s_audout) (struct file *file, void *fh, |
| 261 | struct v4l2_audioout *a); |
| 262 | int (*vidioc_g_modulator) (struct file *file, void *fh, |
| 263 | struct v4l2_modulator *a); |
| 264 | int (*vidioc_s_modulator) (struct file *file, void *fh, |
| 265 | struct v4l2_modulator *a); |
| 266 | /* Crop ioctls */ |
| 267 | int (*vidioc_cropcap) (struct file *file, void *fh, |
| 268 | struct v4l2_cropcap *a); |
| 269 | int (*vidioc_g_crop) (struct file *file, void *fh, |
| 270 | struct v4l2_crop *a); |
| 271 | int (*vidioc_s_crop) (struct file *file, void *fh, |
| 272 | struct v4l2_crop *a); |
| 273 | /* Compression ioctls */ |
| 274 | int (*vidioc_g_mpegcomp) (struct file *file, void *fh, |
| 275 | struct v4l2_mpeg_compression *a); |
| 276 | int (*vidioc_s_mpegcomp) (struct file *file, void *fh, |
| 277 | struct v4l2_mpeg_compression *a); |
| 278 | 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 Verkuil | db6eb5b | 2007-02-18 14:05:02 -0300 | [diff] [blame] | 282 | int (*vidioc_g_enc_index) (struct file *file, void *fh, |
| 283 | struct v4l2_enc_idx *a); |
Hans Verkuil | ada6ecd | 2007-02-18 14:56:22 -0300 | [diff] [blame] | 284 | 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 Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 288 | |
| 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 | |
| 312 | |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 313 | /* Debugging ioctls */ |
| 314 | #ifdef CONFIG_VIDEO_ADV_DEBUG |
| 315 | int (*vidioc_g_register) (struct file *file, void *fh, |
| 316 | struct v4l2_register *reg); |
| 317 | int (*vidioc_s_register) (struct file *file, void *fh, |
| 318 | struct v4l2_register *reg); |
| 319 | #endif |
Hans Verkuil | 3434eb7 | 2007-04-27 12:31:08 -0300 | [diff] [blame] | 320 | int (*vidioc_g_chip_ident) (struct file *file, void *fh, |
| 321 | struct v4l2_chip_ident *chip); |
Trent Piepho | dbbff48 | 2007-01-22 23:31:53 -0300 | [diff] [blame] | 322 | |
| 323 | |
Mauro Carvalho Chehab | 5e87efa | 2006-06-05 10:26:32 -0300 | [diff] [blame] | 324 | #ifdef OBSOLETE_OWNER /* to be removed soon */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 325 | /* obsolete -- fops->owner is used instead */ |
| 326 | struct module *owner; |
| 327 | /* dev->driver_data will be used instead some day. |
| 328 | * Use the video_{get|set}_drvdata() helper functions, |
| 329 | * so the switch over will be transparent for you. |
| 330 | * Or use {pci|usb}_{get|set}_drvdata() directly. */ |
| 331 | void *priv; |
| 332 | #endif |
| 333 | |
| 334 | /* for videodev.c intenal usage -- please don't touch */ |
| 335 | int users; /* video_exclusive_{open|close} ... */ |
| 336 | struct mutex lock; /* ... helper function uses these */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 337 | struct class_device class_dev; /* sysfs */ |
| 338 | }; |
| 339 | |
Linus Torvalds | e90ff92 | 2007-09-13 21:09:01 -0300 | [diff] [blame^] | 340 | /* Class-dev to video-device */ |
| 341 | #define to_video_device(cd) container_of(cd, struct video_device, class_dev) |
| 342 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 343 | /* Version 2 functions */ |
| 344 | extern int video_register_device(struct video_device *vfd, int type, int nr); |
| 345 | void video_unregister_device(struct video_device *); |
| 346 | extern 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() */ |
| 351 | struct video_device *video_device_alloc(void); |
| 352 | void video_device_release(struct video_device *vfd); |
| 353 | |
| 354 | /* Include support for obsoleted stuff */ |
| 355 | extern 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 Chehab | 8a90516 | 2006-09-10 12:01:19 -0300 | [diff] [blame] | 360 | #ifdef CONFIG_VIDEO_V4L1_COMPAT |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 361 | #include <linux/mm.h> |
| 362 | |
Andrew Morton | 8a6914a | 2006-08-14 22:43:19 -0700 | [diff] [blame] | 363 | static inline int __must_check |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 364 | video_device_create_file(struct video_device *vfd, |
| 365 | struct class_device_attribute *attr) |
| 366 | { |
Michael Krufky | 3117bee | 2006-07-19 13:23:38 -0300 | [diff] [blame] | 367 | int ret = class_device_create_file(&vfd->class_dev, attr); |
| 368 | if (ret < 0) |
| 369 | printk(KERN_WARNING "%s error: %d\n", __FUNCTION__, ret); |
| 370 | return ret; |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 371 | } |
| 372 | static inline void |
| 373 | video_device_remove_file(struct video_device *vfd, |
| 374 | struct class_device_attribute *attr) |
| 375 | { |
| 376 | class_device_remove_file(&vfd->class_dev, attr); |
| 377 | } |
| 378 | |
Mauro Carvalho Chehab | 8a90516 | 2006-09-10 12:01:19 -0300 | [diff] [blame] | 379 | #endif /* CONFIG_VIDEO_V4L1_COMPAT */ |
| 380 | |
Mauro Carvalho Chehab | 5e87efa | 2006-06-05 10:26:32 -0300 | [diff] [blame] | 381 | #ifdef OBSOLETE_OWNER /* to be removed soon */ |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 382 | /* helper functions to access driver private data. */ |
| 383 | static inline void *video_get_drvdata(struct video_device *dev) |
| 384 | { |
| 385 | return dev->priv; |
| 386 | } |
| 387 | |
| 388 | static inline void video_set_drvdata(struct video_device *dev, void *data) |
| 389 | { |
| 390 | dev->priv = data; |
| 391 | } |
Mauro Carvalho Chehab | 38ee04f | 2006-08-08 09:10:01 -0300 | [diff] [blame] | 392 | |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 393 | #endif |
| 394 | |
Mauro Carvalho Chehab | 38ee04f | 2006-08-08 09:10:01 -0300 | [diff] [blame] | 395 | #ifdef OBSOLETE_DEVDATA /* to be removed soon */ |
| 396 | /* Obsolete stuff - Still needed for radio devices and obsolete drivers */ |
| 397 | extern struct video_device* video_devdata(struct file*); |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 398 | extern int video_exclusive_open(struct inode *inode, struct file *file); |
| 399 | extern int video_exclusive_release(struct inode *inode, struct file *file); |
Mauro Carvalho Chehab | 38ee04f | 2006-08-08 09:10:01 -0300 | [diff] [blame] | 400 | #endif |
Mauro Carvalho Chehab | 401998f | 2006-06-04 10:06:18 -0300 | [diff] [blame] | 401 | |
| 402 | #endif /* _V4L2_DEV_H */ |