OSDN Git Service

GMINL-7944: Introduce internal sensor types for ALS
[android-x86/hardware-intel-libsensors.git] / enumeration.c
index d1372ea..fa02c28 100644 (file)
@@ -1,10 +1,11 @@
 /*
- * Copyright (C) 2014 Intel Corporation.
+ * Copyright (C) 2014-2015 Intel Corporation.
  */
 
 #include <ctype.h>
 #include <dirent.h>
 #include <stdlib.h>
+#include <fcntl.h>
 #include <utils/Log.h>
 #include <hardware/sensors.h>
 #include "enumeration.h"
   */
 
 sensor_catalog_entry_t sensor_catalog[] = {
-       DECLARE_SENSOR3("accel",      SENSOR_TYPE_ACCELEROMETER,  "x", "y", "z")
-       DECLARE_SENSOR3("anglvel",    SENSOR_TYPE_GYROSCOPE,      "x", "y", "z")
-       DECLARE_SENSOR3("magn",       SENSOR_TYPE_MAGNETIC_FIELD, "x", "y", "z")
-       DECLARE_SENSOR1("intensity",  SENSOR_TYPE_LIGHT,          "both"       )
-       DECLARE_SENSOR0("illuminance",SENSOR_TYPE_LIGHT                        )
-       DECLARE_SENSOR3("incli",      SENSOR_TYPE_ORIENTATION,    "x", "y", "z")
-       DECLARE_SENSOR4("rot",        SENSOR_TYPE_ROTATION_VECTOR,
-                                        "quat_x", "quat_y", "quat_z", "quat_w")
-       DECLARE_SENSOR0("temp",       SENSOR_TYPE_AMBIENT_TEMPERATURE          )
-       DECLARE_SENSOR0("proximity",  SENSOR_TYPE_PROXIMITY                    )
-       DECLARE_VIRTUAL(SENSOR_TYPE_GYROSCOPE_UNCALIBRATED                     )
-       DECLARE_VIRTUAL(SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED                 )
+       {
+               .tag            = "accel",
+               .type           = SENSOR_TYPE_ACCELEROMETER,
+               .num_channels   = 3,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_NAMED_CHANNEL("accel", "x") },
+                       { DECLARE_NAMED_CHANNEL("accel", "y") },
+                       { DECLARE_NAMED_CHANNEL("accel", "z") },
+               },
+       },
+       {
+               .tag            = "anglvel",
+               .type           = SENSOR_TYPE_GYROSCOPE,
+               .num_channels   = 3,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_NAMED_CHANNEL("anglvel", "x") },
+                       { DECLARE_NAMED_CHANNEL("anglvel", "y") },
+                       { DECLARE_NAMED_CHANNEL("anglvel", "z") },
+               },
+       },
+       {
+               .tag            = "magn",
+               .type           = SENSOR_TYPE_MAGNETIC_FIELD,
+               .num_channels   = 3,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_NAMED_CHANNEL("magn", "x") },
+                       { DECLARE_NAMED_CHANNEL("magn", "y") },
+                       { DECLARE_NAMED_CHANNEL("magn", "z") },
+               },
+       },
+       {
+               .tag            = "intensity",
+               .type           = SENSOR_TYPE_INTERNAL_INTENSITY,
+               .num_channels   = 1,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_NAMED_CHANNEL("intensity", "both") },
+               },
+       },
+       {
+               .tag            = "illuminance",
+               .type           = SENSOR_TYPE_INTERNAL_ILLUMINANCE,
+               .num_channels   = 1,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_GENERIC_CHANNEL("illuminance") },
+               },
+       },
+       {
+               .tag            = "incli",
+               .type           = SENSOR_TYPE_ORIENTATION,
+               .num_channels   = 3,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_NAMED_CHANNEL("incli", "x") },
+                       { DECLARE_NAMED_CHANNEL("incli", "y") },
+                       { DECLARE_NAMED_CHANNEL("incli", "z") },
+               },
+       },
+       {
+               .tag            = "rot",
+               .type           = SENSOR_TYPE_ROTATION_VECTOR,
+               .num_channels   = 4,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_NAMED_CHANNEL("rot", "quat_x") },
+                       { DECLARE_NAMED_CHANNEL("rot", "quat_y") },
+                       { DECLARE_NAMED_CHANNEL("rot", "quat_z") },
+                       { DECLARE_NAMED_CHANNEL("rot", "quat_w") },
+               },
+       },
+       {
+               .tag            = "temp",
+               .type           = SENSOR_TYPE_AMBIENT_TEMPERATURE,
+               .num_channels   = 1,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_GENERIC_CHANNEL("temp") },
+               },
+       },
+       {
+               .tag            = "proximity",
+               .type           = SENSOR_TYPE_PROXIMITY,
+               .num_channels   = 1,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_GENERIC_CHANNEL("proximity") },
+               },
+       },
+       {
+               .tag            = "",
+               .type           = SENSOR_TYPE_GYROSCOPE_UNCALIBRATED,
+               .num_channels   = 0,
+               .is_virtual     = 1,
+               .channel = {
+                       { DECLARE_GENERIC_CHANNEL("") },
+               },
+
+       },
+       {
+               .tag            = "",
+               .type           = SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED,
+               .num_channels   = 0,
+               .is_virtual     = 1,
+               .channel = {
+                       { DECLARE_GENERIC_CHANNEL("") },
+               },
+       },
+       {
+               .tag            = "steps",
+               .type           = SENSOR_TYPE_STEP_COUNTER,
+               .num_channels   = 1,
+               .is_virtual     = 0,
+               .channel = {
+                       { DECLARE_GENERIC_CHANNEL("steps") },
+               },
+       },
+       {
+               .tag            = "steps",
+               .type           = SENSOR_TYPE_STEP_DETECTOR,
+               .num_channels   = 1,
+               .is_virtual     = 0,
+               .channel = {
+                       {
+                               DECLARE_VOID_CHANNEL("steps")
+                               .num_events = 1,
+                               .event = {
+                                       { DECLARE_NAMED_EVENT("steps", "change") },
+                               },
+                       },
+               },
+       },
+       {
+               .tag            = "proximity",
+               .type           = SENSOR_TYPE_PROXIMITY,
+               .num_channels   = 4,
+               .is_virtual     = 0,
+               .channel = {
+                       {
+                               DECLARE_VOID_CHANNEL("proximity0")
+                               .num_events = 1,
+                               .event = {
+                                       { DECLARE_EVENT("proximity0", "_", "", "", "thresh", "_", "either") },
+                               },
+                       },
+                       {
+                               DECLARE_VOID_CHANNEL("proximity1")
+                               .num_events = 1,
+                               .event = {
+                                       { DECLARE_EVENT("proximity1", "_", "", "", "thresh", "_", "either") },
+                               },
+                       },
+                       {
+                               DECLARE_VOID_CHANNEL("proximity2")
+                               .num_events = 1,
+                               .event = {
+                                       { DECLARE_EVENT("proximity2", "_", "", "", "thresh", "_", "either") },
+                               },
+                       },
+                       {
+                               DECLARE_VOID_CHANNEL("proximity3")
+                               .num_events = 1,
+                               .event = {
+                                       { DECLARE_EVENT("proximity3", "_", "", "", "thresh", "_", "either") },
+                               },
+                       },
+               },
+       },
 };
 
