blob: 221c20f809167b8aebe9224edbec7b83db1989fc [file] [log] [blame]
Christopher Ferris106b3a82016-08-24 12:15:38 -07001/****************************************************************************
2 ****************************************************************************
3 ***
4 *** This header was automatically generated from a Linux kernel header
5 *** of the same name, to make information necessary for userspace to
6 *** call into the kernel available to libc. It contains only constants,
7 *** structures, and macros generated from the original header, and thus,
8 *** contains no copyrightable information.
9 ***
10 *** To edit the content of this header, modify the corresponding
11 *** source file (e.g. under external/kernel-headers/original/) then
12 *** run bionic/libc/kernel/tools/update_all.py
13 ***
14 *** Any manual change here will be lost the next time this script will
15 *** be run. You've been warned!
16 ***
17 ****************************************************************************
18 ****************************************************************************/
19#ifndef _DMA_BUF_UAPI_H_
20#define _DMA_BUF_UAPI_H_
21#include <linux/types.h>
22struct dma_buf_sync {
Christopher Ferris106b3a82016-08-24 12:15:38 -070023 __u64 flags;
24};
25#define DMA_BUF_SYNC_READ (1 << 0)
26#define DMA_BUF_SYNC_WRITE (2 << 0)
Christopher Ferris106b3a82016-08-24 12:15:38 -070027#define DMA_BUF_SYNC_RW (DMA_BUF_SYNC_READ | DMA_BUF_SYNC_WRITE)
28#define DMA_BUF_SYNC_START (0 << 2)
29#define DMA_BUF_SYNC_END (1 << 2)
30#define DMA_BUF_SYNC_VALID_FLAGS_MASK (DMA_BUF_SYNC_RW | DMA_BUF_SYNC_END)
Christopher Ferrisb8a95e22019-10-02 18:29:20 -070031#define DMA_BUF_NAME_LEN 32
Christopher Ferris106b3a82016-08-24 12:15:38 -070032#define DMA_BUF_BASE 'b'
33#define DMA_BUF_IOCTL_SYNC _IOW(DMA_BUF_BASE, 0, struct dma_buf_sync)
Christopher Ferrisb8a95e22019-10-02 18:29:20 -070034#define DMA_BUF_SET_NAME _IOW(DMA_BUF_BASE, 1, const char *)
Greg Kaiser55b56392022-05-27 20:41:14 +000035#define DMA_BUF_SET_NAME_A _IOW(DMA_BUF_BASE, 1, u32)
36#define DMA_BUF_SET_NAME_B _IOW(DMA_BUF_BASE, 1, u64)
Christopher Ferris106b3a82016-08-24 12:15:38 -070037#endif