3.2.5. Digital TV mmap()¶
3.2.5.1. Name¶
dmx-mmap - Map device memory into application address space
Warning
this API is still experimental
3.2.5.2. Synopsis¶
#include <unistd.h>
#include <sys/mman.h>
- 
void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset)¶
3.2.5.3. Arguments¶
- start
- Map the buffer to this address in the application’s address space. When the - MAP_FIXEDflag is specified,- startmust 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- NULLpointer here.
- length
- Length of the memory area to map. This must be a multiple of the DVB packet length (188, on most drivers). 
- prot
- The - protargument 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 this combination of flags.
- flags
- The - flagsparameter 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_FIXEDrequests that the driver selects no other address than the one specified. If the specified address cannot be used,- mmap()will fail. If- MAP_FIXEDis specified,- startmust be a multiple of the pagesize. Use of this option is discouraged.- One of the - MAP_SHAREDor- MAP_PRIVATEflags must be set.- MAP_SHAREDallows applications to share the mapped memory with other (e. g. child-) processes.- Note - The Linux Digital TV applications should not set the - MAP_PRIVATE,- MAP_DENYWRITE,- MAP_EXECUTABLEor- MAP_ANONflags.
- fd
- File descriptor returned by - open().
- offset
- Offset of the buffer in device memory, as returned by ioctl DMX_QUERYBUF ioctl. 
3.2.5.4. Description¶
The mmap() function asks to map length bytes starting at
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 ioctl DMX_QUERYBUF ioctl. Buffers must be allocated with the ioctl DMX_REQBUFS ioctl before they can be queried.
To unmap buffers the munmap() function is used.
3.2.5.5. Return Value¶
On success mmap() returns a pointer to the mapped buffer. On
error MAP_FAILED (-1) is returned, and the errno variable is set
appropriately. Possible error codes are:
- EBADF
- fdis not a valid file descriptor.
- EACCES
- fdis not open for reading and writing.
- EINVAL
- The - startor- lengthor- offsetare not suitable. (E. g. they are too large, or not aligned on a- PAGESIZEboundary.)- The - flagsor- protvalue is not supported.- No buffers have been allocated with the ioctl DMX_REQBUFS ioctl. 
- ENOMEM
- Not enough physical or virtual memory was available to complete the request.