OSDN Git Service

af7242614b8f4523b1afeb7b50ae242036302d97
[android-x86/hardware-intel-libsensors.git] / enumeration.c
1 /*
2  * Copyright (C) 2014 Intel Corporation.
3  */
4
5 #include <ctype.h>
6 #include <dirent.h>
7 #include <stdlib.h>
8 #include <utils/Log.h>
9 #include <hardware/sensors.h>
10 #include "enumeration.h"
11 #include "description.h"
12 #include "utils.h"
13 #include "transform.h"
14 #include "description.h"
15 #include "control.h"
16 #include "calibration.h"
17
18 /*
19  * This table maps syfs entries in scan_elements directories to sensor types,
20  * and will also be used to determine other sysfs names as well as the iio
21  * device number associated to a specific sensor.
22  */
23
24  /*
25   * We duplicate entries for the uncalibrated types after their respective base
26   * sensor. This is because all sensor entries must have an associated catalog entry
27   * and also because when only the uncal sensor is active it needs to take it's data
28   * from the same iio device as the base one.
29   */
30
31 sensor_catalog_entry_t sensor_catalog[] = {
32         DECLARE_SENSOR3("accel",      SENSOR_TYPE_ACCELEROMETER,  "x", "y", "z")
33         DECLARE_SENSOR3("anglvel",    SENSOR_TYPE_GYROSCOPE,      "x", "y", "z")
34         DECLARE_SENSOR3("magn",       SENSOR_TYPE_MAGNETIC_FIELD, "x", "y", "z")
35         DECLARE_SENSOR1("intensity",  SENSOR_TYPE_LIGHT,          "both"       )
36         DECLARE_SENSOR0("illuminance",SENSOR_TYPE_LIGHT                        )
37         DECLARE_SENSOR3("incli",      SENSOR_TYPE_ORIENTATION,    "x", "y", "z")
38         DECLARE_SENSOR4("rot",        SENSOR_TYPE_ROTATION_VECTOR,
39                                          "quat_x", "quat_y", "quat_z", "quat_w")
40         DECLARE_SENSOR0("temp",       SENSOR_TYPE_AMBIENT_TEMPERATURE          )
41         DECLARE_SENSOR0("proximity",  SENSOR_TYPE_PROXIMITY                    )
42         DECLARE_VIRTUAL(SENSOR_TYPE_GYROSCOPE_UNCALIBRATED                     )
43         DECLARE_VIRTUAL(SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED                 )
44 };
45
46 #define CATALOG_SIZE    ARRAY_SIZE(sensor_catalog)
47
48 /* ACPI PLD (physical location of device) definitions, as used with sensors */
49
50 #define PANEL_FRONT     4
51 #define PANEL_BACK      5
52
53 /* We equate sensor handles to indices in these tables */
54
55 struct sensor_t sensor_desc[MAX_SENSORS];       /* Android-level descriptors */
56 sensor_info_t   sensor[MAX_SENSORS];            /* Internal descriptors      */
57 int             sensor_count;                   /* Detected sensors          */
58
59
60 static void setup_properties_from_pld (int s, int panel, int rotation,
61                                        int num_channels)
62 {
63         /*
64          * Generate suitable order and opt_scale directives from the PLD panel
65          * and rotation codes we got. This can later be superseded by the usual
66          * properties if necessary. Eventually we'll need to replace these
67          * mechanisms by a less convoluted one, such as a 3x3 placement matrix.
68          */
69
70         int x = 1;
71         int y = 1;
72         int z = 1;
73         int xy_swap = 0;
74         int angle = rotation * 45;
75
76         /* Only deal with 3 axis chips for now */
77         if (num_channels < 3)
78                 return;
79
80         if (panel == PANEL_BACK) {
81                 /* Chip placed on the back panel ; negate x and z */
82                 x = -x;
83                 z = -z;
84         }
85
86         switch (angle) {
87                 case 90: /* 90° clockwise: negate y then swap x,y */
88                         xy_swap = 1;
89                         y = -y;
90                         break;
91
92                 case 180: /* Upside down: negate x and y */
93                         x = -x;
94                         y = -y;
95                         break;
96
97                 case 270: /* 90° counter clockwise: negate x then swap x,y */
98                         x = -x;
99                         xy_swap = 1;
100                         break;
101         }
102
103         if (xy_swap) {
104                 sensor[s].order[0] = 1;
105                 sensor[s].order[1] = 0;
106                 sensor[s].order[2] = 2;
107                 sensor[s].quirks |= QUIRK_FIELD_ORDERING;
108         }
109
110         sensor[s].channel[0].opt_scale = x;
111         sensor[s].channel[1].opt_scale = y;
112         sensor[s].channel[2].opt_scale = z;
113 }
114
115
116 static int is_valid_pld (int panel, int rotation)
117 {
118         if (panel != PANEL_FRONT && panel != PANEL_BACK) {
119                 ALOGW("Unhandled PLD panel spec: %d\n", panel);
120                 return 0;
121         }
122
123         /* Only deal with 90° rotations for now */
124         if (rotation < 0 || rotation > 7 || (rotation & 1)) {
125                 ALOGW("Unhandled PLD rotation spec: %d\n", rotation);
126                 return 0;
127         }
128
129         return 1;
130 }
131
132
133 static int read_pld_from_properties (int s, int* panel, int* rotation)
134 {
135         int p, r;
136
137         if (sensor_get_prop(s, "panel", &p))
138                 return -1;
139
140         if (sensor_get_prop(s, "rotation", &r))
141                 return -1;
142
143         if (!is_valid_pld(p, r))
144                 return -1;
145
146         *panel = p;
147         *rotation = r;
148
149         ALOGI("S%d PLD from properties: panel=%d, rotation=%d\n", s, p, r);
150
151         return 0;
152 }
153
154
155 static int read_pld_from_sysfs (int s, int dev_num, int* panel, int* rotation)
156 {
157         char sysfs_path[PATH_MAX];
158         int p,r;
159
160         sprintf(sysfs_path, BASE_PATH "../firmware_node/pld/panel", dev_num);
161
162         if (sysfs_read_int(sysfs_path, &p))
163                 return -1;
164
165         sprintf(sysfs_path, BASE_PATH "../firmware_node/pld/rotation", dev_num);
166
167         if (sysfs_read_int(sysfs_path, &r))
168                 return -1;
169
170         if (!is_valid_pld(p, r))
171                 return -1;
172
173         *panel = p;
174         *rotation = r;
175
176         ALOGI("S%d PLD from sysfs: panel=%d, rotation=%d\n", s, p, r);
177
178         return 0;
179 }
180
181
182 static void decode_placement_information (int dev_num, int num_channels, int s)
183 {
184         /*
185          * See if we have optional "physical location of device" ACPI tags.
186          * We're only interested in panel and rotation specifiers. Use the
187          * .panel and .rotation properties in priority, and the actual ACPI
188          * values as a second source.
189          */
190
191         int panel;
192         int rotation;
193
194         if (read_pld_from_properties(s, &panel, &rotation) &&
195                 read_pld_from_sysfs(s, dev_num, &panel, &rotation))
196                         return; /* No PLD data available */
197
198         /* Map that to field ordering and scaling mechanisms */
199         setup_properties_from_pld(s, panel, rotation, num_channels);
200 }
201
202
203 static void populate_descriptors (int s, int sensor_type)
204 {
205         int32_t         min_delay_us;
206         max_delay_t     max_delay_us;
207
208         /* Initialize Android-visible descriptor */
209         sensor_desc[s].name             = sensor_get_name(s);
210         sensor_desc[s].vendor           = sensor_get_vendor(s);
211         sensor_desc[s].version          = sensor_get_version(s);
212         sensor_desc[s].handle           = s;
213         sensor_desc[s].type             = sensor_type;
214
215         sensor_desc[s].maxRange         = sensor_get_max_range(s);
216         sensor_desc[s].resolution       = sensor_get_resolution(s);
217         sensor_desc[s].power            = sensor_get_power(s);
218         sensor_desc[s].stringType       = sensor_get_string_type(s);
219
220         /* None of our supported sensors requires a special permission */
221         sensor_desc[s].requiredPermission = "";
222
223         sensor_desc[s].flags = sensor_get_flags(s);
224         sensor_desc[s].minDelay = sensor_get_min_delay(s);
225         sensor_desc[s].maxDelay = sensor_get_max_delay(s);
226
227         ALOGV("Sensor %d (%s) type(%d) minD(%d) maxD(%d) flags(%2.2x)\n",
228                 s, sensor[s].friendly_name, sensor_desc[s].type,
229                 sensor_desc[s].minDelay, sensor_desc[s].maxDelay,
230                 sensor_desc[s].flags);
231
232         /* We currently do not implement batching */
233         sensor_desc[s].fifoReservedEventCount = 0;
234         sensor_desc[s].fifoMaxEventCount = 0;
235
236         min_delay_us = sensor_desc[s].minDelay;
237         max_delay_us = sensor_desc[s].maxDelay;
238
239         sensor[s].min_supported_rate = max_delay_us ? 1000000.0 / max_delay_us : 1;
240         sensor[s].max_supported_rate = min_delay_us && min_delay_us != -1 ? 1000000.0 / min_delay_us : 0;
241 }
242
243
244 static void add_virtual_sensor (int catalog_index)
245 {
246         int s;
247         int sensor_type;
248
249         if (sensor_count == MAX_SENSORS) {
250                 ALOGE("Too many sensors!\n");
251                 return;
252         }
253
254         sensor_type = sensor_catalog[catalog_index].type;
255
256         s = sensor_count;
257
258         sensor[s].is_virtual = 1;
259         sensor[s].catalog_index = catalog_index;
260         sensor[s].type          = sensor_type;
261
262         populate_descriptors(s, sensor_type);
263
264         /* Initialize fields related to sysfs reads offloading */
265         sensor[s].thread_data_fd[0]  = -1;
266         sensor[s].thread_data_fd[1]  = -1;
267         sensor[s].acquisition_thread = -1;
268
269         sensor_count++;
270 }
271
272
273 static void add_sensor (int dev_num, int catalog_index, int use_polling)
274 {
275         int s;
276         int sensor_type;
277         int retval;
278         char sysfs_path[PATH_MAX];
279         const char* prefix;
280         float scale;
281         int c;
282         float opt_scale;
283         const char* ch_name;
284         int num_channels;
285         char suffix[MAX_NAME_SIZE + 8];
286
287         if (sensor_count == MAX_SENSORS) {
288                 ALOGE("Too many sensors!\n");
289                 return;
290         }
291
292         sensor_type = sensor_catalog[catalog_index].type;
293
294         /*
295          * At this point we could check that the expected sysfs attributes are
296          * present ; that would enable having multiple catalog entries with the
297          * same sensor type, accomodating different sets of sysfs attributes.
298          */
299
300         s = sensor_count;
301
302         sensor[s].dev_num       = dev_num;
303         sensor[s].catalog_index = catalog_index;
304         sensor[s].type          = sensor_type;
305         sensor[s].is_polling    = use_polling;
306
307         num_channels = sensor_catalog[catalog_index].num_channels;
308
309         if (use_polling)
310                 sensor[s].num_channels = 0;
311         else
312                 sensor[s].num_channels = num_channels;
313
314         prefix = sensor_catalog[catalog_index].tag;
315
316         /*
317          * receiving the illumination sensor calibration inputs from
318          * the Android properties and setting it within sysfs
319          */
320         if (sensor_type == SENSOR_TYPE_LIGHT) {
321                 retval = sensor_get_illumincalib(s);
322                 if (retval > 0) {
323                         sprintf(sysfs_path, ILLUMINATION_CALIBPATH, dev_num);
324                         sysfs_write_int(sysfs_path, retval);
325                 }
326         }
327
328         /* Read name attribute, if available */
329         sprintf(sysfs_path, NAME_PATH, dev_num);
330         sysfs_read_str(sysfs_path, sensor[s].internal_name, MAX_NAME_SIZE);
331
332         /* See if we have general offsets and scale values for this sensor */
333
334         sprintf(sysfs_path, SENSOR_OFFSET_PATH, dev_num, prefix);
335         sysfs_read_float(sysfs_path, &sensor[s].offset);
336
337         sprintf(sysfs_path, SENSOR_SCALE_PATH, dev_num, prefix);
338         if (!sensor_get_fl_prop(s, "scale", &scale)) {
339                 /*
340                  * There is a chip preferred scale specified,
341                  * so try to store it in sensor's scale file
342                  */
343                 if (sysfs_write_float(sysfs_path, scale) == -1 && errno == ENOENT) {
344                         ALOGE("Failed to store scale[%g] into %s - file is missing", scale, sysfs_path);
345                         /* Store failed, try to store the scale into channel specific file */
346                         for (c = 0; c < num_channels; c++)
347                         {
348                                 sprintf(sysfs_path, BASE_PATH "%s", dev_num,
349                                         sensor_catalog[catalog_index].channel[c].scale_path);
350                                 if (sysfs_write_float(sysfs_path, scale) == -1)
351                                         ALOGE("Failed to store scale[%g] into %s", scale, sysfs_path);
352                         }
353                 }
354         }
355
356         sprintf(sysfs_path, SENSOR_SCALE_PATH, dev_num, prefix);
357         if (!sysfs_read_float(sysfs_path, &scale)) {
358                 sensor[s].scale = scale;
359                 ALOGV("Scale path:%s scale:%g dev_num:%d\n",
360                                         sysfs_path, scale, dev_num);
361         } else {
362                 sensor[s].scale = 1;
363
364                 /* Read channel specific scale if any*/
365                 for (c = 0; c < num_channels; c++)
366                 {
367                         sprintf(sysfs_path, BASE_PATH "%s", dev_num,
368                            sensor_catalog[catalog_index].channel[c].scale_path);
369
370                         if (!sysfs_read_float(sysfs_path, &scale)) {
371                                 sensor[s].channel[c].scale = scale;
372                                 sensor[s].scale = 0;
373
374                                 ALOGV(  "Scale path:%s "
375                                         "channel scale:%g dev_num:%d\n",
376                                         sysfs_path, scale, dev_num);
377                         }
378                 }
379         }
380
381         /* Set default scaling - if num_channels is zero, we have one channel */
382
383         sensor[s].channel[0].opt_scale = 1;
384
385         for (c = 1; c < num_channels; c++)
386                 sensor[s].channel[c].opt_scale = 1;
387
388         /* Read ACPI _PLD attributes for this sensor, if there are any */
389         decode_placement_information(dev_num, num_channels, s);
390
391         /*
392          * See if we have optional correction scaling factors for each of the
393          * channels of this sensor. These would be expressed using properties
394          * like iio.accel.y.opt_scale = -1. In case of a single channel we also
395          * support things such as iio.temp.opt_scale = -1. Note that this works
396          * for all types of sensors, and whatever transform is selected, on top
397          * of any previous conversions.
398          */
399
400         if (num_channels) {
401                 for (c = 0; c < num_channels; c++) {
402                         ch_name = sensor_catalog[catalog_index].channel[c].name;
403                         sprintf(suffix, "%s.opt_scale", ch_name);
404                         if (!sensor_get_fl_prop(s, suffix, &opt_scale))
405                                 sensor[s].channel[c].opt_scale = opt_scale;
406                 }
407         } else
408                 if (!sensor_get_fl_prop(s, "opt_scale", &opt_scale))
409                         sensor[s].channel[0].opt_scale = opt_scale;
410
411         populate_descriptors(s, sensor_type);
412
413         /* Populate the quirks array */
414         sensor_get_quirks(s);
415
416         if (sensor[s].internal_name[0] == '\0') {
417                 /*
418                  * In case the kernel-mode driver doesn't expose a name for
419                  * the iio device, use (null)-dev%d as the trigger name...
420                  * This can be considered a kernel-mode iio driver bug.
421                  */
422                 ALOGW("Using null trigger on sensor %d (dev %d)\n", s, dev_num);
423                 strcpy(sensor[s].internal_name, "(null)");
424         }
425
426         switch (sensor_type) {
427                 case SENSOR_TYPE_GYROSCOPE:
428                         sensor[s].cal_data = malloc(sizeof(gyro_cal_t));
429                         break;
430
431                 case SENSOR_TYPE_MAGNETIC_FIELD:
432                         sensor[s].cal_data = malloc(sizeof(compass_cal_t));
433                         break;
434         }
435
436         sensor[s].max_cal_level = sensor_get_cal_steps(s);
437
438         /* Select one of the available sensor sample processing styles */
439         select_transform(s);
440
441         /* Initialize fields related to sysfs reads offloading */
442         sensor[s].thread_data_fd[0]  = -1;
443         sensor[s].thread_data_fd[1]  = -1;
444         sensor[s].acquisition_thread = -1;
445
446         /* Check if we have a special ordering property on this sensor */
447         if (sensor_get_order(s, sensor[s].order))
448                 sensor[s].quirks |= QUIRK_FIELD_ORDERING;
449
450         sensor_count++;
451 }
452
453
454 static void discover_poll_sensors (int dev_num, char map[CATALOG_SIZE])
455 {
456         char base_dir[PATH_MAX];
457         DIR *dir;
458         struct dirent *d;
459         unsigned int i;
460         int c;
461
462         memset(map, 0, CATALOG_SIZE);
463
464         snprintf(base_dir, sizeof(base_dir), BASE_PATH, dev_num);
465
466         dir = opendir(base_dir);
467         if (!dir) {
468                 return;
469         }
470
471         /* Enumerate entries in this iio device's base folder */
472
473         while ((d = readdir(dir))) {
474                 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
475                         continue;
476
477                 /* If the name matches a catalog entry, flag it */
478                 for (i = 0; i < CATALOG_SIZE; i++) {
479
480                         /* No discovery for virtual sensors */
481                         if (sensor_catalog[i].is_virtual)
482                                 continue;
483
484                         for (c=0; c<sensor_catalog[i].num_channels; c++)
485                                 if (!strcmp(d->d_name,sensor_catalog[i].channel[c].raw_path) || !strcmp(d->d_name, sensor_catalog[i].channel[c].input_path)) {
486                                         map[i] = 1;
487                                         break;
488                         }
489                 }
490         }
491
492         closedir(dir);
493 }
494
495
496 static void discover_trig_sensors (int dev_num, char map[CATALOG_SIZE])
497 {
498         char scan_elem_dir[PATH_MAX];
499         DIR *dir;
500         struct dirent *d;
501         unsigned int i;
502
503         memset(map, 0, CATALOG_SIZE);
504
505         /* Enumerate entries in this iio device's scan_elements folder */
506
507         snprintf(scan_elem_dir, sizeof(scan_elem_dir), CHANNEL_PATH, dev_num);
508
509         dir = opendir(scan_elem_dir);
510         if (!dir) {
511                 return;
512         }
513
514         while ((d = readdir(dir))) {
515                 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
516                         continue;
517
518                 /* Compare en entry to known ones and create matching sensors */
519
520                 for (i = 0; i<CATALOG_SIZE; i++) {
521
522                         /* No discovery for virtual sensors */
523                         if (sensor_catalog[i].is_virtual)
524                                 continue;
525
526                         if (!strcmp(d->d_name, sensor_catalog[i].channel[0].en_path)) {
527                                         map[i] = 1;
528                                         break;
529                         }
530                 }
531         }
532
533         closedir(dir);
534 }
535
536
537 static void virtual_sensors_check (void)
538 {
539         int i;
540         int has_acc = 0;
541         int has_gyr = 0;
542         int has_mag = 0;
543         int has_rot = 0;
544         int has_ori = 0;
545         int catalog_size = CATALOG_SIZE;
546         int gyro_cal_idx = 0;
547         int magn_cal_idx = 0;
548
549         for (i=0; i<sensor_count; i++)
550                 switch (sensor[i].type) {
551                         case SENSOR_TYPE_ACCELEROMETER:
552                                 has_acc = 1;
553                                 break;
554                         case SENSOR_TYPE_GYROSCOPE:
555                                 has_gyr = 1;
556                                 gyro_cal_idx = i;
557                                 break;
558                         case SENSOR_TYPE_MAGNETIC_FIELD:
559                                 has_mag = 1;
560                                 magn_cal_idx = i;
561                                 break;
562                         case SENSOR_TYPE_ORIENTATION:
563                                 has_ori = 1;
564                                 break;
565                         case SENSOR_TYPE_ROTATION_VECTOR:
566                                 has_rot = 1;
567                                 break;
568                 }
569
570         for (i=0; i<catalog_size; i++)
571                 switch (sensor_catalog[i].type) {
572                         /*
573                         * If we have accel + gyro + magn but no rotation vector sensor,
574                         * SensorService replaces the HAL provided orientation sensor by the
575                         * AOSP version... provided we report one. So initialize a virtual
576                         * orientation sensor with zero values, which will get replaced. See:
577                         * frameworks/native/services/sensorservice/SensorService.cpp, looking
578                         * for SENSOR_TYPE_ROTATION_VECTOR; that code should presumably fall
579                         * back to mUserSensorList.add instead of replaceAt, but accommodate it.
580                         */
581
582                         case SENSOR_TYPE_ORIENTATION:
583                                 if (has_acc && has_gyr && has_mag && !has_rot && !has_ori)
584                                         add_sensor(0, i, 1);
585                                 break;
586                         case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED:
587                                 if (has_gyr) {
588                                         sensor[sensor_count].base_count = 1;
589                                         sensor[sensor_count].base[0] = gyro_cal_idx;
590                                         add_virtual_sensor(i);
591                                 }
592                                 break;
593                         case SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED:
594                                 if (has_mag) {
595                                         sensor[sensor_count].base_count = 1;
596                                         sensor[sensor_count].base[0] = magn_cal_idx;
597                                         add_virtual_sensor(i);
598                                 }
599                                 break;
600                         default:
601                         break;
602                 }
603 }
604
605
606 static void propose_new_trigger (int s, char trigger_name[MAX_NAME_SIZE],
607                                  int sensor_name_len)
608 {
609         /*
610          * A new trigger has been enumerated for this sensor. Check if it makes sense to use it over the currently selected one,
611          *  and select it if it is so. The format is something like sensor_name-dev0.
612          */
613
614         const char *suffix = trigger_name + sensor_name_len + 1;
615
616         /* dev is the default, and lowest priority; no need to update */
617         if (!memcmp(suffix, "dev", 3))
618                 return;
619
620         /* If we found any-motion trigger, record it */
621
622         if (!memcmp(suffix, "any-motion-", 11)) {
623                 strcpy(sensor[s].motion_trigger_name, trigger_name);
624                 return;
625         }
626
627         /*
628          * It's neither the default "dev" nor an "any-motion" one. Make sure we use this though, as we may not have any other indication of the name
629          * of the trigger to use with this sensor.
630          */
631         strcpy(sensor[s].init_trigger_name, trigger_name);
632 }
633
634
635 static void update_sensor_matching_trigger_name (char name[MAX_NAME_SIZE])
636 {
637         /*
638          * Check if we have a sensor matching the specified trigger name, which should then begin with the sensor name, and end with a number
639          * equal to the iio device number the sensor is associated to. If so, update the string we're going to write to trigger/current_trigger
640          * when enabling this sensor.
641          */
642
643         int s;
644         int dev_num;
645         int len;
646         char* cursor;
647         int sensor_name_len;
648
649         /*
650          * First determine the iio device number this trigger refers to. We expect the last few characters (typically one) of the trigger name
651          * to be this number, so perform a few checks.
652          */
653         len = strnlen(name, MAX_NAME_SIZE);
654
655         if (len < 2)
656                 return;
657
658         cursor = name + len - 1;
659
660         if (!isdigit(*cursor))
661                 return;
662
663         while (len && isdigit(*cursor)) {
664                 len--;
665                 cursor--;
666         }
667
668         dev_num = atoi(cursor+1);
669
670         /* See if that matches a sensor */
671         for (s=0; s<sensor_count; s++)
672                 if (sensor[s].dev_num == dev_num) {
673
674                         sensor_name_len = strlen(sensor[s].internal_name);
675
676                         if (!strncmp(name, sensor[s].internal_name, sensor_name_len))
677                                 /* Switch to new trigger if appropriate */
678                                 propose_new_trigger(s, name, sensor_name_len);
679                 }
680 }
681
682
683 static void setup_trigger_names (void)
684 {
685         char filename[PATH_MAX];
686         char buf[MAX_NAME_SIZE];
687         int len;
688         int s;
689         int trigger;
690         int ret;
691
692         /* By default, use the name-dev convention that most drivers use */
693         for (s=0; s<sensor_count; s++)
694                 snprintf(sensor[s].init_trigger_name, MAX_NAME_SIZE, "%s-dev%d", sensor[s].internal_name, sensor[s].dev_num);
695
696         /* Now have a look to /sys/bus/iio/devices/triggerX entries */
697
698         for (trigger=0; trigger<MAX_TRIGGERS; trigger++) {
699
700                 snprintf(filename, sizeof(filename), TRIGGER_FILE_PATH,trigger);
701
702                 ret = sysfs_read_str(filename, buf, sizeof(buf));
703
704                 if (ret < 0)
705                         break;
706
707                 /* Record initial and any-motion triggers names */
708                 update_sensor_matching_trigger_name(buf);
709         }
710
711         /*
712          * Certain drivers expose only motion triggers even though they should be continous. For these, use the default trigger name as the motion
713          * trigger. The code generating intermediate events is dependent on motion_trigger_name being set to a non empty string.
714          */
715
716         for (s=0; s<sensor_count; s++)
717                 if ((sensor[s].quirks & QUIRK_TERSE_DRIVER) && sensor[s].motion_trigger_name[0] == '\0')
718                         strcpy(sensor[s].motion_trigger_name, sensor[s].init_trigger_name);
719
720         for (s=0; s<sensor_count; s++)
721                 if (!sensor[s].is_polling) {
722                         ALOGI("Sensor %d (%s) default trigger: %s\n", s, sensor[s].friendly_name, sensor[s].init_trigger_name);
723                         if (sensor[s].motion_trigger_name[0])
724                                 ALOGI("Sensor %d (%s) motion trigger: %s\n", s, sensor[s].friendly_name, sensor[s].motion_trigger_name);
725                 }
726 }
727
728 void enumerate_sensors (void)
729 {
730         /*
731          * Discover supported sensors and allocate control structures for them. Multiple sensors can potentially rely on a single iio device (each
732          * using their own channels). We can't have multiple sensors of the same type on the same device. In case of detection as both a poll-mode
733          * and trigger-based sensor, use the trigger usage mode.
734          */
735         char poll_sensors[CATALOG_SIZE];
736         char trig_sensors[CATALOG_SIZE];
737         int dev_num;
738         unsigned int i;
739         int trig_found;
740
741         for (dev_num=0; dev_num<MAX_DEVICES; dev_num++) {
742                 trig_found = 0;
743
744                 discover_poll_sensors(dev_num, poll_sensors);
745                 discover_trig_sensors(dev_num, trig_sensors);
746
747                 for (i=0; i<CATALOG_SIZE; i++)
748                         if (trig_sensors[i]) {
749                                 add_sensor(dev_num, i, 0);
750                                 trig_found = 1;
751                         }
752                         else
753                                 if (poll_sensors[i])
754                                         add_sensor(dev_num, i, 1);
755
756                 if (trig_found)
757                         build_sensor_report_maps(dev_num);
758         }
759
760         ALOGI("Discovered %d sensors\n", sensor_count);
761
762         /* Set up default - as well as custom - trigger names */
763         setup_trigger_names();
764
765         virtual_sensors_check();
766 }
767
768
769 void delete_enumeration_data (void)
770 {
771         int i;
772         for (i = 0; i < sensor_count; i++)
773                 if (sensor[i].cal_data) {
774                         free(sensor[i].cal_data);
775                         sensor[i].cal_data = NULL;
776                         sensor[i].cal_level = 0;
777                 }
778
779         /* Reset sensor count */
780         sensor_count = 0;
781 }
782
783
784 int get_sensors_list (__attribute__((unused)) struct sensors_module_t* module,
785                       struct sensor_t const** list)
786 {
787         *list = sensor_desc;
788         return sensor_count;
789 }
790