diff options
Diffstat (limited to 'Documentation/DocBook/media/v4l/io.xml')
-rw-r--r-- | Documentation/DocBook/media/v4l/io.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Documentation/DocBook/media/v4l/io.xml b/Documentation/DocBook/media/v4l/io.xml index c57d1ec6291c..3f47df1aa54a 100644 --- a/Documentation/DocBook/media/v4l/io.xml +++ b/Documentation/DocBook/media/v4l/io.xml | |||
@@ -927,6 +927,33 @@ ioctl is called.</entry> | |||
927 | Applications set or clear this flag before calling the | 927 | Applications set or clear this flag before calling the |
928 | <constant>VIDIOC_QBUF</constant> ioctl.</entry> | 928 | <constant>VIDIOC_QBUF</constant> ioctl.</entry> |
929 | </row> | 929 | </row> |
930 | <row> | ||
931 | <entry><constant>V4L2_BUF_FLAG_PREPARED</constant></entry> | ||
932 | <entry>0x0400</entry> | ||
933 | <entry>The buffer has been prepared for I/O and can be queued by the | ||
934 | application. Drivers set or clear this flag when the | ||
935 | <link linkend="vidioc-querybuf">VIDIOC_QUERYBUF</link>, <link | ||
936 | linkend="vidioc-qbuf">VIDIOC_PREPARE_BUF</link>, <link | ||
937 | linkend="vidioc-qbuf">VIDIOC_QBUF</link> or <link | ||
938 | linkend="vidioc-qbuf">VIDIOC_DQBUF</link> ioctl is called.</entry> | ||
939 | </row> | ||
940 | <row> | ||
941 | <entry><constant>V4L2_BUF_FLAG_NO_CACHE_INVALIDATE</constant></entry> | ||
942 | <entry>0x0400</entry> | ||
943 | <entry>Caches do not have to be invalidated for this buffer. | ||
944 | Typically applications shall use this flag if the data captured in the buffer | ||
945 | is not going to be touched by the CPU, instead the buffer will, probably, be | ||
946 | passed on to a DMA-capable hardware unit for further processing or output. | ||
947 | </entry> | ||
948 | </row> | ||
949 | <row> | ||
950 | <entry><constant>V4L2_BUF_FLAG_NO_CACHE_CLEAN</constant></entry> | ||
951 | <entry>0x0800</entry> | ||
952 | <entry>Caches do not have to be cleaned for this buffer. | ||
953 | Typically applications shall use this flag for output buffers if the data | ||
954 | in this buffer has not been created by the CPU but by some DMA-capable unit, | ||
955 | in which case caches have not been used.</entry> | ||
956 | </row> | ||
930 | </tbody> | 957 | </tbody> |
931 | </tgroup> | 958 | </tgroup> |
932 | </table> | 959 | </table> |