Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Google, Inc. |
| 3 | * |
| 4 | * This program is distributed in the hope that it will be useful, |
| 5 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 6 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 7 | * GNU General Public License for more details. |
| 8 | * |
| 9 | */ |
| 10 | |
| 11 | #ifndef _UAPI_LINUX_SYNC_H |
| 12 | #define _UAPI_LINUX_SYNC_H |
| 13 | |
| 14 | #include <linux/ioctl.h> |
| 15 | #include <linux/types.h> |
| 16 | |
| 17 | /** |
| 18 | * struct sync_merge_data - data passed to merge ioctl |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 19 | * @name: name of new fence |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 20 | * @fd2: file descriptor of second fence |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 21 | * @fence: returns the fd of the new fence to userspace |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 22 | * @flags: merge_data flags |
| 23 | * @pad: padding for 64-bit alignment, should always be zero |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 24 | */ |
| 25 | struct sync_merge_data { |
Gustavo Padovan | a64d6a6 | 2016-04-28 10:46:48 -0300 | [diff] [blame] | 26 | char name[32]; |
| 27 | __s32 fd2; |
| 28 | __s32 fence; |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 29 | __u32 flags; |
| 30 | __u32 pad; |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 31 | }; |
| 32 | |
| 33 | /** |
Gustavo Padovan | e178634 | 2016-02-03 11:25:31 -0200 | [diff] [blame] | 34 | * struct sync_fence_info - detailed fence information |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 35 | * @obj_name: name of parent sync_timeline |
Gustavo Padovan | a64d6a6 | 2016-04-28 10:46:48 -0300 | [diff] [blame] | 36 | * @driver_name: name of driver implementing the parent |
| 37 | * @status: status of the fence 0:active 1:signaled <0:error |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 38 | * @flags: fence_info flags |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 39 | * @timestamp_ns: timestamp of status change in nanoseconds |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 40 | */ |
Gustavo Padovan | e178634 | 2016-02-03 11:25:31 -0200 | [diff] [blame] | 41 | struct sync_fence_info { |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 42 | char obj_name[32]; |
| 43 | char driver_name[32]; |
| 44 | __s32 status; |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 45 | __u32 flags; |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 46 | __u64 timestamp_ns; |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 47 | }; |
| 48 | |
| 49 | /** |
Gustavo Padovan | b5b24ac | 2016-02-03 11:25:32 -0200 | [diff] [blame] | 50 | * struct sync_file_info - data returned from fence info ioctl |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 51 | * @name: name of fence |
| 52 | * @status: status of fence. 1: signaled 0:active <0:error |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 53 | * @flags: sync_file_info flags |
| 54 | * @num_fences number of fences in the sync_file |
| 55 | * @pad: padding for 64-bit alignment, should always be zero |
| 56 | * @sync_fence_info: pointer to array of structs sync_fence_info with all |
| 57 | * fences in the sync_file |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 58 | */ |
Gustavo Padovan | b5b24ac | 2016-02-03 11:25:32 -0200 | [diff] [blame] | 59 | struct sync_file_info { |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 60 | char name[32]; |
| 61 | __s32 status; |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 62 | __u32 flags; |
| 63 | __u32 num_fences; |
| 64 | __u32 pad; |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 65 | |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 66 | __u64 sync_fence_info; |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 67 | }; |
| 68 | |
| 69 | #define SYNC_IOC_MAGIC '>' |
| 70 | |
| 71 | /** |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 72 | * Opcodes 0, 1 and 2 were burned during a API change to avoid users of the |
| 73 | * old API to get weird errors when trying to handling sync_files. The API |
| 74 | * change happened during the de-stage of the Sync Framework when there was |
| 75 | * no upstream users available. |
| 76 | */ |
| 77 | |
| 78 | /** |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 79 | * DOC: SYNC_IOC_MERGE - merge two fences |
| 80 | * |
| 81 | * Takes a struct sync_merge_data. Creates a new fence containing copies of |
| 82 | * the sync_pts in both the calling fd and sync_merge_data.fd2. Returns the |
| 83 | * new fence's fd in sync_merge_data.fence |
| 84 | */ |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 85 | #define SYNC_IOC_MERGE _IOWR(SYNC_IOC_MAGIC, 3, struct sync_merge_data) |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 86 | |
| 87 | /** |
| 88 | * DOC: SYNC_IOC_FENCE_INFO - get detailed information on a fence |
| 89 | * |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 90 | * Takes a struct sync_file_info_data with extra space allocated for pt_info. |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 91 | * Caller should write the size of the buffer into len. On return, len is |
Gustavo Padovan | d7fdb0a | 2016-01-21 10:49:19 -0200 | [diff] [blame] | 92 | * updated to reflect the total size of the sync_file_info_data including |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 93 | * pt_info. |
| 94 | * |
| 95 | * pt_info is a buffer containing sync_pt_infos for every sync_pt in the fence. |
| 96 | * To iterate over the sync_pt_infos, use the sync_pt_info.len field. |
| 97 | */ |
Gustavo Padovan | 2d75c88 | 2016-04-26 12:32:28 -0300 | [diff] [blame] | 98 | #define SYNC_IOC_FILE_INFO _IOWR(SYNC_IOC_MAGIC, 4, struct sync_file_info) |
Colin Cross | 64907b9 | 2014-02-17 13:58:32 -0800 | [diff] [blame] | 99 | |
| 100 | #endif /* _UAPI_LINUX_SYNC_H */ |