blob: fb92e3d22d7ed4ab7e4aca81e4e522058d1875c3 [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>
15#include <linux/mutex.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030016#include <linux/videodev2.h>
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030017
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030018#define VIDEO_MAJOR 81
Hans Verkuilbfa8a272008-08-23 07:48:38 -030019
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030020/* Minor device allocation */
21#define MINOR_VFL_TYPE_GRABBER_MIN 0
22#define MINOR_VFL_TYPE_GRABBER_MAX 63
23#define MINOR_VFL_TYPE_RADIO_MIN 64
24#define MINOR_VFL_TYPE_RADIO_MAX 127
25#define MINOR_VFL_TYPE_VTX_MIN 192
26#define MINOR_VFL_TYPE_VTX_MAX 223
27#define MINOR_VFL_TYPE_VBI_MIN 224
28#define MINOR_VFL_TYPE_VBI_MAX 255
29
30#define VFL_TYPE_GRABBER 0
31#define VFL_TYPE_VBI 1
32#define VFL_TYPE_RADIO 2
33#define VFL_TYPE_VTX 3
34
Hans Verkuila3998102008-07-21 02:57:38 -030035struct v4l2_ioctl_callbacks;
36
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030037/*
38 * Newer version of video_device, handled by videodev2.c
39 * This version moves redundant code from video device code to
40 * the common handler
41 */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030042
43struct video_device
44{
45 /* device ops */
Mauro Carvalho Chehab5e87efa2006-06-05 10:26:32 -030046 const struct file_operations *fops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030047
Kay Sievers54bd5b62007-10-08 16:26:13 -030048 /* sysfs */
Hans Verkuil22a04f12008-07-20 06:35:02 -030049 struct device dev; /* v4l device */
Hans Verkuil5e85e732008-07-20 06:31:39 -030050 struct device *parent; /* device parent */
Kay Sievers54bd5b62007-10-08 16:26:13 -030051
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030052 /* device info */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030053 char name[32];
Hans Verkuil0ea6bc82008-07-26 08:26:43 -030054 int vfl_type;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030055 int minor;
Hans Verkuilde1e5752008-07-26 08:37:58 -030056 /* attribute to differentiate multiple indices on one physical device */
brandon@ifup.org539a7552008-06-20 22:58:53 -030057 int index;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030058
Hans Verkuil22a04f12008-07-20 06:35:02 -030059 int debug; /* Activates debug level*/
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030060
61 /* Video standard vars */
Mauro Carvalho Chehabe75f9ce2006-11-20 13:19:20 -030062 v4l2_std_id tvnorms; /* Supported tv norms */
63 v4l2_std_id current_norm; /* Current tvnorm */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030064
65 /* callbacks */
66 void (*release)(struct video_device *vfd);
67
68 /* ioctl callbacks */
Hans Verkuila3998102008-07-21 02:57:38 -030069 const struct v4l2_ioctl_ops *ioctl_ops;
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030070};
71
Hans Verkuilbfa8a272008-08-23 07:48:38 -030072/* dev to video-device */
Hans Verkuil22a04f12008-07-20 06:35:02 -030073#define to_video_device(cd) container_of(cd, struct video_device, dev)
Linus Torvaldse90ff922007-09-13 21:09:01 -030074
Hans Verkuilbfa8a272008-08-23 07:48:38 -030075/* Register and unregister devices. Note that if video_register_device fails,
76 the release() callback of the video_device structure is *not* called, so
77 the caller is responsible for freeing any data. Usually that means that
78 you call video_device_release() on failure. */
Hans Verkuile138c592008-08-23 06:38:11 -030079int __must_check video_register_device(struct video_device *vfd, int type, int nr);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030080int __must_check video_register_device_index(struct video_device *vfd,
81 int type, int nr, int index);
82void video_unregister_device(struct video_device *vfd);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030083
Hans Verkuilbfa8a272008-08-23 07:48:38 -030084/* helper functions to alloc/release struct video_device, the
85 latter can also be used for video_device->release(). */
Hans Verkuile138c592008-08-23 06:38:11 -030086struct video_device * __must_check video_device_alloc(void);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030087
Hans Verkuilf9e86b52008-08-23 05:47:41 -030088/* this release function frees the vfd pointer */
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030089void video_device_release(struct video_device *vfd);
Hans Verkuilbfa8a272008-08-23 07:48:38 -030090
Hans Verkuilf9e86b52008-08-23 05:47:41 -030091/* this release function does nothing, use when the video_device is a
92 static global struct. Note that having a static video_device is
93 a dubious construction at best. */
94void video_device_release_empty(struct video_device *vfd);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030095
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -030096/* helper functions to access driver private data. */
97static inline void *video_get_drvdata(struct video_device *dev)
98{
Hans Verkuil601e9442008-08-23 07:24:07 -030099 return dev_get_drvdata(&dev->dev);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300100}
101
102static inline void video_set_drvdata(struct video_device *dev, void *data)
103{
Hans Verkuil601e9442008-08-23 07:24:07 -0300104 dev_set_drvdata(&dev->dev, data);
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300105}
Mauro Carvalho Chehab38ee04f2006-08-08 09:10:01 -0300106
Hans Verkuilbfa8a272008-08-23 07:48:38 -0300107struct video_device *video_devdata(struct file *file);
108
109/* Combine video_get_drvdata and video_devdata as this is
110 used very often. */
111static inline void *video_drvdata(struct file *file)
112{
113 return video_get_drvdata(video_devdata(file));
114}
Mauro Carvalho Chehab401998f2006-06-04 10:06:18 -0300115
116#endif /* _V4L2_DEV_H */