← Documents Documentation/userspace-api/media/v4l/vidioc-reqbufs.rst GitHub 원문 ↗

Linux 6.18.37 · 사용자 공간 API

VIDIOC_REQBUFS ioctl

MMAP·USERPTR·DMABUF I/O를 시작하고 buffer를 할당·재할당·orphan 처리하며 queue capability와 memory consistency flag를 해석하는 방법을 설명합니다.

Source pathDocumentation/userspace-api/media/v4l/vidioc-reqbufs.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

vidioc-reqbufs.rst:1-207

실제 할당 count와 capability를 반드시 다시 읽고, 기존 mapping/export가 남은 재할당은 orphan 지원 여부에 따라 처리해야 합니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 .. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
2 .. c:namespace:: V4L
3
4 .. _VIDIOC_REQBUFS:
5
6 ********************
7 ioctl VIDIOC_REQBUFS
8 ********************
9
10 Name
11 ====
12
13 VIDIOC_REQBUFS - Initiate Memory Mapping, User Pointer I/O or DMA buffer I/O
14
15 Synopsis
16 ========
17
18 .. c:macro:: VIDIOC_REQBUFS
19
20 ``int ioctl(int fd, VIDIOC_REQBUFS, struct v4l2_requestbuffers *argp)``
21
22 Arguments
23 =========
24
25 ``fd``
26 File descriptor returned by :c:func:`open()`.
27
28 ``argp``
29 Pointer to struct :c:type:`v4l2_requestbuffers`.
30
31 Description
32 ===========
33
34 This ioctl is used to initiate :ref:`memory mapped <mmap>`,
35 :ref:`user pointer <userp>` or :ref:`DMABUF <dmabuf>` based I/O.
36 Memory mapped buffers are located in device memory and must be allocated
37 with this ioctl before they can be mapped into the application's address
38 space. User buffers are allocated by applications themselves, and this
39 ioctl is merely used to switch the driver into user pointer I/O mode and
40 to setup some internal structures. Similarly, DMABUF buffers are
41 allocated by applications through a device driver, and this ioctl only
42 configures the driver into DMABUF I/O mode without performing any direct
43 allocation.
44
45 To allocate device buffers applications initialize all fields of the
46 struct :c:type:`v4l2_requestbuffers` structure. They set the ``type``
47 field to the respective stream or buffer type, the ``count`` field to
48 the desired number of buffers, ``memory`` must be set to the requested
49 I/O method and the ``reserved`` array must be zeroed. When the ioctl is
50 called with a pointer to this structure the driver will attempt to
51 allocate the requested number of buffers and it stores the actual number
52 allocated in the ``count`` field. It can be smaller than the number
53 requested, even zero, when the driver runs out of free memory. A larger
54 number is also possible when the driver requires more buffers to
55 function correctly. For example video output requires at least two
56 buffers, one displayed and one filled by the application.
57
58 When the I/O method is not supported the ioctl returns an ``EINVAL`` error
59 code.
60
61 Applications can call :ref:`VIDIOC_REQBUFS` again to change the number of
62 buffers. Note that if any buffers are still mapped or exported via DMABUF,
63 then :ref:`VIDIOC_REQBUFS` can only succeed if the
64 ``V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS`` capability is set. Otherwise
65 :ref:`VIDIOC_REQBUFS` will return the ``EBUSY`` error code.
66 If ``V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS`` is set, then these buffers are
67 orphaned and will be freed when they are unmapped or when the exported DMABUF
68 fds are closed. A ``count`` value of zero frees or orphans all buffers, after
69 aborting or finishing any DMA in progress, an implicit
70 :ref:`VIDIOC_STREAMOFF <VIDIOC_STREAMON>`.
71
72 .. c:type:: v4l2_requestbuffers
73
74 .. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.5cm}|
75
76 .. cssclass:: longtable
77
78 .. flat-table:: struct v4l2_requestbuffers
79 :header-rows: 0
80 :stub-columns: 0
81 :widths: 1 1 2
82
83 * - __u32
84 - ``count``
85 - The number of buffers requested or granted.
86 * - __u32
87 - ``type``
88 - Type of the stream or buffers, this is the same as the struct
89 :c:type:`v4l2_format` ``type`` field. See
90 :c:type:`v4l2_buf_type` for valid values.
91 * - __u32
92 - ``memory``
93 - Applications set this field to ``V4L2_MEMORY_MMAP``,
94 ``V4L2_MEMORY_DMABUF`` or ``V4L2_MEMORY_USERPTR``. See
95 :c:type:`v4l2_memory`.
96 * - __u32
97 - ``capabilities``
98 - Set by the driver. If 0, then the driver doesn't support
99 capabilities. In that case all you know is that the driver is
100 guaranteed to support ``V4L2_MEMORY_MMAP`` and *might* support
101 other :c:type:`v4l2_memory` types. It will not support any other
102 capabilities.
103
104 If you want to query the capabilities with a minimum of side-effects,
105 then this can be called with ``count`` set to 0, ``memory`` set to
106 ``V4L2_MEMORY_MMAP`` and ``type`` set to the buffer type. This will
107 free any previously allocated buffers, so this is typically something
108 that will be done at the start of the application.
109 * - __u8
110 - ``flags``
111 - Specifies additional buffer management attributes.
112 See :ref:`memory-flags`.
113 * - __u8
114 - ``reserved``\ [3]
115 - Reserved for future extensions.
116
117 .. _v4l2-buf-capabilities:
118 .. _V4L2-BUF-CAP-SUPPORTS-MMAP:
119 .. _V4L2-BUF-CAP-SUPPORTS-USERPTR:
120 .. _V4L2-BUF-CAP-SUPPORTS-DMABUF:
121 .. _V4L2-BUF-CAP-SUPPORTS-REQUESTS:
122 .. _V4L2-BUF-CAP-SUPPORTS-ORPHANED-BUFS:
123 .. _V4L2-BUF-CAP-SUPPORTS-M2M-HOLD-CAPTURE-BUF:
124 .. _V4L2-BUF-CAP-SUPPORTS-MMAP-CACHE-HINTS:
125 .. _V4L2-BUF-CAP-SUPPORTS-MAX-NUM-BUFFERS:
126 .. _V4L2-BUF-CAP-SUPPORTS-REMOVE-BUFS:
127
128 .. flat-table:: V4L2 Buffer Capabilities Flags
129 :header-rows: 0
130 :stub-columns: 0
131 :widths: 3 1 4
132
133 * - ``V4L2_BUF_CAP_SUPPORTS_MMAP``
134 - 0x00000001
135 - This buffer type supports the ``V4L2_MEMORY_MMAP`` streaming mode.
136 * - ``V4L2_BUF_CAP_SUPPORTS_USERPTR``
137 - 0x00000002
138 - This buffer type supports the ``V4L2_MEMORY_USERPTR`` streaming mode.
139 * - ``V4L2_BUF_CAP_SUPPORTS_DMABUF``
140 - 0x00000004
141 - This buffer type supports the ``V4L2_MEMORY_DMABUF`` streaming mode.
142 * - ``V4L2_BUF_CAP_SUPPORTS_REQUESTS``
143 - 0x00000008
144 - This buffer type supports :ref:`requests <media-request-api>`.
145 * - ``V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS``
146 - 0x00000010
147 - The kernel allows calling :ref:`VIDIOC_REQBUFS` while buffers are still
148 mapped or exported via DMABUF. These orphaned buffers will be freed
149 when they are unmapped or when the exported DMABUF fds are closed.
150 * - ``V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF``
151 - 0x00000020
152 - Only valid for stateless decoders. If set, then userspace can set the
153 ``V4L2_BUF_FLAG_M2M_HOLD_CAPTURE_BUF`` flag to hold off on returning the
154 capture buffer until the OUTPUT timestamp changes.
155 * - ``V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS``
156 - 0x00000040
157 - This capability is set by the driver to indicate that the queue supports
158 cache and memory management hints. However, it's only valid when the
159 queue is used for :ref:`memory mapping <mmap>` streaming I/O. See
160 :ref:`V4L2_BUF_FLAG_NO_CACHE_INVALIDATE <V4L2-BUF-FLAG-NO-CACHE-INVALIDATE>`,
161 :ref:`V4L2_BUF_FLAG_NO_CACHE_CLEAN <V4L2-BUF-FLAG-NO-CACHE-CLEAN>` and
162 :ref:`V4L2_MEMORY_FLAG_NON_COHERENT <V4L2-MEMORY-FLAG-NON-COHERENT>`.
163 * - ``V4L2_BUF_CAP_SUPPORTS_MAX_NUM_BUFFERS``
164 - 0x00000080
165 - If set, then the ``max_num_buffers`` field in ``struct v4l2_create_buffers``
166 is valid. If not set, then the maximum is ``VIDEO_MAX_FRAME`` buffers.
167 * - ``V4L2_BUF_CAP_SUPPORTS_REMOVE_BUFS``
168 - 0x00000100
169 - If set, then ``VIDIOC_REMOVE_BUFS`` is supported.
170
171 .. _memory-flags:
172 .. _V4L2-MEMORY-FLAG-NON-COHERENT:
173
174 .. flat-table:: Memory Consistency Flags
175 :header-rows: 0
176 :stub-columns: 0
177 :widths: 3 1 4
178
179 * - ``V4L2_MEMORY_FLAG_NON_COHERENT``
180 - 0x00000001
181 - A buffer is allocated either in coherent (it will be automatically
182 coherent between the CPU and the bus) or non-coherent memory. The
183 latter can provide performance gains, for instance the CPU cache
184 sync/flush operations can be avoided if the buffer is accessed by the
185 corresponding device only and the CPU does not read/write to/from that
186 buffer. However, this requires extra care from the driver -- it must
187 guarantee memory consistency by issuing a cache flush/sync when
188 consistency is needed. If this flag is set V4L2 will attempt to
189 allocate the buffer in non-coherent memory. The flag takes effect
190 only if the buffer is used for :ref:`memory mapping <mmap>` I/O and the
191 queue reports the :ref:`V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS
192 <V4L2-BUF-CAP-SUPPORTS-MMAP-CACHE-HINTS>` capability.
193
194 .. raw:: latex
195
196 \normalsize
197
198 Return Value
199 ============
200
201 On success 0 is returned, on error -1 and the ``errno`` variable is set
202 appropriately. The generic error codes are described at the
203 :ref:`Generic Error Codes <gen-errors>` chapter.
204
205 EINVAL
206 The buffer type (``type`` field) or the requested I/O method
207 (``memory``) is not supported.
208

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

