Mauro Carvalho Chehab | f6fa883 | 2016-07-22 10:15:42 -0300 | [diff] [blame] | 1 | Video device' s internal representation |
| 2 | ======================================= |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 3 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 4 | The actual device nodes in the ``/dev`` directory are created using the |
| 5 | :c:type:`video_device` struct (``v4l2-dev.h``). This struct can either be |
| 6 | allocated dynamically or embedded in a larger struct. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 7 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 8 | To allocate it dynamically use :c:func:`video_device_alloc`: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 9 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 10 | .. code-block:: c |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 11 | |
| 12 | struct video_device *vdev = video_device_alloc(); |
| 13 | |
| 14 | if (vdev == NULL) |
| 15 | return -ENOMEM; |
| 16 | |
| 17 | vdev->release = video_device_release; |
| 18 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 19 | If you embed it in a larger struct, then you must set the ``release()`` |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 20 | callback to your own function: |
| 21 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 22 | .. code-block:: c |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 23 | |
| 24 | struct video_device *vdev = &my_vdev->vdev; |
| 25 | |
| 26 | vdev->release = my_vdev_release; |
| 27 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 28 | The ``release()`` callback must be set and it is called when the last user |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 29 | of the video device exits. |
| 30 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 31 | The default :c:func:`video_device_release` callback currently |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 32 | just calls ``kfree`` to free the allocated memory. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 33 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 34 | There is also a ::c:func:`video_device_release_empty` function that does |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 35 | nothing (is empty) and should be used if the struct is embedded and there |
| 36 | is nothing to do when it is released. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 37 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 38 | You should also set these fields of :c:type:`video_device`: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 39 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 40 | - :c:type:`video_device`->v4l2_dev: must be set to the :c:type:`v4l2_device` |
| 41 | parent device. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 42 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 43 | - :c:type:`video_device`->name: set to something descriptive and unique. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 44 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 45 | - :c:type:`video_device`->vfl_dir: set this to ``VFL_DIR_RX`` for capture |
| 46 | devices (``VFL_DIR_RX`` has value 0, so this is normally already the |
| 47 | default), set to ``VFL_DIR_TX`` for output devices and ``VFL_DIR_M2M`` for mem2mem (codec) devices. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 48 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 49 | - :c:type:`video_device`->fops: set to the :c:type:`v4l2_file_operations` |
| 50 | struct. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 51 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 52 | - :c:type:`video_device`->ioctl_ops: if you use the :c:type:`v4l2_ioctl_ops` |
| 53 | to simplify ioctl maintenance (highly recommended to use this and it might |
| 54 | become compulsory in the future!), then set this to your |
| 55 | :c:type:`v4l2_ioctl_ops` struct. The :c:type:`video_device`->vfl_type and |
| 56 | :c:type:`video_device`->vfl_dir fields are used to disable ops that do not |
| 57 | match the type/dir combination. E.g. VBI ops are disabled for non-VBI nodes, |
| 58 | and output ops are disabled for a capture device. This makes it possible to |
| 59 | provide just one :c:type:`v4l2_ioctl_ops struct` for both vbi and |
| 60 | video nodes. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 61 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 62 | - :c:type:`video_device`->lock: leave to ``NULL`` if you want to do all the |
| 63 | locking in the driver. Otherwise you give it a pointer to a struct |
| 64 | ``mutex_lock`` and before the :c:type:`video_device`->unlocked_ioctl |
| 65 | file operation is called this lock will be taken by the core and released |
| 66 | afterwards. See the next section for more details. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 67 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 68 | - :c:type:`video_device`->queue: a pointer to the struct :c:type:`vb2_queue` |
| 69 | associated with this device node. |
| 70 | If queue is not ``NULL``, and queue->lock is not ``NULL``, then queue->lock |
| 71 | is used for the queuing ioctls (``VIDIOC_REQBUFS``, ``CREATE_BUFS``, |
| 72 | ``QBUF``, ``DQBUF``, ``QUERYBUF``, ``PREPARE_BUF``, ``STREAMON`` and |
| 73 | ``STREAMOFF``) instead of the lock above. |
| 74 | That way the :ref:`vb2 <vb2_framework>` queuing framework does not have |
| 75 | to wait for other ioctls. This queue pointer is also used by the |
| 76 | :ref:`vb2 <vb2_framework>` helper functions to check for |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 77 | queuing ownership (i.e. is the filehandle calling it allowed to do the |
| 78 | operation). |
| 79 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 80 | - :c:type:`video_device`->prio: keeps track of the priorities. Used to |
| 81 | implement ``VIDIOC_G_PRIORITY`` and ``VIDIOC_S_PRIORITY``. |
| 82 | If left to ``NULL``, then it will use the struct :c:type:`v4l2_prio_state` |
| 83 | in :c:type:`v4l2_device`. If you want to have a separate priority state per |
| 84 | (group of) device node(s), then you can point it to your own struct |
| 85 | :c:type:`v4l2_prio_state`. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 86 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 87 | - :c:type:`video_device`->dev_parent: you only set this if v4l2_device was |
| 88 | registered with ``NULL`` as the parent ``device`` struct. This only happens |
| 89 | in cases where one hardware device has multiple PCI devices that all share |
| 90 | the same :c:type:`v4l2_device` core. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 91 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 92 | The cx88 driver is an example of this: one core :c:type:`v4l2_device` struct, |
| 93 | but it is used by both a raw video PCI device (cx8800) and a MPEG PCI device |
| 94 | (cx8802). Since the :c:type:`v4l2_device` cannot be associated with two PCI |
| 95 | devices at the same time it is setup without a parent device. But when the |
| 96 | struct :c:type:`video_device` is initialized you **do** know which parent |
| 97 | PCI device to use and so you set ``dev_device`` to the correct PCI device. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 98 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 99 | If you use :c:type:`v4l2_ioctl_ops`, then you should set |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 100 | :c:type:`video_device`->unlocked_ioctl to :c:func:`video_ioctl2` in your |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 101 | :c:type:`v4l2_file_operations` struct. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 102 | |
| 103 | In some cases you want to tell the core that a function you had specified in |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 104 | your :c:type:`v4l2_ioctl_ops` should be ignored. You can mark such ioctls by |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 105 | calling this function before :c:func:`video_register_device` is called: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 106 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 107 | :c:func:`v4l2_disable_ioctl <v4l2_disable_ioctl>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 108 | (:c:type:`vdev <video_device>`, cmd). |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 109 | |
| 110 | This tends to be needed if based on external factors (e.g. which card is |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 111 | being used) you want to turns off certain features in :c:type:`v4l2_ioctl_ops` |
| 112 | without having to make a new struct. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 113 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 114 | The :c:type:`v4l2_file_operations` struct is a subset of file_operations. |
| 115 | The main difference is that the inode argument is omitted since it is never |
| 116 | used. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 117 | |
| 118 | If integration with the media framework is needed, you must initialize the |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 119 | :c:type:`media_entity` struct embedded in the :c:type:`video_device` struct |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 120 | (entity field) by calling :c:func:`media_entity_pads_init`: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 121 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 122 | .. code-block:: c |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 123 | |
| 124 | struct media_pad *pad = &my_vdev->pad; |
| 125 | int err; |
| 126 | |
| 127 | err = media_entity_pads_init(&vdev->entity, 1, pad); |
| 128 | |
| 129 | The pads array must have been previously initialized. There is no need to |
| 130 | manually set the struct media_entity type and name fields. |
| 131 | |
| 132 | A reference to the entity will be automatically acquired/released when the |
| 133 | video device is opened/closed. |
| 134 | |
| 135 | ioctls and locking |
| 136 | ------------------ |
| 137 | |
| 138 | The V4L core provides optional locking services. The main service is the |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 139 | lock field in struct :c:type:`video_device`, which is a pointer to a mutex. |
| 140 | If you set this pointer, then that will be used by unlocked_ioctl to |
| 141 | serialize all ioctls. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 142 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 143 | If you are using the :ref:`videobuf2 framework <vb2_framework>`, then there |
| 144 | is a second lock that you can set: :c:type:`video_device`->queue->lock. If |
| 145 | set, then this lock will be used instead of :c:type:`video_device`->lock |
| 146 | to serialize all queuing ioctls (see the previous section |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 147 | for the full list of those ioctls). |
| 148 | |
| 149 | The advantage of using a different lock for the queuing ioctls is that for some |
| 150 | drivers (particularly USB drivers) certain commands such as setting controls |
| 151 | can take a long time, so you want to use a separate lock for the buffer queuing |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 152 | ioctls. That way your ``VIDIOC_DQBUF`` doesn't stall because the driver is busy |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 153 | changing the e.g. exposure of the webcam. |
| 154 | |
| 155 | Of course, you can always do all the locking yourself by leaving both lock |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 156 | pointers at ``NULL``. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 157 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 158 | If you use the old :ref:`videobuf framework <vb_framework>` then you must |
| 159 | pass the :c:type:`video_device`->lock to the videobuf queue initialize |
| 160 | function: if videobuf has to wait for a frame to arrive, then it will |
| 161 | temporarily unlock the lock and relock it afterwards. If your driver also |
| 162 | waits in the code, then you should do the same to allow other |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 163 | processes to access the device node while the first process is waiting for |
| 164 | something. |
| 165 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 166 | In the case of :ref:`videobuf2 <vb2_framework>` you will need to implement the |
| 167 | ``wait_prepare()`` and ``wait_finish()`` callbacks to unlock/lock if applicable. |
| 168 | If you use the ``queue->lock`` pointer, then you can use the helper functions |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 169 | :c:func:`vb2_ops_wait_prepare` and :cpp:func:`vb2_ops_wait_finish`. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 170 | |
| 171 | The implementation of a hotplug disconnect should also take the lock from |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 172 | :c:type:`video_device` before calling v4l2_device_disconnect. If you are also |
| 173 | using :c:type:`video_device`->queue->lock, then you have to first lock |
| 174 | :c:type:`video_device`->queue->lock followed by :c:type:`video_device`->lock. |
| 175 | That way you can be sure no ioctl is running when you call |
| 176 | :c:type:`v4l2_device_disconnect`. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 177 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 178 | Video device registration |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 179 | ------------------------- |
| 180 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 181 | Next you register the video device with :c:func:`video_register_device`. |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 182 | This will create the character device for you. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 183 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 184 | .. code-block:: c |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 185 | |
| 186 | err = video_register_device(vdev, VFL_TYPE_GRABBER, -1); |
| 187 | if (err) { |
| 188 | video_device_release(vdev); /* or kfree(my_vdev); */ |
| 189 | return err; |
| 190 | } |
| 191 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 192 | If the :c:type:`v4l2_device` parent device has a not ``NULL`` mdev field, |
| 193 | the video device entity will be automatically registered with the media |
| 194 | device. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 195 | |
| 196 | Which device is registered depends on the type argument. The following |
| 197 | types exist: |
| 198 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 199 | - ``VFL_TYPE_GRABBER``: ``/dev/videoX`` for video input/output devices |
| 200 | - ``VFL_TYPE_VBI``: ``/dev/vbiX`` for vertical blank data (i.e. closed captions, teletext) |
| 201 | - ``VFL_TYPE_RADIO``: ``/dev/radioX`` for radio tuners |
| 202 | - ``VFL_TYPE_SDR``: ``/dev/swradioX`` for Software Defined Radio tuners |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 203 | |
| 204 | The last argument gives you a certain amount of control over the device |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 205 | device node number used (i.e. the X in ``videoX``). Normally you will pass -1 |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 206 | to let the v4l2 framework pick the first free number. But sometimes users |
| 207 | want to select a specific node number. It is common that drivers allow |
| 208 | the user to select a specific device node number through a driver module |
| 209 | option. That number is then passed to this function and video_register_device |
| 210 | will attempt to select that device node number. If that number was already |
| 211 | in use, then the next free device node number will be selected and it |
| 212 | will send a warning to the kernel log. |
| 213 | |
| 214 | Another use-case is if a driver creates many devices. In that case it can |
| 215 | be useful to place different video devices in separate ranges. For example, |
| 216 | video capture devices start at 0, video output devices start at 16. |
| 217 | So you can use the last argument to specify a minimum device node number |
| 218 | and the v4l2 framework will try to pick the first free number that is equal |
| 219 | or higher to what you passed. If that fails, then it will just pick the |
| 220 | first free number. |
| 221 | |
| 222 | Since in this case you do not care about a warning about not being able |
| 223 | to select the specified device node number, you can call the function |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 224 | :c:func:`video_register_device_no_warn` instead. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 225 | |
| 226 | Whenever a device node is created some attributes are also created for you. |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 227 | If you look in ``/sys/class/video4linux`` you see the devices. Go into e.g. |
| 228 | ``video0`` and you will see 'name', 'dev_debug' and 'index' attributes. The |
| 229 | 'name' attribute is the 'name' field of the video_device struct. The |
| 230 | 'dev_debug' attribute can be used to enable core debugging. See the next |
| 231 | section for more detailed information on this. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 232 | |
| 233 | The 'index' attribute is the index of the device node: for each call to |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 234 | :c:func:`video_register_device()` the index is just increased by 1. The |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 235 | first video device node you register always starts with index 0. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 236 | |
| 237 | Users can setup udev rules that utilize the index attribute to make fancy |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 238 | device names (e.g. '``mpegX``' for MPEG video capture device nodes). |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 239 | |
| 240 | After the device was successfully registered, then you can use these fields: |
| 241 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 242 | - :c:type:`video_device`->vfl_type: the device type passed to |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 243 | :c:func:`video_register_device`. |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 244 | - :c:type:`video_device`->minor: the assigned device minor number. |
| 245 | - :c:type:`video_device`->num: the device node number (i.e. the X in |
| 246 | ``videoX``). |
| 247 | - :c:type:`video_device`->index: the device index number. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 248 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 249 | If the registration failed, then you need to call |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 250 | :c:func:`video_device_release` to free the allocated :c:type:`video_device` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 251 | struct, or free your own struct if the :c:type:`video_device` was embedded in |
| 252 | it. The ``vdev->release()`` callback will never be called if the registration |
| 253 | failed, nor should you ever attempt to unregister the device if the |
| 254 | registration failed. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 255 | |
| 256 | video device debugging |
| 257 | ---------------------- |
| 258 | |
| 259 | The 'dev_debug' attribute that is created for each video, vbi, radio or swradio |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 260 | device in ``/sys/class/video4linux/<devX>/`` allows you to enable logging of |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 261 | file operations. |
| 262 | |
| 263 | It is a bitmask and the following bits can be set: |
| 264 | |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 265 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 266 | ===== ================================================================ |
| 267 | Mask Description |
| 268 | ===== ================================================================ |
| 269 | 0x01 Log the ioctl name and error code. VIDIOC_(D)QBUF ioctls are |
| 270 | only logged if bit 0x08 is also set. |
| 271 | 0x02 Log the ioctl name arguments and error code. VIDIOC_(D)QBUF |
| 272 | ioctls are |
| 273 | only logged if bit 0x08 is also set. |
| 274 | 0x04 Log the file operations open, release, read, write, mmap and |
| 275 | get_unmapped_area. The read and write operations are only |
| 276 | logged if bit 0x08 is also set. |
| 277 | 0x08 Log the read and write file operations and the VIDIOC_QBUF and |
| 278 | VIDIOC_DQBUF ioctls. |
| 279 | 0x10 Log the poll file operation. |
| 280 | ===== ================================================================ |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 281 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 282 | Video device cleanup |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 283 | -------------------- |
| 284 | |
| 285 | When the video device nodes have to be removed, either during the unload |
| 286 | of the driver or because the USB device was disconnected, then you should |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 287 | unregister them with: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 288 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 289 | :c:func:`video_unregister_device` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 290 | (:c:type:`vdev <video_device>`); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 291 | |
| 292 | This will remove the device nodes from sysfs (causing udev to remove them |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 293 | from ``/dev``). |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 294 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 295 | After :c:func:`video_unregister_device` returns no new opens can be done. |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 296 | However, in the case of USB devices some application might still have one of |
| 297 | these device nodes open. So after the unregister all file operations (except |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 298 | release, of course) will return an error as well. |
| 299 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 300 | When the last user of the video device node exits, then the ``vdev->release()`` |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 301 | callback is called and you can do the final cleanup there. |
| 302 | |
| 303 | Don't forget to cleanup the media entity associated with the video device if |
| 304 | it has been initialized: |
| 305 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 306 | :c:func:`media_entity_cleanup <media_entity_cleanup>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 307 | (&vdev->entity); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 308 | |
| 309 | This can be done from the release callback. |
| 310 | |
| 311 | |
Mauro Carvalho Chehab | f6fa883 | 2016-07-22 10:15:42 -0300 | [diff] [blame] | 312 | helper functions |
| 313 | ---------------- |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 314 | |
| 315 | There are a few useful helper functions: |
| 316 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 317 | - file and :c:type:`video_device` private data |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 318 | |
| 319 | You can set/get driver private data in the video_device struct using: |
| 320 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 321 | :c:func:`video_get_drvdata <video_get_drvdata>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 322 | (:c:type:`vdev <video_device>`); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 323 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 324 | :c:func:`video_set_drvdata <video_set_drvdata>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 325 | (:c:type:`vdev <video_device>`); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 326 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 327 | Note that you can safely call :c:func:`video_set_drvdata` before calling |
| 328 | :c:func:`video_register_device`. |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 329 | |
| 330 | And this function: |
| 331 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 332 | :c:func:`video_devdata <video_devdata>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 333 | (struct file \*file); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 334 | |
| 335 | returns the video_device belonging to the file struct. |
| 336 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 337 | The :c:func:`video_devdata` function combines :cpp:func:`video_get_drvdata` |
| 338 | with :c:func:`video_devdata`: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 339 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 340 | :c:func:`video_drvdata <video_drvdata>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 341 | (struct file \*file); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 342 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 343 | You can go from a :c:type:`video_device` struct to the v4l2_device struct using: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 344 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 345 | .. code-block:: c |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 346 | |
| 347 | struct v4l2_device *v4l2_dev = vdev->v4l2_dev; |
| 348 | |
| 349 | - Device node name |
| 350 | |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 351 | The :c:type:`video_device` node kernel name can be retrieved using: |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 352 | |
Mauro Carvalho Chehab | 7b998ba | 2016-07-23 07:21:06 -0300 | [diff] [blame] | 353 | :c:func:`video_device_node_name <video_device_node_name>` |
Mauro Carvalho Chehab | 243b693 | 2016-07-21 17:05:35 -0300 | [diff] [blame] | 354 | (:c:type:`vdev <video_device>`); |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 355 | |
| 356 | The name is used as a hint by userspace tools such as udev. The function |
| 357 | should be used where possible instead of accessing the video_device::num and |
| 358 | video_device::minor fields. |
| 359 | |
Mauro Carvalho Chehab | f6fa883 | 2016-07-22 10:15:42 -0300 | [diff] [blame] | 360 | video_device functions and data structures |
| 361 | ------------------------------------------ |
Mauro Carvalho Chehab | 81d866f | 2016-07-21 15:37:34 -0300 | [diff] [blame] | 362 | |
| 363 | .. kernel-doc:: include/media/v4l2-dev.h |