2018-08-30 10:15:26 -04:00
.. Permission is granted to copy, distribute and/or modify this
.. document under the terms of the GNU Free Documentation License,
.. Version 1.1 or any later version published by the Free Software
.. Foundation, with no Invariant Sections, no Front-Cover Texts
.. and no Back-Cover Texts. A copy of the license is included at
.. Documentation/media/uapi/fdl-appendix.rst.
..
.. TODO: replace it to GFDL-1.1-or-later WITH no-invariant-sections
2016-06-30 15:18:56 +02:00
.. _func-mmap:
***** ***** *
V4L2 mmap()
***** ***** *
2016-07-05 15:14:35 -03:00
Name
2016-07-05 07:58:48 -03:00
====
2016-06-30 15:18:56 +02:00
2016-07-05 07:58:48 -03:00
v4l2-mmap - Map device memory into application address space
2016-06-30 15:18:56 +02:00
2016-07-05 15:14:35 -03:00
Synopsis
2016-06-30 15:18:56 +02:00
========
.. code-block :: c
#include <unistd.h>
#include <sys/mman.h>
2016-08-19 12:00:43 -03:00
.. c:function :: void *mmap( void * start, size_t length, int prot, int flags, int fd, off_t offset )
2016-08-19 16:53:38 -03:00
:name: v4l2-mmap
2016-07-05 07:58:48 -03:00
2016-07-05 15:14:35 -03:00
Arguments
2016-06-30 15:18:56 +02:00
=========
`` start ``
Map the buffer to this address in the application's address space.
When the `` MAP_FIXED `` flag is specified, `` start `` must be a
multiple of the pagesize and mmap will fail when the specified
address cannot be used. Use of this option is discouraged;
applications should just specify a `` NULL `` pointer here.
`` length ``
Length of the memory area to map. This must be the same value as
returned by the driver in the struct
2016-08-29 17:37:59 -03:00
:c:type: `v4l2_buffer` `` length `` field for the
2016-06-30 15:18:56 +02:00
single-planar API, and the same value as returned by the driver in
2016-08-29 17:37:59 -03:00
the struct :c:type: `v4l2_plane` `` length `` field for
2016-06-30 15:18:56 +02:00
the multi-planar API.
`` prot ``
The `` prot `` argument describes the desired memory protection.
Regardless of the device type and the direction of data exchange it
should be set to `` PROT_READ `` | `` PROT_WRITE `` , permitting read
and write access to image buffers. Drivers should support at least
2016-07-10 11:57:43 -03:00
this combination of flags.
.. note ::
#. The Linux `` videobuf `` kernel module, which is used by some
drivers supports only `` PROT_READ `` | `` PROT_WRITE `` . When the
driver does not support the desired protection, the
:ref: `mmap() <func-mmap>` function fails.
#. Device memory accesses (e. g. the memory on a graphics card
with video capturing hardware) may incur a performance penalty
compared to main memory accesses, or reads may be significantly
slower than writes or vice versa. Other I/O methods may be more
efficient in such case.
2016-06-30 15:18:56 +02:00
`` flags ``
The `` flags `` parameter specifies the type of the mapped object,
mapping options and whether modifications made to the mapped copy of
the page are private to the process or are to be shared with other
references.
`` MAP_FIXED `` requests that the driver selects no other address than
the one specified. If the specified address cannot be used,
2016-07-04 12:56:17 -03:00
:ref: `mmap() <func-mmap>` will fail. If `` MAP_FIXED `` is specified,
2016-06-30 15:18:56 +02:00
`` start `` must be a multiple of the pagesize. Use of this option is
discouraged.
One of the `` MAP_SHARED `` or `` MAP_PRIVATE `` flags must be set.
`` MAP_SHARED `` allows applications to share the mapped memory with
2016-07-10 11:57:43 -03:00
other (e. g. child-) processes.
2016-08-15 17:49:50 -03:00
.. note ::
The Linux `` videobuf `` module which is used by some
2016-07-10 11:57:43 -03:00
drivers supports only `` MAP_SHARED `` . `` MAP_PRIVATE `` requests
copy-on-write semantics. V4L2 applications should not set the
`` MAP_PRIVATE `` , `` MAP_DENYWRITE `` , `` MAP_EXECUTABLE `` or `` MAP_ANON ``
flags.
2016-06-30 15:18:56 +02:00
`` fd ``
File descriptor returned by :ref: `open() <func-open>` .
`` offset ``
Offset of the buffer in device memory. This must be the same value
as returned by the driver in the struct
2016-08-29 17:37:59 -03:00
:c:type: `v4l2_buffer` `` m `` union `` offset `` field for
2016-06-30 15:18:56 +02:00
the single-planar API, and the same value as returned by the driver
2016-08-29 17:37:59 -03:00
in the struct :c:type: `v4l2_plane` `` m `` union
2016-06-30 15:18:56 +02:00
`` mem_offset `` field for the multi-planar API.
2016-07-05 15:14:35 -03:00
Description
2016-06-30 15:18:56 +02:00
===========
2016-07-04 12:56:17 -03:00
The :ref: `mmap() <func-mmap>` function asks to map `` length `` bytes starting at
2016-06-30 15:18:56 +02:00
`` offset `` in the memory of the device specified by `` fd `` into the
application address space, preferably at address `` start `` . This latter
address is a hint only, and is usually specified as 0.
Suitable length and offset parameters are queried with the
2016-07-01 13:58:44 -03:00
:ref: `VIDIOC_QUERYBUF` ioctl. Buffers must be
allocated with the :ref: `VIDIOC_REQBUFS` ioctl
2016-06-30 15:18:56 +02:00
before they can be queried.
To unmap buffers the :ref: `munmap() <func-munmap>` function is used.
2016-07-05 15:14:35 -03:00
Return Value
2016-06-30 15:18:56 +02:00
============
2016-07-04 12:56:17 -03:00
On success :ref: `mmap() <func-mmap>` returns a pointer to the mapped buffer. On
2016-06-30 15:18:56 +02:00
error `` MAP_FAILED `` (-1) is returned, and the `` errno `` variable is set
appropriately. Possible error codes are:
EBADF
`` fd `` is not a valid file descriptor.
EACCES
`` fd `` is not open for reading and writing.
EINVAL
The `` start `` or `` length `` or `` offset `` are not suitable. (E. g.
they are too large, or not aligned on a `` PAGESIZE `` boundary.)
The `` flags `` or `` prot `` value is not supported.
No buffers have been allocated with the
2016-07-01 13:58:44 -03:00
:ref: `VIDIOC_REQBUFS` ioctl.
2016-06-30 15:18:56 +02:00
ENOMEM
Not enough physical or virtual memory was available to complete the
request.