목적, 호출 형식과 인자

1-30

`VIDIOC_REQBUFS`는 MMAP, USERPTR 또는 DMABUF 기반 I/O를 시작하고 `struct v4l2_requestbuffers`로 queue의 memory 방식을 구성합니다.

.. SPDX-License-Identifier: GFDL-1.1-no-invariants-or-later
.. c:namespace:: V4L

.. _VIDIOC_REQBUFS:

********************
ioctl VIDIOC_REQBUFS
********************

Name
====

VIDIOC_REQBUFS - Initiate Memory Mapping, User Pointer I/O or DMA buffer I/O

Synopsis
========

.. c:macro:: VIDIOC_REQBUFS

``int ioctl(int fd, VIDIOC_REQBUFS, struct v4l2_requestbuffers *argp)``

Arguments
=========

``fd``
    File descriptor returned by :c:func:`open()`.

``argp``
    Pointer to struct :c:type:`v4l2_requestbuffers`.

Memory 방식과 buffer 할당

31-71
Memory 방식별 역할
방식REQBUFS 역할
`V4L2_MEMORY_MMAP`장치 memory에 buffer를 실제 할당한 뒤 애플리케이션 주소 공간에 mmap할 준비
`V4L2_MEMORY_USERPTR`애플리케이션이 buffer를 할당하며, 드라이버를 USERPTR mode로 전환하고 내부 구조만 준비
`V4L2_MEMORY_DMABUF`다른 드라이버 경로로 애플리케이션이 buffer를 확보하며, 드라이버를 DMABUF mode로 구성

