blob: 90036b6d8b59036025e926af1848e1ca38d2ea16 [file] [log] [blame]
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001/*
Mathias Agopiana4557722012-11-28 17:21:55 -08002 * Copyright (C) 2012 The Android Open Source Project
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08003 *
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 Lockwood21b652f2009-05-22 10:05:48 -040025#include <cutils/native_handle.h>
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080026
27__BEGIN_DECLS
28
Mathias Agopian56f66cc2012-11-08 15:57:38 -080029/*****************************************************************************/
30
31#define SENSORS_HEADER_VERSION 1
32#define SENSORS_MODULE_API_VERSION_0_1 HARDWARE_MODULE_API_VERSION(0, 1)
33#define SENSORS_DEVICE_API_VERSION_0_1 HARDWARE_DEVICE_API_VERSION_2(0, 1, SENSORS_HEADER_VERSION)
Mathias Agopiana4557722012-11-28 17:21:55 -080034#define SENSORS_DEVICE_API_VERSION_1_0 HARDWARE_DEVICE_API_VERSION_2(1, 0, SENSORS_HEADER_VERSION)
Mathias Agopian16671c52013-07-24 21:07:40 -070035#define SENSORS_DEVICE_API_VERSION_1_1 HARDWARE_DEVICE_API_VERSION_2(1, 1, SENSORS_HEADER_VERSION)
Aravind Akella477fbd52014-04-07 22:46:01 +000036#define SENSORS_DEVICE_API_VERSION_1_2 HARDWARE_DEVICE_API_VERSION_2(1, 2, SENSORS_HEADER_VERSION)
Aravind Akella6242f322014-02-28 18:46:19 -080037#define SENSORS_DEVICE_API_VERSION_1_3 HARDWARE_DEVICE_API_VERSION_2(1, 3, SENSORS_HEADER_VERSION)
Ashutosh Joshi6507f502015-04-03 16:22:32 -070038#define SENSORS_DEVICE_API_VERSION_1_4 HARDWARE_DEVICE_API_VERSION_2(1, 4, SENSORS_HEADER_VERSION)
Mathias Agopian56f66cc2012-11-08 15:57:38 -080039
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080040/**
Clay Murphy8db1fb42013-12-19 09:58:28 -080041 * Please see the Sensors section of source.android.com for an
42 * introduction to and detailed descriptions of Android sensor types:
43 * http://source.android.com/devices/sensors/index.html
44 */
45
46/**
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080047 * The id of this module
48 */
49#define SENSORS_HARDWARE_MODULE_ID "sensors"
50
51/**
52 * Name of the sensors device to open
53 */
Mathias Agopianb1e212e2010-07-08 16:44:54 -070054#define SENSORS_HARDWARE_POLL "poll"
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080055
56/**
57 * Handles must be higher than SENSORS_HANDLE_BASE and must be unique.
58 * A Handle identifies a given sensors. The handle is used to activate
59 * and/or deactivate sensors.
60 * In this version of the API there can only be 256 handles.
61 */
62#define SENSORS_HANDLE_BASE 0
63#define SENSORS_HANDLE_BITS 8
64#define SENSORS_HANDLE_COUNT (1<<SENSORS_HANDLE_BITS)
65
66
Mathias Agopiana4557722012-11-28 17:21:55 -080067/*
Aravind Akella6242f322014-02-28 18:46:19 -080068 * **** Deprecated *****
Mathias Agopiana4557722012-11-28 17:21:55 -080069 * flags for (*batch)()
70 * Availability: SENSORS_DEVICE_API_VERSION_1_0
Aravind Akella6242f322014-02-28 18:46:19 -080071 * see (*batch)() documentation for details.
72 * Deprecated as of SENSORS_DEVICE_API_VERSION_1_3.
73 * WAKE_UP_* sensors replace WAKE_UPON_FIFO_FULL concept.
Mathias Agopiana4557722012-11-28 17:21:55 -080074 */
75enum {
76 SENSORS_BATCH_DRY_RUN = 0x00000001,
77 SENSORS_BATCH_WAKE_UPON_FIFO_FULL = 0x00000002
78};
79
Mathias Agopian16671c52013-07-24 21:07:40 -070080/*
81 * what field for meta_data_event_t
82 */
83enum {
84 /* a previous flush operation has completed */
Mathias Agopianaf32a8d2013-08-06 20:33:38 -070085 META_DATA_FLUSH_COMPLETE = 1,
86 META_DATA_VERSION /* always last, leave auto-assigned */
Mathias Agopian16671c52013-07-24 21:07:40 -070087};
88
Mathias Agopiana4557722012-11-28 17:21:55 -080089/*
Aravind Akella477fbd52014-04-07 22:46:01 +000090 * The permission to use for body sensors (like heart rate monitors).
91 * See sensor types for more details on what sensors should require this
92 * permission.
93 */
94#define SENSOR_PERMISSION_BODY_SENSORS "android.permission.BODY_SENSORS"
95
96/*
Ashutosh Joshi6507f502015-04-03 16:22:32 -070097 * Availability: SENSORS_DEVICE_API_VERSION_1_4
98 * Sensor HAL modes uses in set_operation_mode method
99 */
100enum {
101 /*
102 * Operating modes for the HAL.
103 */
104
105 /*
106 * Normal mode operation. This is the default state of operation.
107 * The HAL shall initialize into this mode on device startup.
108 */
109 SENSOR_HAL_NORMAL_MODE = 0,
110
111 /* Loopback mode. In this mode, the device shall not source data from the
112 * physical sensors as it would in normal mode. Instead sensor data is
113 * injected by the sensor service.
114 */
115 SENSOR_HAL_LOOPBACK_MODE = 0x1
116};
117
118/*
Aravind Akella6242f322014-02-28 18:46:19 -0800119 * Availability: SENSORS_DEVICE_API_VERSION_1_3
120 * Sensor flags used in sensor_t.flags.
121 */
122enum {
123 /*
Aravind Akella110d2f22014-09-04 15:36:31 -0700124 * Whether this sensor wakes up the AP from suspend mode when data is available. Whenever
125 * sensor events are delivered from a wake_up sensor, the driver needs to hold a wake_lock till
126 * the events are read by the SensorService i.e till sensors_poll_device_t.poll() is called the
127 * next time. Once poll is called again it means events have been read by the SensorService, the
128 * driver can safely release the wake_lock. SensorService will continue to hold a wake_lock till
129 * the app actually reads the events.
Aravind Akella6242f322014-02-28 18:46:19 -0800130 */
Aravind Akellac841efd2014-06-03 19:21:35 -0700131 SENSOR_FLAG_WAKE_UP = 1U << 0,
132 /*
133 * Reporting modes for various sensors. Each sensor will have exactly one of these modes set.
134 * The least significant 2nd, 3rd and 4th bits are used to represent four possible reporting
135 * modes.
136 */
137 SENSOR_FLAG_CONTINUOUS_MODE = 0, // 0000
138 SENSOR_FLAG_ON_CHANGE_MODE = 0x2, // 0010
139 SENSOR_FLAG_ONE_SHOT_MODE = 0x4, // 0100
140 SENSOR_FLAG_SPECIAL_REPORTING_MODE = 0x6 // 0110
Aravind Akella6242f322014-02-28 18:46:19 -0800141};
142
143/*
Aravind Akellac841efd2014-06-03 19:21:35 -0700144 * Mask and shift for reporting mode sensor flags defined above.
145 */
146#define REPORTING_MODE_MASK (0xE)
147#define REPORTING_MODE_SHIFT (1)
148
149/*
Mathias Agopiana4557722012-11-28 17:21:55 -0800150 * Sensor type
151 *
152 * Each sensor has a type which defines what this sensor measures and how
Clay Murphy8db1fb42013-12-19 09:58:28 -0800153 * measures are reported. See the Base sensors and Composite sensors lists
154 * for complete descriptions:
155 * http://source.android.com/devices/sensors/base_triggers.html
156 * http://source.android.com/devices/sensors/composite_sensors.html
Mathias Agopian1599ec62013-08-19 14:34:47 -0700157 *
158 * Device manufacturers (OEMs) can define their own sensor types, for
159 * their private use by applications or services provided by them. Such
160 * sensor types are specific to an OEM and can't be exposed in the SDK.
161 * These types must start at SENSOR_TYPE_DEVICE_PRIVATE_BASE.
Aravind Akella477fbd52014-04-07 22:46:01 +0000162 *
163 * All sensors defined outside of the device private range must correspond to
164 * a type defined in this file, and must satisfy the characteristics listed in
165 * the description of the sensor type.
166 *
167 * Starting with version SENSORS_DEVICE_API_VERSION_1_2, each sensor also
168 * has a stringType.
169 * - StringType of sensors inside of the device private range MUST be prefixed
170 * by the sensor provider's or OEM reverse domain name. In particular, they
171 * cannot use the "android.sensor" prefix.
172 * - StringType of sensors outside of the device private range MUST correspond
173 * to the one defined in this file (starting with "android.sensor").
174 * For example, accelerometers must have
175 * type=SENSOR_TYPE_ACCELEROMETER and
176 * stringType=SENSOR_STRING_TYPE_ACCELEROMETER
177 *
178 * When android introduces a new sensor type that can replace an OEM-defined
179 * sensor type, the OEM must use the official sensor type and stringType on
180 * versions of the HAL that support this new official sensor type.
181 *
182 * Example (made up): Suppose Google's Glass team wants to surface a sensor
183 * detecting that Glass is on a head.
184 * - Such a sensor is not officially supported in android KitKat
185 * - Glass devices launching on KitKat can implement a sensor with
186 * type = 0x10001 and stringType = "com.google.glass.onheaddetector"
187 * - In L android release, if android decides to define
188 * SENSOR_TYPE_ON_HEAD_DETECTOR and STRING_SENSOR_TYPE_ON_HEAD_DETECTOR,
189 * those types should replace the Glass-team-specific types in all future
190 * launches.
Etienne Le Grand772d85a2014-08-19 14:30:19 -0700191 * - When launching Glass on the L release, Google should now use the official
Aravind Akella477fbd52014-04-07 22:46:01 +0000192 * type (SENSOR_TYPE_ON_HEAD_DETECTOR) and stringType.
193 * - This way, all applications can now use this sensor.
Mathias Agopiana4557722012-11-28 17:21:55 -0800194 */
195
196/*
Mathias Agopian1599ec62013-08-19 14:34:47 -0700197 * Base for device manufacturers private sensor types.
198 * These sensor types can't be exposed in the SDK.
199 */
200#define SENSOR_TYPE_DEVICE_PRIVATE_BASE 0x10000
201
202/*
Mathias Agopian16671c52013-07-24 21:07:40 -0700203 * SENSOR_TYPE_META_DATA
Aravind Akellac841efd2014-06-03 19:21:35 -0700204 * reporting-mode: n/a
Mathias Agopian16671c52013-07-24 21:07:40 -0700205 * wake-up sensor: n/a
206 *
207 * NO SENSOR OF THAT TYPE MUST BE RETURNED (*get_sensors_list)()
208 *
209 * SENSOR_TYPE_META_DATA is a special token used to populate the
210 * sensors_meta_data_event structure. It doesn't correspond to a physical
211 * sensor. sensors_meta_data_event are special, they exist only inside
212 * the HAL and are generated spontaneously, as opposed to be related to
213 * a physical sensor.
214 *
Mathias Agopianaf32a8d2013-08-06 20:33:38 -0700215 * sensors_meta_data_event_t.version must be META_DATA_VERSION
216 * sensors_meta_data_event_t.sensor must be 0
217 * sensors_meta_data_event_t.type must be SENSOR_TYPE_META_DATA
218 * sensors_meta_data_event_t.reserved must be 0
219 * sensors_meta_data_event_t.timestamp must be 0
Mathias Agopian16671c52013-07-24 21:07:40 -0700220 *
221 * The payload is a meta_data_event_t, where:
222 * meta_data_event_t.what can take the following values:
223 *
224 * META_DATA_FLUSH_COMPLETE
225 * This event indicates that a previous (*flush)() call has completed for the sensor
226 * handle specified in meta_data_event_t.sensor.
227 * see (*flush)() for more details
228 *
229 * All other values for meta_data_event_t.what are reserved and
230 * must not be used.
231 *
232 */
Aravind Akella477fbd52014-04-07 22:46:01 +0000233#define SENSOR_TYPE_META_DATA (0)
Mathias Agopian16671c52013-07-24 21:07:40 -0700234
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800235/*
Aravind Akella9057e122014-07-28 18:01:37 -0700236 * Wake up sensors.
237 * Each sensor may have either or both a wake-up and a non-wake variant.
238 * When registered in batch mode, wake-up sensors will wake up the AP when
239 * their FIFOs are full or when the batch timeout expires. A separate FIFO has
240 * to be maintained for wake up sensors and non wake up sensors. The non wake-up
241 * sensors need to overwrite their FIFOs when they are full till the AP wakes up
242 * and the wake-up sensors will wake-up the AP when their FIFOs are full or when
243 * the batch timeout expires without losing events. Wake-up and non wake-up variants
244 * of each sensor can be activated at different rates independently of each other.
245 *
246 * Note: Proximity sensor and significant motion sensor which were defined in previous
247 * releases are also wake-up sensors and should be treated as such. Wake-up one-shot
248 * sensors like SIGNIFICANT_MOTION cannot be batched, hence the text about batch above
249 * doesn't apply to them. See the definitions of SENSOR_TYPE_PROXIMITY and
250 * SENSOR_TYPE_SIGNIFICANT_MOTION for more info.
251 *
252 * Set SENSOR_FLAG_WAKE_UP flag for all wake-up sensors.
253 *
254 * For example, A device can have two sensors both of SENSOR_TYPE_ACCELEROMETER and
255 * one of them can be a wake_up sensor (with SENSOR_FLAG_WAKE_UP flag set) and the other
256 * can be a regular non wake_up sensor. Both of these sensors must be activated/deactivated
257 * independently of the other.
258 */
259
260/*
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800261 * SENSOR_TYPE_ACCELEROMETER
Aravind Akellac841efd2014-06-03 19:21:35 -0700262 * reporting-mode: continuous
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800263 *
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800264 * All values are in SI units (m/s^2) and measure the acceleration of the
265 * device minus the force of gravity.
266 *
Aravind Akella9057e122014-07-28 18:01:37 -0700267 * Implement the non-wake-up version of this sensor and implement the wake-up
268 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800269 */
270#define SENSOR_TYPE_ACCELEROMETER (1)
Aravind Akella477fbd52014-04-07 22:46:01 +0000271#define SENSOR_STRING_TYPE_ACCELEROMETER "android.sensor.accelerometer"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800272
273/*
274 * SENSOR_TYPE_GEOMAGNETIC_FIELD
Aravind Akellac841efd2014-06-03 19:21:35 -0700275 * reporting-mode: continuous
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800276 *
277 * All values are in micro-Tesla (uT) and measure the geomagnetic
278 * field in the X, Y and Z axis.
279 *
Aravind Akella9057e122014-07-28 18:01:37 -0700280 * Implement the non-wake-up version of this sensor and implement the wake-up
281 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800282 */
283#define SENSOR_TYPE_GEOMAGNETIC_FIELD (2)
284#define SENSOR_TYPE_MAGNETIC_FIELD SENSOR_TYPE_GEOMAGNETIC_FIELD
Aravind Akella477fbd52014-04-07 22:46:01 +0000285#define SENSOR_STRING_TYPE_MAGNETIC_FIELD "android.sensor.magnetic_field"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800286
287/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800288 * SENSOR_TYPE_ORIENTATION
Aravind Akellac841efd2014-06-03 19:21:35 -0700289 * reporting-mode: continuous
Clay Murphy8db1fb42013-12-19 09:58:28 -0800290 *
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800291 * All values are angles in degrees.
Clay Murphy8db1fb42013-12-19 09:58:28 -0800292 *
Mathias Agopian66a40952010-07-22 17:11:50 -0700293 * Orientation sensors return sensor events for all 3 axes at a constant
294 * rate defined by setDelay().
Aravind Akella9057e122014-07-28 18:01:37 -0700295 *
296 * Implement the non-wake-up version of this sensor and implement the wake-up
297 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800298 */
299#define SENSOR_TYPE_ORIENTATION (3)
Aravind Akella477fbd52014-04-07 22:46:01 +0000300#define SENSOR_STRING_TYPE_ORIENTATION "android.sensor.orientation"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800301
302/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800303 * SENSOR_TYPE_GYROSCOPE
Aravind Akellac841efd2014-06-03 19:21:35 -0700304 * reporting-mode: continuous
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800305 *
Kevin Powellb01a0432010-07-19 19:12:15 -0700306 * All values are in radians/second and measure the rate of rotation
Clay Murphy8db1fb42013-12-19 09:58:28 -0800307 * around the X, Y and Z axis.
Aravind Akella9057e122014-07-28 18:01:37 -0700308 *
309 * Implement the non-wake-up version of this sensor and implement the wake-up
310 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800311 */
312#define SENSOR_TYPE_GYROSCOPE (4)
Aravind Akella477fbd52014-04-07 22:46:01 +0000313#define SENSOR_STRING_TYPE_GYROSCOPE "android.sensor.gyroscope"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800314
315/*
316 * SENSOR_TYPE_LIGHT
Aravind Akellac841efd2014-06-03 19:21:35 -0700317 * reporting-mode: on-change
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800318 *
319 * The light sensor value is returned in SI lux units.
Aravind Akella9057e122014-07-28 18:01:37 -0700320 *
321 * Both wake-up and non wake-up versions are useful.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800322 */
323#define SENSOR_TYPE_LIGHT (5)
Aravind Akella477fbd52014-04-07 22:46:01 +0000324#define SENSOR_STRING_TYPE_LIGHT "android.sensor.light"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800325
326/*
327 * SENSOR_TYPE_PRESSURE
Aravind Akellac841efd2014-06-03 19:21:35 -0700328 * reporting-mode: continuous
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800329 *
330 * The pressure sensor return the athmospheric pressure in hectopascal (hPa)
Aravind Akella9057e122014-07-28 18:01:37 -0700331 *
332 * Implement the non-wake-up version of this sensor and implement the wake-up
333 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800334 */
335#define SENSOR_TYPE_PRESSURE (6)
Aravind Akella477fbd52014-04-07 22:46:01 +0000336#define SENSOR_STRING_TYPE_PRESSURE "android.sensor.pressure"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800337
338/* SENSOR_TYPE_TEMPERATURE is deprecated in the HAL */
339#define SENSOR_TYPE_TEMPERATURE (7)
Aravind Akella477fbd52014-04-07 22:46:01 +0000340#define SENSOR_STRING_TYPE_TEMPERATURE "android.sensor.temperature"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800341
342/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800343 * SENSOR_TYPE_PROXIMITY
Aravind Akellac841efd2014-06-03 19:21:35 -0700344 * reporting-mode: on-change
Mike Lockwooda2414312009-11-03 10:29:50 -0500345 *
Aravind Akella9057e122014-07-28 18:01:37 -0700346 * The proximity sensor which turns the screen off and back on during calls is the
347 * wake-up proximity sensor. Implement wake-up proximity sensor before implementing
348 * a non wake-up proximity sensor. For the wake-up proximity sensor set the flag
349 * SENSOR_FLAG_WAKE_UP.
Clay Murphy8db1fb42013-12-19 09:58:28 -0800350 * The value corresponds to the distance to the nearest object in centimeters.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800351 */
352#define SENSOR_TYPE_PROXIMITY (8)
Aravind Akella477fbd52014-04-07 22:46:01 +0000353#define SENSOR_STRING_TYPE_PROXIMITY "android.sensor.proximity"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800354
355/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800356 * SENSOR_TYPE_GRAVITY
Aravind Akellac841efd2014-06-03 19:21:35 -0700357 * reporting-mode: continuous
Mathias Agopian42b743c2010-11-22 15:55:32 -0800358 *
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800359 * A gravity output indicates the direction of and magnitude of gravity in
Clay Murphy8db1fb42013-12-19 09:58:28 -0800360 * the devices's coordinates.
Aravind Akella9057e122014-07-28 18:01:37 -0700361 *
362 * Implement the non-wake-up version of this sensor and implement the wake-up
363 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800364 */
365#define SENSOR_TYPE_GRAVITY (9)
Aravind Akella477fbd52014-04-07 22:46:01 +0000366#define SENSOR_STRING_TYPE_GRAVITY "android.sensor.gravity"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800367
368/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800369 * SENSOR_TYPE_LINEAR_ACCELERATION
Aravind Akellac841efd2014-06-03 19:21:35 -0700370 * reporting-mode: continuous
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800371 *
372 * Indicates the linear acceleration of the device in device coordinates,
373 * not including gravity.
Aravind Akella9057e122014-07-28 18:01:37 -0700374 *
375 * Implement the non-wake-up version of this sensor and implement the wake-up
376 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800377 */
378#define SENSOR_TYPE_LINEAR_ACCELERATION (10)
Aravind Akella477fbd52014-04-07 22:46:01 +0000379#define SENSOR_STRING_TYPE_LINEAR_ACCELERATION "android.sensor.linear_acceleration"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800380
381
382/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800383 * SENSOR_TYPE_ROTATION_VECTOR
Aravind Akellac841efd2014-06-03 19:21:35 -0700384 * reporting-mode: continuous
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800385 *
Etienne Le Grand28f04112013-03-27 18:59:10 -0700386 * The rotation vector symbolizes the orientation of the device relative to the
Clay Murphy8db1fb42013-12-19 09:58:28 -0800387 * East-North-Up coordinates frame.
Aravind Akella9057e122014-07-28 18:01:37 -0700388 *
389 * Implement the non-wake-up version of this sensor and implement the wake-up
390 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800391 */
392#define SENSOR_TYPE_ROTATION_VECTOR (11)
Aravind Akella477fbd52014-04-07 22:46:01 +0000393#define SENSOR_STRING_TYPE_ROTATION_VECTOR "android.sensor.rotation_vector"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800394
395/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800396 * SENSOR_TYPE_RELATIVE_HUMIDITY
Aravind Akellac841efd2014-06-03 19:21:35 -0700397 * reporting-mode: on-change
Urs Fleischd2ed15a2010-12-29 17:00:33 +0100398 *
399 * A relative humidity sensor measures relative ambient air humidity and
400 * returns a value in percent.
Aravind Akella9057e122014-07-28 18:01:37 -0700401 *
402 * Both wake-up and non wake-up versions are useful.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800403 */
404#define SENSOR_TYPE_RELATIVE_HUMIDITY (12)
Aravind Akella477fbd52014-04-07 22:46:01 +0000405#define SENSOR_STRING_TYPE_RELATIVE_HUMIDITY "android.sensor.relative_humidity"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800406
407/*
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800408 * SENSOR_TYPE_AMBIENT_TEMPERATURE
Aravind Akellac841efd2014-06-03 19:21:35 -0700409 * reporting-mode: on-change
Mathias Agopian54f9dd02011-03-22 18:42:03 -0700410 *
411 * The ambient (room) temperature in degree Celsius.
Aravind Akella9057e122014-07-28 18:01:37 -0700412 *
413 * Both wake-up and non wake-up versions are useful.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800414 */
415#define SENSOR_TYPE_AMBIENT_TEMPERATURE (13)
Aravind Akella477fbd52014-04-07 22:46:01 +0000416#define SENSOR_STRING_TYPE_AMBIENT_TEMPERATURE "android.sensor.ambient_temperature"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800417
418/*
419 * SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED
Aravind Akellac841efd2014-06-03 19:21:35 -0700420 * reporting-mode: continuous
Mathias Agopian54f9dd02011-03-22 18:42:03 -0700421 *
Etienne Le Grandca858142013-02-26 19:17:20 -0800422 * Similar to SENSOR_TYPE_MAGNETIC_FIELD, but the hard iron calibration is
423 * reported separately instead of being included in the measurement.
Aravind Akella9057e122014-07-28 18:01:37 -0700424 *
425 * Implement the non-wake-up version of this sensor and implement the wake-up
426 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800427 */
428#define SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED (14)
Aravind Akella477fbd52014-04-07 22:46:01 +0000429#define SENSOR_STRING_TYPE_MAGNETIC_FIELD_UNCALIBRATED "android.sensor.magnetic_field_uncalibrated"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800430
431/*
432 * SENSOR_TYPE_GAME_ROTATION_VECTOR
Aravind Akellac841efd2014-06-03 19:21:35 -0700433 * reporting-mode: continuous
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800434 *
Etienne Le Grandca858142013-02-26 19:17:20 -0800435 * Similar to SENSOR_TYPE_ROTATION_VECTOR, but not using the geomagnetic
Clay Murphy8db1fb42013-12-19 09:58:28 -0800436 * field.
Aravind Akella9057e122014-07-28 18:01:37 -0700437 *
438 * Implement the non-wake-up version of this sensor and implement the wake-up
439 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800440 */
441#define SENSOR_TYPE_GAME_ROTATION_VECTOR (15)
Aravind Akella477fbd52014-04-07 22:46:01 +0000442#define SENSOR_STRING_TYPE_GAME_ROTATION_VECTOR "android.sensor.game_rotation_vector"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800443
444/*
445 * SENSOR_TYPE_GYROSCOPE_UNCALIBRATED
Aravind Akellac841efd2014-06-03 19:21:35 -0700446 * reporting-mode: continuous
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800447 *
448 * All values are in radians/second and measure the rate of rotation
Clay Murphy8db1fb42013-12-19 09:58:28 -0800449 * around the X, Y and Z axis.
Aravind Akella9057e122014-07-28 18:01:37 -0700450 *
451 * Implement the non-wake-up version of this sensor and implement the wake-up
452 * version if the system possesses a wake up fifo.
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800453 */
454#define SENSOR_TYPE_GYROSCOPE_UNCALIBRATED (16)
Aravind Akella477fbd52014-04-07 22:46:01 +0000455#define SENSOR_STRING_TYPE_GYROSCOPE_UNCALIBRATED "android.sensor.gyroscope_uncalibrated"
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800456
Mathias Agopiana4557722012-11-28 17:21:55 -0800457/*
458 * SENSOR_TYPE_SIGNIFICANT_MOTION
Aravind Akellac841efd2014-06-03 19:21:35 -0700459 * reporting-mode: one-shot
Mathias Agopiana4557722012-11-28 17:21:55 -0800460 *
461 * A sensor of this type triggers an event each time significant motion
462 * is detected and automatically disables itself.
Aravind Akella9057e122014-07-28 18:01:37 -0700463 * For Significant Motion sensor to be useful, it must be defined as a
464 * wake-up sensor. (set SENSOR_FLAG_WAKE_UP). Implement the wake-up significant motion
465 * sensor. A non wake-up version is not useful.
Mathias Agopiana4557722012-11-28 17:21:55 -0800466 * The only allowed value to return is 1.0.
Mathias Agopiana4557722012-11-28 17:21:55 -0800467 */
468
469#define SENSOR_TYPE_SIGNIFICANT_MOTION (17)
Aravind Akella477fbd52014-04-07 22:46:01 +0000470#define SENSOR_STRING_TYPE_SIGNIFICANT_MOTION "android.sensor.significant_motion"
Mathias Agopiana4557722012-11-28 17:21:55 -0800471
472/*
Mathias Agopian2f276f52013-01-28 17:54:41 -0800473 * SENSOR_TYPE_STEP_DETECTOR
Aravind Akellac841efd2014-06-03 19:21:35 -0700474 * reporting-mode: special
Mathias Agopiana4557722012-11-28 17:21:55 -0800475 *
476 * A sensor of this type triggers an event each time a step is taken
Clay Murphy8db1fb42013-12-19 09:58:28 -0800477 * by the user. The only allowed value to return is 1.0 and an event
478 * is generated for each step.
Aravind Akella9057e122014-07-28 18:01:37 -0700479 *
480 * Both wake-up and non wake-up versions are useful.
Mathias Agopiana4557722012-11-28 17:21:55 -0800481 */
482
Mathias Agopian2f276f52013-01-28 17:54:41 -0800483#define SENSOR_TYPE_STEP_DETECTOR (18)
Aravind Akella477fbd52014-04-07 22:46:01 +0000484#define SENSOR_STRING_TYPE_STEP_DETECTOR "android.sensor.step_detector"
Mathias Agopiana4557722012-11-28 17:21:55 -0800485
486
487/*
488 * SENSOR_TYPE_STEP_COUNTER
Aravind Akellac841efd2014-06-03 19:21:35 -0700489 * reporting-mode: on-change
Mathias Agopiana4557722012-11-28 17:21:55 -0800490 *
491 * A sensor of this type returns the number of steps taken by the user since
Mathias Agopian1144bea2013-01-29 15:52:10 -0800492 * the last reboot while activated. The value is returned as a uint64_t and is
Etienne Le Grandf770b7a2013-07-10 14:08:40 -0700493 * reset to zero only on a system / android reboot.
Aravind Akella9057e122014-07-28 18:01:37 -0700494 *
495 * Implement the non-wake-up version of this sensor and implement the wake-up
496 * version if the system possesses a wake up fifo.
Mathias Agopiana4557722012-11-28 17:21:55 -0800497 */
498
499#define SENSOR_TYPE_STEP_COUNTER (19)
Aravind Akella477fbd52014-04-07 22:46:01 +0000500#define SENSOR_STRING_TYPE_STEP_COUNTER "android.sensor.step_counter"
Mathias Agopiana4557722012-11-28 17:21:55 -0800501
Etienne Le Grandca858142013-02-26 19:17:20 -0800502/*
503 * SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR
Aravind Akellac841efd2014-06-03 19:21:35 -0700504 * reporting-mode: continuous
Etienne Le Grandca858142013-02-26 19:17:20 -0800505 *
506 * Similar to SENSOR_TYPE_ROTATION_VECTOR, but using a magnetometer instead
507 * of using a gyroscope.
Aravind Akella9057e122014-07-28 18:01:37 -0700508 *
509 * Implement the non-wake-up version of this sensor and implement the wake-up
510 * version if the system possesses a wake up fifo.
Etienne Le Grandca858142013-02-26 19:17:20 -0800511 */
Aravind Akella477fbd52014-04-07 22:46:01 +0000512#define SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR (20)
513#define SENSOR_STRING_TYPE_GEOMAGNETIC_ROTATION_VECTOR "android.sensor.geomagnetic_rotation_vector"
514
515/*
516 * SENSOR_TYPE_HEART_RATE
Aravind Akellac841efd2014-06-03 19:21:35 -0700517 * reporting-mode: on-change
Aravind Akella477fbd52014-04-07 22:46:01 +0000518 *
Etienne Le Grand7b361582014-05-16 11:08:28 -0700519 * A sensor of this type returns the current heart rate.
520 * The events contain the current heart rate in beats per minute (BPM) and the
521 * status of the sensor during the measurement. See heart_rate_event_t for more
522 * details.
523 *
524 * Because this sensor is on-change, events must be generated when and only
525 * when heart_rate.bpm or heart_rate.status have changed since the last
Vinod Krishnan74279e32014-08-28 15:25:13 -0700526 * event. In particular, upon the first activation, unless the device is known
527 * to not be on the body, the status field of the first event must be set to
528 * SENSOR_STATUS_UNRELIABLE. The event should be generated no faster than every
529 * period_ns passed to setDelay() or to batch().
Griff Hazenf0f67e62014-08-28 17:02:50 -0700530 * See the definition of the on-change reporting mode for more information.
Etienne Le Grand7b361582014-05-16 11:08:28 -0700531 *
Aravind Akella477fbd52014-04-07 22:46:01 +0000532 * sensor_t.requiredPermission must be set to SENSOR_PERMISSION_BODY_SENSORS.
Aravind Akella9057e122014-07-28 18:01:37 -0700533 *
534 * Both wake-up and non wake-up versions are useful.
Aravind Akella477fbd52014-04-07 22:46:01 +0000535 */
536#define SENSOR_TYPE_HEART_RATE (21)
537#define SENSOR_STRING_TYPE_HEART_RATE "android.sensor.heart_rate"
Mathias Agopiana4557722012-11-28 17:21:55 -0800538
Aravind Akella6242f322014-02-28 18:46:19 -0800539/*
Aravind Akellaf895c682014-04-30 11:46:09 -0700540 * SENSOR_TYPE_WAKE_UP_TILT_DETECTOR
Aravind Akellac841efd2014-06-03 19:21:35 -0700541 * reporting-mode: special (setDelay has no impact)
Aravind Akellaf895c682014-04-30 11:46:09 -0700542 *
543 * A sensor of this type generates an event each time a tilt event is detected. A tilt event
544 * should be generated if the direction of the 2-seconds window average gravity changed by at least
Etienne Le Grand53017ef2014-05-28 15:42:48 -0700545 * 35 degrees since the activation or the last trigger of the sensor.
Etienne Le Grand426f14d2014-05-29 19:35:48 -0700546 * reference_estimated_gravity = average of accelerometer measurements over the first
Etienne Le Grand53017ef2014-05-28 15:42:48 -0700547 * 1 second after activation or the estimated gravity at the last
548 * trigger.
Aravind Akellaf895c682014-04-30 11:46:09 -0700549 * current_estimated_gravity = average of accelerometer measurements over the last 2 seconds.
Etienne Le Grand426f14d2014-05-29 19:35:48 -0700550 * trigger when angle (reference_estimated_gravity, current_estimated_gravity) > 35 degrees
Aravind Akellaf895c682014-04-30 11:46:09 -0700551 *
552 * Large accelerations without a change in phone orientation should not trigger a tilt event.
553 * For example, a sharp turn or strong acceleration while driving a car should not trigger a tilt
554 * event, even though the angle of the average acceleration might vary by more than 35 degrees.
555 *
556 * Typically, this sensor is implemented with the help of only an accelerometer. Other sensors can
557 * be used as well if they do not increase the power consumption significantly. This is a low power
558 * sensor that should allow the AP to go into suspend mode. Do not emulate this sensor in the HAL.
559 * Like other wake up sensors, the driver is expected to a hold a wake_lock with a timeout of 200 ms
560 * while reporting this event. The only allowed return value is 1.0.
Aravind Akella9057e122014-07-28 18:01:37 -0700561 *
562 * Implement only the wake-up version of this sensor.
Aravind Akellaf895c682014-04-30 11:46:09 -0700563 */
Aravind Akella9057e122014-07-28 18:01:37 -0700564#define SENSOR_TYPE_TILT_DETECTOR (22)
565#define SENSOR_STRING_TYPE_TILT_DETECTOR "android.sensor.tilt_detector"
Aravind Akellaf895c682014-04-30 11:46:09 -0700566
Etienne Le Grandba123122014-05-05 18:20:42 -0700567/*
568 * SENSOR_TYPE_WAKE_GESTURE
Aravind Akellac841efd2014-06-03 19:21:35 -0700569 * reporting-mode: one-shot
Etienne Le Grandba123122014-05-05 18:20:42 -0700570 *
571 * A sensor enabling waking up the device based on a device specific motion.
572 *
573 * When this sensor triggers, the device behaves as if the power button was
574 * pressed, turning the screen on. This behavior (turning on the screen when
575 * this sensor triggers) might be deactivated by the user in the device
576 * settings. Changes in settings do not impact the behavior of the sensor:
577 * only whether the framework turns the screen on when it triggers.
578 *
579 * The actual gesture to be detected is not specified, and can be chosen by
580 * the manufacturer of the device.
581 * This sensor must be low power, as it is likely to be activated 24/7.
582 * The only allowed value to return is 1.0.
Aravind Akella9057e122014-07-28 18:01:37 -0700583 *
584 * Implement only the wake-up version of this sensor.
Etienne Le Grandba123122014-05-05 18:20:42 -0700585 */
Aravind Akella9057e122014-07-28 18:01:37 -0700586#define SENSOR_TYPE_WAKE_GESTURE (23)
Etienne Le Grandba123122014-05-05 18:20:42 -0700587#define SENSOR_STRING_TYPE_WAKE_GESTURE "android.sensor.wake_gesture"
588
Jeff Brown8df2feb2014-07-17 15:11:51 -0700589/*
590 * SENSOR_TYPE_GLANCE_GESTURE
591 * reporting-mode: one-shot
Jeff Brown8df2feb2014-07-17 15:11:51 -0700592 *
593 * A sensor enabling briefly turning the screen on to enable the user to
594 * glance content on screen based on a specific motion. The device should
595 * turn the screen off after a few moments.
596 *
597 * When this sensor triggers, the device turns the screen on momentarily
598 * to allow the user to glance notifications or other content while the
599 * device remains locked in a non-interactive state (dozing). This behavior
600 * (briefly turning on the screen when this sensor triggers) might be deactivated
601 * by the user in the device settings. Changes in settings do not impact the
602 * behavior of the sensor: only whether the framework briefly turns the screen on
603 * when it triggers.
604 *
605 * The actual gesture to be detected is not specified, and can be chosen by
606 * the manufacturer of the device.
607 * This sensor must be low power, as it is likely to be activated 24/7.
608 * The only allowed value to return is 1.0.
Aravind Akella9057e122014-07-28 18:01:37 -0700609 *
610 * Implement only the wake-up version of this sensor.
Jeff Brown8df2feb2014-07-17 15:11:51 -0700611 */
Aravind Akella9057e122014-07-28 18:01:37 -0700612#define SENSOR_TYPE_GLANCE_GESTURE (24)
Jeff Brown8df2feb2014-07-17 15:11:51 -0700613#define SENSOR_STRING_TYPE_GLANCE_GESTURE "android.sensor.glance_gesture"
614
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800615/**
Aravind Akella952471e2014-07-17 12:40:54 -0700616 * SENSOR_TYPE_PICK_UP_GESTURE
617 * reporting-mode: one-shot
Aravind Akella952471e2014-07-17 12:40:54 -0700618 *
619 * A sensor of this type triggers when the device is picked up regardless of wherever is was
620 * before (desk, pocket, bag). The only allowed return value is 1.0.
621 * This sensor de-activates itself immediately after it triggers.
Aravind Akella9057e122014-07-28 18:01:37 -0700622 *
623 * Implement only the wake-up version of this sensor.
Aravind Akella952471e2014-07-17 12:40:54 -0700624 */
Aravind Akella9057e122014-07-28 18:01:37 -0700625#define SENSOR_TYPE_PICK_UP_GESTURE (25)
Aravind Akella952471e2014-07-17 12:40:54 -0700626#define SENSOR_STRING_TYPE_PICK_UP_GESTURE "android.sensor.pick_up_gesture"
627
Nick Vaccaroadbfbb72015-01-13 12:14:28 -0800628/*
629 * SENSOR_TYPE_WRIST_TILT_GESTURE
630 * trigger-mode: special
631 * wake-up sensor: yes
632 *
633 * A sensor of this type triggers an event each time a tilt of the wrist-worn
634 * device is detected.
635 *
636 * This sensor must be low power, as it is likely to be activated 24/7.
637 * The only allowed value to return is 1.0.
638 *
639 * Implement only the wake-up version of this sensor.
640 */
641#define SENSOR_TYPE_WRIST_TILT_GESTURE (26)
642#define SENSOR_STRING_TYPE_WRIST_TILT_GESTURE "android.sensor.wrist_tilt_gesture"
643
Aravind Akella952471e2014-07-17 12:40:54 -0700644/**
Ashutosh Joshi6507f502015-04-03 16:22:32 -0700645 * SENSOR_TYPE_TIME_SYNC
646 * reporting-mode: continuous
647 *
648 * A time synchronization mechanism sensor to synchronize timing between
649 * differnt parts of the device.
650 * This sensor returns the following values in the sensor_event
651 * Time_stamp of the event
652 * u64.data[0] -> Type of event latched
653 * u64.data[1] -> count
654 *
655 * Implement only the wake-up version of this sensor.
656 */
657#define SENSOR_TYPE_TIME_SYNC (SENSOR_TYPE_DEVICE_PRIVATE_BASE + 0x10)
658#define SENSOR_STRING_TYPE_TIME_SYNC "android.sensor.time_sync"
659
660/**
661 * SENSOR_TYPE_NUDGE_GESTURE
662 * reporting-mode: one-shot
663 *
664 * A sensor of this type triggers when the device is nudged.
665 *
666 * The only allowed return value is 1.0. This sensor
667 * de-activates itself immediately after it triggers.
668 *
669 * Implement only the wake-up version of this sensor.
670 */
671#define SENSOR_TYPE_NUDGE_GESTURE (SENSOR_TYPE_DEVICE_PRIVATE_BASE + 0x11)
672#define SENSOR_STRING_NUDGE_UP_GESTURE "android.sensor.nudge_gesture"
673
674/**
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800675 * Values returned by the accelerometer in various locations in the universe.
676 * all values are in SI units (m/s^2)
677 */
678#define GRAVITY_SUN (275.0f)
679#define GRAVITY_EARTH (9.80665f)
680
681/** Maximum magnetic field on Earth's surface */
682#define MAGNETIC_FIELD_EARTH_MAX (60.0f)
683
684/** Minimum magnetic field on Earth's surface */
685#define MAGNETIC_FIELD_EARTH_MIN (30.0f)
686
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800687/**
Etienne Le Grand7b361582014-05-16 11:08:28 -0700688 * Possible values of the status field of sensor events.
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800689 */
Etienne Le Grand7b361582014-05-16 11:08:28 -0700690#define SENSOR_STATUS_NO_CONTACT -1
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800691#define SENSOR_STATUS_UNRELIABLE 0
692#define SENSOR_STATUS_ACCURACY_LOW 1
693#define SENSOR_STATUS_ACCURACY_MEDIUM 2
694#define SENSOR_STATUS_ACCURACY_HIGH 3
695
Mathias Agopian56f66cc2012-11-08 15:57:38 -0800696/**
697 * sensor event data
698 */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800699typedef struct {
700 union {
701 float v[3];
702 struct {
703 float x;
704 float y;
705 float z;
706 };
707 struct {
708 float azimuth;
709 float pitch;
710 float roll;
711 };
712 };
713 int8_t status;
714 uint8_t reserved[3];
715} sensors_vec_t;
716
717/**
Etienne Le Grandca858142013-02-26 19:17:20 -0800718 * uncalibrated gyroscope and magnetometer event data
719 */
720typedef struct {
Etienne Le Grand28f04112013-03-27 18:59:10 -0700721 union {
722 float uncalib[3];
723 struct {
724 float x_uncalib;
725 float y_uncalib;
726 float z_uncalib;
727 };
728 };
729 union {
730 float bias[3];
731 struct {
732 float x_bias;
733 float y_bias;
734 float z_bias;
735 };
736 };
Etienne Le Grandca858142013-02-26 19:17:20 -0800737} uncalibrated_event_t;
738
Etienne Le Grand772d85a2014-08-19 14:30:19 -0700739/**
740 * Meta data event data
741 */
Mathias Agopian16671c52013-07-24 21:07:40 -0700742typedef struct meta_data_event {
743 int32_t what;
744 int32_t sensor;
745} meta_data_event_t;
746
Etienne Le Grandca858142013-02-26 19:17:20 -0800747/**
Etienne Le Grand7b361582014-05-16 11:08:28 -0700748 * Heart rate event data
749 */
750typedef struct {
751 // Heart rate in beats per minute.
752 // Set to 0 when status is SENSOR_STATUS_UNRELIABLE or ..._NO_CONTACT
753 float bpm;
754 // Status of the sensor for this reading. Set to one SENSOR_STATUS_...
Etienne Le Grand772d85a2014-08-19 14:30:19 -0700755 // Note that this value should only be set for sensors that explicitly define
756 // the meaning of this field. This field is not piped through the framework
757 // for other sensors.
Etienne Le Grand7b361582014-05-16 11:08:28 -0700758 int8_t status;
759} heart_rate_event_t;
760
761/**
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800762 * Union of the various types of sensor data
763 * that can be returned.
764 */
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700765typedef struct sensors_event_t {
766 /* must be sizeof(struct sensors_event_t) */
767 int32_t version;
768
769 /* sensor identifier */
770 int32_t sensor;
771
772 /* sensor type */
773 int32_t type;
774
775 /* reserved */
776 int32_t reserved0;
777
778 /* time is in nanosecond */
779 int64_t timestamp;
780
781 union {
Mathias Agopian27e16682013-07-08 14:00:54 -0700782 union {
783 float data[16];
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700784
Mathias Agopian27e16682013-07-08 14:00:54 -0700785 /* acceleration values are in meter per second per second (m/s^2) */
786 sensors_vec_t acceleration;
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700787
Mathias Agopian27e16682013-07-08 14:00:54 -0700788 /* magnetic vector values are in micro-Tesla (uT) */
789 sensors_vec_t magnetic;
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700790
Mathias Agopian27e16682013-07-08 14:00:54 -0700791 /* orientation values are in degrees */
792 sensors_vec_t orientation;
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700793
Mathias Agopian27e16682013-07-08 14:00:54 -0700794 /* gyroscope values are in rad/s */
795 sensors_vec_t gyro;
Makarand Karvekar3120b582010-08-11 15:10:10 -0700796
Mathias Agopian27e16682013-07-08 14:00:54 -0700797 /* temperature is in degrees centigrade (Celsius) */
798 float temperature;
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700799
Mathias Agopian27e16682013-07-08 14:00:54 -0700800 /* distance in centimeters */
801 float distance;
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700802
Mathias Agopian27e16682013-07-08 14:00:54 -0700803 /* light in SI lux units */
804 float light;
Mathias Agopian1832f552010-07-29 15:22:30 -0700805
Mathias Agopian27e16682013-07-08 14:00:54 -0700806 /* pressure in hectopascal (hPa) */
807 float pressure;
Urs Fleischd2ed15a2010-12-29 17:00:33 +0100808
Mathias Agopian27e16682013-07-08 14:00:54 -0700809 /* relative humidity in percent */
810 float relative_humidity;
Mathias Agopiana4557722012-11-28 17:21:55 -0800811
Mathias Agopian27e16682013-07-08 14:00:54 -0700812 /* uncalibrated gyroscope values are in rad/s */
813 uncalibrated_event_t uncalibrated_gyro;
Etienne Le Grandca858142013-02-26 19:17:20 -0800814
Mathias Agopian27e16682013-07-08 14:00:54 -0700815 /* uncalibrated magnetometer values are in micro-Teslas */
816 uncalibrated_event_t uncalibrated_magnetic;
Mathias Agopian16671c52013-07-24 21:07:40 -0700817
Etienne Le Grand7b361582014-05-16 11:08:28 -0700818 /* heart rate data containing value in bpm and status */
819 heart_rate_event_t heart_rate;
Aravind Akella477fbd52014-04-07 22:46:01 +0000820
Mathias Agopian16671c52013-07-24 21:07:40 -0700821 /* this is a special event. see SENSOR_TYPE_META_DATA above.
822 * sensors_meta_data_event_t events are all reported with a type of
823 * SENSOR_TYPE_META_DATA. The handle is ignored and must be zero.
824 */
825 meta_data_event_t meta_data;
Mathias Agopian27e16682013-07-08 14:00:54 -0700826 };
Etienne Le Grandca858142013-02-26 19:17:20 -0800827
Mathias Agopian27e16682013-07-08 14:00:54 -0700828 union {
829 uint64_t data[8];
830
831 /* step-counter */
832 uint64_t step_counter;
833 } u64;
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700834 };
Aravind Akella6242f322014-02-28 18:46:19 -0800835
836 /* Reserved flags for internal use. Set to zero. */
837 uint32_t flags;
838
839 uint32_t reserved1[3];
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700840} sensors_event_t;
841
842
Mathias Agopian16671c52013-07-24 21:07:40 -0700843/* see SENSOR_TYPE_META_DATA */
844typedef sensors_event_t sensors_meta_data_event_t;
845
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700846
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800847struct sensor_t;
848
849/**
850 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
851 * and the fields of this data structure must begin with hw_module_t
852 * followed by module specific information.
853 */
854struct sensors_module_t {
855 struct hw_module_t common;
856
857 /**
858 * Enumerate all available sensors. The list is returned in "list".
859 * @return number of sensors in the list
860 */
861 int (*get_sensors_list)(struct sensors_module_t* module,
862 struct sensor_t const** list);
Ashutosh Joshi6507f502015-04-03 16:22:32 -0700863
864 /**
865 * Place the module in a specific mode. The following modes are defined
866 *
867 * 0 - Normal operation. Default state of the module.
868 * 1 - Loopback mode. Data is injected for the the supported sensors by
869 * the sensor service in this mode.
870 */
871 int (*set_operation_mode)(unsigned int mode);
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800872};
873
874struct sensor_t {
Mathias Agopian1144bea2013-01-29 15:52:10 -0800875
876 /* Name of this sensor.
877 * All sensors of the same "type" must have a different "name".
878 */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800879 const char* name;
Mathias Agopiana4557722012-11-28 17:21:55 -0800880
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800881 /* vendor of the hardware part */
882 const char* vendor;
Mathias Agopiana4557722012-11-28 17:21:55 -0800883
Mathias Agopiane9eaf372011-11-07 21:32:34 -0800884 /* version of the hardware part + driver. The value of this field
885 * must increase when the driver is updated in a way that changes the
886 * output of this sensor. This is important for fused sensors when the
887 * fusion algorithm is updated.
Aravind Akella6242f322014-02-28 18:46:19 -0800888 */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800889 int version;
Mathias Agopiana4557722012-11-28 17:21:55 -0800890
891 /* handle that identifies this sensors. This handle is used to reference
892 * this sensor throughout the HAL API.
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800893 */
894 int handle;
Mathias Agopiana4557722012-11-28 17:21:55 -0800895
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800896 /* this sensor's type. */
897 int type;
Mathias Agopiana4557722012-11-28 17:21:55 -0800898
899 /* maximum range of this sensor's value in SI units */
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800900 float maxRange;
Mathias Agopiana4557722012-11-28 17:21:55 -0800901
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800902 /* smallest difference between two values reported by this sensor */
903 float resolution;
Mathias Agopiana4557722012-11-28 17:21:55 -0800904
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800905 /* rough estimate of this sensor's power consumption in mA */
906 float power;
Mathias Agopiana4557722012-11-28 17:21:55 -0800907
Aravind Akellac841efd2014-06-03 19:21:35 -0700908 /* this value depends on the reporting mode:
Mathias Agopiana4557722012-11-28 17:21:55 -0800909 *
910 * continuous: minimum sample period allowed in microseconds
911 * on-change : 0
912 * one-shot :-1
913 * special : 0, unless otherwise noted
914 */
Mathias Agopian1511e202010-07-29 15:33:22 -0700915 int32_t minDelay;
Mathias Agopiana4557722012-11-28 17:21:55 -0800916
Mathias Agopian16671c52013-07-24 21:07:40 -0700917 /* number of events reserved for this sensor in the batch mode FIFO.
918 * If there is a dedicated FIFO for this sensor, then this is the
919 * size of this FIFO. If the FIFO is shared with other sensors,
920 * this is the size reserved for that sensor and it can be zero.
921 */
922 uint32_t fifoReservedEventCount;
923
924 /* maximum number of events of this sensor that could be batched.
925 * This is especially relevant when the FIFO is shared between
926 * several sensors; this value is then set to the size of that FIFO.
927 */
928 uint32_t fifoMaxEventCount;
929
Aravind Akella477fbd52014-04-07 22:46:01 +0000930 /* type of this sensor as a string. Set to corresponding
931 * SENSOR_STRING_TYPE_*.
932 * When defining an OEM specific sensor or sensor manufacturer specific
933 * sensor, use your reserve domain name as a prefix.
934 * ex: com.google.glass.onheaddetector
935 * For sensors of known type, the android framework might overwrite this
936 * string automatically.
937 */
938 const char* stringType;
939
940 /* permission required to see this sensor, register to it and receive data.
941 * Set to "" if no permission is required. Some sensor types like the
942 * heart rate monitor have a mandatory require_permission.
943 * For sensors that always require a specific permission, like the heart
944 * rate monitor, the android framework might overwrite this string
945 * automatically.
946 */
947 const char* requiredPermission;
948
Aravind Akella110d2f22014-09-04 15:36:31 -0700949 /* This value is defined only for continuous mode and on-change sensors. It is the delay between
950 * two sensor events corresponding to the lowest frequency that this sensor supports. When lower
951 * frequencies are requested through batch()/setDelay() the events will be generated at this
952 * frequency instead. It can be used by the framework or applications to estimate when the batch
953 * FIFO may be full.
Aravind Akellac841efd2014-06-03 19:21:35 -0700954 *
955 * NOTE: 1) period_ns is in nanoseconds where as maxDelay/minDelay are in microseconds.
Aravind Akella110d2f22014-09-04 15:36:31 -0700956 * continuous, on-change: maximum sampling period allowed in microseconds.
957 * one-shot, special : 0
Aravind Akellac841efd2014-06-03 19:21:35 -0700958 * 2) maxDelay should always fit within a 32 bit signed integer. It is declared as 64 bit
959 * on 64 bit architectures only for binary compatibility reasons.
Aravind Akella6242f322014-02-28 18:46:19 -0800960 * Availability: SENSORS_DEVICE_API_VERSION_1_3
961 */
962 #ifdef __LP64__
963 int64_t maxDelay;
964 #else
965 int32_t maxDelay;
966 #endif
967
Aravind Akellac841efd2014-06-03 19:21:35 -0700968 /* Flags for sensor. See SENSOR_FLAG_* above. Only the least significant 32 bits are used here.
969 * It is declared as 64 bit on 64 bit architectures only for binary compatibility reasons.
970 * Availability: SENSORS_DEVICE_API_VERSION_1_3
971 */
Aravind Akella6242f322014-02-28 18:46:19 -0800972 #ifdef __LP64__
973 uint64_t flags;
974 #else
975 uint32_t flags;
976 #endif
977
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800978 /* reserved fields, must be zero */
Aravind Akella6242f322014-02-28 18:46:19 -0800979 void* reserved[2];
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800980};
981
982
Mathias Agopiana4557722012-11-28 17:21:55 -0800983/*
984 * sensors_poll_device_t is used with SENSORS_DEVICE_API_VERSION_0_1
985 * and is present for backward binary and source compatibility.
Clay Murphy8db1fb42013-12-19 09:58:28 -0800986 * See the Sensors HAL interface section for complete descriptions of the
987 * following functions:
988 * http://source.android.com/devices/sensors/index.html#hal
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800989 */
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700990struct sensors_poll_device_t {
991 struct hw_device_t common;
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700992 int (*activate)(struct sensors_poll_device_t *dev,
Etienne Le Grand772d85a2014-08-19 14:30:19 -0700993 int sensor_handle, int enabled);
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700994 int (*setDelay)(struct sensors_poll_device_t *dev,
Etienne Le Grand772d85a2014-08-19 14:30:19 -0700995 int sensor_handle, int64_t sampling_period_ns);
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700996 int (*poll)(struct sensors_poll_device_t *dev,
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700997 sensors_event_t* data, int count);
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700998};
999
Mathias Agopiana4557722012-11-28 17:21:55 -08001000/*
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001001 * struct sensors_poll_device_1 is used in HAL versions >= SENSORS_DEVICE_API_VERSION_1_0
Mathias Agopiana4557722012-11-28 17:21:55 -08001002 */
1003typedef struct sensors_poll_device_1 {
1004 union {
1005 /* sensors_poll_device_1 is compatible with sensors_poll_device_t,
1006 * and can be down-cast to it
1007 */
Andrew Hsieh1082c0b2012-12-11 20:51:41 -08001008 struct sensors_poll_device_t v0;
Mathias Agopiana4557722012-11-28 17:21:55 -08001009
1010 struct {
1011 struct hw_device_t common;
1012
Clay Murphy8db1fb42013-12-19 09:58:28 -08001013 /* Activate/de-activate one sensor. Return 0 on success, negative
Mathias Agopiana4557722012-11-28 17:21:55 -08001014 *
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001015 * sensor_handle is the handle of the sensor to change.
Mathias Agopiana4557722012-11-28 17:21:55 -08001016 * enabled set to 1 to enable, or 0 to disable the sensor.
1017 *
Clay Murphy8db1fb42013-12-19 09:58:28 -08001018 * Return 0 on success, negative errno code otherwise.
Mathias Agopiana4557722012-11-28 17:21:55 -08001019 */
1020 int (*activate)(struct sensors_poll_device_t *dev,
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001021 int sensor_handle, int enabled);
Mathias Agopiana4557722012-11-28 17:21:55 -08001022
1023 /**
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001024 * Set the events's period in nanoseconds for a given sensor.
1025 * If sampling_period_ns > max_delay it will be truncated to
1026 * max_delay and if sampling_period_ns < min_delay it will be
1027 * replaced by min_delay.
Mathias Agopiana4557722012-11-28 17:21:55 -08001028 */
1029 int (*setDelay)(struct sensors_poll_device_t *dev,
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001030 int sensor_handle, int64_t sampling_period_ns);
Mathias Agopiana4557722012-11-28 17:21:55 -08001031
1032 /**
1033 * Returns an array of sensor data.
Mathias Agopiana4557722012-11-28 17:21:55 -08001034 */
1035 int (*poll)(struct sensors_poll_device_t *dev,
1036 sensors_event_t* data, int count);
1037 };
1038 };
1039
Mathias Agopiana4557722012-11-28 17:21:55 -08001040
1041 /*
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001042 * Sets a sensor’s parameters, including sampling frequency and maximum
1043 * report latency. This function can be called while the sensor is
1044 * activated, in which case it must not cause any sensor measurements to
1045 * be lost: transitioning from one sampling rate to the other cannot cause
1046 * lost events, nor can transitioning from a high maximum report latency to
1047 * a low maximum report latency.
Clay Murphy8db1fb42013-12-19 09:58:28 -08001048 * See the Batching sensor results page for details:
1049 * http://source.android.com/devices/sensors/batching.html
Mathias Agopiana4557722012-11-28 17:21:55 -08001050 */
1051 int (*batch)(struct sensors_poll_device_1* dev,
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001052 int sensor_handle, int flags, int64_t sampling_period_ns,
1053 int64_t max_report_latency_ns);
Mathias Agopiana4557722012-11-28 17:21:55 -08001054
Mathias Agopian16671c52013-07-24 21:07:40 -07001055 /*
1056 * Flush adds a META_DATA_FLUSH_COMPLETE event (sensors_event_meta_data_t)
1057 * to the end of the "batch mode" FIFO for the specified sensor and flushes
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001058 * the FIFO.
1059 * If the FIFO is empty or if the sensor doesn't support batching (FIFO size zero),
Aravind Akellac841efd2014-06-03 19:21:35 -07001060 * it should return SUCCESS along with a trivial META_DATA_FLUSH_COMPLETE event added to the
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001061 * event stream. This applies to all sensors other than one-shot sensors.
1062 * If the sensor is a one-shot sensor, flush must return -EINVAL and not generate
1063 * any flush complete metadata.
Aravind Akellaa7f2cda2014-08-21 16:31:14 -07001064 * If the sensor is not active at the time flush() is called, flush() should return
1065 * -EINVAL.
Mathias Agopian16671c52013-07-24 21:07:40 -07001066 */
Etienne Le Grand772d85a2014-08-19 14:30:19 -07001067 int (*flush)(struct sensors_poll_device_1* dev, int sensor_handle);
Mathias Agopian16671c52013-07-24 21:07:40 -07001068
Ashutosh Joshi6507f502015-04-03 16:22:32 -07001069 /*
1070 * Inject a sensor samples to be to this device.
1071 */
1072 int (*inject_sensor_data)(struct sensors_poll_device_1 *dev, const sensors_event_t *data);
1073
1074 void (*reserved_procs[7])(void);
Mathias Agopiana4557722012-11-28 17:21:55 -08001075
1076} sensors_poll_device_1_t;
1077
1078
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001079/** convenience API for opening and closing a device */
1080
Mathias Agopianb1e212e2010-07-08 16:44:54 -07001081static inline int sensors_open(const struct hw_module_t* module,
1082 struct sensors_poll_device_t** device) {
1083 return module->methods->open(module,
1084 SENSORS_HARDWARE_POLL, (struct hw_device_t**)device);
1085}
1086
1087static inline int sensors_close(struct sensors_poll_device_t* device) {
1088 return device->common.close(&device->common);
1089}
1090
Mathias Agopiana4557722012-11-28 17:21:55 -08001091static inline int sensors_open_1(const struct hw_module_t* module,
Andrew Hsieh1082c0b2012-12-11 20:51:41 -08001092 sensors_poll_device_1_t** device) {
Mathias Agopiana4557722012-11-28 17:21:55 -08001093 return module->methods->open(module,
1094 SENSORS_HARDWARE_POLL, (struct hw_device_t**)device);
1095}
1096
Andrew Hsieh1082c0b2012-12-11 20:51:41 -08001097static inline int sensors_close_1(sensors_poll_device_1_t* device) {
Mathias Agopiana4557722012-11-28 17:21:55 -08001098 return device->common.close(&device->common);
1099}
1100
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001101__END_DECLS
1102
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001103#endif // ANDROID_SENSORS_INTERFACE_H