The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 1 | /* |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 2 | * Copyright (C) 2012 The Android Open Source Project |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ANDROID_SENSORS_INTERFACE_H |
| 18 | #define ANDROID_SENSORS_INTERFACE_H |
| 19 | |
| 20 | #include <stdint.h> |
| 21 | #include <sys/cdefs.h> |
| 22 | #include <sys/types.h> |
| 23 | |
| 24 | #include <hardware/hardware.h> |
Mike Lockwood | 21b652f | 2009-05-22 10:05:48 -0400 | [diff] [blame] | 25 | #include <cutils/native_handle.h> |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 26 | |
Andreas Huber | 9219017 | 2016-10-10 13:18:52 -0700 | [diff] [blame] | 27 | #include "sensors-base.h" |
| 28 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 29 | __BEGIN_DECLS |
| 30 | |
Mathias Agopian | 56f66cc | 2012-11-08 15:57:38 -0800 | [diff] [blame] | 31 | /*****************************************************************************/ |
| 32 | |
| 33 | #define SENSORS_HEADER_VERSION 1 |
| 34 | #define SENSORS_MODULE_API_VERSION_0_1 HARDWARE_MODULE_API_VERSION(0, 1) |
| 35 | #define SENSORS_DEVICE_API_VERSION_0_1 HARDWARE_DEVICE_API_VERSION_2(0, 1, SENSORS_HEADER_VERSION) |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 36 | #define SENSORS_DEVICE_API_VERSION_1_0 HARDWARE_DEVICE_API_VERSION_2(1, 0, SENSORS_HEADER_VERSION) |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 37 | #define SENSORS_DEVICE_API_VERSION_1_1 HARDWARE_DEVICE_API_VERSION_2(1, 1, SENSORS_HEADER_VERSION) |
Aravind Akella | 477fbd5 | 2014-04-07 22:46:01 +0000 | [diff] [blame] | 38 | #define SENSORS_DEVICE_API_VERSION_1_2 HARDWARE_DEVICE_API_VERSION_2(1, 2, SENSORS_HEADER_VERSION) |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 39 | #define SENSORS_DEVICE_API_VERSION_1_3 HARDWARE_DEVICE_API_VERSION_2(1, 3, SENSORS_HEADER_VERSION) |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 40 | #define SENSORS_DEVICE_API_VERSION_1_4 HARDWARE_DEVICE_API_VERSION_2(1, 4, SENSORS_HEADER_VERSION) |
Mathias Agopian | 56f66cc | 2012-11-08 15:57:38 -0800 | [diff] [blame] | 41 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 42 | /** |
Clay Murphy | 8db1fb4 | 2013-12-19 09:58:28 -0800 | [diff] [blame] | 43 | * Please see the Sensors section of source.android.com for an |
| 44 | * introduction to and detailed descriptions of Android sensor types: |
| 45 | * http://source.android.com/devices/sensors/index.html |
| 46 | */ |
| 47 | |
| 48 | /** |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 49 | * The id of this module |
| 50 | */ |
| 51 | #define SENSORS_HARDWARE_MODULE_ID "sensors" |
| 52 | |
| 53 | /** |
| 54 | * Name of the sensors device to open |
| 55 | */ |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 56 | #define SENSORS_HARDWARE_POLL "poll" |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 57 | |
| 58 | /** |
Peng Xu | f144435 | 2017-01-17 14:53:16 -0800 | [diff] [blame] | 59 | * Sensor handle is greater than 0 and less than INT32_MAX. |
| 60 | * |
| 61 | * **** Deprecated **** |
| 62 | * Defined values below are kept for code compatibility. Note sensor handle can be as large as |
| 63 | * INT32_MAX. |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 64 | */ |
| 65 | #define SENSORS_HANDLE_BASE 0 |
Peng Xu | f144435 | 2017-01-17 14:53:16 -0800 | [diff] [blame] | 66 | #define SENSORS_HANDLE_BITS 31 |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 67 | #define SENSORS_HANDLE_COUNT (1ull<<SENSORS_HANDLE_BITS) |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 68 | |
| 69 | |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 70 | /* |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 71 | * **** Deprecated ***** |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 72 | * flags for (*batch)() |
| 73 | * Availability: SENSORS_DEVICE_API_VERSION_1_0 |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 74 | * see (*batch)() documentation for details. |
| 75 | * Deprecated as of SENSORS_DEVICE_API_VERSION_1_3. |
| 76 | * WAKE_UP_* sensors replace WAKE_UPON_FIFO_FULL concept. |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 77 | */ |
| 78 | enum { |
| 79 | SENSORS_BATCH_DRY_RUN = 0x00000001, |
| 80 | SENSORS_BATCH_WAKE_UPON_FIFO_FULL = 0x00000002 |
| 81 | }; |
| 82 | |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 83 | /* |
| 84 | * what field for meta_data_event_t |
| 85 | */ |
| 86 | enum { |
| 87 | /* a previous flush operation has completed */ |
Andreas Huber | 9219017 | 2016-10-10 13:18:52 -0700 | [diff] [blame] | 88 | // META_DATA_FLUSH_COMPLETE = 1, |
Mathias Agopian | af32a8d | 2013-08-06 20:33:38 -0700 | [diff] [blame] | 89 | META_DATA_VERSION /* always last, leave auto-assigned */ |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 92 | /* |
Aravind Akella | 477fbd5 | 2014-04-07 22:46:01 +0000 | [diff] [blame] | 93 | * The permission to use for body sensors (like heart rate monitors). |
| 94 | * See sensor types for more details on what sensors should require this |
| 95 | * permission. |
| 96 | */ |
| 97 | #define SENSOR_PERMISSION_BODY_SENSORS "android.permission.BODY_SENSORS" |
| 98 | |
| 99 | /* |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 100 | * sensor flags legacy names |
| 101 | * |
| 102 | * please use SENSOR_FLAG_* directly for new implementation. |
| 103 | * @see sensor_t |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 104 | */ |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 105 | |
Peng Xu | d156299 | 2016-03-29 18:14:05 -0700 | [diff] [blame] | 106 | #define SENSOR_FLAG_MASK(nbit, shift) (((1<<(nbit))-1)<<(shift)) |
| 107 | #define SENSOR_FLAG_MASK_1(shift) SENSOR_FLAG_MASK(1, shift) |
| 108 | |
| 109 | /* |
| 110 | * Mask and shift for reporting mode sensor flags defined above. |
| 111 | */ |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 112 | #define REPORTING_MODE_SHIFT SENSOR_FLAG_SHIFT_REPORTING_MODE |
Peng Xu | d156299 | 2016-03-29 18:14:05 -0700 | [diff] [blame] | 113 | #define REPORTING_MODE_NBIT (3) |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 114 | #define REPORTING_MODE_MASK SENSOR_FLAG_MASK_REPORTING_MODE |
Peng Xu | d156299 | 2016-03-29 18:14:05 -0700 | [diff] [blame] | 115 | |
| 116 | /* |
| 117 | * Mask and shift for data_injection mode sensor flags defined above. |
| 118 | */ |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 119 | #define DATA_INJECTION_SHIFT SENSOR_FLAG_SHIFT_DATA_INJECTION |
| 120 | #define DATA_INJECTION_MASK SENSOR_FLAG_DATA_INJECTION |
Peng Xu | d156299 | 2016-03-29 18:14:05 -0700 | [diff] [blame] | 121 | |
| 122 | /* |
| 123 | * Mask and shift for dynamic sensor flag. |
| 124 | */ |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 125 | #define DYNAMIC_SENSOR_SHIFT SENSOR_FLAG_SHIFT_DYNAMIC_SENSOR |
| 126 | #define DYNAMIC_SENSOR_MASK SENSOR_FLAG_DYNAMIC_SENSOR |
Peng Xu | d156299 | 2016-03-29 18:14:05 -0700 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * Mask and shift for sensor additional information support. |
| 130 | */ |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 131 | #define ADDITIONAL_INFO_SHIFT SENSOR_FLAG_SHIFT_ADDITIONAL_INFO |
| 132 | #define ADDITIONAL_INFO_MASK SENSOR_FLAG_ADDITIONAL_INFO |
Peng Xu | d156299 | 2016-03-29 18:14:05 -0700 | [diff] [blame] | 133 | |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 134 | /* |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 135 | * Legacy alias of SENSOR_TYPE_MAGNETIC_FIELD. |
| 136 | * |
| 137 | * Previously, the type of a sensor measuring local magnetic field is named |
| 138 | * SENSOR_TYPE_GEOMAGNETIC_FIELD and SENSOR_TYPE_MAGNETIC_FIELD is its alias. |
| 139 | * SENSOR_TYPE_MAGNETIC_FIELD is redefined as primary name to avoid confusion. |
| 140 | * SENSOR_TYPE_GEOMAGNETIC_FIELD is the alias and is deprecating. New implementation must not use |
| 141 | * SENSOR_TYPE_GEOMAGNETIC_FIELD. |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 142 | */ |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 143 | #define SENSOR_TYPE_GEOMAGNETIC_FIELD SENSOR_TYPE_MAGNETIC_FIELD |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 144 | |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 145 | /* |
| 146 | * Sensor string types for Android defined sensor types. |
| 147 | * |
| 148 | * For Android defined sensor types, string type will be override in sensor service and thus no |
| 149 | * longer needed to be added to sensor_t data structure. |
| 150 | * |
| 151 | * These definitions are going to be removed soon. |
| 152 | */ |
| 153 | #define SENSOR_STRING_TYPE_ACCELEROMETER "android.sensor.accelerometer" |
| 154 | #define SENSOR_STRING_TYPE_MAGNETIC_FIELD "android.sensor.magnetic_field" |
| 155 | #define SENSOR_STRING_TYPE_ORIENTATION "android.sensor.orientation" |
| 156 | #define SENSOR_STRING_TYPE_GYROSCOPE "android.sensor.gyroscope" |
| 157 | #define SENSOR_STRING_TYPE_LIGHT "android.sensor.light" |
| 158 | #define SENSOR_STRING_TYPE_PRESSURE "android.sensor.pressure" |
| 159 | #define SENSOR_STRING_TYPE_TEMPERATURE "android.sensor.temperature" |
| 160 | #define SENSOR_STRING_TYPE_PROXIMITY "android.sensor.proximity" |
| 161 | #define SENSOR_STRING_TYPE_GRAVITY "android.sensor.gravity" |
| 162 | #define SENSOR_STRING_TYPE_LINEAR_ACCELERATION "android.sensor.linear_acceleration" |
| 163 | #define SENSOR_STRING_TYPE_ROTATION_VECTOR "android.sensor.rotation_vector" |
| 164 | #define SENSOR_STRING_TYPE_RELATIVE_HUMIDITY "android.sensor.relative_humidity" |
| 165 | #define SENSOR_STRING_TYPE_AMBIENT_TEMPERATURE "android.sensor.ambient_temperature" |
| 166 | #define SENSOR_STRING_TYPE_MAGNETIC_FIELD_UNCALIBRATED "android.sensor.magnetic_field_uncalibrated" |
| 167 | #define SENSOR_STRING_TYPE_GAME_ROTATION_VECTOR "android.sensor.game_rotation_vector" |
| 168 | #define SENSOR_STRING_TYPE_GYROSCOPE_UNCALIBRATED "android.sensor.gyroscope_uncalibrated" |
| 169 | #define SENSOR_STRING_TYPE_SIGNIFICANT_MOTION "android.sensor.significant_motion" |
| 170 | #define SENSOR_STRING_TYPE_STEP_DETECTOR "android.sensor.step_detector" |
| 171 | #define SENSOR_STRING_TYPE_STEP_COUNTER "android.sensor.step_counter" |
| 172 | #define SENSOR_STRING_TYPE_GEOMAGNETIC_ROTATION_VECTOR "android.sensor.geomagnetic_rotation_vector" |
| 173 | #define SENSOR_STRING_TYPE_HEART_RATE "android.sensor.heart_rate" |
| 174 | #define SENSOR_STRING_TYPE_TILT_DETECTOR "android.sensor.tilt_detector" |
| 175 | #define SENSOR_STRING_TYPE_WAKE_GESTURE "android.sensor.wake_gesture" |
| 176 | #define SENSOR_STRING_TYPE_GLANCE_GESTURE "android.sensor.glance_gesture" |
| 177 | #define SENSOR_STRING_TYPE_PICK_UP_GESTURE "android.sensor.pick_up_gesture" |
| 178 | #define SENSOR_STRING_TYPE_WRIST_TILT_GESTURE "android.sensor.wrist_tilt_gesture" |
| 179 | #define SENSOR_STRING_TYPE_DEVICE_ORIENTATION "android.sensor.device_orientation" |
| 180 | #define SENSOR_STRING_TYPE_POSE_6DOF "android.sensor.pose_6dof" |
Ashutosh Joshi | cb96331 | 2016-01-25 18:48:57 -0800 | [diff] [blame] | 181 | #define SENSOR_STRING_TYPE_STATIONARY_DETECT "android.sensor.stationary_detect" |
Ashutosh Joshi | cb96331 | 2016-01-25 18:48:57 -0800 | [diff] [blame] | 182 | #define SENSOR_STRING_TYPE_MOTION_DETECT "android.sensor.motion_detect" |
Ashutosh Joshi | cb96331 | 2016-01-25 18:48:57 -0800 | [diff] [blame] | 183 | #define SENSOR_STRING_TYPE_HEART_BEAT "android.sensor.heart_beat" |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 184 | #define SENSOR_STRING_TYPE_DYNAMIC_SENSOR_META "android.sensor.dynamic_sensor_meta" |
| 185 | #define SENSOR_STRING_TYPE_ADDITIONAL_INFO "android.sensor.additional_info" |
Ashutosh Joshi | d14335b | 2017-04-14 08:22:38 -0700 | [diff] [blame] | 186 | #define SENSOR_STRING_TYPE_LOW_LATENCY_OFFBODY_DETECT "android.sensor.low_latency_offbody_detect" |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 187 | #define SENSOR_STRING_TYPE_ACCELEROMETER_UNCALIBRATED "android.sensor.accelerometer_uncalibrated" |
Anthony Stange | e2a118a | 2020-01-16 15:34:20 -0500 | [diff] [blame] | 188 | #define SENSOR_STRING_TYPE_HINGE_ANGLE "android.sensor.hinge_angle" |
Brian Duddie | d3e67d5 | 2021-12-20 18:03:27 -0800 | [diff] [blame] | 189 | #define SENSOR_STRING_TYPE_HEAD_TRACKER "android.sensor.head_tracker" |
Peng Xu | 0743a5c | 2016-01-21 17:30:02 -0800 | [diff] [blame] | 190 | |
| 191 | /** |
Mathias Agopian | 56f66cc | 2012-11-08 15:57:38 -0800 | [diff] [blame] | 192 | * Values returned by the accelerometer in various locations in the universe. |
| 193 | * all values are in SI units (m/s^2) |
| 194 | */ |
| 195 | #define GRAVITY_SUN (275.0f) |
| 196 | #define GRAVITY_EARTH (9.80665f) |
| 197 | |
| 198 | /** Maximum magnetic field on Earth's surface */ |
| 199 | #define MAGNETIC_FIELD_EARTH_MAX (60.0f) |
| 200 | |
| 201 | /** Minimum magnetic field on Earth's surface */ |
| 202 | #define MAGNETIC_FIELD_EARTH_MIN (30.0f) |
| 203 | |
Peng Xu | e641ba9 | 2016-01-20 00:27:21 -0800 | [diff] [blame] | 204 | struct sensor_t; |
| 205 | |
Mathias Agopian | 56f66cc | 2012-11-08 15:57:38 -0800 | [diff] [blame] | 206 | /** |
| 207 | * sensor event data |
| 208 | */ |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 209 | typedef struct { |
| 210 | union { |
| 211 | float v[3]; |
| 212 | struct { |
| 213 | float x; |
| 214 | float y; |
| 215 | float z; |
| 216 | }; |
| 217 | struct { |
| 218 | float azimuth; |
| 219 | float pitch; |
| 220 | float roll; |
| 221 | }; |
| 222 | }; |
| 223 | int8_t status; |
| 224 | uint8_t reserved[3]; |
| 225 | } sensors_vec_t; |
| 226 | |
| 227 | /** |
Ashutosh Joshi | d1e2562 | 2017-01-10 18:33:53 -0800 | [diff] [blame] | 228 | * uncalibrated accelerometer, gyroscope and magnetometer event data |
Etienne Le Grand | ca85814 | 2013-02-26 19:17:20 -0800 | [diff] [blame] | 229 | */ |
| 230 | typedef struct { |
Etienne Le Grand | 28f0411 | 2013-03-27 18:59:10 -0700 | [diff] [blame] | 231 | union { |
| 232 | float uncalib[3]; |
| 233 | struct { |
| 234 | float x_uncalib; |
| 235 | float y_uncalib; |
| 236 | float z_uncalib; |
| 237 | }; |
| 238 | }; |
| 239 | union { |
| 240 | float bias[3]; |
| 241 | struct { |
| 242 | float x_bias; |
| 243 | float y_bias; |
| 244 | float z_bias; |
| 245 | }; |
| 246 | }; |
Etienne Le Grand | ca85814 | 2013-02-26 19:17:20 -0800 | [diff] [blame] | 247 | } uncalibrated_event_t; |
| 248 | |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 249 | /** |
| 250 | * Meta data event data |
| 251 | */ |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 252 | typedef struct meta_data_event { |
| 253 | int32_t what; |
| 254 | int32_t sensor; |
| 255 | } meta_data_event_t; |
| 256 | |
Etienne Le Grand | ca85814 | 2013-02-26 19:17:20 -0800 | [diff] [blame] | 257 | /** |
Peng Xu | e641ba9 | 2016-01-20 00:27:21 -0800 | [diff] [blame] | 258 | * Dynamic sensor meta event. See the description of SENSOR_TYPE_DYNAMIC_SENSOR_META type for |
| 259 | * details. |
| 260 | */ |
| 261 | typedef struct dynamic_sensor_meta_event { |
Peng Xu | e20707a | 2016-01-27 18:26:10 -0800 | [diff] [blame] | 262 | int32_t connected; |
| 263 | int32_t handle; |
Peng Xu | e641ba9 | 2016-01-20 00:27:21 -0800 | [diff] [blame] | 264 | const struct sensor_t * sensor; // should be NULL if connected == false |
Peng Xu | 69b5dba | 2016-04-22 22:34:51 -0700 | [diff] [blame] | 265 | uint8_t uuid[16]; // UUID of a dynamic sensor (using RFC 4122 byte order) |
| 266 | // For UUID 12345678-90AB-CDEF-1122-334455667788 the uuid field |
| 267 | // should be initialized as: |
| 268 | // {0x12, 0x34, 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF, 0x11, ...} |
Peng Xu | e641ba9 | 2016-01-20 00:27:21 -0800 | [diff] [blame] | 269 | } dynamic_sensor_meta_event_t; |
| 270 | |
| 271 | /** |
Etienne Le Grand | 7b36158 | 2014-05-16 11:08:28 -0700 | [diff] [blame] | 272 | * Heart rate event data |
| 273 | */ |
| 274 | typedef struct { |
| 275 | // Heart rate in beats per minute. |
| 276 | // Set to 0 when status is SENSOR_STATUS_UNRELIABLE or ..._NO_CONTACT |
| 277 | float bpm; |
| 278 | // Status of the sensor for this reading. Set to one SENSOR_STATUS_... |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 279 | // Note that this value should only be set for sensors that explicitly define |
| 280 | // the meaning of this field. This field is not piped through the framework |
| 281 | // for other sensors. |
Etienne Le Grand | 7b36158 | 2014-05-16 11:08:28 -0700 | [diff] [blame] | 282 | int8_t status; |
| 283 | } heart_rate_event_t; |
| 284 | |
Peng Xu | 0743a5c | 2016-01-21 17:30:02 -0800 | [diff] [blame] | 285 | typedef struct { |
| 286 | int32_t type; // type of payload data, see additional_info_type_t |
| 287 | int32_t serial; // sequence number of this frame for this type |
| 288 | union { |
| 289 | // for each frame, a single data type, either int32_t or float, should be used. |
| 290 | int32_t data_int32[14]; |
| 291 | float data_float[14]; |
| 292 | }; |
| 293 | } additional_info_event_t; |
| 294 | |
Brian Duddie | 373a1b9 | 2022-01-19 16:06:13 -0800 | [diff] [blame] | 295 | typedef struct { |
| 296 | float rx; |
| 297 | float ry; |
| 298 | float rz; |
| 299 | float vx; |
| 300 | float vy; |
| 301 | float vz; |
| 302 | int32_t discontinuity_count; |
| 303 | } head_tracker_event_t; |
| 304 | |
Etienne Le Grand | 7b36158 | 2014-05-16 11:08:28 -0700 | [diff] [blame] | 305 | /** |
Tyler Trephan | 6515145 | 2022-01-20 23:52:29 +0000 | [diff] [blame^] | 306 | * limited axes imu event data |
| 307 | */ |
| 308 | typedef struct { |
| 309 | union { |
| 310 | float calib[3]; |
| 311 | struct { |
| 312 | float x; |
| 313 | float y; |
| 314 | float z; |
| 315 | }; |
| 316 | }; |
| 317 | union { |
| 318 | float supported[3]; |
| 319 | struct { |
| 320 | float x_supported; |
| 321 | float y_supported; |
| 322 | float z_supported; |
| 323 | }; |
| 324 | }; |
| 325 | } limited_axes_imu_event_t; |
| 326 | |
| 327 | /** |
| 328 | * limited axes uncalibrated imu event data |
| 329 | */ |
| 330 | typedef struct { |
| 331 | union { |
| 332 | float uncalib[3]; |
| 333 | struct { |
| 334 | float x_uncalib; |
| 335 | float y_uncalib; |
| 336 | float z_uncalib; |
| 337 | }; |
| 338 | }; |
| 339 | union { |
| 340 | float bias[3]; |
| 341 | struct { |
| 342 | float x_bias; |
| 343 | float y_bias; |
| 344 | float z_bias; |
| 345 | }; |
| 346 | }; |
| 347 | union { |
| 348 | float supported[3]; |
| 349 | struct { |
| 350 | float x_supported; |
| 351 | float y_supported; |
| 352 | float z_supported; |
| 353 | }; |
| 354 | }; |
| 355 | } limited_axes_imu_uncalibrated_event_t; |
| 356 | |
| 357 | /** |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 358 | * Union of the various types of sensor data |
| 359 | * that can be returned. |
| 360 | */ |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 361 | typedef struct sensors_event_t { |
| 362 | /* must be sizeof(struct sensors_event_t) */ |
| 363 | int32_t version; |
| 364 | |
| 365 | /* sensor identifier */ |
| 366 | int32_t sensor; |
| 367 | |
| 368 | /* sensor type */ |
| 369 | int32_t type; |
| 370 | |
| 371 | /* reserved */ |
| 372 | int32_t reserved0; |
| 373 | |
| 374 | /* time is in nanosecond */ |
| 375 | int64_t timestamp; |
| 376 | |
| 377 | union { |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 378 | union { |
| 379 | float data[16]; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 380 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 381 | /* acceleration values are in meter per second per second (m/s^2) */ |
| 382 | sensors_vec_t acceleration; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 383 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 384 | /* magnetic vector values are in micro-Tesla (uT) */ |
| 385 | sensors_vec_t magnetic; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 386 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 387 | /* orientation values are in degrees */ |
| 388 | sensors_vec_t orientation; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 389 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 390 | /* gyroscope values are in rad/s */ |
| 391 | sensors_vec_t gyro; |
Makarand Karvekar | 3120b58 | 2010-08-11 15:10:10 -0700 | [diff] [blame] | 392 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 393 | /* temperature is in degrees centigrade (Celsius) */ |
| 394 | float temperature; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 395 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 396 | /* distance in centimeters */ |
| 397 | float distance; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 398 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 399 | /* light in SI lux units */ |
| 400 | float light; |
Mathias Agopian | 1832f55 | 2010-07-29 15:22:30 -0700 | [diff] [blame] | 401 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 402 | /* pressure in hectopascal (hPa) */ |
| 403 | float pressure; |
Urs Fleisch | d2ed15a | 2010-12-29 17:00:33 +0100 | [diff] [blame] | 404 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 405 | /* relative humidity in percent */ |
| 406 | float relative_humidity; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 407 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 408 | /* uncalibrated gyroscope values are in rad/s */ |
| 409 | uncalibrated_event_t uncalibrated_gyro; |
Etienne Le Grand | ca85814 | 2013-02-26 19:17:20 -0800 | [diff] [blame] | 410 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 411 | /* uncalibrated magnetometer values are in micro-Teslas */ |
| 412 | uncalibrated_event_t uncalibrated_magnetic; |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 413 | |
Ashutosh Joshi | d1e2562 | 2017-01-10 18:33:53 -0800 | [diff] [blame] | 414 | /* uncalibrated accelerometer values are in meter per second per second (m/s^2) */ |
| 415 | uncalibrated_event_t uncalibrated_accelerometer; |
| 416 | |
Etienne Le Grand | 7b36158 | 2014-05-16 11:08:28 -0700 | [diff] [blame] | 417 | /* heart rate data containing value in bpm and status */ |
| 418 | heart_rate_event_t heart_rate; |
Aravind Akella | 477fbd5 | 2014-04-07 22:46:01 +0000 | [diff] [blame] | 419 | |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 420 | /* this is a special event. see SENSOR_TYPE_META_DATA above. |
| 421 | * sensors_meta_data_event_t events are all reported with a type of |
| 422 | * SENSOR_TYPE_META_DATA. The handle is ignored and must be zero. |
| 423 | */ |
| 424 | meta_data_event_t meta_data; |
Peng Xu | e641ba9 | 2016-01-20 00:27:21 -0800 | [diff] [blame] | 425 | |
| 426 | /* dynamic sensor meta event. See SENSOR_TYPE_DYNAMIC_SENSOR_META type for details */ |
| 427 | dynamic_sensor_meta_event_t dynamic_sensor_meta; |
Peng Xu | 0743a5c | 2016-01-21 17:30:02 -0800 | [diff] [blame] | 428 | |
| 429 | /* |
| 430 | * special additional sensor information frame, see |
| 431 | * SENSOR_TYPE_ADDITIONAL_INFO for details. |
| 432 | */ |
| 433 | additional_info_event_t additional_info; |
Brian Duddie | 373a1b9 | 2022-01-19 16:06:13 -0800 | [diff] [blame] | 434 | |
| 435 | /* vector describing head orientation (added for legacy code support only) */ |
| 436 | head_tracker_event_t head_tracker; |
Tyler Trephan | 6515145 | 2022-01-20 23:52:29 +0000 | [diff] [blame^] | 437 | |
| 438 | /* |
| 439 | * limited axes imu event, See |
| 440 | * SENSOR_TYPE_GYROSCOPE_LIMITED_AXES and |
| 441 | * SENSOR_TYPE_ACCELEROMETER_LIMITED_AXES for details. |
| 442 | */ |
| 443 | limited_axes_imu_event_t limited_axes_imu; |
| 444 | |
| 445 | /* |
| 446 | * limited axes imu uncalibrated event, See |
| 447 | * SENSOR_TYPE_GYROSCOPE_LIMITED_AXES_UNCALIBRATED and |
| 448 | * SENSOR_TYPE_ACCELEROMETER_LIMITED_AXES_UNCALIBRATED for details. |
| 449 | */ |
| 450 | limited_axes_imu_uncalibrated_event_t limited_axes_imu_uncalibrated; |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 451 | }; |
Etienne Le Grand | ca85814 | 2013-02-26 19:17:20 -0800 | [diff] [blame] | 452 | |
Mathias Agopian | 27e1668 | 2013-07-08 14:00:54 -0700 | [diff] [blame] | 453 | union { |
| 454 | uint64_t data[8]; |
| 455 | |
| 456 | /* step-counter */ |
| 457 | uint64_t step_counter; |
| 458 | } u64; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 459 | }; |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 460 | |
| 461 | /* Reserved flags for internal use. Set to zero. */ |
| 462 | uint32_t flags; |
| 463 | |
| 464 | uint32_t reserved1[3]; |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 465 | } sensors_event_t; |
| 466 | |
| 467 | |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 468 | /* see SENSOR_TYPE_META_DATA */ |
| 469 | typedef sensors_event_t sensors_meta_data_event_t; |
| 470 | |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 471 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 472 | /** |
| 473 | * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM |
| 474 | * and the fields of this data structure must begin with hw_module_t |
| 475 | * followed by module specific information. |
| 476 | */ |
| 477 | struct sensors_module_t { |
| 478 | struct hw_module_t common; |
| 479 | |
| 480 | /** |
| 481 | * Enumerate all available sensors. The list is returned in "list". |
Colin Cross | 867e1e3 | 2016-10-06 16:44:46 -0700 | [diff] [blame] | 482 | * return number of sensors in the list |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 483 | */ |
| 484 | int (*get_sensors_list)(struct sensors_module_t* module, |
| 485 | struct sensor_t const** list); |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 486 | |
| 487 | /** |
| 488 | * Place the module in a specific mode. The following modes are defined |
| 489 | * |
Ashutosh Joshi | 050f2e4 | 2015-04-15 13:56:53 -0700 | [diff] [blame] | 490 | * 0 - Normal operation. Default state of the module. |
Peng Xu | 0743a5c | 2016-01-21 17:30:02 -0800 | [diff] [blame] | 491 | * 1 - Loopback mode. Data is injected for the supported |
Ashutosh Joshi | 050f2e4 | 2015-04-15 13:56:53 -0700 | [diff] [blame] | 492 | * sensors by the sensor service in this mode. |
Colin Cross | 867e1e3 | 2016-10-06 16:44:46 -0700 | [diff] [blame] | 493 | * return 0 on success |
Ashutosh Joshi | 050f2e4 | 2015-04-15 13:56:53 -0700 | [diff] [blame] | 494 | * -EINVAL if requested mode is not supported |
Aravind Akella | c7f5413 | 2015-06-22 18:26:54 -0700 | [diff] [blame] | 495 | * -EPERM if operation is not allowed |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 496 | */ |
| 497 | int (*set_operation_mode)(unsigned int mode); |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 498 | }; |
| 499 | |
| 500 | struct sensor_t { |
Mathias Agopian | 1144bea | 2013-01-29 15:52:10 -0800 | [diff] [blame] | 501 | |
| 502 | /* Name of this sensor. |
| 503 | * All sensors of the same "type" must have a different "name". |
| 504 | */ |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 505 | const char* name; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 506 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 507 | /* vendor of the hardware part */ |
| 508 | const char* vendor; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 509 | |
Mathias Agopian | e9eaf37 | 2011-11-07 21:32:34 -0800 | [diff] [blame] | 510 | /* version of the hardware part + driver. The value of this field |
| 511 | * must increase when the driver is updated in a way that changes the |
| 512 | * output of this sensor. This is important for fused sensors when the |
| 513 | * fusion algorithm is updated. |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 514 | */ |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 515 | int version; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 516 | |
| 517 | /* handle that identifies this sensors. This handle is used to reference |
| 518 | * this sensor throughout the HAL API. |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 519 | */ |
| 520 | int handle; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 521 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 522 | /* this sensor's type. */ |
| 523 | int type; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 524 | |
| 525 | /* maximum range of this sensor's value in SI units */ |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 526 | float maxRange; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 527 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 528 | /* smallest difference between two values reported by this sensor */ |
| 529 | float resolution; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 530 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 531 | /* rough estimate of this sensor's power consumption in mA */ |
| 532 | float power; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 533 | |
Aravind Akella | c841efd | 2014-06-03 19:21:35 -0700 | [diff] [blame] | 534 | /* this value depends on the reporting mode: |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 535 | * |
| 536 | * continuous: minimum sample period allowed in microseconds |
| 537 | * on-change : 0 |
| 538 | * one-shot :-1 |
| 539 | * special : 0, unless otherwise noted |
| 540 | */ |
Mathias Agopian | 1511e20 | 2010-07-29 15:33:22 -0700 | [diff] [blame] | 541 | int32_t minDelay; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 542 | |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 543 | /* number of events reserved for this sensor in the batch mode FIFO. |
| 544 | * If there is a dedicated FIFO for this sensor, then this is the |
| 545 | * size of this FIFO. If the FIFO is shared with other sensors, |
| 546 | * this is the size reserved for that sensor and it can be zero. |
| 547 | */ |
| 548 | uint32_t fifoReservedEventCount; |
| 549 | |
| 550 | /* maximum number of events of this sensor that could be batched. |
| 551 | * This is especially relevant when the FIFO is shared between |
| 552 | * several sensors; this value is then set to the size of that FIFO. |
| 553 | */ |
| 554 | uint32_t fifoMaxEventCount; |
| 555 | |
Peng Xu | 95f79b1 | 2017-01-11 14:16:15 -0800 | [diff] [blame] | 556 | /* type of this sensor as a string. |
| 557 | * |
| 558 | * If type is OEM specific or sensor manufacturer specific type |
| 559 | * (>=SENSOR_TYPE_DEVICE_PRIVATE_BASE), this string must be defined with reserved domain of |
| 560 | * vendor/OEM as a prefix, e.g. com.google.glass.onheaddetector |
| 561 | * |
| 562 | * For sensors of Android defined types, Android framework will override this value. It is ok to |
| 563 | * leave it pointing to an empty string. |
Aravind Akella | 477fbd5 | 2014-04-07 22:46:01 +0000 | [diff] [blame] | 564 | */ |
| 565 | const char* stringType; |
| 566 | |
| 567 | /* permission required to see this sensor, register to it and receive data. |
| 568 | * Set to "" if no permission is required. Some sensor types like the |
| 569 | * heart rate monitor have a mandatory require_permission. |
| 570 | * For sensors that always require a specific permission, like the heart |
| 571 | * rate monitor, the android framework might overwrite this string |
| 572 | * automatically. |
| 573 | */ |
| 574 | const char* requiredPermission; |
| 575 | |
Aravind Akella | 110d2f2 | 2014-09-04 15:36:31 -0700 | [diff] [blame] | 576 | /* This value is defined only for continuous mode and on-change sensors. It is the delay between |
| 577 | * two sensor events corresponding to the lowest frequency that this sensor supports. When lower |
| 578 | * frequencies are requested through batch()/setDelay() the events will be generated at this |
| 579 | * frequency instead. It can be used by the framework or applications to estimate when the batch |
| 580 | * FIFO may be full. |
Aravind Akella | c841efd | 2014-06-03 19:21:35 -0700 | [diff] [blame] | 581 | * |
| 582 | * NOTE: 1) period_ns is in nanoseconds where as maxDelay/minDelay are in microseconds. |
Aravind Akella | 110d2f2 | 2014-09-04 15:36:31 -0700 | [diff] [blame] | 583 | * continuous, on-change: maximum sampling period allowed in microseconds. |
| 584 | * one-shot, special : 0 |
Aravind Akella | c841efd | 2014-06-03 19:21:35 -0700 | [diff] [blame] | 585 | * 2) maxDelay should always fit within a 32 bit signed integer. It is declared as 64 bit |
| 586 | * on 64 bit architectures only for binary compatibility reasons. |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 587 | * Availability: SENSORS_DEVICE_API_VERSION_1_3 |
| 588 | */ |
| 589 | #ifdef __LP64__ |
| 590 | int64_t maxDelay; |
| 591 | #else |
| 592 | int32_t maxDelay; |
| 593 | #endif |
| 594 | |
Aravind Akella | c841efd | 2014-06-03 19:21:35 -0700 | [diff] [blame] | 595 | /* Flags for sensor. See SENSOR_FLAG_* above. Only the least significant 32 bits are used here. |
| 596 | * It is declared as 64 bit on 64 bit architectures only for binary compatibility reasons. |
| 597 | * Availability: SENSORS_DEVICE_API_VERSION_1_3 |
| 598 | */ |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 599 | #ifdef __LP64__ |
| 600 | uint64_t flags; |
| 601 | #else |
| 602 | uint32_t flags; |
| 603 | #endif |
| 604 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 605 | /* reserved fields, must be zero */ |
Aravind Akella | 6242f32 | 2014-02-28 18:46:19 -0800 | [diff] [blame] | 606 | void* reserved[2]; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 607 | }; |
| 608 | |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 609 | /** |
| 610 | * Shared memory information for a direct channel |
| 611 | */ |
| 612 | struct sensors_direct_mem_t { |
| 613 | int type; // enum SENSOR_DIRECT_MEM_... |
| 614 | int format; // enum SENSOR_DIRECT_FMT_... |
| 615 | size_t size; // size of the memory region, in bytes |
| 616 | const struct native_handle *handle; // shared memory handle, which is interpreted differently |
| 617 | // depending on type |
| 618 | }; |
| 619 | |
| 620 | /** |
| 621 | * Direct channel report configuration |
| 622 | */ |
| 623 | struct sensors_direct_cfg_t { |
| 624 | int rate_level; // enum SENSOR_DIRECT_RATE_... |
| 625 | }; |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 626 | |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 627 | /* |
| 628 | * sensors_poll_device_t is used with SENSORS_DEVICE_API_VERSION_0_1 |
| 629 | * and is present for backward binary and source compatibility. |
Clay Murphy | 8db1fb4 | 2013-12-19 09:58:28 -0800 | [diff] [blame] | 630 | * See the Sensors HAL interface section for complete descriptions of the |
| 631 | * following functions: |
| 632 | * http://source.android.com/devices/sensors/index.html#hal |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 633 | */ |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 634 | struct sensors_poll_device_t { |
| 635 | struct hw_device_t common; |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 636 | int (*activate)(struct sensors_poll_device_t *dev, |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 637 | int sensor_handle, int enabled); |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 638 | int (*setDelay)(struct sensors_poll_device_t *dev, |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 639 | int sensor_handle, int64_t sampling_period_ns); |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 640 | int (*poll)(struct sensors_poll_device_t *dev, |
Mathias Agopian | cdefccd | 2010-07-15 18:29:03 -0700 | [diff] [blame] | 641 | sensors_event_t* data, int count); |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 642 | }; |
| 643 | |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 644 | /* |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 645 | * struct sensors_poll_device_1 is used in HAL versions >= SENSORS_DEVICE_API_VERSION_1_0 |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 646 | */ |
| 647 | typedef struct sensors_poll_device_1 { |
| 648 | union { |
| 649 | /* sensors_poll_device_1 is compatible with sensors_poll_device_t, |
| 650 | * and can be down-cast to it |
| 651 | */ |
Andrew Hsieh | 1082c0b | 2012-12-11 20:51:41 -0800 | [diff] [blame] | 652 | struct sensors_poll_device_t v0; |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 653 | |
| 654 | struct { |
| 655 | struct hw_device_t common; |
| 656 | |
Peng Xu | aaeeaa4 | 2016-10-05 14:56:54 -0700 | [diff] [blame] | 657 | /* Activate/de-activate one sensor. |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 658 | * |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 659 | * sensor_handle is the handle of the sensor to change. |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 660 | * enabled set to 1 to enable, or 0 to disable the sensor. |
| 661 | * |
Aniroop Mathur | 443a4ac | 2017-07-10 22:35:47 +0530 | [diff] [blame] | 662 | * Before sensor activation, existing sensor events that have not |
| 663 | * been picked up by poll() should be abandoned so that application |
| 664 | * upon new activation request will not get stale events. |
| 665 | * (events that are generated during latter activation or during |
| 666 | * data injection mode after sensor deactivation) |
Peng Xu | aaeeaa4 | 2016-10-05 14:56:54 -0700 | [diff] [blame] | 667 | * |
Clay Murphy | 8db1fb4 | 2013-12-19 09:58:28 -0800 | [diff] [blame] | 668 | * Return 0 on success, negative errno code otherwise. |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 669 | */ |
| 670 | int (*activate)(struct sensors_poll_device_t *dev, |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 671 | int sensor_handle, int enabled); |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 672 | |
| 673 | /** |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 674 | * Set the events's period in nanoseconds for a given sensor. |
| 675 | * If sampling_period_ns > max_delay it will be truncated to |
| 676 | * max_delay and if sampling_period_ns < min_delay it will be |
| 677 | * replaced by min_delay. |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 678 | */ |
| 679 | int (*setDelay)(struct sensors_poll_device_t *dev, |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 680 | int sensor_handle, int64_t sampling_period_ns); |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 681 | |
| 682 | /** |
Peng Xu | 355e3f6 | 2016-07-19 15:11:53 -0700 | [diff] [blame] | 683 | * Write an array of sensor_event_t to data. The size of the |
| 684 | * available buffer is specified by count. Returns number of |
| 685 | * valid sensor_event_t. |
| 686 | * |
| 687 | * This function should block if there is no sensor event |
| 688 | * available when being called. Thus, return value should always be |
| 689 | * positive. |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 690 | */ |
| 691 | int (*poll)(struct sensors_poll_device_t *dev, |
| 692 | sensors_event_t* data, int count); |
| 693 | }; |
| 694 | }; |
| 695 | |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 696 | |
| 697 | /* |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 698 | * Sets a sensor’s parameters, including sampling frequency and maximum |
| 699 | * report latency. This function can be called while the sensor is |
| 700 | * activated, in which case it must not cause any sensor measurements to |
| 701 | * be lost: transitioning from one sampling rate to the other cannot cause |
| 702 | * lost events, nor can transitioning from a high maximum report latency to |
| 703 | * a low maximum report latency. |
Clay Murphy | 8db1fb4 | 2013-12-19 09:58:28 -0800 | [diff] [blame] | 704 | * See the Batching sensor results page for details: |
| 705 | * http://source.android.com/devices/sensors/batching.html |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 706 | */ |
| 707 | int (*batch)(struct sensors_poll_device_1* dev, |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 708 | int sensor_handle, int flags, int64_t sampling_period_ns, |
| 709 | int64_t max_report_latency_ns); |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 710 | |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 711 | /* |
| 712 | * Flush adds a META_DATA_FLUSH_COMPLETE event (sensors_event_meta_data_t) |
| 713 | * to the end of the "batch mode" FIFO for the specified sensor and flushes |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 714 | * the FIFO. |
| 715 | * If the FIFO is empty or if the sensor doesn't support batching (FIFO size zero), |
Aravind Akella | c841efd | 2014-06-03 19:21:35 -0700 | [diff] [blame] | 716 | * it should return SUCCESS along with a trivial META_DATA_FLUSH_COMPLETE event added to the |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 717 | * event stream. This applies to all sensors other than one-shot sensors. |
| 718 | * If the sensor is a one-shot sensor, flush must return -EINVAL and not generate |
| 719 | * any flush complete metadata. |
Aravind Akella | a7f2cda | 2014-08-21 16:31:14 -0700 | [diff] [blame] | 720 | * If the sensor is not active at the time flush() is called, flush() should return |
| 721 | * -EINVAL. |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 722 | */ |
Etienne Le Grand | 772d85a | 2014-08-19 14:30:19 -0700 | [diff] [blame] | 723 | int (*flush)(struct sensors_poll_device_1* dev, int sensor_handle); |
Mathias Agopian | 16671c5 | 2013-07-24 21:07:40 -0700 | [diff] [blame] | 724 | |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 725 | /* |
Ashutosh Joshi | 050f2e4 | 2015-04-15 13:56:53 -0700 | [diff] [blame] | 726 | * Inject a single sensor sample to be to this device. |
| 727 | * data points to the sensor event to be injected |
Colin Cross | 867e1e3 | 2016-10-06 16:44:46 -0700 | [diff] [blame] | 728 | * return 0 on success |
Aravind Akella | c7f5413 | 2015-06-22 18:26:54 -0700 | [diff] [blame] | 729 | * -EPERM if operation is not allowed |
Ashutosh Joshi | 050f2e4 | 2015-04-15 13:56:53 -0700 | [diff] [blame] | 730 | * -EINVAL if sensor event cannot be injected |
Ashutosh Joshi | 6507f50 | 2015-04-03 16:22:32 -0700 | [diff] [blame] | 731 | */ |
| 732 | int (*inject_sensor_data)(struct sensors_poll_device_1 *dev, const sensors_event_t *data); |
| 733 | |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 734 | /* |
| 735 | * Register/unregister direct report channel. |
| 736 | * |
| 737 | * A HAL declares support for direct report by setting non-NULL values for both |
| 738 | * register_direct_channel and config_direct_report. |
| 739 | * |
| 740 | * This function has two operation modes: |
| 741 | * |
| 742 | * Register: mem != NULL, register a channel using supplied shared memory information. By the |
| 743 | * time this function returns, sensors must finish initializing shared memory content |
| 744 | * (format dependent, see SENSOR_DIRECT_FMT_*). |
| 745 | * Parameters: |
| 746 | * mem points to a valid struct sensors_direct_mem_t. |
| 747 | * channel_handle is ignored. |
| 748 | * Return value: |
Peng Xu | f144435 | 2017-01-17 14:53:16 -0800 | [diff] [blame] | 749 | * A handle of channel (>0, <INT32_MAX) when success, which later can be referred in |
| 750 | * unregister or config_direct_report call, or error code (<0) when failed |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 751 | * Unregister: mem == NULL, unregister a previously registered channel. |
| 752 | * Parameters: |
| 753 | * mem set to NULL |
| 754 | * channel_handle contains handle of channel to be unregistered |
| 755 | * Return value: |
| 756 | * 0, even if the channel_handle is invalid, in which case it will be a no-op. |
| 757 | */ |
| 758 | int (*register_direct_channel)(struct sensors_poll_device_1 *dev, |
| 759 | const struct sensors_direct_mem_t* mem, int channel_handle); |
| 760 | |
| 761 | /* |
| 762 | * Configure direct sensor event report in direct channel. |
| 763 | * |
| 764 | * Start, modify rate or stop direct report of a sensor in a certain direct channel. A special |
| 765 | * case is setting sensor handle -1 to stop means to stop all active sensor report on the |
| 766 | * channel specified. |
| 767 | * |
| 768 | * A HAL declares support for direct report by setting non-NULL values for both |
| 769 | * register_direct_channel and config_direct_report. |
| 770 | * |
| 771 | * Parameters: |
| 772 | * sensor_handle sensor to be configured. The sensor has to support direct report |
| 773 | * mode by setting flags of sensor_t. Also, direct report mode is only |
| 774 | * defined for continuous reporting mode sensors. |
| 775 | * channel_handle channel handle to be configured. |
| 776 | * config direct report parameters, see sensor_direct_cfg_t. |
| 777 | * Return value: |
| 778 | * - when sensor is started or sensor rate level is changed: return positive identifier of |
| 779 | * sensor in specified channel if successful, otherwise return negative error code. |
| 780 | * - when sensor is stopped: return 0 for success or negative error code for failure. |
| 781 | */ |
| 782 | int (*config_direct_report)(struct sensors_poll_device_1 *dev, |
| 783 | int sensor_handle, int channel_handle, const struct sensors_direct_cfg_t *config); |
| 784 | |
| 785 | /* |
Peng Xu | bed42d4 | 2017-04-06 17:52:29 -0700 | [diff] [blame] | 786 | * Reserved for future use, must be zero. |
Peng Xu | 08a4dd9 | 2016-11-03 11:56:27 -0700 | [diff] [blame] | 787 | */ |
| 788 | void (*reserved_procs[5])(void); |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 789 | |
| 790 | } sensors_poll_device_1_t; |
| 791 | |
| 792 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 793 | /** convenience API for opening and closing a device */ |
| 794 | |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 795 | static inline int sensors_open(const struct hw_module_t* module, |
| 796 | struct sensors_poll_device_t** device) { |
| 797 | return module->methods->open(module, |
Colin Cross | cc8d9f9 | 2016-10-06 16:44:23 -0700 | [diff] [blame] | 798 | SENSORS_HARDWARE_POLL, TO_HW_DEVICE_T_OPEN(device)); |
Mathias Agopian | b1e212e | 2010-07-08 16:44:54 -0700 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | static inline int sensors_close(struct sensors_poll_device_t* device) { |
| 802 | return device->common.close(&device->common); |
| 803 | } |
| 804 | |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 805 | static inline int sensors_open_1(const struct hw_module_t* module, |
Andrew Hsieh | 1082c0b | 2012-12-11 20:51:41 -0800 | [diff] [blame] | 806 | sensors_poll_device_1_t** device) { |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 807 | return module->methods->open(module, |
Colin Cross | cc8d9f9 | 2016-10-06 16:44:23 -0700 | [diff] [blame] | 808 | SENSORS_HARDWARE_POLL, TO_HW_DEVICE_T_OPEN(device)); |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 809 | } |
| 810 | |
Andrew Hsieh | 1082c0b | 2012-12-11 20:51:41 -0800 | [diff] [blame] | 811 | static inline int sensors_close_1(sensors_poll_device_1_t* device) { |
Mathias Agopian | a455772 | 2012-11-28 17:21:55 -0800 | [diff] [blame] | 812 | return device->common.close(&device->common); |
| 813 | } |
| 814 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 815 | __END_DECLS |
| 816 | |
The Android Open Source Project | f53ebec | 2009-03-03 19:32:14 -0800 | [diff] [blame] | 817 | #endif // ANDROID_SENSORS_INTERFACE_H |