이 ioctl이 실제 memory를 할당하는지 구분합니다.

호출자는 `type`, 원하는 `count`, `memory`를 지정하고 `reserved`를 0으로 만듭니다. 드라이버는 실제 확보한 수를 `count`에 되돌립니다.

실제 count는 memory 부족으로 요청보다 작거나 0일 수 있고, 정상 동작에 더 많은 buffer가 필요하면 요청보다 클 수도 있습니다. 예를 들어 video output은 표시 중인 buffer와 애플리케이션이 채울 buffer, 최소 두 개가 필요합니다.

요청한 I/O 방식을 지원하지 않으면 `EINVAL`입니다. 애플리케이션은 다시 REQBUFS를 호출해 buffer 수를 바꿀 수 있습니다.

Buffer가 아직 mmap됐거나 DMABUF로 export된 상태에서 재호출하려면 `V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS`가 필요합니다. 없으면 `EBUSY`, 있으면 기존 buffer를 orphan으로 남겨 unmap 또는 exported fd close 시 해제합니다.

`count = 0`은 진행 중 DMA를 중단하거나 끝낸 뒤 implicit `VIDIOC_STREAMOFF`를 수행하고 모든 buffer를 즉시 해제하거나 orphan으로 전환합니다.

Description
===========

This ioctl is used to initiate :ref:`memory mapped <mmap>`,
:ref:`user pointer <userp>` or :ref:`DMABUF <dmabuf>` based I/O.
Memory mapped buffers are located in device memory and must be allocated
with this ioctl before they can be mapped into the application's address
space. User buffers are allocated by applications themselves, and this
ioctl is merely used to switch the driver into user pointer I/O mode and
to setup some internal structures. Similarly, DMABUF buffers are
allocated by applications through a device driver, and this ioctl only
configures the driver into DMABUF I/O mode without performing any direct
allocation.

