blob: afef55fffdf9a36659083999d2acb48573d7b9cc [file] [log] [blame]
Hridya Valsarajue596a712016-09-22 14:07:22 -07001/*
2 * Copyright (C) 2016 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
17package android.hardware.gnss@1.0;
18
19/*
20 * The interface is required for the HAL to communicate certain information
21 * like status and location info back to the platform, the platform implements
22 * the interfaces and passes a handle to the HAL.
23 */
24interface IGnssCallback {
25 /* Flags for the gnssSetCapabilities callback. */
26 enum Capabilities : uint32_t {
27 /*
28 * GNSS HAL schedules fixes for RECURRENCE_PERIODIC mode.
29 * If this is not set, then the framework will use 1000ms for
30 * minInterval and will call start() and stop() to schedule the GNSS.
31 */
gomoc3d92782017-01-11 14:04:21 -080032 SCHEDULING = 1 << 0,
Hridya Valsarajue596a712016-09-22 14:07:22 -070033 /** GNSS supports MS-Based AGNSS mode */
gomoc3d92782017-01-11 14:04:21 -080034 MSB = 1 << 1,
Hridya Valsarajue596a712016-09-22 14:07:22 -070035 /** GNSS supports MS-Assisted AGNSS mode */
gomoc3d92782017-01-11 14:04:21 -080036 MSA = 1 << 2,
Hridya Valsarajue596a712016-09-22 14:07:22 -070037 /** GNSS supports single-shot fixes */
gomoc3d92782017-01-11 14:04:21 -080038 SINGLE_SHOT = 1 << 3,
Hridya Valsarajue596a712016-09-22 14:07:22 -070039 /** GNSS supports on demand time injection */
gomoc3d92782017-01-11 14:04:21 -080040 ON_DEMAND_TIME = 1 << 4,
Hridya Valsarajue596a712016-09-22 14:07:22 -070041 /** GNSS supports Geofencing */
gomoc3d92782017-01-11 14:04:21 -080042 GEOFENCING = 1 << 5,
43 /** GNSS supports Measurements for at least GPS. */
44 MEASUREMENTS = 1 << 6,
Hridya Valsarajue596a712016-09-22 14:07:22 -070045 /** GNSS supports Navigation Messages */
gomoc3d92782017-01-11 14:04:21 -080046 NAV_MESSAGES = 1 << 7
Hridya Valsarajue596a712016-09-22 14:07:22 -070047 };
48
49 /* GNSS status event values. */
Hridya Valsaraju97ecaa02016-11-02 10:20:07 -070050 enum GnssStatusValue : uint8_t {
Hridya Valsarajue596a712016-09-22 14:07:22 -070051 /** GNSS status unknown. */
Hridya Valsaraju97ecaa02016-11-02 10:20:07 -070052 NONE = 0,
Hridya Valsarajue596a712016-09-22 14:07:22 -070053 /** GNSS has begun navigating. */
54 SESSION_BEGIN = 1,
55 /** GNSS has stopped navigating. */
56 SESSION_END = 2,
57 /** GNSS has powered on but is not navigating. */
58 ENGINE_ON = 3,
59 /** GNSS is powered off. */
60 ENGINE_OFF = 4
61 };
62
63 /*
64 * Flags that indicate information about the satellite
65 */
66 enum GnssSvFlags : uint8_t {
gomoc3d92782017-01-11 14:04:21 -080067 NONE = 0,
68 HAS_EPHEMERIS_DATA = 1 << 0,
69 HAS_ALMANAC_DATA = 1 << 1,
70 USED_IN_FIX = 1 << 2,
71 HAS_CARRIER_FREQUENCY = 1 << 3
Hridya Valsarajue596a712016-09-22 14:07:22 -070072 };
73
74 struct GnssSvInfo {
75 /*
76 * Pseudo-random number for the SV, or FCN/OSN number for Glonass. The
77 * distinction is made by looking at constellation field. Values must be
78 * in the range of:
79 *
80 * - GNSS: 1-32
81 * - SBAS: 120-151, 183-192
82 * - GLONASS: 1-24, the orbital slot number (OSN), if known. Or, if not:
83 * 93-106, the frequency channel number (FCN) (-7 to +6) offset by
84 * + 100
85 * i.e. report an FCN of -7 as 93, FCN of 0 as 100, and FCN of +6
86 * as 106.
87 * - QZSS: 193-200
88 * - Galileo: 1-36
89 * - Beidou: 1-37
90 */
91 int16_t svid;
92
93 /*
94 * Defines the constellation of the given SV.
95 */
96 GnssConstellationType constellation;
97
98 /*
99 * Carrier-to-noise density in dB-Hz, typically in the range [0, 63].
100 * It contains the measured C/N0 value for the signal at the antenna port.
101 *
102 * This is a mandatory value.
103 */
104 float cN0Dbhz;
105
106 /** Elevation of SV in degrees. */
107 float elevationDegrees;
108
109 /** Azimuth of SV in degrees. */
110 float azimuthDegrees;
111
112 /*
gomoc3d92782017-01-11 14:04:21 -0800113 * Carrier frequency of the signal tracked, for example it can be the
gomod567a992017-01-20 00:00:42 -0800114 * GPS central frequency for L1 = 1575.45 MHz, or L2 = 1227.60 MHz, L5 =
115 * 1176.45 MHz, varying GLO channels, etc. If the field is not set, it
116 * is the primary common use central frequency, e.g. L1 = 1575.45 MHz
117 * for GPS.
118 *
119 * For an L1, L5 receiver tracking a satellite on L1 and L5 at the same
120 * time, two GnssSvInfo structs must be reported for this same
121 * satellite, in one of the structs, all the values related
122 * to L1 must be filled, and in the other all of the values related to
123 * L5 must be filled.
gomoc3d92782017-01-11 14:04:21 -0800124 *
125 * If the data is available, gnssClockFlags must contain
126 * HAS_CARRIER_FREQUENCY.
127 */
128 float carrierFrequencyHz;
129
130 /*
Hridya Valsarajue596a712016-09-22 14:07:22 -0700131 * Contains additional data about the given SV.
132 */
Yifan Hong35e2aac2016-12-05 12:35:05 -0800133 bitfield<GnssSvFlags> svFlag;
Hridya Valsarajue596a712016-09-22 14:07:22 -0700134 };
135
136 /*
137 * Represents SV status.
138 */
139 struct GnssSvStatus {
140 /*
141 * Number of GNSS SVs currently visible, refers to the SVs stored in sv_list
142 */
Hridya Valsaraju97ecaa02016-11-02 10:20:07 -0700143 uint32_t numSvs;
Hridya Valsarajue596a712016-09-22 14:07:22 -0700144
145 /*
146 * Pointer to an array of SVs information for all GNSS constellations,
147 * except GNSS, which is reported using svList
148 */
Hridya Valsaraju97ecaa02016-11-02 10:20:07 -0700149 GnssSvInfo[GnssMax:SVS_COUNT] gnssSvList;
Hridya Valsarajue596a712016-09-22 14:07:22 -0700150
151 };
152
153 /*
154 * Called when a GNSS location is available.
155 *
156 * @param location Location information from HAL.
157 */
158 gnssLocationCb(GnssLocation location);
159
160 /*
161 * Called to communicate the status of the GNSS engine.
162 *
163 * @param status Status information from HAL.
164 */
165 gnssStatusCb(GnssStatusValue status);
166
167 /*
168 * @param svInfo SV status information from HAL.
169 */
170 gnssSvStatusCb(GnssSvStatus svInfo);
171
172 /*
173 * Called when NMEA data is available.
174 * Callback for reporting NMEA sentences.
175 *
176 * @param timestamp Marks the instance of reporting.
177 * @param nmea Follows standard NMEA 0183. Each sentence begins with a '$'
178 * and ends with a carriage return/line feed sequence and can be no longer
179 * than 80 characters of visible text (plus the line terminators). The data
180 * is contained within this single line with data items separated by commas.
181 * The data itself is just ascii text and may extend over multiple sentences
182 * in certain specialized instances but is normally fully contained in one
183 * variable length sentence. The data may vary in the amount of precision
184 * contained in the message. For example time might be indicated to decimal
185 * parts of a second or location may be shown with 3 or even 4 digits after
186 * the decimal point. Programs that read the data must only use the commas
187 * to determine the field boundaries and not depend on column positions.
188 * There is a provision for a checksum at the end of each sentence which may
189 * or may not be checked by the unit that reads the data. The checksum field
190 * consists of a '*' and two hex digits representing an 8 bit exclusive OR
191 * of all characters between, but not including, the '$' and '*'.
192 */
193 gnssNmeaCb(GnssUtcTime timestamp, string nmea);
194
195 /*
196 * Callback to inform framework of the GNSS engine's capabilities.
197 *
198 * @param capabilities Capability parameter is a bit field of
199 * the Capabilities enum.
200 */
Yifan Hong7037fdb2016-12-05 17:16:09 -0800201 gnssSetCapabilitesCb(bitfield<Capabilities> capabilities);
Hridya Valsarajue596a712016-09-22 14:07:22 -0700202
203 /*
204 * Callback utility for acquiring the GNSS wakelock. This can be used to prevent
205 * the CPU from suspending while handling GNSS events.
206 */
207 gnssAcquireWakelockCb();
208
209 /** Callback utility for releasing the GNSS wakelock. */
210 gnssReleaseWakelockCb();
211
212 /** Callback for requesting NTP time */
213 gnssRequestTimeCb();
214
215 /*
216 * Provides information about how new the underlying GPS/GNSS hardware and
217 * software is.
218 *
219 * This information will be available for Android Test Applications. If a GNSS
220 * HAL does not provide this information, it will be considered "2015 or
221 * earlier".
222 *
223 * If a GNSS HAL does provide this information, then newer years will need to
224 * meet newer CTS standards. E.g. if the date are 2016 or above, then N+ level
225 * GnssMeasurement support will be verified.
226 */
227 struct GnssSystemInfo{
228 /*
229 * year in which the last update was made to the underlying hardware/firmware
230 * used to capture GNSS signals, e.g. 2016
231 */
232 uint16_t yearOfHw;
233 };
234
235 /*
236 * Callback to inform framework of the engine's hardware version information.
237 *
238 * @param info GnssSystemInfo about the GPS/GNSS hardware.
239 */
240 gnssSetSystemInfoCb(GnssSystemInfo info);
241};