-#define CATALOG_SIZE   ARRAY_SIZE(sensor_catalog)
+unsigned int catalog_size = ARRAY_SIZE(sensor_catalog);
 
 /* ACPI PLD (physical location of device) definitions, as used with sensors */
 
@@ -57,6 +217,22 @@ sensor_info_t       sensor[MAX_SENSORS];            /* Internal descriptors      */
 int            sensor_count;                   /* Detected sensors          */
 
 
+/* if the sensor has an _en attribute, we need to enable it */
+int get_needs_enable(int dev_num, const char *tag)
+{
+       char sysfs_path[PATH_MAX];
+       int fd;
+
+       sprintf(sysfs_path, SENSOR_ENABLE_PATH, dev_num, tag);
+
+       fd = open(sysfs_path, O_RDWR);
+       if (fd == -1)
+               return 0;
+
+       close(fd);
+       return 1;
+}
+
 static void setup_properties_from_pld (int s, int panel, int rotation,
                                       int num_channels)
 {
@@ -200,6 +376,20 @@ static void decode_placement_information (int dev_num, int num_channels, int s)
 }
 
 
+static int map_internal_to_external_type (int sensor_type)
+{
+       /* Most sensors are internally identified using the Android type, but for some we use a different type specification internally */
+
+       switch (sensor_type) {
+               case SENSOR_TYPE_INTERNAL_ILLUMINANCE:
+               case SENSOR_TYPE_INTERNAL_INTENSITY:
+                       return SENSOR_TYPE_LIGHT;
+
+               default:
+                       return sensor_type;
+       }
+}
+
 static void populate_descriptors (int s, int sensor_type)
 {
        int32_t         min_delay_us;
@@ -210,7 +400,7 @@ static void populate_descriptors (int s, int sensor_type)
        sensor_desc[s].vendor           = sensor_get_vendor(s);
        sensor_desc[s].version          = sensor_get_version(s);
        sensor_desc[s].handle           = s;
-       sensor_desc[s].type             = sensor_type;
+       sensor_desc[s].type             = map_internal_to_external_type(sensor_type);
 
        sensor_desc[s].maxRange         = sensor_get_max_range(s);
        sensor_desc[s].resolution       = sensor_get_resolution(s);
@@ -270,7 +460,7 @@ static void add_virtual_sensor (int catalog_index)
 }
 
 