To allocate device buffers applications initialize all fields of the
struct :c:type:`v4l2_requestbuffers` structure. They set the ``type``
field to the respective stream or buffer type, the ``count`` field to
the desired number of buffers, ``memory`` must be set to the requested
I/O method and the ``reserved`` array must be zeroed. When the ioctl is
called with a pointer to this structure the driver will attempt to
allocate the requested number of buffers and it stores the actual number
allocated in the ``count`` field. It can be smaller than the number
requested, even zero, when the driver runs out of free memory. A larger
number is also possible when the driver requires more buffers to
function correctly. For example video output requires at least two
buffers, one displayed and one filled by the application.

When the I/O method is not supported the ioctl returns an ``EINVAL`` error
code.

Applications can call :ref:`VIDIOC_REQBUFS` again to change the number of
buffers. Note that if any buffers are still mapped or exported via DMABUF,
then :ref:`VIDIOC_REQBUFS` can only succeed if the
``V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS`` capability is set. Otherwise
:ref:`VIDIOC_REQBUFS` will return the ``EBUSY`` error code.
If ``V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS`` is set, then these buffers are
orphaned and will be freed when they are unmapped or when the exported DMABUF
fds are closed. A ``count`` value of zero frees or orphans all buffers, after
aborting or finishing any DMA in progress, an implicit
:ref:`VIDIOC_STREAMOFF <VIDIOC_STREAMON>`.

struct v4l2_requestbuffers

72-116
v4l2_requestbuffers 필드
형식필드의미
`__u32``count`요청하거나 실제 허가된 buffer 수
`__u32``type``v4l2_format.type`과 같은 stream/buffer type
`__u32``memory`MMAP·DMABUF·USERPTR 가운데 요청 I/O 방식
`__u32``capabilities`드라이버가 보고하는 queue buffer capability
`__u8``flags`추가 buffer management 속성
`__u8[3]``reserved[3]`향후 확장용

요청값과 드라이버 반환값이 함께 들어갑니다.

`capabilities == 0`이면 드라이버가 capability reporting을 지원하지 않는다는 뜻입니다. 이때 MMAP 지원만 보장되고 다른 memory type은 지원할 수도 있지만 추가 capability는 지원하지 않습니다.

부작용을 최소화해 capability를 조회하려면 시작 시 `count = 0`, `memory = V4L2_MEMORY_MMAP`, 원하는 `type`으로 호출할 수 있습니다. 다만 이전에 할당한 buffer를 해제하므로 애플리케이션 시작 단계에서 해야 합니다.

.. c:type:: v4l2_requestbuffers

.. tabularcolumns:: |p{4.4cm}|p{4.4cm}|p{8.5cm}|

.. cssclass:: longtable

