v4l2-dev.h 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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. #include <linux/poll.h>
  12. #include <linux/fs.h>
  13. #include <linux/device.h>
  14. #include <linux/cdev.h>
  15. #include <linux/mutex.h>
  16. #include <linux/videodev2.h>
  17. #define VIDEO_MAJOR 81
  18. #define VFL_TYPE_GRABBER 0
  19. #define VFL_TYPE_VBI 1
  20. #define VFL_TYPE_RADIO 2
  21. #define VFL_TYPE_VTX 3
  22. #define VFL_TYPE_MAX 4
  23. struct v4l2_ioctl_callbacks;
  24. /*
  25. * Newer version of video_device, handled by videodev2.c
  26. * This version moves redundant code from video device code to
  27. * the common handler
  28. */
  29. struct video_device
  30. {
  31. /* device ops */
  32. const struct file_operations *fops;
  33. /* sysfs */
  34. struct device dev; /* v4l device */
  35. struct cdev cdev; /* character device */
  36. void (*cdev_release)(struct kobject *kobj);
  37. struct device *parent; /* device parent */
  38. /* device info */
  39. char name[32];
  40. int vfl_type;
  41. int minor;
  42. u16 num;
  43. /* attribute to differentiate multiple indices on one physical device */
  44. int index;
  45. int debug; /* Activates debug level*/
  46. /* Video standard vars */
  47. v4l2_std_id tvnorms; /* Supported tv norms */
  48. v4l2_std_id current_norm; /* Current tvnorm */
  49. /* callbacks */
  50. void (*release)(struct video_device *vfd);
  51. /* ioctl callbacks */
  52. const struct v4l2_ioctl_ops *ioctl_ops;
  53. };
  54. /* dev to video-device */
  55. #define to_video_device(cd) container_of(cd, struct video_device, dev)
  56. /* Register and unregister devices. Note that if video_register_device fails,
  57. the release() callback of the video_device structure is *not* called, so
  58. the caller is responsible for freeing any data. Usually that means that
  59. you call video_device_release() on failure. */
  60. int __must_check video_register_device(struct video_device *vfd, int type, int nr);
  61. int __must_check video_register_device_index(struct video_device *vfd,
  62. int type, int nr, int index);
  63. void video_unregister_device(struct video_device *vfd);
  64. /* helper functions to alloc/release struct video_device, the
  65. latter can also be used for video_device->release(). */
  66. struct video_device * __must_check video_device_alloc(void);
  67. /* this release function frees the vfd pointer */
  68. void video_device_release(struct video_device *vfd);
  69. /* this release function does nothing, use when the video_device is a
  70. static global struct. Note that having a static video_device is
  71. a dubious construction at best. */
  72. void video_device_release_empty(struct video_device *vfd);
  73. /* helper functions to access driver private data. */
  74. static inline void *video_get_drvdata(struct video_device *dev)
  75. {
  76. return dev_get_drvdata(&dev->dev);
  77. }
  78. static inline void video_set_drvdata(struct video_device *dev, void *data)
  79. {
  80. dev_set_drvdata(&dev->dev, data);
  81. }
  82. struct video_device *video_devdata(struct file *file);
  83. /* Combine video_get_drvdata and video_devdata as this is
  84. used very often. */
  85. static inline void *video_drvdata(struct file *file)
  86. {
  87. return video_get_drvdata(video_devdata(file));
  88. }
  89. #endif /* _V4L2_DEV_H */