-static void add_sensor (int dev_num, int catalog_index, int use_polling)
+static int add_sensor (int dev_num, int catalog_index, int mode)
 {
        int s;
        int sensor_type;
@@ -287,7 +477,7 @@ static void add_sensor (int dev_num, int catalog_index, int use_polling)
 
        if (sensor_count == MAX_SENSORS) {
                ALOGE("Too many sensors!\n");
-               return;
+               return -1;
        }
 
        sensor_type = sensor_catalog[catalog_index].type;
@@ -303,22 +493,33 @@ static void add_sensor (int dev_num, int catalog_index, int use_polling)
        sensor[s].dev_num       = dev_num;
        sensor[s].catalog_index = catalog_index;
        sensor[s].type          = sensor_type;
-       sensor[s].is_polling    = use_polling;
+       sensor[s].mode          = mode;
 
         num_channels = sensor_catalog[catalog_index].num_channels;
 
-        if (use_polling)
+        if (mode == MODE_POLL)
                 sensor[s].num_channels = 0;
         else
                 sensor[s].num_channels = num_channels;
 
+       /* Populate the quirks array */
+       sensor_get_quirks(s);
+
+       /* Reject interfaces that may have been disabled through a quirk for this driver */
+       if ((mode == MODE_EVENT   && (sensor[s].quirks & QUIRK_NO_EVENT_MODE)) ||
+           (mode == MODE_TRIGGER && (sensor[s].quirks & QUIRK_NO_TRIG_MODE )) ||
+            (mode == MODE_POLL    && (sensor[s].quirks & QUIRK_NO_POLL_MODE ))) {
+               memset(&sensor[s], 0, sizeof(sensor[0]));
+               return -1;
+       }
+
        prefix = sensor_catalog[catalog_index].tag;
 
        /*
         * receiving the illumination sensor calibration inputs from
         * the Android properties and setting it within sysfs
         */
-       if (sensor_type == SENSOR_TYPE_LIGHT) {
+       if (sensor_type == SENSOR_TYPE_INTERNAL_ILLUMINANCE) {
                retval = sensor_get_illumincalib(s);
                 if (retval > 0) {
                        sprintf(sysfs_path, ILLUMINATION_CALIBPATH, dev_num);
@@ -408,34 +609,43 @@ static void add_sensor (int dev_num, int catalog_index, int use_polling)
        for (c = 1; c < num_channels; c++)
                sensor[s].channel[c].opt_scale = 1;
 
+       for (c = 0; c < num_channels; c++) {
+               /* Check the presence of the channel's input_path */
+               sprintf(sysfs_path, BASE_PATH "%s", dev_num,
+                       sensor_catalog[catalog_index].channel[c].input_path);
+               sensor[s].channel[c].input_path_present = (access(sysfs_path, R_OK) != -1);
+               /* Check the presence of the channel's raw_path */
+               sprintf(sysfs_path, BASE_PATH "%s", dev_num,
+                       sensor_catalog[catalog_index].channel[c].raw_path);
+               sensor[s].channel[c].raw_path_present = (access(sysfs_path, R_OK) != -1);
+       }
+
        /* Read ACPI _PLD attributes for this sensor, if there are any */
        decode_placement_information(dev_num, num_channels, s);
 
-        /*
-         * See if we have optional correction scaling factors for each of the
-         * channels of this sensor. These would be expressed using properties
-         * like iio.accel.y.opt_scale = -1. In case of a single channel we also
-         * support things such as iio.temp.opt_scale = -1. Note that this works
-         * for all types of sensors, and whatever transform is selected, on top
-         * of any previous conversions.
-         */
+       /*
+        * See if we have optional correction scaling factors for each of the
+        * channels of this sensor. These would be expressed using properties
+        * like iio.accel.y.opt_scale = -1. In case of a single channel we also
+        * support things such as iio.temp.opt_scale = -1. Note that this works
+        * for all types of sensors, and whatever transform is selected, on top
+        * of any previous conversions.
+        */
 
-        if (num_channels) {
+       if (num_channels) {
                for (c = 0; c < num_channels; c++) {
                        ch_name = sensor_catalog[catalog_index].channel[c].name;
                        sprintf(suffix, "%s.opt_scale", ch_name);
                        if (!sensor_get_fl_prop(s, suffix, &opt_scale))
                                sensor[s].channel[c].opt_scale = opt_scale;
                }
-        } else
+        } else {
                if (!sensor_get_fl_prop(s, "opt_scale", &opt_scale))
                        sensor[s].channel[0].opt_scale = opt_scale;
+        }
 
        populate_descriptors(s, sensor_type);
 
-       /* Populate the quirks array */
-       sensor_get_quirks(s);
-
        if (sensor[s].internal_name[0] == '\0') {
                /*
                 * In case the kernel-mode driver doesn't expose a name for
@@ -447,7 +657,13 @@ static void add_sensor (int dev_num, int catalog_index, int use_polling)
        }
 
        switch (sensor_type) {
-               case SENSOR_TYPE_GYROSCOPE:
+               case SENSOR_TYPE_ACCELEROMETER:
+                       /* Only engage accelerometer bias compensation if really needed */
+                       if (sensor_get_quirks(s) & QUIRK_BIASED)
+                               sensor[s].cal_data = calloc(1, sizeof(accel_cal_t));
+                       break;
+
+                       case SENSOR_TYPE_GYROSCOPE:
                        sensor[s].cal_data = malloc(sizeof(gyro_cal_t));
                        break;
 
@@ -470,93 +686,12 @@ static void add_sensor (int dev_num, int catalog_index, int use_polling)
        if (sensor_get_order(s, sensor[s].order))
                sensor[s].quirks |= QUIRK_FIELD_ORDERING;
 
-       sensor_count++;
-}
-
-
-static void discover_poll_sensors (int dev_num, char map[CATALOG_SIZE])
-{
-       char base_dir[PATH_MAX];
-       DIR *dir;
-       struct dirent *d;
-       unsigned int i;
-        int c;
-
-       memset(map, 0, CATALOG_SIZE);
-
-       snprintf(base_dir, sizeof(base_dir), BASE_PATH, dev_num);
-
-       dir = opendir(base_dir);
-       if (!dir) {
-               return;
-       }
-
-       /* Enumerate entries in this iio device's base folder */
-
-       while ((d = readdir(dir))) {
-               if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
-                       continue;
-
-               /* If the name matches a catalog entry, flag it */
-               for (i = 0; i < CATALOG_SIZE; i++) {
-
-                       /* No discovery for virtual sensors */
-                       if (sensor_catalog[i].is_virtual)
-                               continue;
-
-                       for (c=0; c<sensor_catalog[i].num_channels; c++)
-                               if (!strcmp(d->d_name,sensor_catalog[i].channel[c].raw_path) || !strcmp(d->d_name, sensor_catalog[i].channel[c].input_path)) {
-                                       map[i] = 1;
-                                       break;
-                       }
-               }
-       }
-
-       closedir(dir);
-}
-
-
-static void discover_trig_sensors (int dev_num, char map[CATALOG_SIZE])
-{
-       char scan_elem_dir[PATH_MAX];
-       DIR *dir;
-       struct dirent *d;
-       unsigned int i;
-
-       memset(map, 0, CATALOG_SIZE);
-
-       /* Enumerate entries in this iio device's scan_elements folder */
-
-       snprintf(scan_elem_dir, sizeof(scan_elem_dir), CHANNEL_PATH, dev_num);
+       sensor[s].needs_enable = get_needs_enable(dev_num, sensor_catalog[catalog_index].tag);
 
-       dir = opendir(scan_elem_dir);
-       if (!dir) {
-               return;
-       }
-
-       while ((d = readdir(dir))) {
-               if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
-                       continue;
-
-               /* Compare en entry to known ones and create matching sensors */
-
-               for (i = 0; i<CATALOG_SIZE; i++) {
-
-                       /* No discovery for virtual sensors */
-                       if (sensor_catalog[i].is_virtual)
-                               continue;
-
-                       if (!strcmp(d->d_name, sensor_catalog[i].channel[0].en_path)) {
-                                       map[i] = 1;
-                                       break;
-                       }
-               }
-       }
-
-       closedir(dir);
+       sensor_count++;
+       return 0;
 }
 
-
 static void virtual_sensors_check (void)
 {
        int i;
@@ -565,9 +700,9 @@ static void virtual_sensors_check (void)
        int has_mag = 0;
        int has_rot = 0;
        int has_ori = 0;
-       int catalog_size = CATALOG_SIZE;
        int gyro_cal_idx = 0;
        int magn_cal_idx = 0;
+       unsigned int j;
 
        for (i=0; i<sensor_count; i++)
                switch (sensor[i].type) {
@@ -590,38 +725,38 @@ static void virtual_sensors_check (void)
                                break;
                }
 
-       for (i=0; i<catalog_size; i++)
-               switch (sensor_catalog[i].type) {
+       for (j=0; j<catalog_size; j++)
+               switch (sensor_catalog[j].type) {
                        /*
-                       * If we have accel + gyro + magn but no rotation vector sensor,
-                       * SensorService replaces the HAL provided orientation sensor by the
-                       * AOSP version... provided we report one. So initialize a virtual
-                       * orientation sensor with zero values, which will get replaced. See:
-                       * frameworks/native/services/sensorservice/SensorService.cpp, looking
-                       * for SENSOR_TYPE_ROTATION_VECTOR; that code should presumably fall
-                       * back to mUserSensorList.add instead of replaceAt, but accommodate it.
-                       */
+                        * If we have accel + gyro + magn but no rotation vector sensor,
+                        * SensorService replaces the HAL provided orientation sensor by the
+                        * AOSP version... provided we report one. So initialize a virtual
+                        * orientation sensor with zero values, which will get replaced. See:
+                        * frameworks/native/services/sensorservice/SensorService.cpp, looking
+                        * for SENSOR_TYPE_ROTATION_VECTOR; that code should presumably fall
+                        * back to mUserSensorList.add instead of replaceAt, but accommodate it.
+                        */
 
                        case SENSOR_TYPE_ORIENTATION:
                                if (has_acc && has_gyr && has_mag && !has_rot && !has_ori)
-                                       add_sensor(0, i, 1);
+                                       add_sensor(0, j, MODE_POLL);
                                break;
                        case SENSOR_TYPE_GYROSCOPE_UNCALIBRATED:
                                if (has_gyr) {
                                        sensor[sensor_count].base_count = 1;
                                        sensor[sensor_count].base[0] = gyro_cal_idx;
-                                       add_virtual_sensor(i);
+                                       add_virtual_sensor(j);
                                }
                                break;
                        case SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED:
                                if (has_mag) {
                                        sensor[sensor_count].base_count = 1;
                                        sensor[sensor_count].base[0] = magn_cal_idx;
-                                       add_virtual_sensor(i);
+                                       add_virtual_sensor(j);
                                }
                                break;
                        default:
-                       break;
+                               break;
                }
 }
 
@@ -740,7 +875,7 @@ static void setup_trigger_names (void)
                        strcpy(sensor[s].motion_trigger_name, sensor[s].init_trigger_name);
 
        for (s=0; s<sensor_count; s++)
-               if (!sensor[s].is_polling) {
+               if (sensor[s].mode == MODE_TRIGGER) {
                        ALOGI("Sensor %d (%s) default trigger: %s\n", s, sensor[s].friendly_name, sensor[s].init_trigger_name);
                        if (sensor[s].motion_trigger_name[0])
                                ALOGI("Sensor %d (%s) motion trigger: %s\n", s, sensor[s].friendly_name, sensor[s].motion_trigger_name);
@@ -754,8 +889,9 @@ void enumerate_sensors (void)
         * 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
         * and trigger-based sensor, use the trigger usage mode.
         */
-       char poll_sensors[CATALOG_SIZE];
-       char trig_sensors[CATALOG_SIZE];
+       char poll_sensors[catalog_size];
+       char trig_sensors[catalog_size];
+       char event_sensors[catalog_size];
        int dev_num;
        unsigned int i;
        int trig_found;
@@ -763,17 +899,25 @@ void enumerate_sensors (void)
        for (dev_num=0; dev_num<MAX_DEVICES; dev_num++) {
                trig_found = 0;
 
-               discover_poll_sensors(dev_num, poll_sensors);
-               discover_trig_sensors(dev_num, trig_sensors);
+               discover_sensors(dev_num, BASE_PATH, poll_sensors, check_poll_sensors);
+               discover_sensors(dev_num, CHANNEL_PATH, trig_sensors, check_trig_sensors);
+               discover_sensors(dev_num, EVENTS_PATH, event_sensors, check_event_sensors);
 
-               for (i=0; i<CATALOG_SIZE; i++)
-                       if (trig_sensors[i]) {
-                               add_sensor(dev_num, i, 0);
+               for (i=0; i<catalog_size; i++) {
+                       /* Try using events interface */
+                       if (event_sensors[i] && !add_sensor(dev_num, i, MODE_EVENT))
+                               continue;
+
+                       /* Then trigger */
+                       if (trig_sensors[i] && !add_sensor(dev_num, i, MODE_TRIGGER)) {
                                trig_found = 1;
+                               continue;
                        }
-                       else
-                               if (poll_sensors[i])
-                                       add_sensor(dev_num, i, 1);
+
+                       /* Try polling otherwise */
+                       if (poll_sensors[i])
+                               add_sensor(dev_num, i, MODE_POLL);
+               }
 
                if (trig_found)
                        build_sensor_report_maps(dev_num);