Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 1 | #ifndef _GENLOCK_H_ |
| 2 | #define _GENLOCK_H_ |
| 3 | |
| 4 | #ifdef __KERNEL__ |
| 5 | |
| 6 | struct genlock; |
| 7 | struct genlock_handle; |
| 8 | |
| 9 | struct genlock_handle *genlock_get_handle(void); |
| 10 | struct genlock_handle *genlock_get_handle_fd(int fd); |
Alex Wong | 7cf76c9 | 2013-04-02 23:04:25 -0700 | [diff] [blame] | 11 | int genlock_get_fd_handle(struct genlock_handle *handle); |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 12 | void genlock_put_handle(struct genlock_handle *handle); |
| 13 | struct genlock *genlock_create_lock(struct genlock_handle *); |
| 14 | struct genlock *genlock_attach_lock(struct genlock_handle *, int fd); |
| 15 | int genlock_wait(struct genlock_handle *handle, u32 timeout); |
Jordan Crouse | 4df70a2 | 2012-01-25 14:40:51 -0700 | [diff] [blame] | 16 | /* genlock_release_lock was deprecated */ |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 17 | int genlock_lock(struct genlock_handle *handle, int op, int flags, |
| 18 | u32 timeout); |
| 19 | #endif |
| 20 | |
| 21 | #define GENLOCK_UNLOCK 0 |
| 22 | #define GENLOCK_WRLOCK 1 |
| 23 | #define GENLOCK_RDLOCK 2 |
| 24 | |
Jeff Boody | 0977510 | 2012-05-09 11:36:13 -0600 | [diff] [blame] | 25 | #define GENLOCK_NOBLOCK (1 << 0) |
| 26 | #define GENLOCK_WRITE_TO_READ (1 << 1) |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 27 | |
| 28 | struct genlock_lock { |
| 29 | int fd; |
| 30 | int op; |
| 31 | int flags; |
| 32 | int timeout; |
| 33 | }; |
| 34 | |
| 35 | #define GENLOCK_IOC_MAGIC 'G' |
| 36 | |
| 37 | #define GENLOCK_IOC_NEW _IO(GENLOCK_IOC_MAGIC, 0) |
| 38 | #define GENLOCK_IOC_EXPORT _IOR(GENLOCK_IOC_MAGIC, 1, \ |
| 39 | struct genlock_lock) |
| 40 | #define GENLOCK_IOC_ATTACH _IOW(GENLOCK_IOC_MAGIC, 2, \ |
| 41 | struct genlock_lock) |
Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 42 | |
| 43 | /* Deprecated */ |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 44 | #define GENLOCK_IOC_LOCK _IOW(GENLOCK_IOC_MAGIC, 3, \ |
| 45 | struct genlock_lock) |
Jordan Crouse | 4df70a2 | 2012-01-25 14:40:51 -0700 | [diff] [blame] | 46 | |
| 47 | /* Deprecated */ |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 48 | #define GENLOCK_IOC_RELEASE _IO(GENLOCK_IOC_MAGIC, 4) |
| 49 | #define GENLOCK_IOC_WAIT _IOW(GENLOCK_IOC_MAGIC, 5, \ |
| 50 | struct genlock_lock) |
Jeff Boody | 6d9076f | 2012-04-26 11:12:44 -0600 | [diff] [blame] | 51 | #define GENLOCK_IOC_DREADLOCK _IOW(GENLOCK_IOC_MAGIC, 6, \ |
| 52 | struct genlock_lock) |
Jordan Crouse | 29f66af | 2011-11-17 13:39:20 -0700 | [diff] [blame] | 53 | #endif |