blob: 7439c5ee3ecb8486dc240b55e33420409267c200 [file] [log] [blame]
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
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 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
29/**
30 * The id of this module
31 */
32#define SENSORS_HARDWARE_MODULE_ID "sensors"
33
34/**
35 * Name of the sensors device to open
36 */
Mathias Agopianb1e212e2010-07-08 16:44:54 -070037#define SENSORS_HARDWARE_POLL "poll"
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080038
39/**
40 * Handles must be higher than SENSORS_HANDLE_BASE and must be unique.
41 * A Handle identifies a given sensors. The handle is used to activate
42 * and/or deactivate sensors.
43 * In this version of the API there can only be 256 handles.
44 */
45#define SENSORS_HANDLE_BASE 0
46#define SENSORS_HANDLE_BITS 8
47#define SENSORS_HANDLE_COUNT (1<<SENSORS_HANDLE_BITS)
48
49
50/**
51 * Sensor types
52 */
53#define SENSOR_TYPE_ACCELEROMETER 1
54#define SENSOR_TYPE_MAGNETIC_FIELD 2
55#define SENSOR_TYPE_ORIENTATION 3
56#define SENSOR_TYPE_GYROSCOPE 4
57#define SENSOR_TYPE_LIGHT 5
58#define SENSOR_TYPE_PRESSURE 6
59#define SENSOR_TYPE_TEMPERATURE 7
60#define SENSOR_TYPE_PROXIMITY 8
61
62/**
63 * Values returned by the accelerometer in various locations in the universe.
64 * all values are in SI units (m/s^2)
65 */
66
67#define GRAVITY_SUN (275.0f)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080068#define GRAVITY_EARTH (9.80665f)
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -080069
70/** Maximum magnetic field on Earth's surface */
71#define MAGNETIC_FIELD_EARTH_MAX (60.0f)
72
73/** Minimum magnetic field on Earth's surface */
74#define MAGNETIC_FIELD_EARTH_MIN (30.0f)
75
76
77/**
78 * status of each sensor
79 */
80
81#define SENSOR_STATUS_UNRELIABLE 0
82#define SENSOR_STATUS_ACCURACY_LOW 1
83#define SENSOR_STATUS_ACCURACY_MEDIUM 2
84#define SENSOR_STATUS_ACCURACY_HIGH 3
85
86/**
87 * Definition of the axis
88 * ----------------------
89 *
90 * This API is relative to the screen of the device in its default orientation,
91 * that is, if the device can be used in portrait or landscape, this API
92 * is only relative to the NATURAL orientation of the screen. In other words,
93 * the axis are not swapped when the device's screen orientation changes.
94 * Higher level services /may/ perform this transformation.
95 *
96 * x<0 x>0
97 * ^
98 * |
99 * +-----------+--> y>0
100 * | |
101 * | |
102 * | |
103 * | | / z<0
104 * | | /
105 * | | /
106 * O-----------+/
107 * |[] [ ] []/
108 * +----------/+ y<0
109 * /
110 * /
111 * |/ z>0 (toward the sky)
112 *
113 * O: Origin (x=0,y=0,z=0)
114 *
115 *
116 * Orientation
117 * -----------
118 *
119 * All values are angles in degrees.
120 *
121 * azimuth: angle between the magnetic north direction and the Y axis, around
122 * the Z axis (0<=azimuth<360).
123 * 0=North, 90=East, 180=South, 270=West
124 *
125 * pitch: Rotation around X axis (-180<=pitch<=180), with positive values when
126 * the z-axis moves toward the y-axis.
127 *
128 * roll: Rotation around Y axis (-90<=roll<=90), with positive values when
Mathias Agopian19ea59f2010-02-26 13:15:18 -0800129 * the x-axis moves towards the z-axis.
130 *
131 * Note: For historical reasons the roll angle is positive in the clockwise
132 * direction (mathematically speaking, it should be positive in the
133 * counter-clockwise direction):
134 *
135 * Z
136 * ^
137 * (+roll) .--> |
138 * / |
139 * | | roll: rotation around Y axis
140 * X <-------(.)
141 * Y
142 * note that +Y == -roll
143 *
144 *
145 *
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800146 * Note: This definition is different from yaw, pitch and roll used in aviation
147 * where the X axis is along the long side of the plane (tail to nose).
148 *
149 *
150 * Acceleration
151 * ------------
152 *
153 * All values are in SI units (m/s^2) and measure the acceleration of the
154 * device minus the force of gravity.
155 *
156 * x: Acceleration minus Gx on the x-axis
157 * y: Acceleration minus Gy on the y-axis
158 * z: Acceleration minus Gz on the z-axis
159 *
160 * Examples:
161 * When the device lies flat on a table and is pushed on its left side
162 * toward the right, the x acceleration value is positive.
163 *
164 * When the device lies flat on a table, the acceleration value is +9.81,
165 * which correspond to the acceleration of the device (0 m/s^2) minus the
166 * force of gravity (-9.81 m/s^2).
167 *
168 * When the device lies flat on a table and is pushed toward the sky, the
169 * acceleration value is greater than +9.81, which correspond to the
170 * acceleration of the device (+A m/s^2) minus the force of
171 * gravity (-9.81 m/s^2).
172 *
173 *
174 * Magnetic Field
175 * --------------
176 *
177 * All values are in micro-Tesla (uT) and measure the ambient magnetic
178 * field in the X, Y and Z axis.
Mike Lockwooda2414312009-11-03 10:29:50 -0500179 *
180 * Proximity
181 * ---------
182 *
183 * The distance value is measured in centimeters. Note that some proximity
184 * sensors only support a binary "close" or "far" measurement. In this case,
185 * the sensor should report its maxRange value in the "far" state and a value
186 * less than maxRange in the "near" state.
187 *
188 * Light
189 * -----
190 *
191 * The light sensor value is returned in SI lux units.
192 *
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800193 */
194typedef struct {
195 union {
196 float v[3];
197 struct {
198 float x;
199 float y;
200 float z;
201 };
202 struct {
203 float azimuth;
204 float pitch;
205 float roll;
206 };
207 };
208 int8_t status;
209 uint8_t reserved[3];
210} sensors_vec_t;
211
212/**
213 * Union of the various types of sensor data
214 * that can be returned.
215 */
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700216typedef struct sensors_event_t {
217 /* must be sizeof(struct sensors_event_t) */
218 int32_t version;
219
220 /* sensor identifier */
221 int32_t sensor;
222
223 /* sensor type */
224 int32_t type;
225
226 /* reserved */
227 int32_t reserved0;
228
229 /* time is in nanosecond */
230 int64_t timestamp;
231
232 union {
233 float data[16];
234
235 /* acceleration values are in meter per second per second (m/s^2) */
236 sensors_vec_t acceleration;
237
238 /* magnetic vector values are in micro-Tesla (uT) */
239 sensors_vec_t magnetic;
240
241 /* orientation values are in degrees */
242 sensors_vec_t orientation;
243
244 /* temperature is in degrees centigrade (Celsius) */
245 float temperature;
246
247 /* distance in centimeters */
248 float distance;
249
250 /* light in SI lux units */
251 float light;
252 };
253 uint32_t reserved1[4];
254} sensors_event_t;
255
256
257
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800258struct sensor_t;
259
260/**
261 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
262 * and the fields of this data structure must begin with hw_module_t
263 * followed by module specific information.
264 */
265struct sensors_module_t {
266 struct hw_module_t common;
267
268 /**
269 * Enumerate all available sensors. The list is returned in "list".
270 * @return number of sensors in the list
271 */
272 int (*get_sensors_list)(struct sensors_module_t* module,
273 struct sensor_t const** list);
274};
275
276struct sensor_t {
277 /* name of this sensors */
278 const char* name;
279 /* vendor of the hardware part */
280 const char* vendor;
281 /* version of the hardware part + driver. The value of this field is
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700282 * left to the implementation and doesn't have to be monotonically
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800283 * increasing.
284 */
285 int version;
286 /* handle that identifies this sensors. This handle is used to activate
287 * and deactivate this sensor. The value of the handle must be 8 bits
288 * in this version of the API.
289 */
290 int handle;
291 /* this sensor's type. */
292 int type;
293 /* maximaum range of this sensor's value in SI units */
294 float maxRange;
295 /* smallest difference between two values reported by this sensor */
296 float resolution;
297 /* rough estimate of this sensor's power consumption in mA */
298 float power;
299 /* reserved fields, must be zero */
300 void* reserved[9];
301};
302
303
304/**
305 * Every device data structure must begin with hw_device_t
306 * followed by module specific public methods and attributes.
307 */
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700308struct sensors_poll_device_t {
309 struct hw_device_t common;
310
311 /** Activate/deactivate one sensor.
312 *
313 * @param handle is the handle of the sensor to change.
314 * @param enabled set to 1 to enable, or 0 to disable the sensor.
315 *
316 * @return 0 on success, negative errno code otherwise
317 */
318 int (*activate)(struct sensors_poll_device_t *dev,
319 int handle, int enabled);
320
321 /**
322 * Set the delay between sensor events in nanoseconds for a given sensor
323 *
324 * @return 0 if successful, < 0 on error
325 */
326 int (*setDelay)(struct sensors_poll_device_t *dev,
327 int handle, int64_t ns);
328
329 /**
330 * Returns an array of sensor data.
331 *
332 * @return the number of events read on success, or -errno in case of an error.
333 *
334 */
335 int (*poll)(struct sensors_poll_device_t *dev,
Mathias Agopiancdefccd2010-07-15 18:29:03 -0700336 sensors_event_t* data, int count);
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700337};
338
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800339/** convenience API for opening and closing a device */
340
Mathias Agopianb1e212e2010-07-08 16:44:54 -0700341static inline int sensors_open(const struct hw_module_t* module,
342 struct sensors_poll_device_t** device) {
343 return module->methods->open(module,
344 SENSORS_HARDWARE_POLL, (struct hw_device_t**)device);
345}
346
347static inline int sensors_close(struct sensors_poll_device_t* device) {
348 return device->common.close(&device->common);
349}
350
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800351__END_DECLS
352
Mathias Agopian98c53092010-07-19 15:32:24 -0700353#include <hardware/sensors_deprecated.h>
354
The Android Open Source Projectf53ebec2009-03-03 19:32:14 -0800355#endif // ANDROID_SENSORS_INTERFACE_H