.. flat-table:: struct v4l2_requestbuffers
    :header-rows:  0
    :stub-columns: 0
    :widths:       1 1 2

    * - __u32
      - ``count``
      - The number of buffers requested or granted.
    * - __u32
      - ``type``
      - Type of the stream or buffers, this is the same as the struct
	:c:type:`v4l2_format` ``type`` field. See
	:c:type:`v4l2_buf_type` for valid values.
    * - __u32
      - ``memory``
      - Applications set this field to ``V4L2_MEMORY_MMAP``,
	``V4L2_MEMORY_DMABUF`` or ``V4L2_MEMORY_USERPTR``. See
	:c:type:`v4l2_memory`.
    * - __u32
      - ``capabilities``
      - Set by the driver. If 0, then the driver doesn't support
        capabilities. In that case all you know is that the driver is
	guaranteed to support ``V4L2_MEMORY_MMAP`` and *might* support
	other :c:type:`v4l2_memory` types. It will not support any other
	capabilities.

	If you want to query the capabilities with a minimum of side-effects,
	then this can be called with ``count`` set to 0, ``memory`` set to
	``V4L2_MEMORY_MMAP`` and ``type`` set to the buffer type. This will
	free any previously allocated buffers, so this is typically something
	that will be done at the start of the application.
    * - __u8
      - ``flags``
      - Specifies additional buffer management attributes.
	See :ref:`memory-flags`.
    * - __u8
      - ``reserved``\ [3]
      - Reserved for future extensions.

V4L2 buffer capability flag

117-170
Queue buffer capability
상수기능
`V4L2_BUF_CAP_SUPPORTS_MMAP``0x00000001`MMAP streaming
`V4L2_BUF_CAP_SUPPORTS_USERPTR``0x00000002`USERPTR streaming
`V4L2_BUF_CAP_SUPPORTS_DMABUF``0x00000004`DMABUF streaming
`V4L2_BUF_CAP_SUPPORTS_REQUESTS``0x00000008`Media request API
`V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS``0x00000010`mmap/export 중 REQBUFS 재호출 허용; unmap/fd close 때 orphan 해제
`V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF``0x00000020`Stateless decoder에서 OUTPUT timestamp가 바뀔 때까지 capture buffer 반환 보류 flag 허용
`V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS``0x00000040`MMAP queue에서 cache·memory management hint 지원
`V4L2_BUF_CAP_SUPPORTS_MAX_NUM_BUFFERS``0x00000080``v4l2_create_buffers.max_num_buffers`가 유효; 없으면 최대 `VIDEO_MAX_FRAME`
`V4L2_BUF_CAP_SUPPORTS_REMOVE_BUFS``0x00000100``VIDIOC_REMOVE_BUFS` 지원

지원 memory mode와 고급 buffer 관리 기능입니다.

MMAP cache hint에는 `V4L2_BUF_FLAG_NO_CACHE_INVALIDATE`, `V4L2_BUF_FLAG_NO_CACHE_CLEAN`, `V4L2_MEMORY_FLAG_NON_COHERENT`가 포함됩니다.

.. _v4l2-buf-capabilities:
.. _V4L2-BUF-CAP-SUPPORTS-MMAP:
.. _V4L2-BUF-CAP-SUPPORTS-USERPTR:
.. _V4L2-BUF-CAP-SUPPORTS-DMABUF:
.. _V4L2-BUF-CAP-SUPPORTS-REQUESTS:
.. _V4L2-BUF-CAP-SUPPORTS-ORPHANED-BUFS:
.. _V4L2-BUF-CAP-SUPPORTS-M2M-HOLD-CAPTURE-BUF:
.. _V4L2-BUF-CAP-SUPPORTS-MMAP-CACHE-HINTS:
.. _V4L2-BUF-CAP-SUPPORTS-MAX-NUM-BUFFERS:
.. _V4L2-BUF-CAP-SUPPORTS-REMOVE-BUFS:

