OSDN Git Service

Add support for using a hrtimer trigger.
[android-x86/hardware-intel-libsensors.git] / common.h
1 /*
2  * Copyright (C) 2014-2015 Intel Corporation.
3  */
4
5 #ifndef __COMMON_H__
6 #define __COMMON_H__
7
8 #define MAX_DEVICES     9       /* Check iio devices 0 to MAX_DEVICES-1 */
9 #define MAX_SENSORS     12      /* We can handle as many sensors */
10 #define MAX_CHANNELS    4       /* We can handle as many channels per sensor */
11 #define MAX_EVENTS      2       /* We can handle as many events per channel */
12 #define MAX_TRIGGERS    8       /* Check for triggers 0 to MAX_TRIGGERS-1 */
13
14 #define DEV_FILE_PATH           "/dev/iio:device%d"
15 #define BASE_PATH               "/sys/bus/iio/devices/iio:device%d/"
16 #define TRIGGER_FILE_PATH       "/sys/bus/iio/devices/trigger%d/name"
17
18 #define CHANNEL_PATH            BASE_PATH "scan_elements/"
19 #define ENABLE_PATH             BASE_PATH "buffer/enable"
20 #define NAME_PATH               BASE_PATH "name"
21 #define TRIGGER_PATH            BASE_PATH "trigger/current_trigger"
22 #define EVENTS_PATH             BASE_PATH "events/"
23 #define SENSOR_ENABLE_PATH      BASE_PATH "in_%s_en"
24 #define SENSOR_OFFSET_PATH      BASE_PATH "in_%s_offset"
25 #define SENSOR_SCALE_PATH       BASE_PATH "in_%s_scale"
26 #define SENSOR_SAMPLING_PATH    BASE_PATH "in_%s_sampling_frequency"
27 #define DEVICE_SAMPLING_PATH    BASE_PATH "sampling_frequency"
28 #define DEVICE_AVAIL_FREQ_PATH  BASE_PATH "sampling_frequency_available"
29 #define ILLUMINATION_CALIBPATH  BASE_PATH "in_illuminance_calibscale"
30 #define SENSOR_CALIB_BIAS_PATH  BASE_PATH "in_%s_calibbias"
31 #define MOUNTING_MATRIX_PATH    BASE_PATH "mounting_matrix"
32
33 #define CONFIGFS_TRIGGER_PATH   "/config/iio/triggers/"
34
35 #define PROP_BASE               "ro.iio.%s.%s" /* Note: PROPERTY_KEY_MAX is small */
36
37 #define MAX_TYPE_SPEC_LEN       32      /* Channel type spec len; ex: "le:u10/16>>0" */
38 #define MAX_SENSOR_REPORT_SIZE  32      /* Sensor report buffer size */
39 #define MAX_DEVICE_REPORT_SIZE  32      /* iio device scan buffer size */
40
41 #define MAX_NAME_SIZE           32
42
43 #define MAX_SENSOR_BASES        3       /* Max number of base sensors a sensor can rely on */
44
45 #define ARRAY_SIZE(x) sizeof(x)/sizeof(x[0])
46 #define REPORTING_MODE(x)       ((x) & 0x06)
47
48 #define FILTER_TYPE_NONE                0
49 #define FILTER_TYPE_MOVING_AVERAGE      1
50 #define FILTER_TYPE_MEDIAN              2
51
52 #define MODE_AUTO       0 /* autodetect */
53 #define MODE_POLL       1
54 #define MODE_TRIGGER    2
55 #define MODE_EVENT      3
56
57
58 typedef struct
59 {
60         const char *type; /* event type; e.g: transition */
61         const char *dir;  /* event direction; e.g: rising */
62
63         /* sysfs entries located in /sys/bus/iio/devices/iio:deviceX/events/ */
64         const char *ev_en_path;
65         const char *ev_value_path;
66 }
67 event_descriptor_t;
68
69
70 typedef struct
71 {
72         const char *name;       /* channel name ; ex: x */
73
74         /* sysfs entries located under scan_elements */
75         const char *en_path;    /* Enabled sysfs file name ; ex: "in_temp_en" */
76         const char *type_path;  /* _type sysfs file name  */
77         const char *index_path; /* _index sysfs file name */
78
79         /* sysfs entries located in /sys/bus/iio/devices/iio:deviceX */
80         const char *raw_path;   /* _raw sysfs file name  */
81         const char *input_path; /* _input sysfs file name */
82         const char *scale_path; /* _scale sysfs file name */
83
84         const int num_events;
85         event_descriptor_t event[MAX_EVENTS];
86 }
87 channel_descriptor_t;
88
89
90 typedef struct
91 {
92         const char *tag;        /* Prefix such as "accel", "gyro", "temp"... */
93         const char *shorthand;
94         const int type;         /* Sensor type ; ex: SENSOR_TYPE_ACCELEROMETER */
95         const int num_channels; /* Expected iio channels for this sensor */
96         const int is_virtual;   /* Is the sensor virtual or not */
97         channel_descriptor_t channel[MAX_CHANNELS];
98 }
99 sensor_catalog_entry_t;
100
101
102 typedef struct
103 {
104         char sign;
105         char endianness;
106         short realbits;
107         short storagebits;
108         short shift;
109 }
110 datum_info_t;
111
112
113 typedef struct
114 {
115         int offset;     /* Offset in bytes within the iio character device report */
116         int size;       /* Field size in bytes */
117         float scale;    /* Scale for each channel */
118         char type_spec[MAX_TYPE_SPEC_LEN];      /* From driver; ex: le:u10/16>>0 */
119         datum_info_t type_info;                 /* Decoded contents of type spec */
120         float opt_scale; /*
121                           * Optional correction scale read from a property such as iio.accel.x.scale, allowing late compensation of
122                           * problems such as misconfigured axes ; set to 1 by default. Applied at the end of the scaling process.
123                           */
124         int raw_path_present;   /* Flag signalling the presence of in_<sens>_<axis>_raw file */
125         int input_path_present; /* Flag signalling the presence of in_<sens>_input file */
126 }
127 channel_info_t;
128
129
130 typedef struct
131 {
132         /* Conversion function called once per channel */
133         float (*transform) (int s, int c, unsigned char* sample_data);
134
135         /* Function called once per sample */
136         int (*finalize) (int s, sensors_event_t* data);
137 }
138 sample_ops_t;
139
140
141 /*
142  * Whenever we have sensor data recorded for a sensor in the associated
143  * sensor cell, its report_pending field is set to a non-zero value
144  * indicating how we got this data.
145  */
146 #define DATA_TRIGGER    1       /* From /dev/iio:device fd              */
147 #define DATA_SYSFS      2       /* Through polling                      */
148 #define DATA_DUPLICATE  3       /* Duplicate of triggered motion sample */
149
150
151 typedef struct
152 {
153         char friendly_name[MAX_NAME_SIZE];      /* ex: Accelerometer         */
154         char internal_name[MAX_NAME_SIZE];      /* ex: accel_3d              */
155         char vendor_name[MAX_NAME_SIZE];        /* ex: Intel                 */
156         char init_trigger_name[MAX_NAME_SIZE];  /* ex: accel-name-dev1       */
157         char motion_trigger_name[MAX_NAME_SIZE];/* ex: accel-any-motion-dev1 */
158         char hrtimer_trigger_name[MAX_NAME_SIZE]; /*ex: accel-hr-dev1 */
159         float max_range;
160         float resolution;
161         float power;
162
163         /*
164          * Currently active trigger - either a pointer to the initial (default) trigger name buffer, or a pointer to the motion trigger name buffer,
165          * or something else (typically NULL or a pointer to some static "\n". This is used to determine if the conditions are met to switch from
166          * the default trigger to the motion trigger for a sensor, or rather for the interrupt-driven sensors associated to a given iio device.
167          */
168         const char* selected_trigger;
169
170         float offset;           /* (cooked = raw + offset) * scale                      */
171         float scale;            /* default:1. when set to 0, use channel specific value */
172         float illumincalib;     /* to set the calibration for the ALS                   */
173
174         float requested_rate;   /* requested events / second                            */
175         float sampling_rate;    /* setup events / second                                */
176
177         float min_supported_rate;
178         float max_supported_rate;
179
180         int dev_num;            /* Associated iio dev num, ex: 3 for /dev/iio:device3   */
181
182         int catalog_index;      /* Associated entry within the sensor_catalog array     */
183         int type;               /* Sensor type, such as SENSOR_TYPE_GYROSCOPE           */
184
185         int num_channels;       /* Actual channel count ; 0 for poll mode sensors       */
186
187         int mode;       /* Usage mode, ex: poll, trigger ... */
188
189         /*
190          * The array below indicates where to gather report data for this sensor inside the reports that we read from the iio character device.
191          * It is updated whenever channels are enabled or disabled on the same device. Channel size indicates the size in bytes of fields, and
192          * should be zero for disabled channels. The type field indicates how a specific channel data item is structured.
193          */
194         channel_info_t channel[MAX_CHANNELS];
195
196         /*
197          * This flag is set if we acquired data from the sensor but did not forward it to upper layers (i.e. Android) yet. If so, report_buffer
198          * contains that data. Valid values are 0: empty, 1: normal, 2: repeat of last acquired value after timeout.
199          */
200         int report_pending;
201
202         /* This flag is set if we have a meta data event pending */
203         int meta_data_pending;
204
205         /*
206          * Timestamp closely matching the date of sampling, preferably retrieved from a iio channel alongside sample data. Value zero indicates that
207          * we couldn't get such a closely correlated timestamp, and that one has to be generated before the report gets sent up to Android.
208          */
209         int64_t report_ts;
210
211         /* Buffer containing the last generated sensor report for this sensor */
212         unsigned char report_buffer[MAX_SENSOR_REPORT_SIZE];
213
214         /* Whether or not the above buffer contains data from a device report */
215         int report_initialized;
216
217         /* Channel and sample finalization callbacks for this sensor */
218         sample_ops_t ops;
219
220         int cal_level; /* 0 means not calibrated */
221
222         /*
223          * Depending on the sensor, calibration may take too much time at higher levels. Allow optional capping to a certain level.
224          */
225         int max_cal_level;
226
227         void *cal_data; /* Sensor calibration data, e.g. for magnetometer */
228
229         void* filter;   /* Filtering data for noisy sensors */
230         int filter_type;/* FILTER_ specification for this sensor ; default is FILTER_NONE */
231
232         /* Previously reported value, for on-change sensors */
233         union {
234                 float data;
235                 uint64_t data64;
236         } prev_val;
237         /*
238          * Certain sensors expose their readings through sysfs files that have a long response time (100-200 ms for ALS). Rather than block our
239          * global control loop for several hundred ms each second, offload those lengthy blocking reads to dedicated threads, which will then report
240          * their data through a fd that we can add to our poll fd set.
241          */
242         int thread_data_fd[2];
243         pthread_t acquisition_thread;
244
245         int base_count; /* How many base sensors is the sensor depending on */
246         int base[MAX_SENSOR_BASES];
247
248         uint32_t quirks; /* Bit mask expressing the need for special tweaks */
249
250         /* Note: we may have to explicitely serialize access to some fields */
251
252         int is_virtual;                 /* Composite sensor, exposed from data acquired through other sensors */
253
254         uint32_t ref_count;             /* Dependency count - for a real sensor how many active virtual sensors are depending on it */
255
256         uint32_t directly_enabled;      /* Flag showing if a sensor was enabled directly by Android */
257
258         /*
259          * Current sample for a virtual sensor - when a report is ready we'll keep the data here until it's finally processed. Can be modified for
260          * more than one at a later time.
261          */
262         sensors_event_t sample;
263         uint64_t event_id;
264
265         /*
266          * If the QUIRK_FIELD_ORDERING bit is set in quirks, the contents of this array are used in the finalization stage to swap sample fields
267          * before transmitting them to Android ; they form a mapping between the indices of the input and output arrays: ex: 0123 is identity for
268          * a sample containing 4 fields.
269          */
270         unsigned char order[MAX_CHANNELS];
271
272         /*
273          * If the QUIRK_MOUNTING_MATRIX bit is set in quirks, the contents of this matrix is used to correct the sample values so that it takes
274          * into account the way the sensor has been mounted on the PCB.
275          */
276         float mounting_matrix[9];
277
278         /*
279          * Event counter - will be used to check if we have a significant sample for noisy sensors. We want to make sure we do not send any wrong
280          * events before filtering kicks in. We can also use it for statistics.
281          */
282         uint64_t event_count;
283
284         /* Some polled sensors need to be first enabled so that they start
285          * computing a set of values in hardware (e.g step counter). Enabling
286          * is done through a sysfs attribute in_<tag>_en
287          */
288         int needs_enable;
289
290         float semi_arbitrated_rate;     /* Arbitrated sampling rate before we considered other sensors co-located on the same iio device */
291 }
292 sensor_info_t;
293
294
295 /* Reference a few commonly used variables... */
296 extern int                      sensor_count;
297 extern struct sensor_t          sensor_desc[MAX_SENSORS];
298 extern sensor_info_t            sensor[MAX_SENSORS];
299 extern sensor_catalog_entry_t   sensor_catalog[];
300 extern unsigned int             catalog_size;
301
302 /* Needed both in sensors and activity HALs */
303 void check_trig_sensors (int i, char *sysfs_file, char map[catalog_size]);
304 void check_poll_sensors (int i, char *sysfs_file, char map[catalog_size]);
305 void check_event_sensors (int i, char *sysfs_file, char map[catalog_size]);
306 void discover_sensors(int dev_num, char *sysfs_base_path, char map[catalog_size],
307                       void (*discover_sensor)(int, char*, char*));
308
309 /*
310  * Macros associating iio sysfs entries to to sensor types ; see
311  * linux/kernel/drivers/iio/industrialio-core.c and
312  * hardware/libhardware/include/hardware/sensor.h
313  */
314
315 #define DECLARE_VOID_CHANNEL(tag)       \
316                         tag,    \
317                         "",     \
318                         "",     \
319                         "",     \
320                         "",     \
321                         "",     \
322                         "",     \
323
324 #define DECLARE_CHANNEL(tag, spacer, name)              \
325                         name,                           \
326                         "in_"tag spacer name"_en",      \
327                         "in_"tag spacer name"_type",    \
328                         "in_"tag spacer name"_index",   \
329                         "in_"tag spacer name"_raw",     \
330                         "in_"tag spacer name"_input",   \
331                         "in_"tag spacer name"_scale",   \
332                         0, {{0}},
333
334 #define DECLARE_NAMED_CHANNEL(tag, name)        DECLARE_CHANNEL(tag, "_", name)
335
336 #define DECLARE_GENERIC_CHANNEL(tag)            DECLARE_CHANNEL(tag, "", "")
337
338 #define DECLARE_EVENT(tag, spacer1, name, spacer2, type, spacer3, dir)          \
339                       type, dir,                                                \
340                       "in_"tag spacer1 name spacer2 type spacer3 dir"_en",      \
341                       "in_"tag spacer1 name spacer2 type spacer3 dir"_value",   \
342
343 #define DECLARE_GENERIC_EVENT(tag, name, type, dir) \
344                 DECLARE_EVENT(tag, "_", name, "_", type, "_", dir)
345 #define DECLARE_NAMED_EVENT(tag, name) \
346                 DECLARE_EVENT(tag, "_", name, "","","","")
347
348 #endif