blob: a0a6b41c5e0944e3e655e51151e5a60e3abf2db4 [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 Chehab401998f2006-06-04 10:06:18 -030012#include <linux/poll.h>
13#include <linux/fs.h>
14#include <linux/device.h>
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030015#include <linux/cdev.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030016#include <linux/mutex.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030017#include <linux/videodev2.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030018
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030019#define VIDEO_MAJOR 81
Hans Verkuilbfa8a272008-08-23 07:48:38 -030020
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030021#define VFL_TYPE_GRABBER 0
22#define VFL_TYPE_VBI 1
23#define VFL_TYPE_RADIO 2
24#define VFL_TYPE_VTX 3
Hans Verkuildd896012008-10-04 08:36:54 -030025#define VFL_TYPE_MAX 4
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030026
Hans Verkuila3998102008-07-21 02:57:38 -030027struct v4l2_ioctl_callbacks;
28
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030029/*
30 * Newer version of video_device, handled by videodev2.c
31 * This version moves redundant code from video device code to
32 * the common handler
33 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030034
35struct video_device
36{
37 /* device ops */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030038 const struct file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030039
Kay Sievers54bd5b62007-10-08 16:26:13 -030040 /* sysfs */
Hans Verkuil22a04f12008-07-20 06:35:02 -030041 struct device dev; /* v4l device */
Hans Verkuil7f8ecfa2008-08-29 17:31:35 -030042 struct cdev cdev; /* character device */
43 void (*cdev_release)(struct kobject *kobj);
Hans Verkuil5e85e732008-07-20 06:31:39 -030044 struct device *parent; /* device parent */
Kay Sievers54bd5b62007-10-08 16:26:13 -030045
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030046 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030047 char name[32];
Hans Verkuil0ea6bc82008-07-26 08:26:43 -030048 int vfl_type;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030049 int minor;
Hans Verkuildd896012008-10-04 08:36:54 -030050 u16 num;
Hans Verkuilde1e5752008-07-26 08:37:58 -030051 /* attribute to differentiate multiple indices on one physical device */
brandon@ifup.org539a7552008-06-20 22:58:53 -030052 int index;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030053
Hans Verkuil22a04f12008-07-20 06:35:02 -030054 int debug; /* Activates debug level*/
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030055
56 /* Video standard vars */
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -030057 v4l2_std_id tvnorms; /* Supported tv norms */
58 v4l2_std_id current_norm; /* Current tvnorm */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030059
60 /* callbacks */
61 void (*release)(struct video_device *vfd);
62
63 /* ioctl callbacks */
Hans Verkuila3998102008-07-21 02:57:38 -030064 const struct v4l2_ioctl_ops *ioctl_ops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030065};
66
Hans Verkuilbfa8a272008-08-23 07:48:38 -030067/* dev to video-device */
Hans Verkuil22a04f12008-07-20 06:35:02 -030068#define to_video_device(cd) container_of(cd, struct video_device, dev)
Linus Torvaldse90ff922007-09-13 21:09:01 -030069
Hans Verkuilbfa8a272008-08-23 07:48:38 -030070/* Register and unregister devices. Note that if video_register_device fails,
71 the release() callback of the video_device structure is *not* called, so
72 the caller is responsible for freeing any data. Usually that means that
73 you call video_device_release() on failure. */
Hans Verkuile138c592008-08-23 06:38:11 -030074int __must_check video_register_device(struct video_device *vfd, int type, int nr);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030075int __must_check video_register_device_index(struct video_device *vfd,
76 int type, int nr, int index);
77void video_unregister_device(struct video_device *vfd);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030078
Hans Verkuilbfa8a272008-08-23 07:48:38 -030079/* helper functions to alloc/release struct video_device, the
80 latter can also be used for video_device->release(). */
Hans Verkuile138c592008-08-23 06:38:11 -030081struct video_device * __must_check video_device_alloc(void);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030082
Hans Verkuilf9e86b52008-08-23 05:47:41 -030083/* this release function frees the vfd pointer */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030084void video_device_release(struct video_device *vfd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030085
Hans Verkuilf9e86b52008-08-23 05:47:41 -030086/* this release function does nothing, use when the video_device is a
87 static global struct. Note that having a static video_device is
88 a dubious construction at best. */
89void video_device_release_empty(struct video_device *vfd);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030090
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030091/* helper functions to access driver private data. */
92static inline void *video_get_drvdata(struct video_device *dev)
93{
Hans Verkuil601e9442008-08-23 07:24:07 -030094 return dev_get_drvdata(&dev->dev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030095}
96
97static inline void video_set_drvdata(struct video_device *dev, void *data)
98{
Hans Verkuil601e9442008-08-23 07:24:07 -030099 dev_set_drvdata(&dev->dev, data);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300100}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300101
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300102struct video_device *video_devdata(struct file *file);
103
104/* Combine video_get_drvdata and video_devdata as this is
105 used very often. */
106static inline void *video_drvdata(struct file *file)
107{
108 return video_get_drvdata(video_devdata(file));
109}
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300110
111#endif /* _V4L2_DEV_H */