.. flat-table:: V4L2 Buffer Capabilities Flags
    :header-rows:  0
    :stub-columns: 0
    :widths:       3 1 4

    * - ``V4L2_BUF_CAP_SUPPORTS_MMAP``
      - 0x00000001
      - This buffer type supports the ``V4L2_MEMORY_MMAP`` streaming mode.
    * - ``V4L2_BUF_CAP_SUPPORTS_USERPTR``
      - 0x00000002
      - This buffer type supports the ``V4L2_MEMORY_USERPTR`` streaming mode.
    * - ``V4L2_BUF_CAP_SUPPORTS_DMABUF``
      - 0x00000004
      - This buffer type supports the ``V4L2_MEMORY_DMABUF`` streaming mode.
    * - ``V4L2_BUF_CAP_SUPPORTS_REQUESTS``
      - 0x00000008
      - This buffer type supports :ref:`requests <media-request-api>`.
    * - ``V4L2_BUF_CAP_SUPPORTS_ORPHANED_BUFS``
      - 0x00000010
      - The kernel allows calling :ref:`VIDIOC_REQBUFS` while buffers are still
        mapped or exported via DMABUF. These orphaned buffers will be freed
        when they are unmapped or when the exported DMABUF fds are closed.
    * - ``V4L2_BUF_CAP_SUPPORTS_M2M_HOLD_CAPTURE_BUF``
      - 0x00000020
      - Only valid for stateless decoders. If set, then userspace can set the
        ``V4L2_BUF_FLAG_M2M_HOLD_CAPTURE_BUF`` flag to hold off on returning the
	capture buffer until the OUTPUT timestamp changes.
    * - ``V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS``
      - 0x00000040
      - This capability is set by the driver to indicate that the queue supports
        cache and memory management hints. However, it's only valid when the
        queue is used for :ref:`memory mapping <mmap>` streaming I/O. See
        :ref:`V4L2_BUF_FLAG_NO_CACHE_INVALIDATE <V4L2-BUF-FLAG-NO-CACHE-INVALIDATE>`,
        :ref:`V4L2_BUF_FLAG_NO_CACHE_CLEAN <V4L2-BUF-FLAG-NO-CACHE-CLEAN>` and
        :ref:`V4L2_MEMORY_FLAG_NON_COHERENT <V4L2-MEMORY-FLAG-NON-COHERENT>`.
    * - ``V4L2_BUF_CAP_SUPPORTS_MAX_NUM_BUFFERS``
      - 0x00000080
      - If set, then the ``max_num_buffers`` field in ``struct v4l2_create_buffers``
        is valid. If not set, then the maximum is ``VIDEO_MAX_FRAME`` buffers.
    * - ``V4L2_BUF_CAP_SUPPORTS_REMOVE_BUFS``
      - 0x00000100
      - If set, then ``VIDIOC_REMOVE_BUFS`` is supported.

Memory consistency flag

171-197

`V4L2_MEMORY_FLAG_NON_COHERENT`(`0x00000001`)는 가능한 경우 buffer를 non-coherent memory에 할당하도록 요청합니다. CPU와 bus 사이 자동 일관성을 제공하는 coherent memory와 달리 driver가 필요한 시점에 cache flush/sync로 일관성을 보장해야 합니다.

장치만 buffer에 접근하고 CPU가 읽고 쓰지 않는 경우 cache sync/flush를 생략해 성능을 높일 수 있지만, 올바른 일관성 관리가 전제입니다.

이 flag는 MMAP I/O에서 queue가 `V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS`를 보고할 때만 효력이 있습니다.

.. _memory-flags:
.. _V4L2-MEMORY-FLAG-NON-COHERENT:

.. flat-table:: Memory Consistency Flags
    :header-rows:  0
    :stub-columns: 0
    :widths:       3 1 4

    * - ``V4L2_MEMORY_FLAG_NON_COHERENT``
      - 0x00000001
      - A buffer is allocated either in coherent (it will be automatically
	coherent between the CPU and the bus) or non-coherent memory. The
	latter can provide performance gains, for instance the CPU cache
	sync/flush operations can be avoided if the buffer is accessed by the
	corresponding device only and the CPU does not read/write to/from that
	buffer. However, this requires extra care from the driver -- it must
	guarantee memory consistency by issuing a cache flush/sync when
	consistency is needed. If this flag is set V4L2 will attempt to
	allocate the buffer in non-coherent memory. The flag takes effect
	only if the buffer is used for :ref:`memory mapping <mmap>` I/O and the
	queue reports the :ref:`V4L2_BUF_CAP_SUPPORTS_MMAP_CACHE_HINTS
	<V4L2-BUF-CAP-SUPPORTS-MMAP-CACHE-HINTS>` capability.

.. raw:: latex

   \normalsize

반환값과 오류

198-207

성공하면 0, 오류이면 -1을 반환하고 `errno`를 설정합니다.

REQBUFS 전용 오류
errno조건
`EINVAL`지원하지 않는 buffer `type` 또는 요청 I/O `memory` 방식

Queue 형식과 memory 방식 지원 여부를 검사합니다.

Return Value
============

On success 0 is returned, on error -1 and the ``errno`` variable is set
appropriately. The generic error codes are described at the
:ref:`Generic Error Codes <gen-errors>` chapter.

EINVAL
    The buffer type (``type`` field) or the requested I/O method
    (``memory``) is not supported.