OSDN Git Service

87b4e92d9a1367ede05e56fed3415ffac3b36968
[android-x86/hardware-intel-libsensors.git] / control.c
1 /*
2  * Copyright (C) 2014 Intel Corporation.
3  */
4
5 #include <stdlib.h>
6 #include <ctype.h>
7 #include <fcntl.h>
8 #include <pthread.h>
9 #include <time.h>
10 #include <sys/epoll.h>
11 #include <sys/socket.h>
12 #include <utils/Log.h>
13 #include <hardware/sensors.h>
14 #include "control.h"
15 #include "enumeration.h"
16 #include "utils.h"
17 #include "transform.h"
18 #include "calibration.h"
19 #include "description.h"
20 #include "filtering.h"
21
22 /* Currently active sensors count, per device */
23 static int poll_sensors_per_dev[MAX_DEVICES];   /* poll-mode sensors */
24 static int trig_sensors_per_dev[MAX_DEVICES];   /* trigger, event based */
25
26 static int device_fd[MAX_DEVICES];   /* fd on the /dev/iio:deviceX file */
27 static int has_iio_ts[MAX_DEVICES];  /* ts channel available on this iio dev */
28 static int expected_dev_report_size[MAX_DEVICES]; /* expected iio scan len */
29 static int poll_fd; /* epoll instance covering all enabled sensors */
30
31 static int active_poll_sensors; /* Number of enabled poll-mode sensors */
32
33 /* We use pthread condition variables to get worker threads out of sleep */
34 static pthread_condattr_t thread_cond_attr      [MAX_SENSORS];
35 static pthread_cond_t     thread_release_cond   [MAX_SENSORS];
36 static pthread_mutex_t    thread_release_mutex  [MAX_SENSORS];
37
38 /*
39  * We associate tags to each of our poll set entries. These tags have the
40  * following values:
41  * - a iio device number if the fd is a iio character device fd
42  * - THREAD_REPORT_TAG_BASE + sensor handle if the fd is the receiving end of a
43  *   pipe used by a sysfs data acquisition thread
44  *  */
45 #define THREAD_REPORT_TAG_BASE  0x00010000
46
47 #define ENABLE_BUFFER_RETRIES 10
48 #define ENABLE_BUFFER_RETRY_DELAY_MS 10
49
50 static int enable_buffer(int dev_num, int enabled)
51 {
52         char sysfs_path[PATH_MAX];
53         int ret, retries, millisec;
54         struct timespec req = {0};
55
56         retries = ENABLE_BUFFER_RETRIES;
57         millisec = ENABLE_BUFFER_RETRY_DELAY_MS;
58         req.tv_sec = 0;
59         req.tv_nsec = millisec * 1000000L;
60
61         sprintf(sysfs_path, ENABLE_PATH, dev_num);
62
63         while (retries--) {
64                 /* Low level, non-multiplexed, enable/disable routine */
65                 ret = sysfs_write_int(sysfs_path, enabled);
66                 if (ret > 0)
67                         break;
68
69                 ALOGE("Failed enabling buffer, retrying");
70                 nanosleep(&req, (struct timespec *)NULL);
71         }
72
73         if (ret < 0) {
74                 ALOGE("Could not enable buffer\n");
75                 return -EIO;
76         }
77
78         return 0;
79 }
80
81
82 static int setup_trigger (int s, const char* trigger_val)
83 {
84         char sysfs_path[PATH_MAX];
85         int ret = -1, attempts = 5;
86
87         sprintf(sysfs_path, TRIGGER_PATH, sensor_info[s].dev_num);
88
89         if (trigger_val[0] != '\n')
90                 ALOGI("Setting S%d (%s) trigger to %s\n", s,
91                         sensor_info[s].friendly_name, trigger_val);
92
93         while (ret == -1 && attempts) {
94                 ret = sysfs_write_str(sysfs_path, trigger_val);
95                 attempts--;
96         }
97
98         if (ret != -1)
99                 sensor_info[s].selected_trigger = trigger_val;
100         else
101                 ALOGE("Setting S%d (%s) trigger to %s FAILED.\n", s,
102                         sensor_info[s].friendly_name, trigger_val);
103         return ret;
104 }
105
106
107 static void enable_iio_timestamp (int dev_num, int known_channels)
108 {
109         /* Check if we have a dedicated iio timestamp channel */
110
111         char spec_buf[MAX_TYPE_SPEC_LEN];
112         char sysfs_path[PATH_MAX];
113         int n;
114
115         sprintf(sysfs_path, CHANNEL_PATH "%s", dev_num, "in_timestamp_type");
116
117         n = sysfs_read_str(sysfs_path, spec_buf, sizeof(spec_buf));
118
119         if (n <= 0)
120                 return;
121
122         if (strcmp(spec_buf, "le:s64/64>>0"))
123                 return;
124
125         /* OK, type is int64_t as expected, in little endian representation */
126
127         sprintf(sysfs_path, CHANNEL_PATH"%s", dev_num, "in_timestamp_index");
128
129         if (sysfs_read_int(sysfs_path, &n))
130                 return;
131
132         /* Check that the timestamp comes after the other fields we read */
133         if (n != known_channels)
134                 return;
135
136         /* Try enabling that channel */
137         sprintf(sysfs_path, CHANNEL_PATH "%s", dev_num, "in_timestamp_en");
138
139         sysfs_write_int(sysfs_path, 1);
140
141         if (sysfs_read_int(sysfs_path, &n))
142                 return;
143
144         if (n) {
145                 ALOGI("Detected timestamp channel on iio device %d\n", dev_num);
146                 has_iio_ts[dev_num] = 1;
147         }
148 }
149
150
151 void build_sensor_report_maps (int dev_num)
152 {
153         /*
154          * Read sysfs files from a iio device's scan_element directory, and
155          * build a couple of tables from that data. These tables will tell, for
156          * each sensor, where to gather relevant data in a device report, i.e.
157          * the structure that we read from the /dev/iio:deviceX file in order to
158          * sensor report, itself being the data that we return to Android when a
159          * sensor poll completes. The mapping should be straightforward in the
160          * case where we have a single sensor active per iio device but, this is
161          * not the general case. In general several sensors can be handled
162          * through a single iio device, and the _en, _index and _type syfs
163          * entries all concur to paint a picture of what the structure of the
164          * device report is.
165          */
166
167         int s;
168         int c;
169         int n;
170         int i;
171         int ch_index;
172         char* ch_spec;
173         char spec_buf[MAX_TYPE_SPEC_LEN];
174         struct datum_info_t* ch_info;
175         int size;
176         char sysfs_path[PATH_MAX];
177         int known_channels;
178         int offset;
179         int channel_size_from_index[MAX_SENSORS * MAX_CHANNELS] = { 0 };
180         int sensor_handle_from_index[MAX_SENSORS * MAX_CHANNELS] = { 0 };
181         int channel_number_from_index[MAX_SENSORS * MAX_CHANNELS] = { 0 };
182
183         known_channels = 0;
184
185         /* For each sensor that is linked to this device */
186         for (s=0; s<sensor_count; s++) {
187                 if (sensor_info[s].dev_num != dev_num)
188                         continue;
189
190                 i = sensor_info[s].catalog_index;
191
192                 /* Read channel details through sysfs attributes */
193                 for (c=0; c<sensor_info[s].num_channels; c++) {
194
195                         /* Read _type file */
196                         sprintf(sysfs_path, CHANNEL_PATH "%s",
197                                 sensor_info[s].dev_num,
198                                 sensor_catalog[i].channel[c].type_path);
199
200                         n = sysfs_read_str(sysfs_path, spec_buf, 
201                                                 sizeof(spec_buf));
202
203                         if (n == -1) {
204                                         ALOGW(  "Failed to read type: %s\n",
205                                         sysfs_path);
206                                         continue;
207                                 }
208
209                         ch_spec = sensor_info[s].channel[c].type_spec;
210
211                         memcpy(ch_spec, spec_buf, sizeof(spec_buf));
212
213                         ch_info = &sensor_info[s].channel[c].type_info;
214
215                         size = decode_type_spec(ch_spec, ch_info);
216
217                         /* Read _index file */
218                         sprintf(sysfs_path, CHANNEL_PATH "%s",
219                                 sensor_info[s].dev_num,
220                                 sensor_catalog[i].channel[c].index_path);
221
222                         n = sysfs_read_int(sysfs_path, &ch_index);
223
224                         if (n == -1) {
225                                         ALOGW(  "Failed to read index: %s\n",
226                                                 sysfs_path);
227                                         continue;
228                                 }
229
230                         if (ch_index >= MAX_SENSORS) {
231                                 ALOGE("Index out of bounds!: %s\n", sysfs_path);
232                                 continue;
233                         }
234
235                         /* Record what this index is about */
236
237                         sensor_handle_from_index [ch_index] = s;
238                         channel_number_from_index[ch_index] = c;
239                         channel_size_from_index  [ch_index] = size;
240
241                         known_channels++;
242                 }
243
244                 /* Stop sampling - if we are recovering from hal restart */
245                 enable_buffer(dev_num, 0);
246                 setup_trigger(s, "\n");
247
248                 /* Turn on channels we're aware of */
249                 for (c=0;c<sensor_info[s].num_channels; c++) {
250                         sprintf(sysfs_path, CHANNEL_PATH "%s",
251                                 sensor_info[s].dev_num,
252                                 sensor_catalog[i].channel[c].en_path);
253                         sysfs_write_int(sysfs_path, 1);
254                 }
255         }
256
257         ALOGI("Found %d channels on iio device %d\n", known_channels, dev_num);
258
259         /*
260          * Now that we know which channels are defined, their sizes and their
261          * ordering, update channels offsets within device report. Note: there
262          * is a possibility that several sensors share the same index, with
263          * their data fields being isolated by masking and shifting as specified
264          * through the real bits and shift values in type attributes. This case
265          * is not currently supported. Also, the code below assumes no hole in
266          * the sequence of indices, so it is dependent on discovery of all
267          * sensors.
268          */
269          offset = 0;
270          for (i=0; i<MAX_SENSORS * MAX_CHANNELS; i++) {
271                 s =     sensor_handle_from_index[i];
272                 c =     channel_number_from_index[i];
273                 size =  channel_size_from_index[i];
274
275                 if (!size)
276                         continue;
277
278                 ALOGI("S%d C%d : offset %d, size %d, type %s\n",
279                       s, c, offset, size, sensor_info[s].channel[c].type_spec);
280
281                 sensor_info[s].channel[c].offset        = offset;
282                 sensor_info[s].channel[c].size          = size;
283
284                 offset += size;
285          }
286
287         /* Enable the timestamp channel if there is one available */
288         enable_iio_timestamp(dev_num, known_channels);
289
290         /* Add padding and timestamp size if it's enabled on this iio device */
291         if (has_iio_ts[dev_num])
292                 offset = (offset+7)/8*8 + sizeof(int64_t);
293
294         expected_dev_report_size[dev_num] = offset;
295         ALOGI("Expecting %d scan length on iio dev %d\n", offset, dev_num);
296
297         if (expected_dev_report_size[dev_num] > MAX_DEVICE_REPORT_SIZE) {
298                 ALOGE("Unexpectedly large scan buffer on iio dev%d: %d bytes\n",
299                       dev_num, expected_dev_report_size[dev_num]);
300
301                 expected_dev_report_size[dev_num] = MAX_DEVICE_REPORT_SIZE;
302         }
303 }
304
305
306 int adjust_counters (int s, int enabled)
307 {
308         /*
309          * Adjust counters based on sensor enable action. Return values are:
310          * -1 if there's an inconsistency: abort action in this case
311          *  0 if the operation was completed and we're all set
312          *  1 if we toggled the state of the sensor and there's work left
313          */
314
315         int dev_num = sensor_info[s].dev_num;
316
317         /* Refcount per sensor, in terms of enable count */
318         if (enabled) {
319                 ALOGI("Enabling sensor %d (iio device %d: %s)\n",
320                         s, dev_num, sensor_info[s].friendly_name);
321
322                 if (sensor_info[s].enabled)
323                         return 0; /* The sensor was, and remains, in use */
324
325                 sensor_info[s].enabled = 1;
326
327                 switch (sensor_info[s].type) {
328                         case SENSOR_TYPE_MAGNETIC_FIELD:
329                                 compass_read_data(&sensor_info[s]);
330                                 break;
331
332                         case SENSOR_TYPE_GYROSCOPE:
333                         case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED:
334                                 gyro_cal_init(&sensor_info[s]);
335                                 break;
336                 }
337         } else {
338                 if (sensor_info[s].enabled == 0)
339                         return 0; /* Spurious disable call */
340
341                 ALOGI("Disabling sensor %d (iio device %d: %s)\n", s, dev_num,
342                       sensor_info[s].friendly_name);
343
344                 sensor_info[s].enabled = 0;
345
346                 /* Sensor disabled, lower report available flag */
347                 sensor_info[s].report_pending = 0;
348
349                 if (sensor_info[s].type == SENSOR_TYPE_MAGNETIC_FIELD)
350                         compass_store_data(&sensor_info[s]);
351
352                 if(sensor_info[s].type == SENSOR_TYPE_GYROSCOPE ||
353                         sensor_info[s].type == SENSOR_TYPE_GYROSCOPE_UNCALIBRATED)
354                         gyro_store_data(&sensor_info[s]);
355         }
356
357
358         /* If uncalibrated type and pair is already active don't adjust counters */
359         if (sensor_info[s].type == SENSOR_TYPE_GYROSCOPE_UNCALIBRATED &&
360                 sensor_info[sensor_info[s].pair_idx].enabled != 0)
361                         return 0;
362
363         /* We changed the state of a sensor - adjust per iio device counters */
364
365         /* If this is a regular event-driven sensor */
366         if (sensor_info[s].num_channels) {
367
368                         if (enabled)
369                                 trig_sensors_per_dev[dev_num]++;
370                         else
371                                 trig_sensors_per_dev[dev_num]--;
372
373                         return 1;
374                 }
375
376         if (enabled) {
377                 active_poll_sensors++;
378                 poll_sensors_per_dev[dev_num]++;
379                 return 1;
380         }
381
382         active_poll_sensors--;
383         poll_sensors_per_dev[dev_num]--;
384         return 1;
385 }
386
387
388 static int get_field_count (int s)
389 {
390         switch (sensor_info[s].type) {
391                 case SENSOR_TYPE_ACCELEROMETER:         /* m/s^2        */
392                 case SENSOR_TYPE_MAGNETIC_FIELD:        /* micro-tesla  */
393                 case SENSOR_TYPE_ORIENTATION:           /* degrees      */
394                 case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED:
395                 case SENSOR_TYPE_GYROSCOPE:             /* radians/s    */
396                         return 3;
397
398                 case SENSOR_TYPE_LIGHT:                 /* SI lux units */
399                 case SENSOR_TYPE_AMBIENT_TEMPERATURE:   /* Â°C          */
400                 case SENSOR_TYPE_TEMPERATURE:           /* Â°C          */
401                 case SENSOR_TYPE_PROXIMITY:             /* centimeters  */
402                 case SENSOR_TYPE_PRESSURE:              /* hecto-pascal */
403                 case SENSOR_TYPE_RELATIVE_HUMIDITY:     /* percent */
404                         return 1;
405
406                 case SENSOR_TYPE_ROTATION_VECTOR:
407                         return  4;
408
409                 default:
410                         ALOGE("Unknown sensor type!\n");
411                         return 0;                       /* Drop sample */
412         }
413 }
414
415
416 static void* acquisition_routine (void* param)
417 {
418         /*
419          * Data acquisition routine run in a dedicated thread, covering a single
420          * sensor. This loop will periodically retrieve sampling data through
421          * sysfs, then package it as a sample and transfer it to our master poll
422          * loop through a report fd. Checks for a cancellation signal quite
423          * frequently, as the thread may be disposed of at any time. Note that
424          * Bionic does not provide pthread_cancel / pthread_testcancel...
425          */
426
427         int s = (int) (size_t) param;
428         int num_fields, sample_size;
429         struct sensors_event_t data = {0};
430         int c;
431         int ret;
432         struct timespec target_time;
433         int64_t timestamp, period, start, stop;
434
435         if (s < 0 || s >= sensor_count) {
436                 ALOGE("Invalid sensor handle!\n");
437                 return NULL;
438         }
439
440         ALOGI("Entering data acquisition thread S%d (%s): rate(%f), ts(%lld)\n", s,
441                 sensor_info[s].friendly_name, sensor_info[s].sampling_rate, sensor_info[s].report_ts);
442
443         if (sensor_info[s].sampling_rate <= 0) {
444                 ALOGE("Non-positive rate in acquisition routine for sensor %d: %f\n",
445                         s, sensor_info[s].sampling_rate);
446                 return NULL;
447         }
448
449         num_fields = get_field_count(s);
450         sample_size = sizeof(int64_t) + num_fields * sizeof(float);
451
452         /*
453          * Each condition variable is associated to a mutex that has to be
454          * locked by the thread that's waiting on it. We use these condition
455          * variables to get the acquisition threads out of sleep quickly after
456          * the sampling rate is adjusted, or the sensor is disabled.
457          */
458         pthread_mutex_lock(&thread_release_mutex[s]);
459
460         /* Pinpoint the moment we start sampling */
461         timestamp = get_timestamp_monotonic();
462
463         /* Check and honor termination requests */
464         while (sensor_info[s].thread_data_fd[1] != -1) {
465                 start = get_timestamp_boot();
466                 /* Read values through sysfs */
467                 for (c=0; c<num_fields; c++) {
468                         data.data[c] = acquire_immediate_value(s, c);
469                         /* Check and honor termination requests */
470                         if (sensor_info[s].thread_data_fd[1] == -1)
471                                 goto exit;
472                 }
473                 stop = get_timestamp_boot();
474                 data.timestamp = start/2 + stop/2;
475
476                 /* If the sample looks good */
477                 if (sensor_info[s].ops.finalize(s, &data)) {
478
479                         /* Pipe it for transmission to poll loop */
480                         ret = write(    sensor_info[s].thread_data_fd[1],
481                                         &data.timestamp, sample_size);
482
483                         if (ret != sample_size)
484                                 ALOGE("S%d acquisition thread: tried to write %d, ret: %d\n",
485                                         s, sample_size, ret);
486                 }
487
488                 /* Check and honor termination requests */
489                 if (sensor_info[s].thread_data_fd[1] == -1)
490                         goto exit;
491
492                 /* Recalculate period asumming sensor_info[s].sampling_rate
493                  * can be changed dynamically during the thread run */
494                 if (sensor_info[s].sampling_rate <= 0) {
495                         ALOGE("Non-positive rate in acquisition routine for sensor %d: %f\n",
496                                 s, sensor_info[s].sampling_rate);
497                         goto exit;
498                 }
499
500                 period = (int64_t) (1000000000LL / sensor_info[s].sampling_rate);
501                 timestamp += period;
502                 set_timestamp(&target_time, timestamp);
503
504                 /*
505                  * Wait until the sampling time elapses, or a rate change is
506                  * signaled, or a thread exit is requested.
507                  */
508                 ret = pthread_cond_timedwait(   &thread_release_cond[s],
509                                                 &thread_release_mutex[s],
510                                                 &target_time);
511         }
512
513 exit:
514         ALOGV("Acquisition thread for S%d exiting\n", s);
515         pthread_mutex_unlock(&thread_release_mutex[s]);
516         pthread_exit(0);
517         return NULL;
518 }
519
520
521 static void start_acquisition_thread (int s)
522 {
523         int incoming_data_fd;
524         int ret;
525
526         struct epoll_event ev = {0};
527
528         ALOGV("Initializing acquisition context for sensor %d\n", s);
529
530         /* Create condition variable and mutex for quick thread release */
531         ret = pthread_condattr_init(&thread_cond_attr[s]);
532         ret = pthread_condattr_setclock(&thread_cond_attr[s], CLOCK_MONOTONIC);
533         ret = pthread_cond_init(&thread_release_cond[s], &thread_cond_attr[s]);
534         ret = pthread_mutex_init(&thread_release_mutex[s], NULL);
535
536         /* Create a pipe for inter thread communication */
537         ret = pipe(sensor_info[s].thread_data_fd);
538
539         incoming_data_fd = sensor_info[s].thread_data_fd[0];
540
541         ev.events = EPOLLIN;
542         ev.data.u32 = THREAD_REPORT_TAG_BASE + s;
543
544         /* Add incoming side of pipe to our poll set, with a suitable tag */
545         ret = epoll_ctl(poll_fd, EPOLL_CTL_ADD, incoming_data_fd , &ev);
546
547         /* Create and start worker thread */
548         ret = pthread_create(   &sensor_info[s].acquisition_thread,
549                                 NULL,
550                                 acquisition_routine,
551                                 (void*) (size_t) s);
552 }
553
554
555 static void stop_acquisition_thread (int s)
556 {
557         int incoming_data_fd = sensor_info[s].thread_data_fd[0];
558         int outgoing_data_fd = sensor_info[s].thread_data_fd[1];
559
560         ALOGV("Tearing down acquisition context for sensor %d\n", s);
561
562         /* Delete the incoming side of the pipe from our poll set */
563         epoll_ctl(poll_fd, EPOLL_CTL_DEL, incoming_data_fd, NULL);
564
565         /* Mark the pipe ends as invalid ; that's a cheap exit flag */
566         sensor_info[s].thread_data_fd[0] = -1;
567         sensor_info[s].thread_data_fd[1] = -1;
568
569         /* Close both sides of our pipe */
570         close(incoming_data_fd);
571         close(outgoing_data_fd);
572
573         /* Stop acquisition thread and clean up thread handle */
574         pthread_cond_signal(&thread_release_cond[s]);
575         pthread_join(sensor_info[s].acquisition_thread, NULL);
576
577         /* Clean up our sensor descriptor */
578         sensor_info[s].acquisition_thread = -1;
579
580         /* Delete condition variable and mutex */
581         pthread_cond_destroy(&thread_release_cond[s]);
582         pthread_mutex_destroy(&thread_release_mutex[s]);
583 }
584
585
586 int sensor_activate(int s, int enabled)
587 {
588         char device_name[PATH_MAX];
589         struct epoll_event ev = {0};
590         int dev_fd;
591         int ret;
592         int dev_num = sensor_info[s].dev_num;
593         int is_poll_sensor = !sensor_info[s].num_channels;
594
595         /* Prepare the report timestamp field for the first event, see set_report_ts method */
596         sensor_info[s].report_ts = 0;
597
598         /* If we want to activate gyro calibrated and gyro uncalibrated is activated
599          * Deactivate gyro uncalibrated - Uncalibrated releases handler
600          * Activate gyro calibrated     - Calibrated has handler
601          * Reactivate gyro uncalibrated - Uncalibrated gets data from calibrated */
602
603         /* If we want to deactivate gyro calibrated and gyro uncalibrated is active
604          * Deactivate gyro uncalibrated - Uncalibrated no longer gets data from handler
605          * Deactivate gyro calibrated   - Calibrated releases handler
606          * Reactivate gyro uncalibrated - Uncalibrated has handler */
607
608         if (sensor_info[s].type == SENSOR_TYPE_GYROSCOPE &&
609                 sensor_info[s].pair_idx && sensor_info[sensor_info[s].pair_idx].enabled != 0) {
610
611                                 sensor_activate(sensor_info[s].pair_idx, 0);
612                                 ret = sensor_activate(s, enabled);
613                                 sensor_activate(sensor_info[s].pair_idx, 1);
614                                 return ret;
615         }
616
617         ret = adjust_counters(s, enabled);
618
619         /* If the operation was neutral in terms of state, we're done */
620         if (ret <= 0)
621                 return ret;
622
623         sensor_info[s].event_count = 0;
624         sensor_info[s].meta_data_pending = 0;
625
626         if (enabled && (sensor_info[s].quirks & QUIRK_NOISY))
627                 /* Initialize filtering data if required */
628                 setup_noise_filtering(s);
629
630         if (!is_poll_sensor) {
631
632                 /* Stop sampling */
633                 enable_buffer(dev_num, 0);
634                 setup_trigger(s, "\n");
635
636                 /* If there's at least one sensor enabled on this iio device */
637                 if (trig_sensors_per_dev[dev_num]) {
638
639                         /* Start sampling */
640                         setup_trigger(s, sensor_info[s].init_trigger_name);
641                         enable_buffer(dev_num, 1);
642                 }
643         }
644
645         /*
646          * Make sure we have a fd on the character device ; conversely, close
647          * the fd if no one is using associated sensors anymore. The assumption
648          * here is that the underlying driver will power on the relevant
649          * hardware block while someone holds a fd on the device.
650          */
651         dev_fd = device_fd[dev_num];
652
653         if (!enabled) {
654                 if (is_poll_sensor)
655                         stop_acquisition_thread(s);
656
657                 if (dev_fd != -1 && !poll_sensors_per_dev[dev_num] &&
658                         !trig_sensors_per_dev[dev_num]) {
659                                 /*
660                                  * Stop watching this fd. This should be a no-op
661                                  * in case this fd was not in the poll set.
662                                  */
663                                 epoll_ctl(poll_fd, EPOLL_CTL_DEL, dev_fd, NULL);
664
665                                 close(dev_fd);
666                                 device_fd[dev_num] = -1;
667                         }
668
669                 /* Release any filtering data we may have accumulated */
670                 release_noise_filtering_data(s);
671
672                 return 0;
673         }
674
675         if (dev_fd == -1) {
676                 /* First enabled sensor on this iio device */
677                 sprintf(device_name, DEV_FILE_PATH, dev_num);
678                 dev_fd = open(device_name, O_RDONLY | O_NONBLOCK);
679
680                 device_fd[dev_num] = dev_fd;
681
682                 if (dev_fd == -1) {
683                         ALOGE("Could not open fd on %s (%s)\n",
684                               device_name, strerror(errno));
685                         adjust_counters(s, 0);
686                         return -1;
687                 }
688
689                 ALOGV("Opened %s: fd=%d\n", device_name, dev_fd);
690
691                 if (!is_poll_sensor) {
692
693                         /* Add this iio device fd to the set of watched fds */
694                         ev.events = EPOLLIN;
695                         ev.data.u32 = dev_num;
696
697                         ret = epoll_ctl(poll_fd, EPOLL_CTL_ADD, dev_fd, &ev);
698
699                         if (ret == -1) {
700                                 ALOGE(  "Failed adding %d to poll set (%s)\n",
701                                         dev_fd, strerror(errno));
702                                 return -1;
703                         }
704
705                         /* Note: poll-mode fds are not readable */
706                 }
707         }
708
709         /* Ensure that on-change sensors send at least one event after enable */
710         sensor_info[s].prev_val = -1;
711
712         if (is_poll_sensor)
713                 start_acquisition_thread(s);
714
715         return 0;
716 }
717
718
719 static int is_fast_accelerometer (int s)
720 {
721         /*
722          * Some games don't react well to accelerometers using any-motion
723          * triggers. Even very low thresholds seem to trip them, and they tend
724          * to request fairly high event rates. Favor continuous triggers if the
725          * sensor is an accelerometer and uses a sampling rate of at least 25.
726          */
727
728         if (sensor_info[s].type != SENSOR_TYPE_ACCELEROMETER)
729                 return 0;
730
731         if (sensor_info[s].sampling_rate < 25)
732                 return 0;
733
734         return 1;
735 }
736
737
738 static void enable_motion_trigger (int dev_num)
739 {
740         /*
741          * In the ideal case, we enumerate two triggers per iio device ; the
742          * default (periodically firing) trigger, and another one (the motion
743          * trigger) that only fires up when motion is detected. This second one
744          * allows for lesser energy consumption, but requires periodic sample
745          * duplication at the HAL level for sensors that Android defines as
746          * continuous. This "duplicate last sample" logic can only be engaged
747          * once we got a first sample for the driver, so we start with the
748          * default trigger when an iio device is first opened, then adjust the
749          * trigger when we got events for all active sensors. Unfortunately in
750          * the general case several sensors can be associated to a given iio
751          * device, they can independently be controlled, and we have to adjust
752          * the trigger in use at the iio device level depending on whether or
753          * not appropriate conditions are met at the sensor level.
754          */
755
756         int s;
757         int i;
758         int active_sensors = trig_sensors_per_dev[dev_num];
759         int candidate[MAX_SENSORS];
760         int candidate_count = 0;
761
762         if  (!active_sensors)
763                 return;
764
765         /* Check that all active sensors are ready to switch */
766
767         for (s=0; s<MAX_SENSORS; s++)
768                 if (sensor_info[s].dev_num == dev_num &&
769                     sensor_info[s].enabled &&
770                     sensor_info[s].num_channels &&
771                     (!sensor_info[s].motion_trigger_name[0] ||
772                      !sensor_info[s].report_initialized ||
773                      is_fast_accelerometer(s) ||
774                      (sensor_info[s].quirks & QUIRK_FORCE_CONTINUOUS))
775                     )
776                         return; /* Nope */
777
778         /* Record which particular sensors need to switch */
779
780         for (s=0; s<MAX_SENSORS; s++)
781                 if (sensor_info[s].dev_num == dev_num &&
782                     sensor_info[s].enabled &&
783                     sensor_info[s].num_channels &&
784                     sensor_info[s].selected_trigger !=
785                         sensor_info[s].motion_trigger_name)
786                                 candidate[candidate_count++] = s;
787
788         if (!candidate_count)
789                 return;
790
791         /* Now engage the motion trigger for sensors which aren't using it */
792
793         enable_buffer(dev_num, 0);
794
795         for (i=0; i<candidate_count; i++) {
796                 s = candidate[i];
797                 setup_trigger(s, sensor_info[s].motion_trigger_name);
798         }
799
800         enable_buffer(dev_num, 1);
801 }
802
803 /* CTS acceptable thresholds:
804  *      EventGapVerification.java: (th <= 1.8)
805  *      FrequencyVerification.java: (0.9)*(expected freq) => (th <= 1.1111)
806  */
807 #define THRESHOLD 1.10
808 #define MAX_DELAY 500000000 /* 500 ms */
809 void set_report_ts(int s, int64_t ts)
810 {
811         int64_t maxTs, period;
812         int catalog_index = sensor_info[s].catalog_index;
813         int is_accel      = (sensor_catalog[catalog_index].type == SENSOR_TYPE_ACCELEROMETER);
814
815         /*
816         *  A bit of a hack to please a bunch of cts tests. They
817         *  expect the timestamp to be exacly according to the set-up
818         *  frequency but if we're simply getting the timestamp at hal level
819         *  this may not be the case. Perhaps we'll get rid of this when
820         *  we'll be reading the timestamp from the iio channel for all sensors
821         */
822         if (sensor_info[s].report_ts && sensor_info[s].sampling_rate &&
823                 REPORTING_MODE(sensor_desc[s].flags) == SENSOR_FLAG_CONTINUOUS_MODE)
824         {
825                 period = (int64_t) (1000000000LL / sensor_info[s].sampling_rate);
826                 maxTs = sensor_info[s].report_ts + (is_accel ? 1 : THRESHOLD) * period;
827                 /* If we're too far behind get back on track */
828                 if (ts - maxTs >= MAX_DELAY)
829                         maxTs = ts;
830                 sensor_info[s].report_ts = (ts < maxTs ? ts : maxTs);
831         } else {
832                 sensor_info[s].report_ts = ts;
833         }
834 }
835
836
837 static int integrate_device_report (int dev_num)
838 {
839         int len;
840         int s,c;
841         unsigned char buf[MAX_DEVICE_REPORT_SIZE] = { 0 };
842         int sr_offset;
843         unsigned char *target;
844         unsigned char *source;
845         int size;
846         int64_t ts = 0;
847         int ts_offset = 0;      /* Offset of iio timestamp, if provided */
848         int64_t sys_to_rt_delta;
849
850         /* There's an incoming report on the specified iio device char dev fd */
851
852         if (dev_num < 0 || dev_num >= MAX_DEVICES) {
853                 ALOGE("Event reported on unexpected iio device %d\n", dev_num);
854                 return -1;
855         }
856
857         if (device_fd[dev_num] == -1) {
858                 ALOGE("Ignoring stale report on iio device %d\n", dev_num);
859                 return -1;
860         }
861
862         len = read(device_fd[dev_num], buf, expected_dev_report_size[dev_num]);
863
864         if (len == -1) {
865                 ALOGE("Could not read report from iio device %d (%s)\n",
866                       dev_num, strerror(errno));
867                 return -1;
868         }
869
870         ALOGV("Read %d bytes from iio device %d\n", len, dev_num);
871
872         /* Map device report to sensor reports */
873
874         for (s=0; s<MAX_SENSORS; s++)
875                 if (sensor_info[s].dev_num == dev_num &&
876                     sensor_info[s].enabled) {
877
878                         sr_offset = 0;
879
880                         /* Copy data from device to sensor report buffer */
881                         for (c=0; c<sensor_info[s].num_channels; c++) {
882
883                                 target = sensor_info[s].report_buffer +
884                                         sr_offset;
885
886                                 source = buf + sensor_info[s].channel[c].offset;
887
888                                 size = sensor_info[s].channel[c].size;
889
890                                 memcpy(target, source, size);
891
892                                 sr_offset += size;
893                         }
894
895                         ALOGV("Sensor %d report available (%d bytes)\n", s,
896                               sr_offset);
897
898                         sensor_info[s].report_pending = DATA_TRIGGER;
899                         sensor_info[s].report_initialized = 1;
900
901                         ts_offset += sr_offset;
902                 }
903
904         /* Tentatively switch to an any-motion trigger if conditions are met */
905         enable_motion_trigger(dev_num);
906
907         /* If no iio timestamp channel was detected for this device, bail out */
908         if (!has_iio_ts[dev_num]) {
909                 for (s=0; s<MAX_SENSORS; s++)
910                         if (sensor_info[s].dev_num == dev_num &&
911                                 sensor_info[s].enabled)
912                                         set_report_ts(s, get_timestamp_boot());
913                 return 0;
914         }
915
916         /* Align on a 64 bits boundary */
917         ts_offset = (ts_offset + 7)/8*8;
918
919         /* If we read an amount of data consistent with timestamp presence */
920         if (len == expected_dev_report_size[dev_num])
921                 ts = *(int64_t*) (buf + ts_offset);
922
923         if (ts == 0) {
924                 ALOGV("Unreliable timestamp channel on iio dev %d\n", dev_num);
925                 for (s=0; s<MAX_SENSORS; s++)
926                         if (sensor_info[s].dev_num == dev_num &&
927                                 sensor_info[s].enabled)
928                                         set_report_ts(s, get_timestamp_boot());
929                 return 0;
930         }
931
932         ALOGV("Driver timestamp on iio device %d: ts=%lld\n", dev_num, ts);
933
934         sys_to_rt_delta = get_timestamp_realtime() - get_timestamp_boot();
935
936         for (s=0; s<MAX_SENSORS; s++)
937                 if (sensor_info[s].dev_num == dev_num && sensor_info[s].enabled)
938                         set_report_ts(s, ts - sys_to_rt_delta);
939
940         return 0;
941 }
942
943
944 static int propagate_sensor_report (int s, struct sensors_event_t  *data)
945 {
946         /* There's a sensor report pending for this sensor ; transmit it */
947
948         int num_fields    = get_field_count(s);
949         int c;
950         unsigned char* current_sample;
951
952         /* If there's nothing to return... we're done */
953         if (!num_fields)
954                 return 0;
955
956
957         /* Only return uncalibrated event if also gyro active */
958         if (sensor_info[s].type == SENSOR_TYPE_GYROSCOPE_UNCALIBRATED &&
959                 sensor_info[sensor_info[s].pair_idx].enabled != 0)
960                         return 0;
961
962         memset(data, 0, sizeof(sensors_event_t));
963
964         data->version   = sizeof(sensors_event_t);
965         data->sensor    = s;
966         data->type      = sensor_info[s].type;
967         data->timestamp = sensor_info[s].report_ts;
968
969         ALOGV("Sample on sensor %d (type %d):\n", s, sensor_info[s].type);
970
971         current_sample = sensor_info[s].report_buffer;
972
973         /* If this is a poll sensor */
974         if (!sensor_info[s].num_channels) {
975                 /* Use the data provided by the acquisition thread */
976                 ALOGV("Reporting data from worker thread for S%d\n", s);
977                 memcpy(data->data, current_sample, num_fields * sizeof(float));
978                 return 1;
979         }
980
981         /* Convert the data into the expected Android-level format */
982         for (c=0; c<num_fields; c++) {
983
984                 data->data[c] = sensor_info[s].ops.transform
985                                                         (s, c, current_sample);
986
987                 ALOGV("\tfield %d: %f\n", c, data->data[c]);
988                 current_sample += sensor_info[s].channel[c].size;
989         }
990
991         /*
992          * The finalize routine, in addition to its late sample processing duty,
993          * has the final say on whether or not the sample gets sent to Android.
994          */
995         return sensor_info[s].ops.finalize(s, data);
996 }
997
998
999 static void synthetize_duplicate_samples (void)
1000 {
1001         /*
1002          * Some sensor types (ex: gyroscope) are defined as continuously firing
1003          * by Android, despite the fact that we can be dealing with iio drivers
1004          * that only report events for new samples. For these we generate
1005          * reports periodically, duplicating the last data we got from the
1006          * driver. This is not necessary for polling sensors.
1007          */
1008
1009         int s;
1010         int64_t current_ts;
1011         int64_t target_ts;
1012         int64_t period;
1013
1014         for (s=0; s<sensor_count; s++) {
1015
1016                 /* Ignore disabled sensors */
1017                 if (!sensor_info[s].enabled)
1018                         continue;
1019
1020                 /* If the sensor is continuously firing, leave it alone */
1021                 if (sensor_info[s].selected_trigger !=
1022                     sensor_info[s].motion_trigger_name)
1023                         continue;
1024
1025                 /* If we haven't seen a sample, there's nothing to duplicate */
1026                 if (!sensor_info[s].report_initialized)
1027                         continue;
1028
1029                 /* If a sample was recently buffered, leave it alone too */
1030                 if (sensor_info[s].report_pending)
1031                         continue;
1032
1033                 /* We also need a valid sampling rate to be configured */
1034                 if (!sensor_info[s].sampling_rate)
1035                         continue;
1036
1037                 period = (int64_t) (1000000000.0/ sensor_info[s].sampling_rate);
1038
1039                 current_ts = get_timestamp_boot();
1040                 target_ts = sensor_info[s].report_ts + period;
1041
1042                 if (target_ts <= current_ts) {
1043                         /* Mark the sensor for event generation */
1044                         set_report_ts(s, current_ts);
1045                         sensor_info[s].report_pending = DATA_DUPLICATE;
1046                 }
1047         }
1048 }
1049
1050
1051 static void integrate_thread_report (uint32_t tag)
1052 {
1053         int s = tag - THREAD_REPORT_TAG_BASE;
1054         int len;
1055         int expected_len;
1056         int64_t timestamp;
1057         unsigned char current_sample[MAX_SENSOR_REPORT_SIZE];
1058
1059         expected_len = sizeof(int64_t) + get_field_count(s) * sizeof(float);
1060
1061         len = read(sensor_info[s].thread_data_fd[0],
1062                    current_sample,
1063                    expected_len);
1064
1065         memcpy(&timestamp, current_sample, sizeof(int64_t));
1066         memcpy(sensor_info[s].report_buffer, sizeof(int64_t) + current_sample,
1067                         expected_len - sizeof(int64_t));
1068
1069         if (len == expected_len) {
1070                 set_report_ts(s, timestamp);
1071                 sensor_info[s].report_pending = DATA_SYSFS;
1072         }
1073 }
1074
1075
1076 static int get_poll_wait_timeout (void)
1077 {
1078         /*
1079          * Compute an appropriate timeout value, in ms, for the epoll_wait
1080          * call that's going to await for iio device reports and incoming
1081          * reports from our sensor sysfs data reader threads.
1082          */
1083
1084         int s;
1085         int64_t target_ts = INT64_MAX;
1086         int64_t ms_to_wait;
1087         int64_t period;
1088
1089         /*
1090          * Check if we're dealing with a driver that only send events when
1091          * there is motion, despite the fact that the associated Android sensor
1092          * type is continuous rather than on-change. In that case we have to
1093          * duplicate events. Check deadline for the nearest upcoming event.
1094          */
1095         for (s=0; s<sensor_count; s++)
1096                 if (sensor_info[s].enabled &&
1097                     sensor_info[s].selected_trigger ==
1098                     sensor_info[s].motion_trigger_name &&
1099                     sensor_info[s].sampling_rate) {
1100                         period = (int64_t) (1000000000.0 /
1101                                                 sensor_info[s].sampling_rate);
1102
1103                         if (sensor_info[s].report_ts + period < target_ts)
1104                                 target_ts = sensor_info[s].report_ts + period;
1105                 }
1106
1107         /* If we don't have such a driver to deal with */
1108         if (target_ts == INT64_MAX)
1109                 return -1; /* Infinite wait */
1110
1111         ms_to_wait = (target_ts - get_timestamp_boot()) / 1000000;
1112
1113         /* If the target timestamp is already behind us, don't wait */
1114         if (ms_to_wait < 1)
1115                 return 0;
1116
1117         return ms_to_wait;
1118 }
1119
1120
1121 int sensor_poll(struct sensors_event_t* data, int count)
1122 {
1123         int s;
1124         int i;
1125         int nfds;
1126         struct epoll_event ev[MAX_DEVICES];
1127         int returned_events;
1128         int event_count;
1129         int uncal_start;
1130
1131         /* Get one or more events from our collection of sensors */
1132
1133 return_available_sensor_reports:
1134
1135         /* Synthetize duplicate samples if needed */
1136         synthetize_duplicate_samples();
1137
1138         returned_events = 0;
1139
1140         /* Check our sensor collection for available reports */
1141         for (s=0; s<sensor_count && returned_events < count; s++) {
1142                 if (sensor_info[s].report_pending) {
1143                         event_count = 0;
1144
1145                         /* Report this event if it looks OK */
1146                         event_count = propagate_sensor_report(s, &data[returned_events]);
1147
1148                         /* Lower flag */
1149                         sensor_info[s].report_pending = 0;
1150
1151                         /* Duplicate only if both cal & uncal are active */
1152                         if (sensor_info[s].type == SENSOR_TYPE_GYROSCOPE &&
1153                                         sensor_info[s].pair_idx && sensor_info[sensor_info[s].pair_idx].enabled != 0) {
1154                                         struct gyro_cal* gyro_data = (struct gyro_cal*) sensor_info[s].cal_data;
1155
1156                                         memcpy(&data[returned_events + event_count], &data[returned_events],
1157                                                         sizeof(struct sensors_event_t) * event_count);
1158
1159                                         uncal_start = returned_events + event_count;
1160                                         for (i = 0; i < event_count; i++) {
1161                                                 data[uncal_start + i].type = SENSOR_TYPE_GYROSCOPE_UNCALIBRATED;
1162                                                 data[uncal_start + i].sensor = sensor_info[s].pair_idx;
1163
1164                                                 data[uncal_start + i].data[0] = data[returned_events + i].data[0] + gyro_data->bias_x;
1165                                                 data[uncal_start + i].data[1] = data[returned_events + i].data[1] + gyro_data->bias_y;
1166                                                 data[uncal_start + i].data[2] = data[returned_events + i].data[2] + gyro_data->bias_z;
1167
1168                                                 data[uncal_start + i].uncalibrated_gyro.bias[0] = gyro_data->bias_x;
1169                                                 data[uncal_start + i].uncalibrated_gyro.bias[1] = gyro_data->bias_y;
1170                                                 data[uncal_start + i].uncalibrated_gyro.bias[2] = gyro_data->bias_z;
1171                                         }
1172                                         event_count <<= 1;
1173                         }
1174                         sensor_info[sensor_info[s].pair_idx].report_pending = 0;
1175                         returned_events += event_count;
1176                         /*
1177                          * If the sample was deemed invalid or unreportable,
1178                          * e.g. had the same value as the previously reported
1179                          * value for a 'on change' sensor, silently drop it.
1180                          */
1181                 }
1182                 while (sensor_info[s].meta_data_pending) {
1183                         /* See sensors.h on these */
1184                         data[returned_events].version = META_DATA_VERSION;
1185                         data[returned_events].sensor = 0;
1186                         data[returned_events].type = SENSOR_TYPE_META_DATA;
1187                         data[returned_events].reserved0 = 0;
1188                         data[returned_events].timestamp = 0;
1189                         data[returned_events].meta_data.sensor = s;
1190                         data[returned_events].meta_data.what = META_DATA_FLUSH_COMPLETE;
1191                         returned_events++;
1192                         sensor_info[s].meta_data_pending--;
1193                 }
1194         }
1195         if (returned_events)
1196                 return returned_events;
1197
1198 await_event:
1199
1200         ALOGV("Awaiting sensor data\n");
1201
1202         nfds = epoll_wait(poll_fd, ev, MAX_DEVICES, get_poll_wait_timeout());
1203
1204         if (nfds == -1) {
1205                 ALOGE("epoll_wait returned -1 (%s)\n", strerror(errno));
1206                 goto await_event;
1207         }
1208
1209         ALOGV("%d fds signalled\n", nfds);
1210
1211         /* For each of the signalled sources */
1212         for (i=0; i<nfds; i++)
1213                 if (ev[i].events == EPOLLIN)
1214                         switch (ev[i].data.u32) {
1215                                 case 0 ... MAX_DEVICES-1:
1216                                         /* Read report from iio char dev fd */
1217                                         integrate_device_report(ev[i].data.u32);
1218                                         break;
1219
1220                                 case THREAD_REPORT_TAG_BASE ...
1221                                      THREAD_REPORT_TAG_BASE + MAX_SENSORS-1:
1222                                         /* Get report from acquisition thread */
1223                                         integrate_thread_report(ev[i].data.u32);
1224                                         break;
1225
1226                                 default:
1227                                         ALOGW("Unexpected event source!\n");
1228                                         break;
1229                         }
1230
1231         goto return_available_sensor_reports;
1232 }
1233
1234
1235 static void tentative_switch_trigger (int s)
1236 {
1237         /*
1238          * Under certain situations it may be beneficial to use an alternate
1239          * trigger:
1240          *
1241          * - for applications using the accelerometer with high sampling rates,
1242          *   prefer the continuous trigger over the any-motion one, to avoid
1243          *   jumps related to motion thresholds
1244          */
1245
1246         if (is_fast_accelerometer(s) &&
1247                 !(sensor_info[s].quirks & QUIRK_TERSE_DRIVER) &&
1248                         sensor_info[s].selected_trigger ==
1249                                 sensor_info[s].motion_trigger_name)
1250                 setup_trigger(s, sensor_info[s].init_trigger_name);
1251 }
1252
1253
1254 int sensor_set_delay(int s, int64_t ns)
1255 {
1256         /* Set the rate at which a specific sensor should report events */
1257
1258         /* See Android sensors.h for indication on sensor trigger modes */
1259
1260         char sysfs_path[PATH_MAX];
1261         char avail_sysfs_path[PATH_MAX];
1262         int dev_num             =       sensor_info[s].dev_num;
1263         int i                   =       sensor_info[s].catalog_index;
1264         const char *prefix      =       sensor_catalog[i].tag;
1265         float new_sampling_rate; /* Granted sampling rate after arbitration   */
1266         float cur_sampling_rate; /* Currently used sampling rate              */
1267         int per_sensor_sampling_rate;
1268         int per_device_sampling_rate;
1269         int32_t min_delay_us = sensor_desc[s].minDelay;
1270         max_delay_t max_delay_us = sensor_desc[s].maxDelay;
1271         float min_supported_rate = max_delay_us ? (1000000.0 / max_delay_us) : 1;
1272         float max_supported_rate = 
1273                 (min_delay_us && min_delay_us != -1) ? (1000000.0 / min_delay_us) : 0;
1274         char freqs_buf[100];
1275         char* cursor;
1276         int n;
1277         float sr;
1278
1279         if (ns <= 0) {
1280                 ALOGE("Rejecting non-positive delay request on sensor %d, required delay: %lld\n", s, ns);
1281                 return -EINVAL;
1282         }
1283
1284         new_sampling_rate = 1000000000LL/ns;
1285
1286         ALOGV("Entering set delay S%d (%s): old rate(%f), new rate(%f)\n",
1287                 s, sensor_info[s].friendly_name, sensor_info[s].sampling_rate,
1288                 new_sampling_rate);
1289
1290         /*
1291          * Artificially limit ourselves to 1 Hz or higher. This is mostly to
1292          * avoid setting up the stage for divisions by zero.
1293          */
1294         if (new_sampling_rate < min_supported_rate)
1295                 new_sampling_rate = min_supported_rate;
1296
1297         if (max_supported_rate &&
1298                 new_sampling_rate > max_supported_rate) {
1299                 new_sampling_rate = max_supported_rate;
1300         }
1301
1302         sensor_info[s].sampling_rate = new_sampling_rate;
1303
1304         /* If we're dealing with a poll-mode sensor */
1305         if (!sensor_info[s].num_channels) {
1306                 /* Interrupt current sleep so the new sampling gets used */
1307                 pthread_cond_signal(&thread_release_cond[s]);
1308                 return 0;
1309         }
1310
1311         sprintf(sysfs_path, SENSOR_SAMPLING_PATH, dev_num, prefix);
1312
1313         if (sysfs_read_float(sysfs_path, &cur_sampling_rate) != -1) {
1314                 per_sensor_sampling_rate = 1;
1315                 per_device_sampling_rate = 0;
1316         } else {
1317                 per_sensor_sampling_rate = 0;
1318
1319                 sprintf(sysfs_path, DEVICE_SAMPLING_PATH, dev_num);
1320
1321                 if (sysfs_read_float(sysfs_path, &cur_sampling_rate) != -1)
1322                         per_device_sampling_rate = 1;
1323                 else
1324                         per_device_sampling_rate = 0;
1325         }
1326
1327         if (!per_sensor_sampling_rate && !per_device_sampling_rate) {
1328                 ALOGE("No way to adjust sampling rate on sensor %d\n", s);
1329                 return -ENOSYS;
1330         }
1331
1332         /* Coordinate with others active sensors on the same device, if any */
1333         if (per_device_sampling_rate)
1334                 for (n=0; n<sensor_count; n++)
1335                         if (n != s && sensor_info[n].dev_num == dev_num &&
1336                             sensor_info[n].num_channels &&
1337                             sensor_info[n].enabled &&
1338                             sensor_info[n].sampling_rate > new_sampling_rate)
1339                                 new_sampling_rate= sensor_info[n].sampling_rate;
1340
1341         /* Check if we have contraints on allowed sampling rates */
1342
1343         sprintf(avail_sysfs_path, DEVICE_AVAIL_FREQ_PATH, dev_num);
1344
1345         if (sysfs_read_str(avail_sysfs_path, freqs_buf, sizeof(freqs_buf)) > 0){
1346                 cursor = freqs_buf;
1347
1348                 /* Decode allowed sampling rates string, ex: "10 20 50 100" */
1349
1350                 /* While we're not at the end of the string */
1351                 while (*cursor && cursor[0]) {
1352
1353                         /* Decode a single value */
1354                         sr = strtod(cursor, NULL);
1355
1356                         /* If this matches the selected rate, we're happy */
1357                         if (new_sampling_rate == sr)
1358                                 break;
1359
1360                         /*
1361                          * If we reached a higher value than the desired rate,
1362                          * adjust selected rate so it matches the first higher
1363                          * available one and stop parsing - this makes the
1364                          * assumption that rates are sorted by increasing value
1365                          * in the allowed frequencies string.
1366                          */
1367                         if (sr > new_sampling_rate) {
1368                                 new_sampling_rate = sr;
1369                                 break;
1370                         }
1371
1372                         /* Skip digits */
1373                         while (cursor[0] && !isspace(cursor[0]))
1374                                 cursor++;
1375
1376                         /* Skip spaces */
1377                         while (cursor[0] && isspace(cursor[0]))
1378                                         cursor++;
1379                 }
1380         }
1381
1382         if (max_supported_rate &&
1383                 new_sampling_rate > max_supported_rate) {
1384                 new_sampling_rate = max_supported_rate;
1385         }
1386
1387         /* If the desired rate is already active we're all set */
1388         if (new_sampling_rate == cur_sampling_rate)
1389                 return 0;
1390
1391         ALOGI("Sensor %d sampling rate set to %g\n", s, new_sampling_rate);
1392
1393         if (trig_sensors_per_dev[dev_num])
1394                 enable_buffer(dev_num, 0);
1395
1396         sysfs_write_float(sysfs_path, new_sampling_rate);
1397
1398         /* Check if it makes sense to use an alternate trigger */
1399         tentative_switch_trigger(s);
1400
1401         if (trig_sensors_per_dev[dev_num])
1402                 enable_buffer(dev_num, 1);
1403
1404         return 0;
1405 }
1406
1407 int sensor_flush (int s)
1408 {
1409         /* If one shot or not enabled return -EINVAL */
1410         if (sensor_desc[s].flags & SENSOR_FLAG_ONE_SHOT_MODE ||
1411                 sensor_info[s].enabled == 0)
1412                 return -EINVAL;
1413
1414         sensor_info[s].meta_data_pending++;
1415         return 0;
1416 }
1417
1418 int allocate_control_data (void)
1419 {
1420         int i;
1421
1422         for (i=0; i<MAX_DEVICES; i++)
1423                 device_fd[i] = -1;
1424
1425         poll_fd = epoll_create(MAX_DEVICES);
1426
1427         if (poll_fd == -1) {
1428                 ALOGE("Can't create epoll instance for iio sensors!\n");
1429                 return -1;
1430         }
1431
1432         return poll_fd;
1433 }
1434
1435
1436 void delete_control_data (void)
1437 {
1438 }