Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
events.h
Go to the documentation of this file.
1 /* The industrial I/O - event passing to userspace
2  *
3  * Copyright (c) 2008-2011 Jonathan Cameron
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  */
9 #ifndef _IIO_EVENTS_H_
10 #define _IIO_EVENTS_H_
11 
12 #include <linux/ioctl.h>
13 #include <linux/types.h>
14 #include <linux/iio/types.h>
15 
25 };
26 
27 #define IIO_GET_EVENT_FD_IOCTL _IOR('i', 0x90, int)
28 
35 };
36 
41 };
42 
55 #define IIO_EVENT_CODE(chan_type, diff, modifier, direction, \
56  type, chan, chan1, chan2) \
57  (((u64)type << 56) | ((u64)diff << 55) | \
58  ((u64)direction << 48) | ((u64)modifier << 40) | \
59  ((u64)chan_type << 32) | (((u16)chan2) << 16) | ((u16)chan1) | \
60  ((u16)chan))
61 
62 
63 #define IIO_EV_DIR_MAX 4
64 #define IIO_EV_BIT(type, direction) \
65  (1 << (type*IIO_EV_DIR_MAX + direction))
66 
76 #define IIO_MOD_EVENT_CODE(chan_type, number, modifier, \
77  type, direction) \
78  IIO_EVENT_CODE(chan_type, 0, modifier, direction, type, number, 0, 0)
79 
88 #define IIO_UNMOD_EVENT_CODE(chan_type, number, type, direction) \
89  IIO_EVENT_CODE(chan_type, 0, 0, direction, type, number, 0, 0)
90 
91 #define IIO_EVENT_CODE_EXTRACT_TYPE(mask) ((mask >> 56) & 0xFF)
92 
93 #define IIO_EVENT_CODE_EXTRACT_DIR(mask) ((mask >> 48) & 0xCF)
94 
95 #define IIO_EVENT_CODE_EXTRACT_CHAN_TYPE(mask) ((mask >> 32) & 0xFF)
96 
97 /* Event code number extraction depends on which type of event we have.
98  * Perhaps review this function in the future*/
99 #define IIO_EVENT_CODE_EXTRACT_CHAN(mask) ((__s16)(mask & 0xFFFF))
100 #define IIO_EVENT_CODE_EXTRACT_CHAN2(mask) ((__s16)(((mask) >> 16) & 0xFFFF))
101 
102 #define IIO_EVENT_CODE_EXTRACT_MODIFIER(mask) ((mask >> 40) & 0xFF)
103 #define IIO_EVENT_CODE_EXTRACT_DIFF(mask) (((mask) >> 55) & 0x1)
104 
105 #endif